:root {
    --purple: #482A54;
    --purple-dark: #3D224C;
    --purple-light: #5a3568;
    --gold: #C4A462;
    --gold-light: #d4b872;
    --white: #ffffff;
    --gray-bg: #f8f6f9;
    --gray-light: #f0edf2;
    --text-dark: #2d2d2d;
    --text-muted: #666666;
}

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

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

h1, h2, h3, h4, .heading-serif {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--purple);
    color: var(--white);
    font-size: 12px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar i {
    color: var(--gold);
}

.top-bar a {
    color: var(--white);
}

.top-bar a:hover {
    color: var(--gold);
}

/* Header */
.main-header {
    background: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 4px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 4px;
}

.logo-tagline {
    font-size: 9px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.main-nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 4px;
}

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

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--purple);
}

.main-nav .dropdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.header-icons a {
    font-size: 18px;
    color: var(--text-dark);
    position: relative;
}

.header-icons a:hover {
    color: var(--purple);
}

.header-wishlist, .header-icons a {
    position: relative;
}

.wishlist-badge, .cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--purple);
    color: var(--white);
    font-size: 10px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--purple);
}

/* Hero Slider */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
    max-width: 550px;
}

.hero-subtitle {
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-title {
    font-size: 48px;
    color: var(--purple);
    line-height: 1.15;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-desc {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-style: italic;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--purple);
    color: var(--white);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: var(--purple-dark);
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--purple);
    transition: all 0.3s ease;
}

.hero-nav:hover {
    background: var(--purple);
    color: var(--white);
}

.hero-nav.prev { left: 20px; }
.hero-nav.next { right: 20px; }

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots span.active {
    background: var(--purple);
    width: 28px;
    border-radius: 5px;
}

/* Value Props */
.value-props {
    background: var(--gray-bg);
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.value-props-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.value-prop {
    text-align: center;
    padding: 10px;
}

.value-prop-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 24px;
}

.value-prop h4 {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--purple);
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.value-prop p {
    font-size: 11px;
    color: var(--text-muted);
}

/* Section Title */
.section-title {
    text-align: center;
    padding: 50px 0 35px;
}

.section-title h2 {
    font-size: 28px;
    color: var(--purple);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.section-title .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 12px;
}

.section-title .divider::before,
.section-title .divider::after {
    content: '';
    width: 60px;
    height: 1px;
    background: var(--gold);
}

.section-title .divider i {
    color: var(--gold);
    font-size: 12px;
}

/* Categories */
.categories-section {
    padding-bottom: 50px;
}

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

.category-card {
    text-align: center;
    background: var(--gray-light);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(72,42,84,0.1);
}

.category-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    margin-bottom: 16px;
    background: #fff;
}

