/* ================================
   DROP BEAR GOLF - LANDING PAGE
   ================================ */

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Minimal Color Palette */
    --white: #FFFFFF;
    --light-grey: #F5F5F7;
    --text-black: #1D1D1F;
    --charcoal: #1D1D1F;
    --medium-grey: #86868B;
    --orange: #fbb042;
    
    /* Legacy - kept for specific uses */
    --black: #000000;
    
    /* PRODUCT SECTION COLORS - Easy to customize */
    --product-section-bg: #ffffff;
    --product-featured-cta: #fbb042;
    --product-featured-cta-hover: #f5a832;
    --product-item-bg: #000000;
    --product-split-bg: #1d1d1f;
    --product-text-color: #ffffff;
    --product-badge-bg: #ef4136;
    --product-badge-text: #ffffff;
    
    /* Typography */
    --font-primary: 'Work Sans', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-whoosh: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 17px;
    line-height: 1.47;
    color: var(--text-black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: var(--text-black);
}

h1 { font-size: clamp(3rem, 10vw, 7rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 600; }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 500; }

p {
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
    font-weight: 400;
}

.label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--medium-grey);
    margin-bottom: var(--spacing-xs);
}

/* ===== PANELS ===== */
.panel {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.panel-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

.panel-content.centered {
    text-align: center;
}

.panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.panel-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== PANEL 1: HERO ===== */
.hero-panel {
    background: var(--charcoal);
    color: var(--white);
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-title {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: 0;
    text-transform: none;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 300;
    letter-spacing: normal;
    text-transform: none;
    margin-top: var(--spacing-md);
    opacity: 0.7;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-line {
    width: 0.375rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ===== PANEL 2: MANIFESTO ===== */
.manifesto-panel {
    background: var(--charcoal);
    color: var(--white);
}

.manifesto-text {
    max-width: 900px;
    margin: 0 auto;
	text-align: center;
}

.manifesto-quote {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

.manifesto-body p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    font-weight: 400;
}

/* ===== PANEL 3: PUTTER ===== */
.putter-panel {
    background: var(--light-grey);
}

.split-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.split-panel.reverse {
    direction: rtl;
}

.split-panel.reverse > * {
    direction: ltr;
}

.split-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-black);
    margin-bottom: var(--spacing-md);
    font-weight: 600;
}

.split-content .intro {
    font-size: 1.125rem;
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: var(--text-black);
    line-height: 1.5;
}

.split-content .tagline {
    font-size: 1rem;
    font-weight: 500;
    color: var(--medium-grey);
    margin: var(--spacing-md) 0;
}

.split-visual {
    position: relative;
}

.product-showcase {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.product-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== PANEL 4: CRAFT ===== */
.craft-panel {
    background: var(--charcoal);
    padding: 0;
}

.full-bleed-video {
    position: relative;
    width: 100%;
    height: 100vh;
}

.craft-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-caption {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
}

.video-caption h3 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.video-caption p {
    font-size: 1.125rem;
    opacity: 0.9;
    font-weight: 400;
}

/* ===== PANEL 5: PHILOSOPHY ===== */
.philosophy-panel {
    background: var(--charcoal);
    color: var(--white);
}

.philosophy-content {
    max-width: 800px;
}

.pullquote {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    line-height: 1.3;
    margin: var(--spacing-lg) 0;
    color: var(--white);
}

.philosophy-body {
    font-size: 1.25rem;
    font-weight: 500;
    margin: var(--spacing-md) 0;
}

.text-link {
    display: inline-block;
    font-size: 1.125rem;
    color: var(--orange);
    text-decoration: none;
    transition: transform 0.3s var(--ease-whoosh);
	border: 2px solid var(--orange);      /* ADD THIS */
    padding: 12px 24px;                   /* ADD THIS */
    border-radius: 980px;  
}

.text-link:hover {
    transform: translateX(8px);
}

/* ===== PANEL 6: COLLECTION - EDITORIAL SLICES ===== */
/* ===== PANEL 6: THE COLLECTION ===== */
/* PRODUCT SECTION */
.product-section {
    width: 100%;
    background: var(--product-section-bg);
    padding: 0px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 0px;
    padding: 0 0px;
}

.section-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #86868b;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    margin: 0;
}

/* PRODUCT GRID */
.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

/* FEATURED PRODUCT WITH FLIP */
.product-featured {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    perspective: 1000px;
}

.product-flip-container {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    animation: flipIntro 4s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

@keyframes flipIntro {
    0% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.product-flip-container.paused {
    animation: none;
}

.product-flip-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.product-flip-front {
    transform: rotateY(0deg);
}

.product-flip-back {
    transform: rotateY(180deg);
}

.product-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.product-featured-content {
    position: absolute;
    bottom: 80px;
    left: 60px;
    max-width: 500px;
    color: var(--product-text-color);
    z-index: 10;
}

.product-featured-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.1;
}

.product-featured-desc {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 24px;
    opacity: 0.95;
    line-height: 1.4;
}

.product-featured-cta {
    display: inline-block;
    background: var(--product-featured-cta);
    color: #1d1d1f;
    padding: 14px 32px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-featured-cta:hover {
    background: var(--product-featured-cta-hover);
    transform: scale(1.02);
}

/* STANDARD PRODUCTS - MINIMAL CLEAN LAYOUT */
.product-item {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    background: var(--product-item-bg);
}

.product-item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-item-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--product-text-color);
    width: 100%;
    padding: 0 40px;
}

.product-item-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.product-item-desc {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
    opacity: 0.9;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.product-item-cta {
    display: inline-block;
    color: var(--product-text-color);
    padding: 10px 24px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.product-item-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 1);
}

/* SPLIT LAYOUT PRODUCTS */
.product-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 60vh;
    min-height: 450px;
}

.product-split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-split-content {
    background: var(--product-split-bg);
    color: var(--product-text-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.product-split-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
}

.product-split-desc {
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 28px;
    opacity: 0.9;
}

.product-split-cta {
    display: inline-block;
    background: transparent;
    color: var(--product-text-color);
    padding: 12px 28px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    width: fit-content;
}

.product-split-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 1);
}

