/* Base Styles with Premium Design System */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary: #A83861;
    --primary-dark: #8C2D4F;
    --primary-light: #E291A8;
    --secondary: #F9F2F5;
    --accent-gold: #D4B78A;
    --accent-gold-light: #E9DAC1;
    --text-dark: #2B2B2B;
    --text-medium: #555555;
    --text-light: #888888;
    --white: #FFFFFF;
    --background: #fabeeba9; /* Changed from #FDFBFC to #fabeeb */
    --card-background: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.08);
    --shadow-focus: 0 0 0 3px rgba(168, 56, 97, 0.15);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 5rem;
    
    /* Borders & Radiuses */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --border-thin: 1px solid rgba(0, 0, 0, 0.08);
    --border-accent: 1px solid var(--accent-gold-light);
}

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

body {
    background-color: var(--background);
    font-family: var(--font-body);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    background-image: 
        linear-gradient(to right, rgba(229, 218, 233, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(229, 218, 233, 0.2) 1px, transparent 1px);
    background-size: 40px 40px;
    background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.8rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 2rem;
    font-weight: 500;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-medium);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Layout */
.container {
    width: 100%;
    max-width: 1300px;
    padding: 0 var(--space-lg);
    margin: 0 auto;
}

/* Header and Navigation */
header {
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
    padding: var(--space-md) 0;
    position: relative;
    z-index: 100;
}

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

#logo {
    height: 65px;
    display: block;
    transition: transform 0.3s ease;
}

#logo:hover {
    transform: scale(1.03);
}

.desktop-nav {
    display: none;
}

nav {
    width: auto;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav li {
    margin: 0 var(--space-sm);
}

.desktop-nav a {
    position: relative;
    display: block;
    padding: var(--space-xs) var(--space-sm);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.desktop-nav a:hover::after {
    width: 80%;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    z-index: 101;
}

.hamburger-menu:hover {
    box-shadow: var(--shadow-medium);
    background-color: var(--secondary);
}

.hamburger-icon {
    width: 20px;
    height: 14px;
    position: relative;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 6px;
    width: 75%;
}

.hamburger-icon span:nth-child(3) {
    top: 12px;
}

.hamburger-icon.active span:nth-child(1) {
    top: 6px;
    transform: rotate(45deg);
}

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

.hamburger-icon.active span:nth-child(3) {
    top: 6px;
    transform: rotate(-45deg);
}

.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(249, 242, 245, 0.97);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
}

.nav-menu li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    margin: var(--space-md) 0;
    list-style: none;
}

.nav-menu.active li {
    opacity: 1;
    transform: translateY(0);
}

.nav-menu.active li:nth-child(2) { transition-delay: 0.2s; }
.nav-menu.active li:nth-child(3) { transition-delay: 0.3s; }
.nav-menu.active li:nth-child(4) { transition-delay: 0.4s; }
.nav-menu.active li:nth-child(5) { transition-delay: 0.5s; }

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-menu a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* Hero Section */
.hero-section {
    padding: var(--space-xxl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.hero-cta {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(168, 56, 97, 0.3);
}

.hero-cta:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 7px 20px rgba(168, 56, 97, 0.4);
    transform: translateY(-3px);
    color: var(--white);
}

/* Main Content */
main {
    padding: var(--space-lg) 0;
}

/* Section Styling */
.section {
    padding: var(--space-xl) 0;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: var(--space-xl);
    position: relative;
    display: inline-block;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    margin: var(--space-sm) auto 0;
}

/* Card Styling */
.card {
    background-color: var(--card-background);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    height: 100%;
    border: var(--border-thin);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold-light);
}

.card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-content {
    padding: var(--space-lg);
}

.card-title {
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
    position: relative;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

.card-text {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-top: var(--space-md);
}

/* Button & Input Styling */
.btn {
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(168, 56, 97, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 7px 20px rgba(168, 56, 97, 0.3);
    transform: translateY(-3px);
}

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

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

/* Form Styling */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--text-light);
    border-radius: var(--radius-sm);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: var(--shadow-focus);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(168, 56, 97, 0.3);
}

/* Grid System */
.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
}

