/* CartGenix - Complete Stylesheet */

:root {
    --primary: #0F62FE;
    --primary-hover: #0043CE;
    --secondary: #24A148;
    --secondary-hover: #1E8E3E;
    --text-main: #161616;
    --text-muted: #525252;
    --text-light: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-gray: #F8FAFC;
    --bg-dark: #0F172A;
    --border-light: #E5E7EB;
    --border-dark: #334155;
    --warning: #FFBC2B;
    --error: #DA1E28;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 768px) { .container { padding: 0 1.5rem; } }

.text-primary { color: var(--primary); }
.text-success { color: var(--secondary); }

/* SVG Icon Base */
.icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 24px; height: 24px; }
.icon-xl { width: 32px; height: 32px; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; font-size: 1rem; font-weight: 600;
    border-radius: var(--radius-full); transition: all 0.2s ease; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(15, 98, 254, 0.35); }
.btn-success { background: var(--secondary); color: white; }
.btn-success:hover { background: var(--secondary-hover); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: var(--bg-gray); }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-full { width: 100%; }

.icon-btn {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-full); transition: background 0.2s ease;
}
.icon-btn:hover { background: var(--bg-gray); }
.icon-btn .icon { color: var(--text-muted); }

/* Navbar */
.navbar {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
}
.navbar-content { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 768px) { .navbar-content { height: 80px; } }

.logo { display: flex; align-items: center; gap: 0.5rem; }
.logo-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
}
.logo-icon .icon { width: 24px; height: 24px; color: white; stroke: white; }
.logo-text { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; color: var(--text-main); }
@media (max-width: 639px) { .logo-text { display: none; } }

.nav-desktop { display: none; gap: 2rem; }
@media (min-width: 768px) { .nav-desktop { display: flex; } }
.nav-link { font-weight: 500; color: var(--text-muted); transition: color 0.2s ease; }
.nav-link:hover, .nav-link.active { color: var(--primary); }

.nav-icons { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) { .nav-icons { gap: 1rem; } }

.cart-btn { position: relative; }
.cart-badge {
    position: absolute; top: -4px; right: -4px; width: 20px; height: 20px;
    background: var(--primary); color: white; font-size: 0.75rem; font-weight: 600;
    border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center;
}

.mobile-menu-btn { display: flex; }
@media (min-width: 768px) { .mobile-menu-btn { display: none; } }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; z-index: 200; visibility: hidden; opacity: 0; transition: all 0.3s ease; }
.mobile-menu.active { visibility: visible; opacity: 1; }
.mobile-menu-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.5); }
.mobile-menu-content {
    position: absolute; left: 0; top: 0; bottom: 0; width: 280px; background: white;
    transform: translateX(-100%); transition: transform 0.3s ease; padding: 1.5rem;
}
.mobile-menu.active .mobile-menu-content { transform: translateX(0); }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; }
.mobile-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav-link { padding: 0.75rem 0; border-bottom: 1px solid var(--border-light); font-weight: 500; color: var(--text-muted); display: block; }
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--primary); }

/* Hero Section */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0.3) 100%); }
.hero-content { position: relative; z-index: 10; max-width: 640px; }
.hero-badge { display: inline-block; padding: 0.5rem 1rem; background: rgba(36, 161, 72, 0.1); color: var(--secondary); font-size: 0.875rem; font-weight: 600; border-radius: var(--radius-full); margin-bottom: 1.5rem; }
.hero-title { font-size: 2.5rem; line-height: 1.1; margin-bottom: 1rem; }
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }
.hero-subtitle { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; }
.trust-item { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(15, 98, 254, 0.05); border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; color: var(--text-muted); }
.trust-item .icon { color: var(--secondary); stroke: var(--secondary); }

/* Sections */
.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }
.section-gray { background: var(--bg-gray); }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label { display: block; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.section-title { font-size: 1.875rem; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .section-title { font-size: 2.5rem; } }
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* Category Grid */
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(5, 1fr); } }
.category-card { position: relative; aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; display: block; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.category-card:hover img { transform: scale(1.1); }
.category-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem; }
.category-icon { width: 40px; height: 40px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; margin-bottom: 0.75rem; }
.category-icon .icon { color: white; stroke: white; }
.category-overlay h3 { color: white; font-size: 1rem; font-weight: 600; line-height: 1.3; }
.category-link { color: rgba(255, 255, 255, 0.8); font-size: 0.875rem; margin-top: 0.5rem; opacity: 0; transition: opacity 0.3s ease; }
.category-card:hover .category-link { opacity: 1; }

