/* ===================================
   FURIOUS FIGHT GEAR - THEME CSS
   =================================== */

/* === CSS RESET === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--red);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* === CSS VARIABLES === */
:root {
    --navy: #1A1A2E;
    --navy-mid: #16213E;
    --navy-deep: #0F3460;
    --red: #C0392B;
    --red-bright: #E74C3C;
    --white: #FFFFFF;
    --off-white: #F7F7F7;
    --gray-light: #EFEFEF;
    --gray-mid: #D0D0D0;
    --gray-dark: #888888;
    --text: #1A1A2E;
    --text-soft: #5A5A6A;
    
    --max-width: 1400px;
    --gutter-desktop: 80px;
    --gutter-tablet: 40px;
    --gutter-mobile: 20px;
    --radius: 4px;
    --transition: .35s cubic-bezier(.25,.46,.45,.94);
}

/* === LAYOUT HELPERS === */
.wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter-desktop);
}

.wrap.narrow {
    max-width: 900px;
}

.wrap.wide {
    max-width: 1600px;
}

.section-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.125rem;
    color: var(--text-soft);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-title {
    margin: 0 auto 1rem;
}

.section-header .section-sub {
    margin: 0 auto;
}

.center {
    text-align: center;
}

/* === SCROLL REVEAL === */
.sr, .sr-l, .sr-r {
    opacity: 0;
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.sr {
    transform: translateY(30px);
}

.sr-l {
    transform: translateX(-30px);
}

.sr-r {
    transform: translateX(30px);
}

.sr.visible, .sr-l.visible, .sr-r.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.sr.d1 { transition-delay: 0.1s; }
.sr.d2 { transition-delay: 0.2s; }
.sr.d3 { transition-delay: 0.3s; }
.sr.d4 { transition-delay: 0.4s; }
.sr.d5 { transition-delay: 0.5s; }
.sr.d6 { transition-delay: 0.6s; }

/* === BUTTONS === */
.btn {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 32px;
    border-radius: var(--radius);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-red {
    background: var(--red);
    color: var(--white);
}

.btn-red:hover {
    background: var(--red-bright);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-mid);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-red {
    background: transparent;
    color: var(--red);
    border-color: var(--red);
}

.btn-outline-red:hover {
    background: var(--red);
    color: var(--white);
}

/* === ANNOUNCEMENT BAR === */
#announcement-bar {
    background: var(--navy);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
    text-align: center;
}

#announcement-bar p {
    margin: 0;
}

/* === HEADER === */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-bar #site-header {
    top: 32px;
}

#site-header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#site-header.scrolled .site-logo,
#site-header.scrolled .main-nav a,
#site-header.scrolled .header-icon {
    color: var(--navy);
}

#site-header.scrolled .header-icon svg {
    stroke: var(--navy);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.header-left {
    flex: 0 0 auto;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.site-logo em {
    color: var(--red);
    font-style: normal;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.current-menu-item::after {
    width: 100%;
}

.header-icon {
    position: relative;
    color: var(--white);
    padding: 8px;
}

.header-icon svg {
    display: block;
    stroke: var(--white);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--red);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

#site-header.scrolled .mobile-menu-toggle span {
    background: var(--navy);
}

/* === MOBILE MENU === */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 2000;
    transform: translateX(-100%);
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-content {
    height: 100%;
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-header .site-logo {
    color: var(--white);
}

.mobile-menu-close {
    font-size: 2rem;
    color: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:hover {
    color: var(--red);
}

/* === CART DRAWER === */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 420px;
    background: var(--white);
    z-index: 1600;
    transform: translateX(100%);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.2);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin: 0;
}

.cart-drawer-close {
    font-size: 2rem;
    color: var(--text);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-shipping-progress {
    padding: 20px;
    background: var(--off-white);
}

.shipping-bar {
    height: 8px;
    background: var(--gray-light);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.shipping-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--red), var(--red-bright));
    transition: width 0.5s ease;
}

.shipping-message {
    font-size: 0.875rem;
    color: var(--text-soft);
    margin: 0;
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-loading {
    text-align: center;
    color: var(--text-soft);
    padding: 40px 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.cart-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.cart-item-name:hover {
    color: var(--red);
}

.cart-item-price {
    font-size: 0.875rem;
    color: var(--text-soft);
    margin-bottom: 10px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text);
}

.qty-btn:hover {
    border-color: var(--red);
    color: var(--red);
}

.qty-value {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-item-remove {
    font-size: 1.25rem;
    color: var(--gray-dark);
    padding: 5px;
}

.cart-item-remove:hover {
    color: var(--red);
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-light);
}

.cart-coupon {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.coupon-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
}

.cart-drawer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cart-drawer-actions .btn {
    padding: 12px 20px;
    font-size: 0.875rem;
}

/* === FOOTER === */
#site-footer {
    background: #121220;
    color: var(--white);
    border-top: 3px solid var(--red);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.125rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-brand .site-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-menu a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* === 404 PAGE === */
.error-404-content {
    text-align: center;
    padding: 80px 20px;
}

.error-code {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 10rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 20px;
}

.error-404-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.error-404-content p {
    font-size: 1.125rem;
    color: var(--text-soft);
    margin-bottom: 30px;
}

.error-404-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
}

