/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

/* CSS Variables - Premium Light Modern Theme */
:root {
    overflow-x: hidden;
    /* Colors */
    --primary: #7A3B18; /* Rich Saddle Brown */
    --primary-light: #A55526;
    --secondary: #D4A373; /* Tan/Camel */
    --accent: #E9C46A; /* Soft Gold */
    
    --bg-main: #FAF9F6; /* Off-white/Pearl */
    --bg-surface: #FFFFFF;
    --bg-alt: #F3EFE9; /* Very light beige */
    
    --text-dark: #2C2C2C; /* Dark Charcoal */
    --text-gray: #6B6B6B;
    --text-light: #9CA3AF;
    
    --border-color: rgba(0,0,0,0.08);
    --success: #10B981;
    --danger: #EF4444;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 30px rgba(0,0,0,0.12);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: 36px;
    margin-bottom: 16px;
}
@media (max-width: 768px) { h2 { font-size: 28px; } }

.section-header {
    margin-bottom: 50px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 600px;
}

.section-header.text-center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.section-header.text-center p {
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-surface);
    box-shadow: 0 4px 12px rgba(122, 59, 24, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(122, 59, 24, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-surface);
}

/* Glassmorphism Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 59px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--primary);
}

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

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-link {
    position: relative;
    font-size: 22px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-link:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.badge-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--danger);
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid var(--bg-surface);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    z-index: 1001;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    right: 0;
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: var(--bg-surface);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition-slow);
}

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

.mobile-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    margin-bottom: 40px;
    color: var(--text-gray);
}

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

.mobile-nav a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

/* Tooltip */
.tooltip-wrap {
    position: relative;
}
.tooltip-wrap::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--text-dark);
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}
.tooltip-wrap:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Modern Hero Section */
.hero-modern {
    position: relative;
    padding: 160px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, #F5EDE4 0%, var(--bg-main) 100%);
}

.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}
.shape-1 { width: 400px; height: 400px; background: var(--secondary); top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: var(--accent); bottom: 100px; left: -100px; }
.shape-3 { width: 250px; height: 250px; background: #D9A05B; top: 30%; left: 20%; opacity: 0.3; }

.hero-container-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-content-modern {
    flex: 1;
    max-width: 550px;
}

.hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: var(--primary);
    background: rgba(122, 59, 24, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item h4 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-image-modern {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-showcase {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.img-backdrop {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: var(--primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: morphing 15s ease-in-out infinite;
}

@keyframes morphing {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.hero-main-img {
    position: relative;
    z-index: 2;
    width: 100%;
    mix-blend-mode: multiply;
    filter: drop-shadow(10px 20px 20px rgba(0,0,0,0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--bg-surface);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: float 6s ease-in-out infinite;
    animation-delay: 1s;
}

.floating-badge i {
    color: #F59E0B;
    font-size: 20px;
}

.floating-badge span {
    font-weight: 700;
    font-size: 14px;
}

/* Categories Section */
.categories {
    padding: 80px 0;
    background: var(--bg-surface);
}

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

.category-card {
    background: var(--bg-alt);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
}

.category-card:hover {
    background: var(--bg-surface);
    border-color: var(--border-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.category-img {
    width: 80px;
    height: 80px;
    background: var(--bg-surface);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-shadow: var(--shadow-sm);
}

.category-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition);
}

.category-card:hover .category-img img {
    transform: scale(1.1) rotate(5deg);
}

.category-content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.category-content span {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.category-card:hover .category-content span i {
    transform: translateX(5px);
}

.highlight-cat {
    background: var(--primary);
    color: white;
}

.highlight-cat:hover {
    background: var(--primary-light);
}

.highlight-cat h3 {
    color: white;
}
.highlight-cat span {
    color: var(--accent);
}
.highlight-cat .category-img {
    background: rgba(255,255,255,0.2);
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
}

.wcu-grid {
    display: flex;
    align-items: center;
    gap: 60px;
}

.wcu-image {
    flex: 1;
    position: relative;
}

.wcu-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--secondary);
    color: white;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    border: 8px solid var(--bg-main);
}

.experience-badge .number {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
}

.wcu-text {
    flex: 1;
}

.sub-heading {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.wcu-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.wcu-text p {
    color: var(--text-gray);
    font-size: 16px;
    margin-bottom: 30px;
}

.wcu-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.wcu-list i {
    color: var(--success);
    font-size: 28px;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--bg-surface);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: inherit;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.product-card-modern {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    group: hover;
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

.product-badge.discount { background: var(--danger); color: white; }
.product-badge.new { background: var(--success); color: white; }
.product-badge.special { background: var(--accent); color: var(--text-dark); }

.product-img-box {
    position: relative;
    height: 250px;
    background: var(--bg-alt);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    overflow: hidden;
}

.product-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition-slow);
}

.product-card-modern:hover .product-img-box img {
    transform: scale(1.1);
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    opacity: 0;
}

.product-card-modern:hover .product-actions {
    bottom: 20px;
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: none;
    color: var(--text-dark);
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.product-info-modern {
    padding: 20px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #F59E0B;
    font-size: 14px;
    margin-bottom: 10px;
}

.rating span {
    color: var(--text-gray);
    font-size: 12px;
    margin-left: 5px;
}

.product-info-modern h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-info-modern h3 a {
    color: var(--text-dark);
}
.product-info-modern h3 a:hover {
    color: var(--primary);
}

.price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-new {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
}

.price-old {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.view-all-wrap {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.testimonial-card {
    background: var(--bg-surface);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-card .stars {
    color: #F59E0B;
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
}

.customer-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.customer-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* Newsletter CTA */
.newsletter-cta {
    padding: 80px 0;
}

.cta-inner {
    background: var(--primary);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-text h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-text p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
}

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 16px;
}

.newsletter-form .btn {
    background: var(--accent);
    color: var(--text-dark);
}
.newsletter-form .btn:hover {
    background: #e0b85a;
}

/* Footer */
.footer-modern {
    background: #1F2937;
    color: #F9FAFB;
    padding: 80px 0 30px;
}

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

.footer-logo {
    color: white;
    margin-bottom: 20px;
}

.brand-col p {
    color: #9CA3AF;
    margin-bottom: 25px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: white;
}

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

.footer-col h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-col ul a {
    color: #9CA3AF;
}

.footer-col ul a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #9CA3AF;
}

.contact-list i {
    font-size: 20px;
    color: var(--primary);
}

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

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 24px;
}

.floating-price {
    position: absolute;
    top: 30px;
    left: -30px;
    background: var(--bg-surface);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    flex-direction: column;
    animation: float 5s ease-in-out infinite;
    animation-delay: 0.5s;
    border-left: 4px solid var(--primary);
}

.floating-price .price-label {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-price .price-value {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

/* Scroll Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}
.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease-out;
}
.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease-out;
}
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .hero-title { font-size: 46px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    
    /* Keep cart visible on mobile, hide others */
    .header-icons .icon-link:not(:last-child) { display: none; }
    .header-icons { margin-right: 15px; }
    
    .mobile-toggle { display: block; }
    
    /* Fix new pages responsiveness */
    .shop-layout { flex-direction: column; }
    .shop-sidebar { width: 100% !important; margin-bottom: 20px; }
    #checkout-form { flex-direction: column; }
    .product-gallery { width: 100% !important; }
    
    .hero-container-modern {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 60px;
    }
    
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    
    .category-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    
    .wcu-grid {
        flex-direction: column;
    }
    
    .experience-badge {
        right: 0;
        bottom: 0;
    }
    
    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .product-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