/* Products Grid */
.products-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

/* Product Card */
.product-card { background: white; border: 1px solid var(--border-light); border-radius: var(--radius-xl); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-image { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg-gray); display: block; }
.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-badge { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.25rem 0.75rem; font-size: 0.75rem; font-weight: 600; border-radius: var(--radius-sm); color: white; }
.badge-bestseller { background: linear-gradient(135deg, #FF6B6B, #FF8E53); }
.badge-popular { background: linear-gradient(135deg, var(--secondary), #3DD662); }
.badge-new { background: linear-gradient(135deg, var(--primary), #4F8DFF); }
.badge-value { background: var(--text-muted); }
.discount-badge { position: absolute; top: 0.75rem; right: 0.75rem; padding: 0.25rem 0.5rem; background: var(--secondary); color: white; font-size: 0.75rem; font-weight: 600; border-radius: var(--radius-sm); }
.product-info { padding: 1rem; }
.product-benefit { color: var(--primary); font-size: 0.875rem; font-weight: 500; margin-bottom: 0.25rem; }
.product-name { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-name a { color: inherit; }
.product-name a:hover { color: var(--primary); }
.product-rating { display: flex; align-items: center; gap: 0.25rem; margin-bottom: 0.75rem; }
.product-rating .icon { width: 14px; height: 14px; }
.star-filled { fill: var(--warning); color: var(--warning); stroke: var(--warning); }
.star-empty { color: #E5E7EB; stroke: #E5E7EB; }
.product-rating span { font-size: 0.75rem; color: var(--text-muted); margin-left: 0.25rem; }
.product-price { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.price-current { font-size: 1.25rem; font-weight: 700; color: var(--secondary); }
.price-original { font-size: 0.875rem; color: var(--text-muted); text-decoration: line-through; }
.product-cod { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 1rem; }
.product-cod .icon { color: var(--secondary); stroke: var(--secondary); }
.add-to-cart-btn { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.75rem; background: var(--primary); color: white; font-weight: 500; border-radius: var(--radius-full); transition: all 0.2s ease; }
.add-to-cart-btn:hover { background: var(--primary-hover); transform: translateY(-2px); }
.add-to-cart-btn .icon { stroke: white; }

/* Problem Solution Strip */
.problem-solution-scroll { display: flex; gap: 1rem; overflow-x: auto; padding: 1rem 0; scrollbar-width: none; }
.problem-solution-scroll::-webkit-scrollbar { display: none; }
.comparison-item { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; min-width: 320px; }
.problem-card, .solution-card { flex: 1; display: flex; align-items: center; gap: 0.75rem; padding: 1rem; border-radius: var(--radius-lg); }
.problem-card { background: #FEF2F2; border: 1px solid #FECACA; }
.solution-card { background: #F0FDF4; border: 1px solid #BBF7D0; }
.problem-icon, .solution-icon { width: 32px; height: 32px; border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.problem-icon { background: #FEE2E2; }
.problem-icon .icon { color: #DC2626; stroke: #DC2626; }
.solution-icon { background: #DCFCE7; }
.solution-icon .icon { color: var(--secondary); stroke: var(--secondary); }
.problem-card span { font-size: 0.875rem; font-weight: 500; color: #B91C1C; }
.solution-card span { font-size: 0.875rem; font-weight: 500; color: #15803D; }
.comparison-arrow { color: var(--text-light); stroke: var(--text-light); }

/* Trust Badges Grid */
.trust-badges-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (min-width: 768px) { .trust-badges-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .trust-badges-grid { grid-template-columns: repeat(5, 1fr); } }
.trust-badge-card { background: white; padding: 1.5rem; border-radius: var(--radius-xl); border: 1px solid var(--border-light); text-align: center; transition: box-shadow 0.3s ease; }
.trust-badge-card:hover { box-shadow: var(--shadow-md); }
.trust-badge-icon { width: 48px; height: 48px; margin: 0 auto 1rem; background: linear-gradient(135deg, var(--bg-gray), #E8F0FE); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; }
.trust-badge-icon .icon { width: 24px; height: 24px; color: var(--primary); stroke: var(--primary); }
.trust-badge-card h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.trust-badge-card p { font-size: 0.875rem; color: var(--text-muted); }

/* Reviews Grid */
.reviews-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(4, 1fr); } }
.review-card { background: white; padding: 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.review-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.review-stars .icon { width: 16px; height: 16px; }
.review-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid var(--border-light); }
.author-avatar { width: 40px; height: 40px; background: rgba(15, 98, 254, 0.1); color: var(--primary); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; font-weight: 600; }
.review-author h5 { font-size: 0.875rem; font-weight: 600; }
.review-author span { font-size: 0.75rem; color: var(--text-muted); }

/* Offer Banner */
.offer-banner { background: linear-gradient(135deg, var(--primary), var(--primary-hover)); color: white; border-radius: var(--radius-xl); padding: 3rem 2rem; text-align: center; position: relative; overflow: hidden; }
.offer-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.2); padding: 0.5rem 1rem; border-radius: var(--radius-full); font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.offer-badge .icon { stroke: white; }
.offer-banner h2 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.offer-banner p { font-size: 1.125rem; opacity: 0.9; margin-bottom: 2rem; }

/* Lead Capture */
.lead-capture { background: linear-gradient(135deg, var(--bg-gray), #EFF6FF); border-radius: var(--radius-xl); padding: 3rem 2rem; text-align: center; max-width: 640px; margin: 0 auto; }
.lead-icon { width: 64px; height: 64px; background: rgba(15, 98, 254, 0.1); border-radius: var(--radius-full); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.lead-icon .icon { color: var(--primary); stroke: var(--primary); }
.lead-capture h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.lead-capture > p { color: var(--text-muted); margin-bottom: 2rem; }
.lead-form-inner { display: flex; flex-direction: column; gap: 0.75rem; max-width: 400px; margin: 0 auto; }
@media (min-width: 640px) { .lead-form-inner { flex-direction: row; } }
.input-wrapper { flex: 1; position: relative; }
.input-wrapper .icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--text-light); stroke: var(--text-light); }
.input-wrapper input { width: 100%; padding: 0.875rem 1rem 0.875rem 3rem; border: 1px solid var(--border-light); border-radius: var(--radius-full); font-size: 1rem; outline: none; }
.input-wrapper input:focus { border-color: var(--primary); }
.lead-success { padding: 2rem; background: rgba(36, 161, 72, 0.1); border-radius: var(--radius-xl); }
.lead-success h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.lead-success p { color: var(--text-muted); margin-bottom: 1.5rem; }

/* Footer */
.footer { background: var(--bg-dark); color: var(--text-light); padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; } }
.footer-brand { grid-column: span 2; }
@media (min-width: 768px) { .footer-brand { grid-column: span 1; } }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: white; display: block; }
.footer-brand p { font-size: 0.875rem; margin-bottom: 1rem; }
.footer-links h4, .footer-contact h4 { color: white; font-size: 1rem; margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; transition: color 0.2s ease; }
.footer-links a:hover { color: white; }
.footer-contact ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; }
.footer-contact .icon { margin-top: 2px; flex-shrink: 0; stroke: var(--text-light); }
.footer-bottom { display: flex; flex-direction: column; align-items: center; gap: 1rem; padding: 2rem 0; border-top: 1px solid var(--border-dark); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.875rem; opacity: 0.7; }

/* Sticky Bottom Bar */
.sticky-bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--primary); color: white; padding: 0.875rem 1rem; display: flex; align-items: center; justify-content: space-between; z-index: 50; box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15); }
@media (min-width: 769px) { .sticky-bottom-bar { display: none; } }
.sticky-left { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; }
.sticky-left .icon { stroke: white; }

@media (max-width: 768px) { main { padding-bottom: 70px; } }

/* Page Header */
.page-header { background: var(--bg-gray); padding: 3rem 0; }
.page-header h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }

/* Cart Page */
.cart-container { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .cart-container { grid-template-columns: 1fr 400px; } }
.cart-items-list { background: white; border: 1px solid var(--border-light); border-radius: var(--radius-xl); overflow: hidden; }
.cart-item { display: flex; gap: 1rem; padding: 1.5rem; border-bottom: 1px solid var(--border-light); }
.cart-item:last-child { border-bottom: none; }
.cart-item-image { width: 100px; height: 100px; border-radius: var(--radius-md); object-fit: cover; flex-shrink: 0; }
.cart-item-details { flex: 1; }
.cart-item-name { font-weight: 600; margin-bottom: 0.25rem; }
.cart-item-price { color: var(--secondary); font-weight: 600; }
.cart-item-actions { display: flex; align-items: center; gap: 1rem; margin-top: 0.75rem; }
.qty-controls { display: flex; align-items: center; border: 1px solid var(--border-light); border-radius: var(--radius-full); }
.qty-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.qty-btn:hover { background: var(--bg-gray); }
.qty-controls span { width: 40px; text-align: center; font-weight: 500; }
.remove-btn { color: var(--error); font-size: 0.875rem; }
.remove-btn:hover { text-decoration: underline; }
.cart-empty-state { padding: 4rem 2rem; text-align: center; }
.cart-empty-state h2 { margin-bottom: 0.5rem; }
.cart-empty-state p { color: var(--text-muted); margin-bottom: 1.5rem; }

.cart-summary-card { background: white; border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 1.5rem; height: fit-content; position: sticky; top: 100px; }
.cart-summary-card h3 { margin-bottom: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid var(--border-light); }
.summary-row:last-of-type { border-bottom: none; }
.summary-row.total { font-size: 1.25rem; font-weight: 700; padding-top: 1rem; margin-top: 0.5rem; border-top: 2px solid var(--border-light); }
.summary-row.total span:last-child { color: var(--primary); }
.summary-row.discount { color: var(--secondary); }
.promo-note { background: rgba(36, 161, 72, 0.1); color: #15803D; padding: 0.75rem; border-radius: var(--radius-md); font-size: 0.875rem; margin: 1rem 0; text-align: center; }
.checkout-btn { margin-top: 1rem; }

/* Product Detail Page */
.product-detail { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .product-detail { grid-template-columns: 1fr 1fr; } }
.product-gallery { position: sticky; top: 100px; }
.product-main-image { aspect-ratio: 1; border-radius: var(--radius-xl); overflow: hidden; background: var(--bg-gray); margin-bottom: 1rem; }
.product-main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-thumbnails { display: flex; gap: 0.75rem; }
.thumbnail { width: 80px; height: 80px; border-radius: var(--radius-md); overflow: hidden; cursor: pointer; border: 2px solid transparent; }
.thumbnail.active { border-color: var(--primary); }
.thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.product-details h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.product-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.product-details .product-price { font-size: 1.5rem; margin-bottom: 1.5rem; }
.product-description { color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; }
.product-features { margin-bottom: 2rem; }
.product-features h3 { margin-bottom: 1rem; }
.product-features ul { display: flex; flex-direction: column; gap: 0.5rem; }
.product-features li { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); }
.product-features .icon { color: var(--secondary); stroke: var(--secondary); }
.add-to-cart-section { display: flex; gap: 1rem; flex-wrap: wrap; }
.add-to-cart-section .qty-controls { height: 48px; }
.add-to-cart-section .qty-controls .qty-btn { width: 48px; height: 46px; }
.add-to-cart-section .qty-controls span { width: 48px; font-size: 1.125rem; }

/* About & Contact Pages */
.content-page { max-width: 800px; margin: 0 auto; }
.content-page h2 { margin-top: 2rem; margin-bottom: 1rem; }
.content-page p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-form { background: white; padding: 2rem; border-radius: var(--radius-xl); border: 1px solid var(--border-light); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 500; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea { width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border-light); border-radius: var(--radius-md); font-size: 1rem; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.form-group textarea { min-height: 150px; resize: vertical; }
.contact-info-card { background: var(--bg-gray); padding: 2rem; border-radius: var(--radius-xl); }
.contact-info-card h3 { margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item .icon { color: var(--primary); stroke: var(--primary); flex-shrink: 0; margin-top: 2px; }
.contact-info-item h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.contact-info-item p { color: var(--text-muted); font-size: 0.875rem; }

/* Filters */
.shop-layout { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .shop-layout { grid-template-columns: 250px 1fr; } }
.filters-sidebar { background: white; padding: 1.5rem; border-radius: var(--radius-xl); border: 1px solid var(--border-light); height: fit-content; position: sticky; top: 100px; }
.filter-group { margin-bottom: 1.5rem; }
.filter-group h4 { margin-bottom: 0.75rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; }
.filter-option { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0; cursor: pointer; }
.filter-option input { width: 18px; height: 18px; accent-color: var(--primary); }
.shop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.results-count { color: var(--text-muted); }
.sort-select { padding: 0.5rem 1rem; border: 1px solid var(--border-light); border-radius: var(--radius-md); background: white; }

/* Policy Pages */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { margin-top: 2rem; margin-bottom: 1rem; font-size: 1.5rem; }
.policy-content h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1.25rem; }
.policy-content p, .policy-content li { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; }
.policy-content ul { padding-left: 1.5rem; list-style: disc; }
.policy-content ul li { margin-bottom: 0.5rem; }