.category-card h3 {
    font-size: 18px;
    color: var(--purple);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.category-link {
    color: var(--purple);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-link:hover {
    color: var(--gold);
}

/* Products */
.products-section {
    background: var(--gray-bg);
    padding-bottom: 50px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--white);
    position: relative;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.product-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    color: #e74c3c;
}

.product-info {
    padding: 14px;
    text-align: center;
}

.product-info h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

.product-price {
    color: var(--purple);
    font-weight: 700;
    font-size: 15px;
}

.product-actions {
    display: flex;
    border-top: 1px solid #eee;
}

.product-actions button {
    flex: 1;
    padding: 10px;
    border: none;
    background: var(--white);
    cursor: pointer;
    font-size: 14px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.product-actions button:last-child {
    background: var(--purple);
    color: var(--white);
}

.product-actions button:hover {
    background: var(--gray-light);
}

.product-actions button:last-child:hover {
    background: var(--purple-dark);
}

/* Promo Banner */
.promo-banner {
    background: var(--purple);
    color: var(--white);
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.promo-item {
    text-align: center;
    padding: 15px 30px;
    border-right: 1px dashed rgba(255,255,255,0.3);
}

.promo-item:last-child {
    border-right: none;
}

.promo-item i {
    color: var(--gold);
    font-size: 24px;
    margin-bottom: 10px;
}

.promo-item h4 {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.promo-item p {
    font-size: 11px;
    opacity: 0.85;
}

.promo-item .highlight {
    color: var(--gold);
    font-size: 16px;
    font-weight: 700;
}

/* Testimonials */
.testimonials-section {
    padding: 50px 0 60px;
}

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

.testimonial-card {
    background: var(--gray-light);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
}

.testimonial-content {
    flex: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 8px;
}

.testimonial-text {
    font-style: italic;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 12px;
    font-weight: 600;
    color: var(--purple);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.testimonial-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
}

.testimonial-dots span.active {
    background: var(--purple);
}

/* Footer */
.main-footer {
    background: var(--purple-dark);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -50px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196,164,98,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-brand .logo-text {
    color: var(--gold);
    font-size: 28px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--purple-dark);
}

.footer-col h4 {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--gold);
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
    opacity: 0.85;
}

.contact-item i {
    color: var(--gold);
    width: 16px;
    margin-top: 3px;
}

.payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.payment-icons span {
    background: rgba(255,255,255,0.1);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 12px;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: var(--white);
    padding: 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-nav.active .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--purple);
}

.mobile-nav-links {
    margin-top: 40px;
}

.mobile-nav-links a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #eee;
    color: var(--text-dark);
}

.mobile-nav-links a:hover {
    color: var(--purple);
}

/* Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .value-props-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-center {
        display: none;
    }
    .main-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-title {
        font-size: 32px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .value-props-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .promo-grid {
        grid-template-columns: 1fr;
    }
    .promo-item {
        border-right: none;
        border-bottom: 1px dashed rgba(255,255,255,0.3);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 10px;
    }
    .hero-slide {
        min-height: 380px;
    }
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Layout */
.page-content { min-height: 60vh; padding-bottom: 60px; }
.page-hero { background: var(--purple); color: var(--white); padding: 40px 0; text-align: center; margin-bottom: 40px; }
.page-hero h1 { font-size: 32px; margin-bottom: 8px; }
.page-hero p { opacity: 0.85; font-size: 14px; }
.text-center { text-align: center; }

/* Wishlist badge */
.header-wishlist, .header-icons a { position: relative; }

/* Toast */
.toast-container { position: fixed; top: 20px; right: 20px; z-index: 10000; display: flex; flex-direction: column; gap: 8px; }
.toast { background: var(--white); padding: 14px 20px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); display: flex; align-items: center; gap: 10px; font-size: 13px; transform: translateX(120%); transition: transform 0.3s ease; border-left: 4px solid var(--purple); }
.toast.show { transform: translateX(0); }
.toast-success { border-left-color: #27ae60; }
.toast-success i { color: #27ae60; }
.toast-info { border-left-color: var(--gold); }
.toast-info i { color: var(--gold); }

/* Wishlist active */
.wishlist-btn.active i, .wishlist-btn.active { color: #e74c3c; }

/* Product actions fix */
.product-actions .quick-view-btn, .product-actions .add-cart-btn { flex: 1; padding: 10px; border: none; background: var(--white); cursor: pointer; font-size: 14px; color: var(--text-muted); transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; text-decoration: none; }
.product-actions .add-cart-btn { background: var(--purple); color: var(--white); }
.product-actions .add-cart-btn:hover { background: var(--purple-dark); }

/* Shop Page */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; padding-bottom: 60px; }
.shop-sidebar { background: var(--gray-bg); padding: 24px; border-radius: 8px; height: fit-content; position: sticky; top: 100px; }
.filter-group { margin-bottom: 24px; }
.filter-group h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--purple); margin-bottom: 12px; font-family: 'Montserrat', sans-serif; font-weight: 700; }
.filter-list { list-style: none; }
.filter-list li { margin-bottom: 6px; }
.filter-list a { font-size: 13px; color: var(--text-muted); display: block; padding: 6px 10px; border-radius: 4px; transition: all 0.2s; }
.filter-list a:hover, .filter-list a.active { background: var(--purple); color: var(--white); }
.filter-scroll { max-height: 300px; overflow-y: auto; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; gap: 16px; }
.shop-toolbar h2 { font-size: 24px; color: var(--purple); }
.shop-count { font-size: 13px; color: var(--text-muted); }
.shop-search { display: flex; border: 1px solid #ddd; border-radius: 4px; overflow: hidden; }
.shop-search input { border: none; padding: 10px 14px; font-size: 13px; outline: none; width: 220px; }
.shop-search button { background: var(--purple); color: var(--white); border: none; padding: 10px 16px; cursor: pointer; }
.shop-grid { grid-template-columns: repeat(4, 1fr); }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 40px; flex-wrap: wrap; }
.page-btn { padding: 8px 14px; border: 1px solid #ddd; border-radius: 4px; font-size: 13px; color: var(--text-dark); transition: all 0.2s; }
.page-btn:hover, .page-btn.active { background: var(--purple); color: var(--white); border-color: var(--purple); }
.page-dots { padding: 8px 4px; color: var(--text-muted); }

/* Product Detail */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; padding: 40px 0; }
.product-detail-image { background: var(--gray-bg); border-radius: 8px; overflow: hidden; }
.product-detail-image img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-detail-info h1 { font-size: 28px; color: var(--purple); margin-bottom: 12px; }
.product-detail-price { font-size: 24px; font-weight: 700; color: var(--purple); margin-bottom: 16px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; font-size: 13px; color: var(--text-muted); }
.product-meta i { color: var(--gold); margin-right: 4px; }
.product-desc { font-size: 14px; line-height: 1.8; margin-bottom: 24px; color: var(--text-muted); }
.qty-selector { margin-bottom: 24px; }
.qty-selector label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.qty-controls { display: inline-flex; align-items: center; border: 1px solid #ddd; border-radius: 4px; }
.qty-controls button { width: 36px; height: 36px; border: none; background: var(--gray-bg); cursor: pointer; font-size: 16px; }
.qty-controls input { width: 50px; text-align: center; border: none; font-size: 14px; outline: none; }
.qty-controls.small button { width: 28px; height: 28px; font-size: 12px; }
.qty-controls.small span { padding: 0 10px; font-size: 13px; }
.product-detail-actions { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--purple); border: 2px solid var(--purple); padding: 12px 28px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.3s; text-transform: uppercase; letter-spacing: 0.5px; }
.btn-outline:hover, .btn-outline.active { background: var(--purple); color: var(--white); }
.btn-block { display: block; width: 100%; text-align: center; margin-bottom: 10px; }
.product-features { display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--text-muted); }
.product-features i { color: var(--gold); width: 20px; }
.breadcrumb { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--purple); }
.related-section { background: var(--gray-bg); padding: 50px 0; }

