/* ==========================================
   KWISH'S SKIN SOLUTIONS - Design System
   ========================================== */

/* --- 1. CSS VARIABLES --- */
:root {
    --color-primary: #7B2D8E;
    --color-primary-hover: #6A2579;
    --color-primary-light: rgba(123, 45, 142, 0.1);
    --color-accent: #C2185B;
    --color-accent-hover: #A01549;
    --color-gold: #D4A76A;
    --color-text-dark: #2D2D2D;
    --color-text-light: #515151; /* Improved contrast ratio */
    --color-bg-white: #ffffff;
    --color-bg-cream: #FDF8FC;
    --color-bg-soft-pink: #F8E8F0;
    --color-bg-lavender: #F0E6F6;
    --border-color: #E8D8EE;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-script: 'Great Vibes', cursive;

    --shadow-sm: 0 2px 10px rgba(123, 45, 142, 0.08);
    --shadow-md: 0 5px 20px rgba(123, 45, 142, 0.12);
    --shadow-lg: 0 10px 40px rgba(123, 45, 142, 0.18);
    --shadow-glow: 0 0 30px rgba(123, 45, 142, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- 2. HEADER & NAVIGATION --- */
header {
    text-align: center;
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-sm);
}

.header-logo {
    height: 55px;
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.03);
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-spacer {
    width: 70px;
    display: flex;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

nav a {
    text-decoration: none;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
    cursor: pointer;
    position: relative;
    font-weight: 400;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--color-primary);
}

.nav-icons {
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.cart-icon {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.cart-icon:hover {
    color: var(--color-primary);
}

.cart-icon svg {
    width: 24px;
    height: 24px;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* --- 3. UTILITY CLASSES --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

.btn {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: white;
    padding: 14px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid transparent;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 400;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 45, 142, 0.35);
}

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

.btn-outline:hover {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: white;
    border-color: transparent;
}

.btn-light {
    background: white;
    color: var(--color-primary);
    border: 2px solid white;
}

.btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-accent {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    border-color: transparent;
}

.btn-accent:hover {
    box-shadow: 0 8px 25px rgba(194, 24, 91, 0.35);
}

h2.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.2rem;
    margin: 50px 0 15px;
    color: var(--color-text-dark);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    margin: 15px auto 20px;
    border-radius: 3px;
}

/* --- 4. HERO SECTION --- */
.hero {
    position: relative;
    height: 65vh;
    min-height: 460px;
    max-height: 575px;
    background-color: #1a1a1a;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, var(--color-bg-cream) 100%);
    z-index: 3;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    z-index: 3;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
}

.hero-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
    animation: floatIn 1s ease-out;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeSlideUp 0.8s ease-out 0.2s both;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeSlideUp 0.8s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeSlideUp 0.8s ease-out 0.6s both;
}

/* --- 5. FRAGRANCE BOXES (Collection Cards) --- */
.fragrance-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0 60px;
}

.fragrance-box-wrapper {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.4s ease;
}

