@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=Bebas+Neue&family=Space+Grotesk:wght@500;700&family=Caveat:wght@700&family=Permanent+Marker&family=Kaushan+Script&display=swap');

/* Dynamic Handwritten / Fashion-Forward Brand Text Logo */
.site-brand-logo {
    font-family: 'Permanent Marker', 'Kaushan Script', 'Plus Jakarta Sans', cursive, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease, opacity 0.2s ease;
}
.site-brand-logo:hover {
    transform: scale(1.03) rotate(-1deg);
}

:root {
    --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "Plus Jakarta Sans", sans-serif;
    
    /* Shopify RIDE Color Palette */
    --ride-black: #000000;
    --ride-dark: #111111;
    --ride-charcoal: #1c1c1c;
    --ride-lime: #D9FF00;             /* Bright Neon Lime / Chartreuse */
    --ride-lime-hover: #c4e600;
    --ride-bg: #FFFFFF;               /* Clean White Background */
    --ride-bg-soft: #F6F6F6;          /* Soft Gray Box */
    --ride-border: #E5E5E5;           /* Light Border */
    --ride-border-dark: #222222;      /* Dark Border */
    --ride-text: #000000;             /* Black Text */
    --ride-text-muted: #666666;       /* Gray Text */
    
    /* System variables compatible with backend */
    --primary: #000000;
    --secondary: #D9FF00;
    --button: #000000;
    --text-main: #000000;
    --text-muted: #666666;
    --page-bg: #FFFFFF;
    --theme-soft: #F6F6F6;
    --theme-strong-soft: #EAEAEA;
    --theme-border: #E5E5E5;
    --theme-shadow: rgba(0, 0, 0, 0.08);
    --button-soft: #F6F6F6;
    --button-border: #000000;
    --button-shadow: rgba(0, 0, 0, 0.15);
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--ride-bg);
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background-color: var(--ride-bg);
    color: var(--ride-text);
    font-family: var(--font-sans);
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
.font-editorial {
    font-family: var(--font-sans);
    font-weight: 800;
}

.font-sans-luxury {
    font-family: var(--font-sans);
}

/* 1. TOP ANNOUNCEMENT BAR (Neon Lime / Black Bold Continuous Marquee) */
.announcement-bar {
    background-color: var(--ride-lime);
    color: #000000;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    height: 36px;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 50;
    padding: 0;
    width: 100%;
    border-bottom: 2px solid #000000;
}

.announcement-marquee-track {
    display: flex;
    width: max-content;
    animation: continuousMarquee 24s linear infinite;
    will-change: transform;
}

.announcement-marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.announcement-marquee-content span {
    display: inline-block;
    padding: 0 16px;
    color: #000000;
    font-weight: 900;
}

@keyframes continuousMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* 2. BLACK / DARK STICKY RIDE HEADER */
.site-header {
    background-color: #000000;
    border-bottom: 1px solid #222222;
    transition: all 0.25s ease;
}

.site-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.site-nav-link {
    display: inline-flex;
    align-items: center;
    height: 48px;
    padding: 0 16px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.2s ease;
}

.site-nav-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--ride-lime);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-nav-link:hover::after,
.site-nav-link.active::after {
    transform: scaleX(1);
}

.site-nav-link:hover {
    color: var(--ride-lime);
}

.header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #FFFFFF;
    position: relative;
    transition: all 0.2s ease;
}

.header-icon-btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: var(--ride-lime);
}

.header-badge {
    position: absolute;
    top: 3px;
    right: 3px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 9999px;
    background-color: var(--ride-lime);
    color: #000000;
    font-size: 10px;
    font-weight: 900;
    line-height: 17px;
    text-align: center;
    border: 1px solid #000000;
}

