/*
Theme Name: Heritage Athletics
Theme URI: https://github.com/shaheertahir/storeTheme
Description: A premium, minimal-skeuomorphic custom e-commerce WordPress theme with dynamic Material Design 3 theming and scroll animations.
Version: 1.0.0
Author: DeepMind Antigravity
Author URI: https://deepmind.google/
Text Domain: heritage-athletics
Requires PHP: 7.4
Requires at least: 5.6
Tested up to: 6.4
License: GNU GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: e-commerce, custom-menu, post-thumbnails, translation-ready, dark-mode, minimal

This theme utilizes client-side compiled Tailwind CSS (via CDN) and dynamic custom configurations in theme.js
to compute full Material Design 3 palettes, allowing direct runtime adjustments of primary brand colors.
*/

body {
    background-color: #fef9e7; /* surface fallback */
    color: #1d1c11; /* on-surface fallback */
}

/* Custom scrollbar to match aesthetic */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: #fef9e7;
}
::-webkit-scrollbar-thumb {
    background: #c7c7b9;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #aeb784;
}

.nav-border-bottom {
    border-bottom: 1px solid rgba(65, 67, 27, 0.1);
}

.card-outline {
    border: 1px solid rgba(65, 67, 27, 0.1);
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