.error-404-products {
    margin-top: 60px;
}

.error-404-products h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

/* === SEARCH RESULTS === */
.search-header {
    text-align: center;
    padding: 60px 0 40px;
}

.search-header h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.search-header h1 span {
    color: var(--red);
}

.search-count {
    color: var(--text-soft);
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.search-result-item {
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.search-result-item:hover {
    border-color: var(--red);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-result-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.search-result-item:hover .search-result-image img {
    transform: scale(1.05);
}

.search-result-content {
    padding: 20px;
}

.search-result-type {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--red);
    display: inline-block;
    margin-bottom: 10px;
}

.search-result-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.search-result-excerpt {
    color: var(--text-soft);
    margin-bottom: 15px;
    line-height: 1.6;
}

.search-result-link {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    color: var(--red);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.no-results p {
    color: var(--text-soft);
    margin-bottom: 30px;
}

.search-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--gray-mid);
    border-radius: var(--radius);
}

/* === DEFAULT PAGE === */
.default-page {
    padding: 80px 0;
}

.entry-header {
    text-align: center;
    margin-bottom: 40px;
}

.entry-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.entry-featured-image {
    margin-bottom: 40px;
    border-radius: var(--radius);
    overflow: hidden;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    margin: 40px 0 20px;
}

.entry-content h2 {
    font-size: 2rem;
}

.entry-content h3 {
    font-size: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    list-style: disc;
    list-style-position: inside;
    margin-bottom: 20px;
}

/* === SINGLE POST === */
.post-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gray-light);
    z-index: 999;
}

.post-progress-fill {
    height: 100%;
    background: var(--red);
    width: 0%;
    transition: width 0.1s ease;
}

.single-post article {
    padding: 80px 0;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--text-soft);
    margin-bottom: 20px;
}

.post-separator {
    color: var(--gray-mid);
}

.post-category a {
    color: var(--red);
}

.post-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
}

.post-excerpt {
    font-size: 1.25rem;
    color: var(--text-soft);
    margin: 0 auto;
    max-width: 700px;
}

.post-featured-image {
    margin-bottom: 60px;
    border-radius: var(--radius);
    overflow: hidden;
}

.post-toc {
    background: var(--off-white);
    padding: 30px;
    border-radius: var(--radius);
    margin-bottom: 40px;
}

.post-toc h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.post-toc ul {
    list-style: none;
}

.post-toc li {
    margin-bottom: 8px;
}

.post-toc a {
    color: var(--text);
}

.post-toc a:hover {
    color: var(--red);
}

.toc-level-3 {
    padding-left: 20px;
    font-size: 0.9375rem;
}

.post-content {
    margin-bottom: 40px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content h2,
.post-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    margin: 40px 0 20px;
    scroll-margin-top: 100px;
}

.post-content h2 {
    font-size: 2rem;
}

.post-content h3 {
    font-size: 1.5rem;
}

.post-tags {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-light);
}

.post-tag {
    display: inline-block;
    background: var(--off-white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    margin: 5px 5px 5px 0;
}

.post-tag:hover {
    background: var(--red);
    color: var(--white);
}

.post-share {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-light);
}

.post-share strong {
    margin-right: 15px;
}

.share-link {
    display: inline-block;
    margin-right: 15px;
    color: var(--text-soft);
    font-weight: 600;
}

.share-link:hover {
    color: var(--red);
}

.related-posts {
    padding: 60px 0;
    background: var(--off-white);
}

.related-posts h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-post-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.related-post-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-post-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.related-post-item:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 1.125rem;
    text-transform: uppercase;
    padding: 20px 20px 10px;
}

.related-post-date {
    padding: 0 20px 20px;
    font-size: 0.875rem;
    color: var(--text-soft);
}

/* === RESPONSIVE UTILITIES === */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

/* === RESPONSIVE BREAKPOINTS === */