/* 3. BOLD RIDE BUTTONS */
.btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    color: #FFFFFF !important;
    border: 2px solid #000000;
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-luxury:hover {
    background-color: var(--ride-lime);
    color: #000000 !important;
    border-color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-luxury:active {
    transform: translateY(0);
}

.btn-luxury-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #000000 !important;
    border: 2px solid #000000;
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-luxury-outline:hover {
    background-color: #000000;
    color: #FFFFFF !important;
}

.btn-luxury-lime {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ride-lime);
    color: #000000 !important;
    border: 2px solid #000000;
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-luxury-lime:hover {
    background-color: #000000;
    color: var(--ride-lime) !important;
}

/* 4. PRODUCT CARDS */
.luxury-product-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.luxury-product-card:hover {
    border-color: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.media-box {
    background-color: #F6F6F6;
    border: 1px solid #EAEAEA;
    border-radius: 6px;
}

.media-box img {
    object-fit: contain !important;
}

.wishlist-heart-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #FFFFFF !important;
    border: 1px solid #E5E5E5;
    display: grid;
    place-items: center;
    color: #111111;
    font-size: 13px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.2s ease, box-shadow 0.2s ease;
    z-index: 15;
    cursor: pointer;
    padding: 0;
}

.wishlist-heart-btn:hover {
    background-color: #FFFFFF !important;
    border-color: #000000;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.wishlist-heart-btn i {
    transition: color 0.2s ease, transform 0.2s ease;
    display: block;
    line-height: 1;
    color: #111111;
}

.wishlist-heart-btn:hover i {
    color: #000000;
}

/* Active Wishlisted State: Only the heart icon turns neon lime green with solid fill */
.wishlist-heart-btn.is-active {
    background-color: #FFFFFF !important;
    border-color: #000000;
}

.wishlist-heart-btn.is-active i {
    color: #D9FF00 !important;
    -webkit-text-stroke: 1px #000000;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    transform: scale(1.05);
}

.wishlist-heart-btn.is-active:hover i {
    color: #c4e600 !important;
}

.product-tag-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--ride-lime);
    color: #000000;
    border: 1px solid #000000;
    font-size: 9.5px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 3px;
    z-index: 5;
}

.star-rating-gold {
    color: #E5A800;
    display: inline-flex;
    gap: 2px;
}

/* Variant selection pills */
.variant-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1.5px solid #D0D0D0;
    background-color: #FFFFFF;
    color: #000000;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.variant-pill:hover {
    border-color: #000000;
    background-color: #F6F6F6;
}

.variant-pill.is-selected,
.variant-pill.active {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border-color: #000000 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* 5. SLIDE-OVER DRAWERS & MODALS */
.luxury-drawer-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 990;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.luxury-drawer-overlay.is-active,
.luxury-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.luxury-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 440px;
    background-color: #FFFFFF;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-drawer.is-active,
.luxury-drawer.active {
    transform: translate3d(0, 0, 0);
}

.luxury-drawer-left {
    right: auto;
    left: 0;
    width: 85%;
    max-width: 340px;
    background-color: #FFFFFF;
    box-shadow: 20px 0 60px rgba(0, 0, 0, 0.3);
    transform: translate3d(-100%, 0, 0);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 2px solid #000000;
}

.luxury-drawer-left.is-active,
.luxury-drawer-left.active {
    transform: translate3d(0, 0, 0);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 14px;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000000;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background-color: #F3F3F3;
    color: #000000;
    padding-left: 18px;
}

.mobile-nav-link.active {
    background-color: var(--ride-lime);
    color: #000000;
    font-weight: 900;
    border-left: 3px solid #000000;
}

/* Search Modal */
.luxury-search-modal {
    position: fixed;
    inset: 0;
    background-color: #FFFFFF;
    z-index: 1002;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

/* Mobile Bottom Sticky Navigation */
.site-bottom-nav {
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.luxury-search-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #CCCCCC;
    border-radius: 4px;
}

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

/* Footer Solid Black */
.site-footer {
    background-color: #000000;
    color: #FFFFFF;
    border-top: 2px solid #222222;
}

/* Product Description Rich HTML Formatting */
.product-description-content {
    font-family: var(--font-sans);
    line-height: 1.65;
    color: #333333;
    word-break: break-word;
    overflow-wrap: break-word;
}

.product-description-content p {
    margin-bottom: 0.75rem;
}

.product-description-content p:last-child {
    margin-bottom: 0;
}

.product-description-content ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-top: 0.35rem;
    margin-bottom: 0.85rem;
}

.product-description-content ol {
    list-style-type: decimal;
    padding-left: 1.25rem;
    margin-top: 0.35rem;
    margin-bottom: 0.85rem;
}

.product-description-content li {
    margin-bottom: 0.35rem;
    line-height: 1.6;
}

.product-description-content strong,
.product-description-content b {
    font-weight: 800;
    color: #000000;
}

.product-description-content h1,
.product-description-content h2,
.product-description-content h3,
.product-description-content h4,
.product-description-content h5,
.product-description-content h6 {
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.85rem;
    margin-bottom: 0.4rem;
}

.product-description-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.75rem 0;
    font-size: 12px;
}

.product-description-content th,
.product-description-content td {
    border: 1px solid #E5E5E5;
    padding: 6px 10px;
    text-align: left;
}

.product-description-content th {
    background-color: #F6F6F6;
    font-weight: 800;
    color: #000000;
}