.fragrance-box-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.fragrance-box {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.fragrance-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fragrance-box-wrapper:hover .fragrance-box img {
    transform: scale(1.05);
}

.fragrance-box-info {
    background: white;
    padding: 25px;
    text-align: center;
}

.fragrance-box-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.fragrance-box-info .btn {
    margin-top: 5px;
}

/* --- 6. COLLECTIONS GRID --- */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.collection-card {
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.collection-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

.collection-label {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: white;
    padding: 12px;
    display: block;
    width: 100%;
    text-transform: uppercase;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.collection-card:hover .collection-label {
    letter-spacing: 2.5px;
}

/* --- 7. ESSENCE / ABOUT SECTION --- */
.essence-section {
    background: linear-gradient(135deg, var(--color-bg-lavender) 0%, var(--color-bg-soft-pink) 100%);
    text-align: center;
    padding: 70px 20px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.essence-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(123, 45, 142, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.essence-section > * {
    position: relative;
    z-index: 1;
}

.essence-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-primary);
}

.essence-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--color-text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* --- 8. CUSTOMER REVIEWS --- */
.reviews {
    text-align: center;
    padding: 50px 20px;
    border-top: 1px solid var(--border-color);
    background: var(--color-bg-white);
}

.stars {
    color: #D4A76A;
    letter-spacing: 3px;
    font-size: 1.5rem;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.info-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(123, 45, 142, 0.1);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary-light), rgba(194, 24, 91, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--color-primary);
}

.info-card-icon svg {
    width: 24px;
    height: 24px;
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.info-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* --- 9. PRODUCT CARDS --- */
.shop-section {
    padding: 60px 0;
}

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

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-card-body {
    padding: 20px;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--color-text-dark);
}

.product-includes {
    font-size: 0.82rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 0;
    list-style: none;
}

.product-includes li {
    padding: 2px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-includes li::before {
    content: '✦';
    color: var(--color-primary);
    font-size: 0.6rem;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 15px;
}

.product-card-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart {
    flex: 1;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-add-cart::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-add-cart:hover::before {
    left: 100%;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 45, 142, 0.3);
}

/* --- 10. CART SIDEBAR --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: white;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--color-bg-lavender), var(--color-bg-soft-pink));
}

.cart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-text-dark);
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-text-light);
    transition: color 0.3s ease;
    padding: 5px;
    line-height: 1;
}

.cart-close:hover {
    color: var(--color-accent);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--color-text-light);
    font-style: italic;
}

.cart-empty svg {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    opacity: 0.3;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    animation: fadeIn 0.3s ease;
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--color-text-dark);
}

.cart-item-price {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border-color);
    background: var(--color-bg-cream);
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-item-qty button:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.cart-item-qty span {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 5px;
    text-decoration: underline;
    font-family: var(--font-body);
}

.cart-item-remove:hover {
    color: var(--color-accent-hover);
}

.cart-footer {
    border-top: 2px solid var(--border-color);
    padding: 20px 25px;
    background: var(--color-bg-cream);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cart-total-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.cart-total-amount {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 700;
}

.delivery-note {
    font-size: 0.78rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    padding: 8px 12px;
    background: rgba(123, 45, 142, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.delivery-note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.btn-whatsapp-checkout {
    width: 100%;
    padding: 15px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.btn-whatsapp-checkout:hover {
    background: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-checkout svg {
    width: 22px;
    height: 22px;
    fill: white;
}

/* --- 11. DELIVERY INFO SECTION --- */
.delivery-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, #5A1A6B 100%);
    padding: 60px 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.delivery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.delivery-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(194, 24, 91, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.delivery-section > * {
    position: relative;
    z-index: 1;
}

.delivery-section h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

.delivery-section .section-divider {
    background: linear-gradient(90deg, var(--color-gold), white);
    margin-bottom: 30px;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.delivery-step {
    text-align: center;
}

.delivery-step-number {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.delivery-step h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.delivery-step p {
    font-size: 0.82rem;
    opacity: 0.8;
    line-height: 1.5;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 30px;
    margin-top: 30px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.delivery-badge svg {
    width: 20px;
    height: 20px;
}

/* --- 12. CONTACT SECTION --- */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.contact-card {
    background: white;
    border-radius: 14px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.contact-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 55px;
    height: 55px;
    background: var(--color-bg-lavender);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--color-primary);
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--color-text-dark);
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-card a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* --- 13. FOOTER --- */
footer {
    margin-top: 0;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.footer-main {
    background: #1a1a1a;
    padding: 50px 20px 30px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: white;
    font-size: 1rem;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.footer-col p {
    line-height: 1.7;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
    font-size: 0.85rem;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.84rem;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    stroke: var(--color-primary);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.footer-bottom {
    background: #111;
    text-align: center;
    padding: 18px 20px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- 14. WHATSAPP WIDGET --- */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    animation: pulse-green 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    animation: none;
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-popup-header {
    background: #25D366;
    padding: 20px;
    color: white;
}

.whatsapp-popup-header h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.whatsapp-popup-header p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.whatsapp-popup-body {
    padding: 20px;
}

.whatsapp-popup-body label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    font-weight: 500;
}

.whatsapp-popup-body textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-body);
    resize: none;
    height: 80px;
    margin-bottom: 15px;
}

.whatsapp-popup-body textarea:focus {
    outline: none;
    border-color: #25D366;
}

.whatsapp-send-btn {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-send-btn:hover {
    background: #1da851;
}

.whatsapp-send-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.whatsapp-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
}

.whatsapp-popup-close:hover {
    opacity: 1;
}

/* --- 15. BACK TO TOP --- */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 35px;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(123, 45, 142, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(123, 45, 142, 0.4);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* --- 16. HAMBURGER & MOBILE NAV --- */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 149;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: var(--color-bg-white);
    z-index: 150;
    transition: left 0.35s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-nav-drawer.active {
    left: 0;
}

.mobile-nav-header {
    padding: 25px 20px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--color-bg-lavender), var(--color-bg-soft-pink));
}

.mobile-nav-header img {
    height: 40px;
    width: auto;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
    padding: 5px;
}

.mobile-nav-links {
    list-style: none;
    padding: 10px 0;
}

.mobile-nav-links li a {
    display: block;
    padding: 14px 25px;
    color: var(--color-text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-nav-links li a:hover {
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding-left: 30px;
}

/* --- 17. ANIMATIONS --- */
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* --- 18. RESPONSIVE --- */
@media (max-width: 768px) {
    .hamburger-btn {
        display: block;
    }

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

    .nav-left,
    .nav-right {
        display: none !important;
    }

    .nav-spacer {
        display: none !important;
    }

    header {
        position: sticky;
        top: 0;
    }

    nav {
        justify-content: center;
        position: relative;
        min-height: 50px;
    }

    .nav-icons {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
    }

    .hero {
        height: 55vh;
        min-height: 400px;
    }

    .hero-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-logo {
        width: 110px;
    }

    .fragrance-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .collection-card img {
        height: 200px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-card-image img {
        height: 200px;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    h2.section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 50vh;
        min-height: 350px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-logo {
        width: 90px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .collection-card img {
        height: 220px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card-image img {
        height: 250px;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .essence-quote {
        font-size: 1rem;
    }

    .stars {
        font-size: 1.2rem;
    }
}

/* ==========================================
   NEW ADDITIONS: MODALS, FAQ, CAROUSEL, ABOUT
   ========================================== */

/* --- Product Modal --- */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.product-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.product-modal {
    background: white;
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.product-modal-overlay.active .product-modal {
    transform: translateY(0) scale(1);
}

.product-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--color-text-light);
    cursor: pointer;
    z-index: 10;
    transition: color 0.2s ease;
    line-height: 1;
}

.product-modal-close:hover {
    color: var(--color-accent);
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
}

.product-modal-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.product-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-modal-info h2 {
    font-family: var(--font-heading);
    color: var(--color-text-dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
    padding-right: 30px;
}

.product-modal-price {
    font-size: 1.4rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 20px;
}

.product-modal-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-modal-includes h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.product-modal-includes ul {
    list-style: none;
    margin-bottom: 25px;
}

.product-modal-includes li {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.include-check {
    color: var(--color-primary);
}

.product-modal-cart-btn {
    width: 100%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
}

.product-modal-details {
    background: var(--color-bg-cream);
    padding: 30px;
    border-top: 1px solid var(--border-color);
}

.product-modal-details h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.modal-tabs-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
    padding-bottom: 5px;
}

.modal-tabs {
    display: flex;
    gap: 10px;
    min-width: max-content;
}

.modal-tab {
    padding: 10px 20px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: all 0.2s ease;
}

.modal-tab.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.modal-tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.modal-tab-panel.active {
    display: block;
}

.modal-detail-group {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.modal-detail-group h4 {
    color: var(--color-primary);
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-detail-group ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.modal-detail-group ul li {
    margin-bottom: 5px;
}

/* Card Button additions */
.product-card-view-btn {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    opacity: 0;
}
.product-card-image:hover .product-card-view-btn {
    bottom: 20px;
    opacity: 1;
}
.btn-view-details {
    flex: 1;
    padding: 12px;
    background: var(--color-bg-lavender);
    color: var(--color-primary);
    border: 1px solid var(--color-primary-light);
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-view-details:hover {
    background: var(--color-primary);
    color: white;
}

/* --- Shop Filters Update --- */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}
.btn-filter {
    padding: 10px 22px;
    border-radius: 25px;
    border: 2px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}
.btn-filter.active, .btn-filter:hover {
    background: var(--color-primary);
    color: white;
}

/* --- About Page Redesign --- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 40px auto;
    max-width: 1000px;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    pointer-events: none;
}

.founder-img {
    width: 100%;
    display: block;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.about-text p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* --- Testimonial Carousel --- */
.testimonial-carousel-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 50px;
}

.testimonial-carousel {
    overflow: hidden;
    position: relative;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-slide {
    width: 100%;
}

.testimonial-stars {
    color: var(--color-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 3px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-combo {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--color-text-light);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    z-index: 10;
}

.testimonial-nav:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

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

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--color-primary);
    transform: scale(1.3);
}

/* --- FAQ Accordion --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-dark);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    stroke: var(--color-text-light);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    stroke: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--color-bg-cream);
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .product-modal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    .product-modal-image img {
        height: 250px;
    }
    .product-modal-details {
        padding: 20px;
    }
    .product-card-actions {
        flex-direction: column;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .testimonial-carousel-wrapper {
        padding: 0 30px;
    }
    .testimonial-nav {
        width: 32px;
        height: 32px;
    }
    .testimonial-text {
        font-size: 1.1rem;
    }
    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* --- Floating Cart --- */
.floating-cart-btn {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-hover));
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(123, 45, 142, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998; /* Below modal, above content */
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0);
    opacity: 0;
}

.floating-cart-btn.visible {
    transform: scale(1);
    opacity: 1;
}

.floating-cart-btn:hover {
    transform: scale(1.1);
    background: var(--color-accent);
}

.floating-cart-btn svg {
    width: 24px;
    height: 24px;
}

.floating-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--color-accent);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid white;
}