/* ===== COLOR CONTROL SYSTEM ===== */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.product-featured .product-flip-container,
.product-featured .product-featured-content {
    position: relative;
    z-index: 2;
}

.product-item .product-item-content {
    z-index: 2;  /* Keep z-index, remove position change */
}

.product-featured[data-overlay-color] .product-overlay {
    background-color: var(--overlay-colo            <!-- STANDARD PRODUCT 2 -->
            <div class="product-item" 
                 data-overlay-color="#000000" 
                 data-overlay-opacity="0.6" 
                 data-text-color="#ffffff">
                <div class="product-overlay"></div>
                <img src="varsity.jpg" 
                     alt="Founder's Jacket" 
                     class="product-item-image">
                <div class="product-item-content">
                    <h3 class="product-item-title">Founder's Jacket</h3>
                    <p class="product-item-desc">Vintage varsity. Custom initial. Limited pre-order.</p>
                    <a href="#" class="product-item-cta">Reserve Yours</a>
                </div>
            </div>r, #000000);
    opacity: var(--overlay-opacity, 0.3);
}

.product-item[data-overlay-color] .product-overlay {
    background-color: var(--overlay-color, #000000);
    opacity: var(--overlay-opacity, 0.4);
}

.product-split[data-bg-color] .product-split-content {
    background-color: var(--bg-color, #1d1d1f) !important;
}

/* Text color control */
.product-featured[data-text-color] .product-featured-content,
.product-featured[data-text-color] .product-featured-title,
.product-featured[data-text-color] .product-featured-desc {
    color: var(--text-color, #ffffff) !important;
}

.product-item[data-text-color] .product-item-content,
.product-item[data-text-color] .product-item-title,
.product-item[data-text-color] .product-item-desc {
    color: var(--text-color, #ffffff) !important;
}

.product-split[data-text-color] .product-split-content,
.product-split[data-text-color] .product-split-title,
.product-split[data-text-color] .product-split-desc {
    color: var(--text-color, #ffffff) !important;
}

/* FOMO BADGES - Limited, Sold Out, Coming Soon */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--product-badge-bg);
    color: var(--product-badge-text);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 20;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.product-badge.limited {
    background: var(--product-badge-bg);
}

.product-badge.preorder {
    background: #334265;
}

.product-badge.exclusive {
    background: #000000;
    border: 1px solid var(--product-featured-cta);
}

.product-quantity {
    position: absolute;
    bottom: 120px;
    left: 60px;
    font-size: 13px;
    font-weight: 600;
    color: var(--product-text-color);
    opacity: 0.9;
    letter-spacing: 0.05em;
    z-index: 10;
}

.product-featured .product-quantity {
    bottom: 140px;
}

.product-item .product-quantity {
    left: 50%;
    transform: translateX(-50%);
    bottom: 80px;
}

.product-split .product-quantity {
    position: static;
    margin-bottom: 20px;
    font-size: 12px;
}

/* ===== PANEL 7: STORY ===== */
.story-panel {
    background: var(--light-grey);
}

/* ===== PANEL 8: MOVEMENT ===== */
.movement-panel {
    background: var(--charcoal);
    color: var(--white);
    min-height: 60vh;
}

.movement-header {
    margin-bottom: var(--spacing-lg);
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 24px;
    transition: all 0.3s var(--ease-whoosh);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--orange);
    color: var(--charcoal);
    transform: translateY(-4px);
}

.social-feed {
    max-width: 900px;
    margin: 0 auto;
}

.coming-soon {
    font-size: 1.125rem;
    opacity: 0.7;
    font-weight: 400;
}

/* ===== PANEL 9: CALL ===== */
.call-panel {
    background: var(--charcoal);
    color: var(--white);
}

.cta-headline {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

.cta-subhead {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 980px;
    transition: all 0.3s var(--ease-whoosh);
    cursor: pointer;
    letter-spacing: -0.01em;
    background: var(--orange);     /* ADD THIS */
    color: var(--charcoal);        /* ADD THIS */
}

.cta-button.primary {
    background: var(--orange);
    color: var(--charcoal);
}

.cta-button.primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.cta-button.secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cta-button.secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.cta-button.tertiary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 400;
}

.cta-button.tertiary:hover {
    border-color: rgba(255,255,255,0.5);
}

/* ===== PANEL 10: FOOTER ===== */
.footer-panel {
    background: var(--charcoal);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    min-height: auto;
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.footer-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
    width: 120px;
    height: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-col h5 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
    opacity: 0.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: var(--spacing-xs);
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-legal {
    max-width: 800px;
}

.footer-legal p {
    margin-bottom: var(--spacing-xs);
}

.footer-legal .copyright-legend {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.6875rem;
    line-height: 1.7;
    opacity: 0.6;
}

.footer-utility {
    display: flex;
    gap: var(--spacing-md);
}

.footer-utility a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .split-panel {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .split-panel.reverse {
        direction: ltr;
    }
    
    .product-split {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .product-featured {
        height: 70vh;
        min-height: 500px;
    }

    .product-featured-content {
        left: 30px;
        bottom: 50px;
        max-width: calc(100% - 60px);
    }

    .product-featured-title {
        font-size: 40px;
    }

    .product-featured-desc {
        font-size: 16px;
    }

    .product-item {
        height: 60vh;
        min-height: 400px;
    }

    .product-item-title {
        font-size: 32px;
    }

    .product-split {
        grid-template-columns: 1fr;
        height: auto;
    }

    .product-split-content {
        padding: 40px 30px;
    }

    .product-split-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-utility {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
.hero-title {
        font-size: 2.5rem;
        letter-spacing: -0.02em;
    }
    
    .section-header {
        padding: 60px 20px 0;
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .panel-content {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .product-featured-content {
        left: 20px;
        bottom: 40px;
        max-width: calc(100% - 40px);
    }
    
    .product-split-content {
        padding: 30px 20px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
