/*
Theme Name: SeventyFour Studio
Description: Custom art gallery theme for SeventyFour Studio - A beautiful, modern theme designed specifically for showcasing and selling original artwork and prints.
Version: 1.0.0
Author: SeventyFour Studio
License: GPL v2 or later
Text Domain: seventyfour-studio
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties */
:root {
    /* Artistic Color Palette */
    --deep-purple: #2d1b4e;
    --rich-burgundy: #8b1538;
    --warm-gold: #f4a261;
    --vibrant-coral: #e76f51;
    --sage-green: #8fbc8f;
    --dusty-rose: #d4a5a5;
    --cream: #fefae0;
    --warm-white: #fdfcf7;
    --charcoal: #264653;
    --deep-teal: #2a9d8f;
    
    /* Additional Colors */
    --white: #ffffff;
    --accent-light: #f7d794;
    --primary-dark: var(--deep-purple);
    --secondary-dark: var(--rich-burgundy);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--deep-purple) 0%, var(--rich-burgundy) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--deep-teal) 0%, var(--sage-green) 100%);
    --gradient-accent: linear-gradient(135deg, var(--warm-gold) 0%, var(--vibrant-coral) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    
    /* Text Colors */
    --text-primary: var(--charcoal);
    --text-secondary: var(--deep-purple);
    --text-muted: #666;
    --text-light: var(--warm-white);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 15px 50px rgba(0, 0, 0, 0.2);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Layout */
    --max-width: 1400px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--gradient-subtle);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

/* Layout Components */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-2xl) 0;
}

.section--sm {
    padding: var(--spacing-lg) 0;
}

/* Header Styles */
.site-header {
    background: var(--gradient-primary);
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(145deg, 
        rgba(244, 162, 97, 0.08) 0%, 
        rgba(231, 111, 81, 0.05) 50%, 
        transparent 100%);
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg) 0;
}

.site-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.site-title a {
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.site-title a:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

.site-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
}

/* Navigation */
.main-navigation {
    background: rgba(45, 27, 78, 0.92);
    backdrop-filter: blur(12px);
    border-top: 2px solid var(--warm-gold);
    position: sticky;
    top: 0;
    transition: var(--transition);
    z-index: 1001;
    box-shadow: 0 2px 20px rgba(45, 27, 78, 0.15);
}

.main-navigation .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    padding: var(--spacing-sm);
    cursor: pointer;
    z-index: 1002;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: var(--warm-white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hamburger animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Enhanced styling when sticky behavior is active */
.main-navigation.is-stuck {
    background: rgba(45, 27, 78, 0.96);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(45, 27, 78, 0.25), 0 2px 10px rgba(244, 162, 97, 0.1);
    border-top: 3px solid var(--warm-gold);
    border-bottom: 1px solid rgba(244, 162, 97, 0.2);
}

.main-navigation.is-stuck .nav-menu a {
    color: var(--warm-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.main-navigation.is-stuck .nav-menu a:hover {
    color: var(--warm-gold);
    background: rgba(244, 162, 97, 0.12);
    text-shadow: 0 0 12px rgba(244, 162, 97, 0.4);
}

/* Admin bar adjustments */
.admin-bar .main-navigation {
    top: 32px;
}

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

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Adjust for WordPress admin bar - using JavaScript calculation instead */

/* Navigation placeholder for smooth transition */
.nav-placeholder {
    background: transparent;
    transition: height 0.2s ease;
}

/* Ensure content doesn't jump when navigation becomes sticky */
.main-navigation.sticky + * {
    margin-top: 0;
}

/* Removed duplicate rule - consolidated above */

.main-navigation::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-gold) 20%, 
        var(--accent-light) 80%, 
        transparent 100%);
    opacity: 0.6;
}

.nav-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    gap: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: flex;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.1), 
        transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-light));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.08);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover::after {
    width: 85%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(145deg, 
        var(--primary-dark) 0%, 
        var(--secondary-dark) 30%, 
        #2c2c2c 70%, 
        var(--secondary-dark) 100%);
    color: var(--white);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    z-index: 1; /* Lower than sticky navigation */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white));
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, 
        var(--white) 0%, 
        var(--accent-gold) 50%, 
        var(--white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-light) 100%);
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 2px solid transparent;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-gold) 100%);
    border-color: var(--accent-gold);
}

/* Main Content */
.site-main {
    min-height: 70vh;
}

/* Product Grid */
.products-section {
    padding: var(--spacing-2xl) 0;
}

/* Shop page specific styling (no hero section) */
.shop-products {
    padding-top: var(--spacing-xl);
    margin-top: 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* WooCommerce Styles */
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    border: none;
    border-left: 4px solid var(--accent-gold);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius);
    margin: var(--spacing-md) 0;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    color: var(--text-dark);
}

.woocommerce .products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin: 0;
    padding: 0;
    max-width: var(--max-width);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .woocommerce .products {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1024px) {
    .woocommerce .products {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1400px) {
    .woocommerce .products {
        grid-template-columns: repeat(4, 1fr);
    }
}

.woocommerce .product {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.woocommerce .product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.02) 50%, 
        transparent 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 1;
}