@media (max-width: 1100px) {
    :root {
        --gutter-desktop: var(--gutter-tablet);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-col:nth-child(4),
    .footer-col:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --gutter-desktop: var(--gutter-mobile);
    }
    
    .admin-bar #site-header {
        top: 46px;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: flex;
    }
    
    .header-right {
        gap: 10px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-sub {
        font-size: 1rem;
    }
    
    .cart-drawer {
        max-width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .error-code {
        font-size: 6rem;
    }
    
    .error-404-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .error-404-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .search-results-grid {
        grid-template-columns: 1fr;
    }
    
    .entry-title,
    .post-title {
        font-size: 2rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-drawer-actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    .post-title,
    .entry-title {
        font-size: 1.75rem;
    }
}

/* === PAGE CSS ADDED BELOW === */

/* ═══════════════════════════════════════════════════════════
   HOMEPAGE STYLES
   ═══════════════════════════════════════════════════════════ */

/* === HERO CAROUSEL === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
}

.slides-container {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.06);
    transition: transform 9s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-ov-dark, .slide-ov-blue, .slide-ov-red {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(10,10,20,0.96) 0%, rgba(10,10,20,0.82) 55%, rgba(10,10,20,0.35) 100%);
}

.slide-inner {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter-desktop);
    width: 100%;
}

.slide-tag {
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide.active .slide-tag {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.slide-title {
    font-family: var(--font-h);
    font-size: clamp(60px, 7.5vw, 106px);
    font-weight: 900;
    line-height: 0.93;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.slide-title em {
    font-style: normal;
    color: var(--red);
}

.slide-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.74);
    max-width: 440px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active .slide-sub {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.slide-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide.active .slide-actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.62s;
}

.slide-badges {
    margin-top: 40px;
    display: flex;
    gap: 26px;
    flex-wrap: wrap;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active .slide-badges {
    opacity: 1;
    transition-delay: 0.78s;
}

.slide-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-family: var(--font-h);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 30px;
}

.hero-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.hero-arrow:hover {
    background: var(--red);
    border-color: var(--red);
    color: white;
}

.hero-dots {
    display: flex;
    gap: 10px;
}

.hdot {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: background 0.35s, width 0.35s;
}

.hdot.active {
    background: var(--red);
    width: 44px;
}

/* === TRUST BAR === */
.trust-bar {
    background: var(--navy);
    padding: 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    text-align: center;
    padding: 36px 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-item:last-child {
    border-right: none;
}

.trust-num {
    font-family: var(--font-h);
    font-size: 50px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.trust-num .cnum {
    color: var(--red);
}

.trust-label {
    font-family: var(--font-b);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
}

/* === SHOP BY CATEGORY === */
.shop-cats {
    padding: 100px 0;
    background: var(--off-white);
}

.cats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cat-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    background: var(--navy);
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    transition: var(--transition);
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cat-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.cat-card:hover .cat-img {
    transform: scale(1.07);
}

.cat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.88) 0%, rgba(26,26,46,0.2) 55%, transparent 100%);
    transition: var(--transition);
}

.cat-card:hover::after {
    background: linear-gradient(to top, rgba(26,26,46,0.93) 0%, rgba(26,26,46,0.4) 60%, rgba(26,26,46,0.05) 100%);
}

.cat-name {
    position: relative;
    z-index: 2;
    font-family: var(--font-h);
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--white);
    padding: 26px;
}

.cat-arrow {
    position: absolute;
    bottom: 26px;
    right: 26px;
    color: var(--red);
    font-size: 24px;
    font-weight: 700;
    z-index: 2;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

.cat-card:hover .cat-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* === 3D CUSTOMIZER SECTION === */
.design3d {
    padding: 100px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.design3d::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192,57,43,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.design3d::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15,52,96,0.3) 0%, transparent 65%);
    pointer-events: none;
}

.d3d-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.d3d-visual {
    position: relative;
}

.d3d-stage {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(22,33,62,0.8) 0%, rgba(15,20,40,0.95) 75%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

#glove-svg {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.15s ease;
}

.d3d-tag {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 20px;
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
}

.d3d-swatches {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
}

