/* IMIKOS Luxury Haircare & Skincare Design System (Pilgrim Inspired) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
    --primary: #111111;
    --primary-dark: #000000;
    --primary-light: #1f1f1f;
    --accent-gold: #d4af37;
    --accent-gold-light: #f5e6b3;
    --accent-gold-dark: #aa8625;
    --cream-bg: #f9f7f2;
    --white: #ffffff;
    --dark-text: #111827;
    --muted-text: #64748b;
    --light-gray: #f8fafc;
    --border-color: #e2e8f0;
    --success: #059669;
    --warning: #d97706;
    --danger: #dc2626;
    --shadow-sm: 0 2px 6px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 16px 36px rgba(0,0,0,0.1);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #ffffff;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

/* Utility Layout Containers */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TOP ANNOUNCEMENT BAR */
.announcement-bar {
    background: linear-gradient(90deg, #000000 0%, #111111 50%, #1f1f1f 100%);
    color: #f5e6b3;
    text-align: center;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 101;
    border-bottom: 1px solid rgba(200, 160, 81, 0.3);
}

.announcement-bar span {
    color: #ffffff;
    font-weight: 800;
    background: rgba(200, 160, 81, 0.35);
    padding: 3px 10px;
    border-radius: 4px;
    margin: 0 6px;
}

/* NAVBAR - ULTRA-LUXURY BLACK THEME */
.navbar {
    background: #000000;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.brand-title {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #e2e8f0;
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.search-box {
    position: relative;
}

.search-box input {
    background: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    padding: 9px 16px 9px 40px;
    border-radius: var(--radius-full);
    font-size: 14px;
    width: 220px;
    transition: var(--transition);
}

.search-box input::placeholder {
    color: #94a3b8;
}

.search-box input:focus {
    width: 270px;
    border-color: var(--accent-gold);
    background: #0a0a0a;
    outline: none;
}

.search-box svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.icon-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 20px;
    position: relative;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--accent-gold);
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent-gold);
    color: #000000;
    font-size: 11px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000000;
}

/* HERO CAROUSEL / SLIDER (FEATURING BB15 & BB16 IN FULL) */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    background: var(--primary-dark);
    overflow: hidden;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.hero-slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 520px;
    background: var(--primary-dark);
}

.hero-slide-img-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;

}

.hero-slide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.65;
}

.hero-content-overlay {
    position: relative;
    z-index: 10;
    padding: 70px 20px;
    max-width: 650px;
    color: #ffffff;
}

.hero-card {
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(200, 160, 81, 0.4);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 160, 81, 0.25);
    border: 1px solid var(--accent-gold);
    color: #f5e6b3;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-card h1 {
    font-family: var(--font-serif);
    font-size: 42px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-card p {
    font-size: 16px;
    color: #e2e8f0;
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.slider-arrow:hover {
    background: #ffffff;
    color: var(--accent-gold-dark);
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent-gold);
    width: 30px;
    border-radius: 12px;
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    border: 1px solid var(--accent-gold);
    color: #000000;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    color: #000000;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1.5px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 12px 26px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--accent-gold);
    color: #000000;
}

/* FEATURE STRIP / HIGHLIGHTS */
.feature-strip {
    background: var(--cream-bg);
    padding: 28px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--cream-bg);
    border: 1px solid var(--border-color);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.feature-info p {
    font-size: 12px;
    color: var(--muted-text);
}

/* SECTION HEADINGS */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px auto;
}

.section-subtitle {
    color: var(--accent-gold-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 34px;
    color: var(--primary);
    font-weight: 700;
}

/* PRODUCTS GRID & 1:1 SQUARE ASPECT RATIO CARDS */
.products-section {
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* ULTRA-LUXURY PILGRIM STYLE PRODUCT CARDS WITH ENFORCED 1:1 ASPECT RATIO */
.product-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.14);
    border-color: var(--accent-gold);
}