/* Cart */
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 30px; padding-bottom: 60px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { text-align: left; padding: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); border-bottom: 2px solid #eee; }
.cart-table td { padding: 16px 12px; border-bottom: 1px solid #eee; vertical-align: middle; font-size: 14px; }
.cart-product { display: flex; align-items: center; gap: 14px; }
.cart-product img { width: 70px; height: 70px; object-fit: cover; border-radius: 4px; }
.cart-product a { font-weight: 600; color: var(--text-dark); }
.cart-product small { display: block; color: var(--text-muted); font-size: 11px; }
.cart-remove { background: none; border: none; color: #e74c3c; cursor: pointer; font-size: 14px; }
.cart-summary { background: var(--gray-bg); padding: 24px; border-radius: 8px; height: fit-content; position: sticky; top: 100px; }
.cart-summary h3 { font-size: 18px; color: var(--purple); margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; }
.summary-row.total { border-top: 2px solid #ddd; margin-top: 12px; padding-top: 16px; font-weight: 700; font-size: 16px; color: var(--purple); }
.shipping-note { font-size: 12px; color: var(--gold); margin: 8px 0; }

/* Empty State */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state i { font-size: 48px; color: var(--purple); opacity: 0.3; margin-bottom: 16px; }
.empty-state h2 { font-size: 22px; color: var(--purple); margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: 24px; }

/* Content Pages */
.content-page { padding-bottom: 60px; max-width: 900px; }
.content-page h2 { font-size: 24px; color: var(--purple); margin: 24px 0 12px; }
.content-page h3 { font-size: 18px; color: var(--purple); margin: 20px 0 10px; }
.content-page p { font-size: 14px; line-height: 1.8; color: var(--text-muted); margin-bottom: 12px; }
.content-page ul { margin: 12px 0 12px 20px; }
.content-page li { font-size: 14px; line-height: 1.8; color: var(--text-muted); margin-bottom: 6px; }
.content-list { list-style: none; margin-left: 0 !important; }
.content-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; }
.content-list i { color: var(--gold); width: 20px; }
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: center; }
.about-image img { border-radius: 8px; max-width: 280px; margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.info-card { background: var(--gray-bg); padding: 24px; border-radius: 8px; text-align: center; }
.info-card i { font-size: 28px; color: var(--gold); margin-bottom: 12px; }
.info-card h4 { font-size: 14px; color: var(--purple); margin-bottom: 8px; }
.info-card p, .info-card a { font-size: 13px; color: var(--text-muted); }
.contact-form { background: var(--gray-bg); padding: 30px; border-radius: 8px; }
.contact-form h3 { font-size: 20px; color: var(--purple); margin-bottom: 20px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; margin-bottom: 12px; font-family: inherit; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.faq-item { background: var(--gray-bg); padding: 20px 24px; border-radius: 8px; margin-bottom: 12px; }
.faq-item h4 { font-size: 15px; color: var(--purple); margin-bottom: 8px; }
.policy-content h2 { margin-top: 0; }
.size-table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.size-table th, .size-table td { padding: 10px 14px; border: 1px solid #eee; text-align: center; font-size: 14px; }
.size-table th { background: var(--purple); color: var(--white); }
.payment-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 20px 0; }
.pay-card { background: var(--gray-bg); padding: 24px; border-radius: 8px; text-align: center; }
.pay-card i { font-size: 32px; color: var(--gold); margin-bottom: 12px; }
.pay-card h4 { color: var(--purple); margin-bottom: 6px; }
.pay-card p { font-size: 12px; }
.wishlist-actions { display: flex; gap: 12px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.mt-20 { margin-top: 20px; }

/* Collections Page */
.collection-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; justify-content: center; }
.filter-chip { padding: 8px 18px; border: 1px solid #ddd; background: var(--white); border-radius: 20px; font-size: 13px; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.filter-chip:hover, .filter-chip.active { background: var(--purple); color: var(--white); border-color: var(--purple); }
.collections-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 60px; }
.collection-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.3s, box-shadow 0.3s; display: block; }
.collection-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(72,42,84,0.12); }
.collection-card-image { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--gray-bg); }
.collection-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.collection-card:hover .collection-card-image img { transform: scale(1.05); }
.collection-badge { position: absolute; top: 10px; left: 10px; background: var(--purple); color: var(--white); font-size: 10px; padding: 4px 10px; border-radius: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.collection-card-info { padding: 16px; text-align: center; }
.collection-card-info h3 { font-size: 15px; color: var(--purple); margin-bottom: 4px; font-family: 'Montserrat', sans-serif; font-weight: 600; }
.collection-card-info p { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.collection-link { font-size: 12px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Checkout */
.checkout-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 30px; padding-bottom: 60px; }
.checkout-form-section { background: var(--gray-bg); padding: 30px; border-radius: 8px; }
.checkout-form-section h3, .checkout-summary h3 { font-size: 18px; color: var(--purple); margin-bottom: 20px; }
.checkout-form-section input, .checkout-form-section select, .checkout-form-section textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; margin-bottom: 12px; font-family: inherit; }
.checkout-message { padding: 12px; border-radius: 4px; font-size: 13px; margin-bottom: 12px; }
.checkout-message-error { background: #fdecea; color: #c0392b; border: 1px solid #f5c6cb; }
.checkout-message-info { background: #eef6ff; color: #2980b9; border: 1px solid #bee5eb; }
.checkout-secure-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 12px; }
.checkout-secure-note i { color: var(--gold); }
.checkout-summary { background: var(--gray-bg); padding: 24px; border-radius: 8px; height: fit-content; position: sticky; top: 100px; }
.checkout-item { display: grid; grid-template-columns: 50px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; font-size: 13px; }
.checkout-item img { width: 50px; height: 50px; object-fit: cover; border-radius: 4px; }
.success-icon { font-size: 64px; color: #27ae60; margin-bottom: 16px; }
.success-text { font-size: 16px; color: var(--text-muted); }
.order-number { font-size: 20px; font-weight: 700; color: var(--purple); margin-top: 12px; }

/* About enhanced */
.content-wide { max-width: 1100px; }
.about-intro { margin-bottom: 40px; }
.lead { font-size: 16px; line-height: 1.8; }
.about-stats { margin-bottom: 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card { background: var(--purple); color: var(--white); padding: 24px; border-radius: 8px; text-align: center; }
.stat-number { display: block; font-size: 32px; font-weight: 700; font-family: 'Playfair Display', serif; color: var(--gold); }
.stat-label { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }
.about-section { margin-bottom: 40px; padding-top: 10px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.feature-box { background: var(--gray-bg); padding: 24px; border-radius: 8px; text-align: center; }
.feature-box i { font-size: 28px; color: var(--gold); margin-bottom: 12px; }
.feature-box h4 { color: var(--purple); margin-bottom: 8px; font-family: 'Montserrat', sans-serif; font-size: 14px; }
.feature-box p { font-size: 13px; color: var(--text-muted); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 20px; }
.about-cta { text-align: center; background: var(--gray-bg); padding: 40px; border-radius: 8px; }

/* Contact enhanced */
.contact-intro { text-align: center; font-size: 15px; color: var(--text-muted); max-width: 700px; margin: 0 auto 30px; line-height: 1.8; }
.form-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.contact-form select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; margin-bottom: 12px; font-family: inherit; background: var(--white); }
.contact-hours { background: var(--gray-bg); padding: 24px; border-radius: 8px; margin-top: 40px; text-align: center; }
.contact-hours h3 { color: var(--purple); margin-bottom: 16px; }
.contact-hours h3 i { color: var(--gold); margin-right: 8px; }
.hours-grid { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; font-size: 14px; }
.contact-social { text-align: center; margin-top: 40px; }
.contact-social h3 { color: var(--purple); margin-bottom: 8px; }
.contact-faq-link { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid #eee; font-size: 14px; }
.contact-faq-link a { color: var(--purple); font-weight: 600; }

@media (max-width: 1024px) {
    .collections-grid { grid-template-columns: repeat(3, 1fr); }
    .checkout-layout { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .collections-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid, .two-col { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
    .shop-grid { grid-template-columns: repeat(3, 1fr); }
    .product-detail { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
    .contact-info-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .payment-cards { grid-template-columns: 1fr; }
    .cart-table { font-size: 12px; }
    .cart-product img { width: 50px; height: 50px; }
}