.col-1 { grid-column: span 1; }
.col-2 { grid-column: span 2; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }
.col-9 { grid-column: span 9; }
.col-10 { grid-column: span 10; }
.col-11 { grid-column: span 11; }
.col-12 { grid-column: span 12; }

/* Product Card Special Styling */
.product-card {
    background-color: var(--card-background);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    border: var(--border-thin);
    height: 100%;
}

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

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

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

.product-content {
    padding: var(--space-lg);
    position: relative;
    background-color: var(--card-background);
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: var(--space-xs);
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.add-to-cart {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-weight: 600;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-md);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    height: 0;
    padding-bottom: 100%; /* Create a square aspect ratio */
    background-color: var(--card-background);
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-md);
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Styles */
.about-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    position: relative;
}

.about-text {
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    font-size: 1.05rem;
    line-height: 1.8;
}

.signature {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: var(--space-md);
}

/* Contact Page Styles */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.contact-card {
    background-color: var(--card-background);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    border: var(--border-thin);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold-light);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.contact-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    font-family: var(--font-heading);
}

.contact-info {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.contact-info a {
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-dark);
}

/* Footer Styling */
.footer {
    background-color: var(--card-background);
    padding: var(--space-xl) 0 var(--space-md);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.03);
    margin-top: var(--space-xxl);
    border-top: var(--border-thin);
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var (--space-lg);
}

.footer-column {
    margin-bottom: var(--space-lg);
}

.footer-logo {
    max-width: 130px;
    margin-bottom: var(--space-md);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-medium);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: var(--space-xs);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary);
    color: var(--primary);
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    text-align: center;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Utility Classes */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.d-flex { display: flex; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }
.flex-column { flex-direction: column; }

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease forwards;
}

/* Responsive Design */
@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    
    .hamburger-menu {
        display: none;
    }
    
    .about-section {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.8rem; }
    
    .hero-title { font-size: 3rem; }
    
    .col-md-12 { grid-column: span 12; }
    .col-md-6 { grid-column: span 6; }
    .col-md-4 { grid-column: span 4; }
    .col-md-3 { grid-column: span 3; }
}

@media (max-width: 767px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.1rem; }
    
    .col-sm-12 { grid-column: span 12; }
    .col-sm-6 { grid-column: span 6; }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }
    
    .hero-title { font-size: 2.2rem; }
    
    .col-xs-12 { grid-column: span 12; }
    
    .card-content { padding: var(--space-md); }
    
    .section { padding: var(--space-lg) 0; }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Cart Specific Styling */
.floating-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 56, 97, 0.3);
    z-index: 100;
    transition: all 0.3s ease;
}

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

.cart-icon {
    font-size: 1.4rem;
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-gold);
    color: var (--text-dark);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.cart-dropdown {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 350px;
    background-color: var(--card-background);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    z-index: 101;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: var(--border-thin);
    overflow: hidden;
}

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

.cart-dropdown-header {
    padding: var(--space-md);
    border-bottom: var(--border-thin);
}

.cart-dropdown-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cart-dropdown-items {
    max-height: 300px;
    overflow-y: auto;
    padding: var(--space-sm);
}

.cart-item {
    display: flex;
    align-items: center;
    padding: var(--space-sm);
    border-bottom: var(--border-thin);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    margin-right: var(--space-sm);
}

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

.cart-item-title {
    font-weight: 500;
    margin-bottom: 3px;
    font-size: 0.9rem;
}

.cart-item-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
}

.cart-item-remove {
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 5px;
}

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

.cart-dropdown-footer {
    padding: var(--space-md);
    border-top: var(--border-thin);
}

.cart-dropdown-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.cart-dropdown-total-label {
    font-weight: 500;
}

.cart-dropdown-total-value {
    font-weight: 600;
    color: var(--primary);
}

.cart-dropdown-checkout {
    display: block;
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: var(--space-sm);
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: all 0.3s ease;
}

.cart-dropdown-checkout:hover {
    background-color: var(--primary-dark);
    color: white;
}

/* Empty cart state */
.empty-cart {
    text-align: center;
    padding: var(--space-lg);
    color: var(--text-light);
}

.empty-cart-icon {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
    opacity: 0.3;
}