.sw {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.sw[data-color="#C0392B"] { background: #C0392B; }
.sw[data-color="#1A1A2E"] { background: #1A1A2E; }
.sw[data-color="#1a6b3c"] { background: #1a6b3c; }
.sw[data-color="#2980B9"] { background: #2980B9; }
.sw[data-color="#F39C12"] { background: #F39C12; }
.sw[data-color="#8B4513"] { background: #8B4513; }
.sw[data-color="#FFFFFF"] { background: #FFFFFF; }
.sw[data-color="#000000"] { background: #000000; }

.sw.active {
    border-color: var(--red);
    transform: scale(1.15);
}

.sw:hover {
    transform: scale(1.1);
}

.d3d-content .section-tag {
    color: var(--red);
}

.d3d-content .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.d3d-content .section-sub {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.d3d-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 40px;
}

.d3d-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.d3d-step-num {
    width: 38px;
    height: 38px;
    background: rgba(192, 57, 43, 0.15);
    border: 1px solid rgba(192, 57, 43, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 800;
    color: var(--red);
}

.d3d-step-title {
    font-family: var(--font-h);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 3px;
    letter-spacing: 0.04em;
}

.d3d-step-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* === BESTSELLERS SECTION === */
.bestsellers {
    padding: 100px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: var(--red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.product-image {
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--off-white);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-cats {
    font-size: 11px;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.product-cats a {
    color: var(--red);
}

.product-title {
    font-family: var(--font-h);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-rating {
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-h);
    font-size: 20px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 15px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

.product-atc {
    width: 100%;
    display: block;
    text-align: center;
}

/* === HOW IT WORKS === */
.how-it-works {
    padding: 100px 0;
    background: var(--off-white);
}

.how-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.how-line {
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    height: 8px;
    z-index: 1;
}

.how-line-fill {
    transition: x2 1.5s ease;
}

.how-line-fill.on {
    x2: 100;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.how-step {
    text-align: center;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.how-step.lit {
    opacity: 1;
}

.how-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
    font-size: 24px;
    font-weight: 900;
    color: var(--text);
    margin: 0 auto 20px;
    transition: var(--transition);
}

.how-step.lit .how-num {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.how-title {
    font-family: var(--font-h);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.how-desc {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
}

/* === WHOLESALE CTA === */
.wholesale-cta {
    padding: 100px 0;
    background: var(--white);
}

.ws-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ws-perks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.ws-perk {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.ws-perk-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(192, 57, 43, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
}

.ws-perk-title {
    font-family: var(--font-h);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.ws-perk-desc {
    font-size: 14px;
    color: var(--text-soft);
}

.ws-visual {
    height: 500px;
    border-radius: var(--radius);
    background: var(--off-white);
}

.ws-img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius);
}

/* === GYM & CLUB CTA === */
.gym-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.gym-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gym-content .section-tag {
    color: var(--red);
}

.gym-content .section-title {
    color: var(--white);
}

.gym-content .section-sub {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 40px;
}

.gym-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === BLOG SECTION === */
.latest-blog {
    padding: 100px 0;
    background: var(--off-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--off-white);
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: var(--text-soft);
    margin-bottom: 12px;
}

.blog-cat {
    color: var(--red);
    font-weight: 600;
}

.blog-title {
    font-family: var(--font-h);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-title a {
    color: var(--text);
}

.blog-title a:hover {
    color: var(--red);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-link {
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--red);
}

.blog-link:hover {
    text-decoration: underline;
}

/* === RESPONSIVE - HOMEPAGE === */
@media (max-width: 1100px) {
    .slide-title {
        font-size: clamp(48px, 6vw, 80px);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .d3d-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ws-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .slide-title {
        font-size: clamp(36px, 10vw, 60px);
    }
    
    .slide-sub {
        font-size: 15px;
    }
    
    .slide-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .slide-actions .btn {
        width: 100%;
    }
    
    .slide-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-nav {
        bottom: 20px;
    }
    
    .hero-arrow {
        width: 40px;
        height: 40px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }
    
    .trust-item:last-child {
        border-bottom: none;
    }
    
    .cats-grid {
        grid-template-columns: 1fr;
    }
    
    .d3d-stage {
        height: 400px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .how-steps {
        grid-template-columns: 1fr;
    }
    
    .how-line {
        display: none;
    }
    
    .ws-visual {
        height: 300px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .gym-actions {
        flex-direction: column;
    }
    
    .gym-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}
/* ══════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR & HEADER & FOOTER
══════════════════════════════════════════════════════════ */

/* 1. ANNOUNCEMENT BAR */
.announce{
  background:var(--red);color:var(--white);
  text-align:center;padding:11px 20px;
  font-family:var(--font-h);font-size:13px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  transform:translateY(-100%);animation:slideDown .5s .05s ease forwards;
  position:relative;z-index:1000;
}
.announce a{text-decoration:underline;color:var(--white);transition:opacity .2s}
.announce a:hover{opacity:.75}
.announce span{margin:0 16px}
@keyframes slideDown{to{transform:translateY(0)}}

/* 2. HEADER */
.site-header{
  position:sticky;top:0;z-index:999;
  background:rgba(26,26,46,.7);backdrop-filter:blur(14px);
  transition:background var(--tr),box-shadow var(--tr);
}
.site-header.scrolled{background:var(--white);box-shadow:0 2px 28px rgba(0,0,0,.09)}
.hd{max-width:var(--container);margin:0 auto;padding:0 var(--gutter);display:flex;align-items:center;justify-content:space-between;height:70px}
.logo{font-family:var(--font-h);font-size:22px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:var(--white);transition:color var(--tr)}
.logo em{font-style:normal;color:var(--red)}
.logo img{display:block}
.site-header.scrolled .logo{color:var(--navy)}
.nav{display:flex;gap:30px}
.nav a{font-family:var(--font-h);font-size:14px;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:rgba(255,255,255,.85);transition:color var(--tr)}
.nav a:hover{color:var(--red)}
.site-header.scrolled .nav a{color:var(--navy)}
.site-header.scrolled .nav a:hover{color:var(--red)}
.hd-actions{display:flex;gap:16px;align-items:center}
.hd-icon{color:rgba(255,255,255,.8);transition:color var(--tr);display:flex;align-items:center;position:relative}
.site-header.scrolled .hd-icon{color:var(--navy)}
.hd-icon:hover{color:var(--red)}
.cart-dot{position:absolute;top:-5px;right:-5px;background:var(--red);color:white;width:15px;height:15px;border-radius:50%;font-size:8px;display:flex;align-items:center;justify-content:center;font-family:var(--font-h);font-weight:700}
.hd-cta{background:var(--red);color:var(--white)!important;padding:9px 18px;border-radius:var(--radius);font-family:var(--font-h);font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;transition:background var(--tr),box-shadow var(--tr)}
.hd-cta:hover{background:var(--red-bright)!important;box-shadow:0 0 18px rgba(192,57,43,.45)}
svg.ic{width:20px;height:20px}

/* 3. FOOTER */
.footer{background:var(--navy);padding:80px 0 0}
.footer-cols{display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:48px}
.f-logo{font-family:var(--font-h);font-size:22px;font-weight:900;letter-spacing:.08em;text-transform:uppercase;color:var(--white);margin-bottom:14px}
.f-logo em{font-style:normal;color:var(--red)}
.f-logo img{display:block;margin-bottom:14px}
.f-desc{font-size:14px;color:rgba(255,255,255,.4);line-height:1.7;margin-bottom:22px}
.f-social{display:flex;gap:10px}
.f-soc{width:38px;height:38px;border-radius:6px;background:rgba(255,255,255,.07);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.5);transition:background .25s,color .25s,transform .25s}
.f-soc:hover{background:var(--red);color:var(--white);transform:translateY(-2px)}
.f-col-title{font-family:var(--font-h);font-size:12px;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--white);margin-bottom:18px}
.f-col ul{list-style:none;padding:0;margin:0}
.f-col li{margin-bottom:10px}
.f-col a{font-size:14px;color:rgba(255,255,255,.4);transition:color .2s}
.f-col a:hover{color:var(--red)}
.f-bottom{border-top:1px solid rgba(255,255,255,.06);margin-top:70px;padding:24px 0}
.f-copy{font-size:13px;color:rgba(255,255,255,.35);margin:0}
.f-links{display:flex;gap:22px}
.f-links a{font-size:13px;color:rgba(255,255,255,.35);transition:color .2s}
.f-links a:hover{color:var(--red)}
/* ══════════════════════════════════════════════════════════
   CART DRAWER (Slide-in from right)
══════════════════════════════════════════════════════════ */
.cart-drawer{position:fixed;top:0;right:0;width:100%;max-width:420px;height:100vh;background:var(--white);z-index:9999;transform:translateX(100%);transition:transform .35s cubic-bezier(.4,0,.2,1);box-shadow:-8px 0 40px rgba(0,0,0,.15);display:flex;flex-direction:column}
.cart-drawer.active{transform:translateX(0)}
.cart-overlay{position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:9998;opacity:0;visibility:hidden;transition:opacity .35s,visibility .35s}
.cart-drawer.active ~ .cart-overlay{opacity:1;visibility:visible}

/* Cart Header */
.cart-header{padding:24px 24px 20px;border-bottom:1px solid var(--gray-light);display:flex;justify-content:space-between;align-items:center;background:var(--white)}
.cart-header h3{font-family:var(--font-h);font-size:18px;font-weight:800;text-transform:uppercase;letter-spacing:.08em;color:var(--navy);margin:0}
.cart-count{color:var(--red)}
.cart-close{background:none;border:none;width:36px;height:36px;display:flex;align-items:center;justify-content:center;color:var(--text-soft);cursor:pointer;transition:color .2s,background .2s;border-radius:var(--radius)}
.cart-close:hover{background:var(--off-white);color:var(--red)}

/* Cart Body */
.cart-body{flex:1;overflow-y:auto;padding:0}

/* Empty Cart */
.cart-empty{padding:60px 24px;text-align:center}
.cart-empty svg{color:var(--gray-mid);margin-bottom:20px}
.cart-empty p{font-size:15px;color:var(--text-soft);margin-bottom:24px}

/* Cart Items */
.cart-items{padding:16px 0}
.cart-item{padding:16px 24px;border-bottom:1px solid var(--gray-light);display:flex;gap:14px;position:relative;transition:background .2s}
.cart-item:hover{background:var(--off-white)}
.cart-item-img{width:70px;height:70px;border-radius:var(--radius);overflow:hidden;flex-shrink:0;border:1px solid var(--gray-light)}
.cart-item-img img{width:100%;height:100%;object-fit:cover}
.cart-item-info{flex:1;display:flex;flex-direction:column;gap:6px}
.cart-item-name{font-family:var(--font-h);font-size:14px;font-weight:700;color:var(--navy);line-height:1.3}
.cart-item-price{font-size:15px;font-weight:600;color:var(--red)}
.cart-item-qty{display:flex;align-items:center;gap:8px;margin-top:4px}
.qty-btn{width:28px;height:28px;border:1px solid var(--gray-mid);background:var(--white);color:var(--navy);border-radius:var(--radius);font-size:16px;font-weight:700;cursor:pointer;transition:all .2s;display:flex;align-items:center;justify-content:center}
.qty-btn:hover{background:var(--red);color:var(--white);border-color:var(--red)}
.cart-item-qty input{width:45px;text-align:center;border:1px solid var(--gray-light);border-radius:var(--radius);padding:6px;font-size:14px;font-weight:600}
.cart-item-remove{position:absolute;top:16px;right:24px;background:none;border:none;color:var(--text-soft);cursor:pointer;padding:4px;transition:color .2s}
.cart-item-remove:hover{color:var(--red)}

/* Shipping Progress */
.shipping-progress{padding:20px 24px;background:var(--off-white);border-bottom:1px solid var(--gray-light)}
.shipping-text{font-size:13px;font-weight:600;color:var(--text-soft);margin-bottom:10px;text-align:center}
.shipping-text.shipping-achieved{color:var(--red)}
.shipping-bar{height:6px;background:var(--gray-light);border-radius:10px;overflow:hidden}
.shipping-fill{height:100%;background:linear-gradient(90deg,var(--red),var(--red-bright));transition:width .5s ease;border-radius:10px}

/* Cart Footer */
.cart-footer{border-top:2px solid var(--gray-light);background:var(--white);padding:20px 24px}
.cart-totals{margin-bottom:16px}
.cart-subtotal{display:flex;justify-content:space-between;align-items:center;font-size:16px;font-weight:700;color:var(--navy)}
.cart-subtotal span:last-child{color:var(--red);font-size:18px}

/* Cart Actions */
.cart-actions{display:flex;gap:10px}
.cart-actions .btn{flex:1;justify-content:center;padding:14px 20px;font-size:13px}
.btn-outline-red{border:2px solid var(--red);color:var(--red);background:transparent}
.btn-outline-red:hover{background:var(--red);color:var(--white)}

/* Responsive */
@media (max-width:768px){
.cart-drawer{max-width:100%}
}

/* Fix cart drawer notification badge */
.cart-panel .cart-dot,
.cart-drawer .cart-notification {
    position: absolute;
    top: 20px;
    right: 60px;
    background: var(--red);
    color: var(--white);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE - HEADER & FOOTER
══════════════════════════════════════════════════════════ */

/* Tablet & Mobile - 1100px and below */
@media (max-width: 1100px) {
    .announce{font-size:12px;padding:10px 16px}
    .announce span{margin:0 10px}
    
    .hd{height:65px;padding:0 var(--gutter-tablet)}
    .logo{font-size:20px}
    .nav{gap:20px}
    .nav a{font-size:14px}
    .hd-actions{gap:12px}
    .hd-cta{padding:8px 16px;font-size:11px}
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    .announce{font-size:11px;padding:9px 12px;letter-spacing:.08em}
    .announce span{margin:0 8px;display:inline-block}
    
    .hd{height:60px;padding:0 var(--gutter-mobile)}
    .logo{font-size:18px}
    
    /* Hide main navigation on mobile */
    .nav{display:none}
    
    .hd-actions{gap:10px}
    svg.ic{width:18px;height:18px}
    .cart-dot{width:14px;height:14px;font-size:7px;top:-4px;right:-4px}
    .hd-cta{padding:8px 14px;font-size:10px}
    
    /* Footer responsive */
    .footer{padding:60px 0 0}
    .footer-cols{grid-template-columns:1fr;gap:32px}
    .f-logo{font-size:20px}
    .f-desc{font-size:13px}
    .f-col-title{font-size:11px;margin-bottom:14px}
    .f-col a{font-size:13px}
    .f-bottom{flex-direction:column;gap:14px;text-align:center;padding:20px var(--gutter-mobile)}
    .f-links{flex-direction:column;gap:8px}
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .announce{font-size:10px;padding:8px 10px}
    .announce span{margin:0 6px}
    .announce br{display:none}
    
    .hd{height:56px}
    .logo{font-size:16px}
    .hd-actions{gap:8px}
    .hd-cta{display:none} /* Hide CTA on very small screens */
    svg.ic{width:17px;height:17px}
    
    .footer{padding:50px 0 0}
    .footer-cols{gap:28px}
    .f-social{gap:8px}
    .f-soc{width:34px;height:34px}
    .f-bottom{padding:18px var(--gutter-mobile)}
}

@media (max-width: 768px) {
    .mobile-menu-toggle{display:flex}
    
    /* Mobile nav overlay */
    .nav.mobile-open{
        display:flex;
        flex-direction:column;
        position:fixed;
        top:60px;
        left:0;
        right:0;
        background:var(--navy);
        padding:20px;
        gap:0;
        box-shadow:0 8px 24px rgba(0,0,0,.2);
        z-index:998;
    }
    .nav.mobile-open a{
        padding:14px 0;
        border-bottom:1px solid rgba(255,255,255,.1);
        color:var(--white);
    }
}
}

}

/* Remove white space above announcement bar */
body {
    margin: 0 !important;
    padding: 0 !important;
}

html, body {
    margin: 0;
    padding: 0;
}

.announce {
    margin-top: 0 !important;
}

.site-header {
    margin-top: 0 !important;
}

/* Ensure no admin bar spacing */
body.admin-bar .announce {
    margin-top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .announce {
        margin-top: 46px;
    }
}

/* Ensure cart drawer blocks everything behind it */
.cart-drawer {
    background: var(--white) !important;
    z-index: 10000 !important;
}

.cart-panel {
    background: var(--white);
    position: relative;
    z-index: 10001;
}

.cart-overlay {
    z-index: 9999 !important;
}

/* Ensure header icon cart-dot stays in header only */
.hd-icon .cart-dot {
    position: absolute;
    top: -5px;
    right: -5px;
}

/* ══════════════════════════════════════════════════════════
}

/* If cart count is in header, style it nicely */
.cart-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-header h3 .cart-count {
    background: var(--red);
    color: var(--white);
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.3);
}

/* ══════════════════════════════════════════════════════════
   CART BADGE FIX - Make it inline, not absolute positioned
══════════════════════════════════════════════════════════ */

/* Remove absolute positioning from cart badge */
.cart-panel .cart-dot,
.cart-drawer .cart-notification {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    background: var(--red);
    color: var(--white);
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-family: var(--font-h);
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.3);
    margin-left: 8px;
}

/* Cart header styling - flex layout for proper alignment */
.cart-header h3 {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    flex-wrap: wrap !important;
}

/* Style the count badge inline */
.cart-header h3 .cart-count {
    position: relative !important;
    background: var(--red);
    color: var(--white);
    min-width: 28px;
    height: 28px;
    padding: 0 10px;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(192, 57, 43, 0.3);
    margin-left: 8px;
}

/* ══════════════════════════════════════════════════════════
   REMOVE WHITE SPACE ABOVE ANNOUNCEMENT BAR - FORCE
══════════════════════════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    margin: 0 !important;
    padding: 0 !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}

body > * {
    margin-top: 0 !important;
}

.announce {
    margin-top: 0 !important;
    padding-top: 11px !important;
}

/* For logged in users with admin bar */
body.admin-bar .announce {
    margin-top: 32px !important;
}

@media screen and (max-width: 782px) {
    body.admin-bar .announce {
        margin-top: 46px !important;
    }
}

/* ══════════════════════════════════════════════════════════
    
    .nav.mobile-open {
        display: flex !important;
        position: static !important;
        flex-direction: row !important;
        background: transparent !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    .nav a {
        border-bottom: none !important;
        padding: 0 !important;
    }
    
    /* Hide mobile menu toggle on desktop */
    .mobile-menu-toggle {
        display: none !important;
    }
}

/* MOBILE - Better styled dropdown menu */
@media (max-width: 768px) {
    /* Hide main nav by default */
    .nav {
        display: none;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Mobile menu when open */
    .nav.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 0;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,.3);
        z-index: 998;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    /* Mobile menu links */
    .nav.mobile-open a {
        padding: 18px 24px;
        border-bottom: 1px solid rgba(255,255,255,.08);
        color: var(--white) !important;
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.08em;
        transition: background 0.2s, padding-left 0.2s;
    }
    
    .nav.mobile-open a:hover {
        background: rgba(192,57,43,.1);
        padding-left: 32px;
        color: var(--red) !important;
    }
    
    .nav.mobile-open a:last-child {
        border-bottom: none;
    }
    
    /* Scrolled state */
    .site-header.scrolled .nav.mobile-open {
        background: var(--white);
        box-shadow: 0 8px 24px rgba(0,0,0,.15);
    }
    
    .site-header.scrolled .nav.mobile-open a {
        color: var(--navy) !important;
        border-bottom-color: rgba(0,0,0,.06);
    }
    
    .site-header.scrolled .nav.mobile-open a:hover {
        background: var(--off-white);
        color: var(--red) !important;
    }
}

/* ══════════════════════════════════════════════════════════
/* FORCE DESKTOP MENU TO BE HORIZONTAL - OVERRIDE EVERYTHING */
.nav {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    background: transparent !important;
    position: static !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.nav a {
    padding: 0 !important;
    border: none !important;
    border-bottom: none !important;
}

/* Hide mobile toggle on desktop */
.mobile-menu-toggle {
    display: none !important;
}

/* MOBILE ONLY - 768px and below */
@media (max-width: 768px) {
    /* Show mobile toggle */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Hide menu by default */
    .nav {
        display: none !important;
    }
    
    /* When menu is open */
    .nav.mobile-open {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--navy) !important;
        padding: 16px 0 !important;
        gap: 0 !important;
        box-shadow: 0 8px 24px rgba(0,0,0,.3) !important;
        z-index: 998;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    /* Mobile menu links with proper spacing */
    .nav.mobile-open a {
        padding: 16px 24px !important;
        margin: 4px 16px !important;
        border-radius: 6px !important;
        color: var(--white) !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        transition: all 0.25s ease !important;
        border: none !important;
        border-bottom: none !important;
    }
    
    /* RED BACKGROUND ON HOVER with WHITE TEXT */
    .nav.mobile-open a:hover {
        background: var(--red) !important;
        color: var(--white) !important;
        transform: translateX(4px);
    }
    
    /* When header is scrolled */
    .site-header.scrolled .nav.mobile-open {
        background: var(--white) !important;
        box-shadow: 0 8px 24px rgba(0,0,0,.15) !important;
    }
    
    .site-header.scrolled .nav.mobile-open a {
        color: var(--navy) !important;
    }
    
    .site-header.scrolled .nav.mobile-open a:hover {
        background: var(--red) !important;
        color: var(--white) !important;
    }
}

/* ══════════════════════════════════════════════════════════
   COMPLETE MENU FIX - Desktop Horizontal + Mobile Professional
══════════════════════════════════════════════════════════ */

/* === RESET ANY PREVIOUS MOBILE OPEN STYLES === */
.nav,
.nav.mobile-open {
    all: unset;
}

/* === DESKTOP - ALWAYS HORIZONTAL === */
.nav {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.nav a {
    font-family: var(--font-h);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--red);
}

.site-header.scrolled .nav a {
    color: var(--navy);
}

.site-header.scrolled .nav a:hover {
    color: var(--red);
}

/* Hide mobile toggle on desktop */
.mobile-menu-toggle {
    display: none;
}

/* === MOBILE BREAKPOINT === */
@media (max-width: 768px) {
    /* Show mobile toggle button */
    .mobile-menu-toggle {
        display: flex;
        width: 36px;
        height: 36px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--white);
        transition: all 0.3s;
        border-radius: 2px;
    }
    
    .site-header.scrolled .mobile-menu-toggle span {
        background: var(--navy);
    }
    
    /* Hide navigation by default on mobile */
    .nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,.3);
        z-index: 998;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    /* When menu is open */
    .nav.mobile-open {
        display: flex;
    }
    
    /* Mobile menu links - FULL WIDTH RED HOVER */
    .nav a {
        display: block;
        width: 100%;
        padding: 18px 24px;
        margin: 0;
        color: var(--white);
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        border-bottom: 1px solid rgba(255,255,255,.08);
        transition: all 0.25s ease;
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    /* FULL WIDTH RED BACKGROUND ON HOVER */
    .nav a:hover {
        background: var(--red);
        color: var(--white);
        padding-left: 32px;
    }
    
    /* Scrolled state - white background menu */
    .site-header.scrolled .nav {
        background: var(--white);
        box-shadow: 0 8px 24px rgba(0,0,0,.15);
    }
    
    .site-header.scrolled .nav a {
        color: var(--navy);
        border-bottom-color: rgba(0,0,0,.06);
    }
    
    .site-header.scrolled .nav a:hover {
        background: var(--red);
        color: var(--white);
    }
}

/* === ANNOUNCEMENT BAR PADDING === */
.announce {
    padding-left: 24px;
    padding-right: 24px;
}

@media (max-width: 768px) {
    .announce {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .announce {
        padding-left: 12px;
        padding-right: 12px;
    }
}