.product-badge-wrap {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.badge-discount {
    background: var(--accent-gold);
    color: #ffffff;
}

.badge-coming-soon {
    background: var(--primary-dark);
    color: #f5e6b3;
    border: 1px solid var(--accent-gold);
}

/* HERO CAROUSEL / SLIDER (FEATURING BB15 & BB16 IN FULL) */
.hero-slider-wrapper {
    position: relative;
    width: 100%;
    background: var(--primary-dark);
    overflow: hidden;
    height: 480px;
    max-height: 500px;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.hero-slide {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    background: var(--primary-dark);
}

.hero-slide-img-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.hero-slide-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.65;
}

/* SPOTLIGHT & USAGE IMAGE SIZING */
.spotlight-banner-img {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    background: #ffffff;
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.usage-instructions-img {
    width: 100%;
    max-height: 440px;
    object-fit: contain;
    background: #ffffff;
    padding: 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

/* ENFORCED 1:1 SQUARE ASPECT RATIO & PROPORTIONAL SIZING FOR PRODUCT IMAGES */
.product-img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 270px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 12px;
}

.product-img-link img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-link img {
    transform: scale(1.05);
}

.product-info {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-gold-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.product-title {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    line-height: 1.3;

}

.product-title a:hover {
    color: var(--accent-gold-dark);
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.rating-text {
    font-size: 12px;
    color: var(--muted-text);
    font-weight: 600;
}

.product-subtitle {
    font-size: 13px;
    color: var(--muted-text);
    margin-bottom: 16px;
    line-height: 1.45;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 18px;
}

.price-current {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.price-original {
    font-size: 14px;
    color: var(--muted-text);
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 4px 12px rgba(17, 17, 17, 0.2);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(17, 17, 17, 0.3);
}

.btn-coming-soon {
    background: #475569 !important;
    border-color: #334155 !important;
    color: #ffffff !important;
    box-shadow: none !important;
    cursor: not-allowed;
}

.btn-coming-soon:hover {
    background: #475569;
}

/* SINGLE PRODUCT DETAIL PAGE - 1:1 ENFORCED GALLERY */
.product-detail-section {
    padding: 50px 0 80px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.gallery-container {
    display: flex;
    gap: 16px;
    width: 100%;
}

.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 80px;
}

.thumb-item {
    width: 80px;
    height: 80px;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: var(--transition);
}

.thumb-item.active, .thumb-item:hover {
    border-color: var(--primary);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-main {
    flex-grow: 1;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-category {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-gold-dark);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.detail-title {
    font-family: var(--font-serif);
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.detail-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.rating-badge {
    background: #fffbe6;
    border: 1px solid #ffe58f;
    color: #b45309;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.detail-price-box {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 20px;
}

.detail-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.detail-original-price {
    font-size: 18px;
    color: var(--muted-text);
    text-decoration: line-through;
}

.pincode-checker {
    background: var(--cream-bg);
    padding: 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.pincode-checker label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.pincode-form {
    display: flex;
    gap: 10px;
}

.pincode-form input {
    flex-grow: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
}

.pincode-form button {
    background: var(--primary);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
}

.action-row {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: #ffffff;
}

.qty-btn {
    width: 36px;
    height: 48px;
    background: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: 700;
    font-size: 15px;
}

.btn-buy-now {
    flex-grow: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    border-radius: 6px;
    box-shadow: 0 4px 14px rgba(200, 160, 81, 0.4);
    transition: var(--transition);
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 160, 81, 0.6);
}

/* REVIEWS SECTION */
.reviews-section {
    background: var(--cream-bg);
    padding: 60px 0;
    margin-top: 60px;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.review-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
}

.review-user {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.user-name {
    font-weight: 700;
    color: var(--dark-text);
}

.verified-badge {
    font-size: 11px;
    color: var(--success);
    background: #e6fffa;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

/* DRAWER CART & MODALS */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex !important;
}

.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cream-bg);
}

.cart-header h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--primary);
}

.close-btn {
    background: none;
    font-size: 24px;
    color: var(--dark-text);
}

.shipping-progress {
    background: #fffbe6;
    padding: 12px 20px;
    font-size: 13px;
    border-bottom: 1px solid var(--border-color);
}

.progress-bar-bg {
    height: 6px;
    background: #ffe58f;
    border-radius: 3px;
    margin-top: 6px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--accent-gold);
    width: 70%;
    transition: var(--transition);
}

.cart-body {
    padding: 20px;
    flex-grow: 1;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item img {
    width: 70px;
    height: 70px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--cream-bg);
}

.cart-item-info {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    background: var(--cream-bg);
}

.promo-code-box {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.promo-code-box input {
    flex-grow: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.cart-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(200, 160, 81, 0.4);
}

/* FOOTER */
.footer {
    background: var(--primary-dark);
    color: #e2e8f0;
    padding: 70px 0 30px 0;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    font-family: var(--font-serif);
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent-gold);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 4px;
}

.contact-list p {
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #94a3b8;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-card h1 {
        font-size: 32px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