.woocommerce .product:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

.woocommerce .product:hover::before {
    opacity: 1;
}

.woocommerce .product img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .woocommerce .product img {
        height: 260px;
    }
}

@media (min-width: 1024px) {
    .woocommerce .product img {
        height: 280px;
    }
}

.woocommerce .product:hover img {
    transform: scale(1.05);
    filter: brightness(1.05) contrast(1.05);
}

.woocommerce .product-content {
    padding: var(--spacing-lg) var(--spacing-lg) var(--spacing-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 3;
    min-height: 140px;
}

.woocommerce .product .woocommerce-loop-product__title,
.woocommerce .product h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 0 var(--spacing-xs);
    line-height: 1.4;
    transition: var(--transition);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.woocommerce .product:hover h2 {
    color: var(--accent-gold);
}

.woocommerce .price {
    font-size: 1.4rem;
    color: var(--vibrant-coral);
    font-weight: 700;
    margin: var(--spacing-xs) 0 var(--spacing-md);
    font-family: var(--font-body);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.woocommerce .price del {
    color: var(--text-light);
    font-size: 1.2rem;
    opacity: 0.7;
    margin-right: var(--spacing-xs);
}

.woocommerce .button,
.woocommerce input.button,
.woocommerce a.button {
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--deep-teal) 100%);
    color: var(--warm-white);
    border: 2px solid transparent;
    border-radius: var(--border-radius);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
    box-shadow: var(--shadow-md);
    margin-top: auto;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.woocommerce .button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.woocommerce .button:hover::before {
    width: 300px;
    height: 300px;
}

.woocommerce .button:hover {
    background: linear-gradient(135deg, var(--warm-gold) 0%, var(--vibrant-coral) 100%);
    color: var(--deep-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--warm-gold);
}

/* Single Product Page */
.woocommerce div.product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin: var(--spacing-lg) 0;
}

.woocommerce div.product .woocommerce-product-gallery {
    position: relative;
    overflow: hidden;
}

.woocommerce div.product .woocommerce-product-gallery img {
    width: 100%;
    height: auto;
    border-radius: 0;
    transition: var(--transition);
}

.woocommerce div.product .summary {
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.woocommerce div.product .product_title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
    line-height: 1.2;
}

.woocommerce div.product .price {
    font-size: 2rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
}

.woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

/* Custom Product Fields */
.custom-product-fields {
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--medium-gray) 100%);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-gold);
    box-shadow: var(--shadow-sm);
}

.custom-product-fields h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.custom-product-fields p {
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.custom-product-fields strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: linear-gradient(145deg, 
        var(--primary-dark) 0%, 
        var(--secondary-dark) 50%, 
        var(--primary-dark) 100%);
    color: var(--white);
    padding: var(--spacing-2xl) 0;
    margin-top: var(--spacing-2xl);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--accent-gold) 20%, 
        var(--accent-light) 50%, 
        var(--accent-gold) 80%, 
        transparent 100%);
    box-shadow: 0 1px 10px rgba(212, 175, 55, 0.3);
}

.site-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-content p {
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.6;
}

.footer-content p:first-child {
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 1;
}

.footer-content a {
    color: var(--accent-gold);
    transition: var(--transition);
}

.footer-content a:hover {
    color: var(--accent-light);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    :root {
        --spacing-2xl: 4rem;
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .woocommerce .products {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: var(--spacing-md) 0;
        text-align: center;
    }
    
    .site-title {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .site-description {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }
    
    /* Show hamburger menu */
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Hide navigation by default on mobile */
    .nav-menu-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(45, 27, 78, 0.98);
        backdrop-filter: blur(15px);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        max-height: 0;
        overflow: hidden;
    }
    
    /* Show navigation when active */
    .nav-menu-wrapper.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        max-height: 400px;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: var(--spacing-md) 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        padding: var(--spacing-md) var(--spacing-lg);
        width: 100%;
        text-align: center;
        justify-content: center;
        min-height: 44px; /* Touch target size */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1rem;
        color: var(--warm-white);
    }
    
    .nav-menu a:hover {
        background: rgba(244, 162, 97, 0.2);
        color: var(--warm-gold);
    }
    
    /* Remove border from last item */
    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    /* Enhanced mobile sticky navigation */
    .main-navigation.is-stuck {
        background: rgba(45, 27, 78, 0.99);
    }
    
    .main-navigation.is-stuck .hamburger-line {
        background: var(--warm-gold);
    }
    
    .hero-section {
        padding: var(--spacing-xl) 0;
        min-height: 50vh;
    }
    
    .woocommerce .products {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .woocommerce div.product {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .woocommerce div.product .summary {
        padding: var(--spacing-lg);
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-2xl: 3rem;
        --spacing-xl: 2rem;
        --spacing-lg: 1.5rem;
    }
    
    .site-title {
        font-size: 2rem;
        letter-spacing: -0.01em;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }
    
    .woocommerce .product img {
        height: 220px;
    }
    
    .woocommerce .product-content {
        padding: var(--spacing-md);
    }
}