/* Root Variables */
        :root {
            --primary-color: #a41c75;
            --secondary-color: #c084fc;
            --accent-color: #fbbf24;
            --dark-color: #1f2937;
            --light-color: #f9fafb;
            --text-color: #374151;
            --border-color: #e5e7eb;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --error-color: #ef4444;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: #ffffff;
            position: relative;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        /* Promotional Header */
        .promotional-header {
            background: rgba(164, 28, 117, 0.95);
            color: white;
            padding: 10px 0;
            
        }

        .marquee-container {
            white-space: nowrap;
            overflow: hidden;
            width: 100%;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 30s linear infinite;
            font-size: 14px;
            font-weight: 500;
        }

        .promo-item {
            display: inline-block;
            padding: 0 2rem;
        }

        .promo-item i {
            margin-right: 0.5rem;
            color: var(--accent-color);
        }

        .separator {
            color: rgba(255, 255, 255, 0.6);
            margin: 0 1rem;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        /* Navigation */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
            position: sticky;
            top: 44px;
            z-index: 1000;
            background: white;
            border-bottom: 1px solid var(--border-color);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-color) !important;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-brand i {
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        .navbar-nav .nav-link {
            color: var(--text-color);
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary-color);
        }

        .navbar-icons {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .navbar-icons a {
            color: var(--text-color);
            font-size: 1.2rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .navbar-icons a:hover {
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            overflow: hidden;
            height: 700px;
        }

        .carousel-item {
            height: 700px;
            position: relative;
        }

        .carousel-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-caption {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 90%;
            max-width: 800px;
        }

        .carousel-caption h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }

        .carousel-caption p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
        }

        .btn-primary {
            background: var(--primary-color);
            border: none;
            padding: 0.75rem 2rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 25px;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: #8b1560;
            transform: translateY(-2px);
        }

        /* Sections */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-family: 'Playfair Display', serif;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-color);
            margin-bottom: 3rem;
        }

        

        /* Features Section */
        .features-section {
            padding: 5rem 0;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }

        .feature-card h4 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        /* Footer */
        .footer {
            background: #111;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        .footer p {
            margin: 0;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hero-section { height: 300px; }
            .carousel-item { height: 300px; }
            .carousel-caption h1 { font-size: 2rem; }
            .carousel-caption p { font-size: 1rem; }
            .section-title { font-size: 2rem; }
            .arrivals-grid { grid-template-columns: 1fr; }
            .collections-grid { grid-template-columns: 1fr; }
            .collection-card { height: 280px; }
            .masterpieces-grid { grid-template-columns: repeat(2, 1fr); }
            .masterpiece-card { height: 450px; }
            .curated-title { font-size: 2.2rem; }
        }

        @media (max-width: 480px) {
            .arrivals-grid { grid-template-columns: 1fr; gap: 1rem; }
            .collection-card { height: 250px; }
            .masterpieces-grid { grid-template-columns: 1fr; }
            .masterpiece-card { height: 400px; }
            .curated-title { font-size: 1.8rem; }
            .section-title { font-size: 1.8rem; }
            .navbar-brand { font-size: 1.5rem; }
        }

        .mobile-banner { display: none; }
        @media (max-width: 767px) {
            .desktop-banner { display: none; }
            .mobile-banner { display: block; }
        }
        
        .cta-wrapper {
  text-align: center;
  margin: 2rem 0;
}
.cta-button {
  background-color: #aa1474;
  color: white;
  padding: 12px 40px;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
}

/* Fix badge position for mobile cart icon */
#cart-count-mobile {
  font-size: 11px;
  padding: 2px 5px;
  position: absolute;
  top: -5px;
  left: 14px; /* Adjust this if needed */
  transform: none;
  z-index: 10;
}