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

        /* Base Styling for the background to match the image contrast */
        body {
            
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
            background-color: #7b7e7a; /* A generic background color to make the white header pop */
            background-image: linear-gradient(to bottom, #050505, #000); /* Subtle gradient mimicking the image */
            min-height: 100vh;
        }

                /* Header Container - Updated for fixed positioning */
        .header-container {
            position: fixed; /* Changed from relative */
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            max-width: 500px;
            margin: 0 auto;
            padding-top: 20px;
            z-index: 100; /* Ensures it stays above all scrolling content */
        }


        /* The White Pill Header */
        .header {
            background-color: #ffffff;
            border-radius: 16px;
            padding: 18px 24px;
            margin: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 100;
        }

        /* Logo Styling */
        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 22px;
            font-weight: 600;
            color: #1a1a1a;
            letter-spacing: -0.5px;
        }

        .logo svg {
            width: 24px;
            height: 24px;
        }

        /* Hamburger Menu Button */
        .menu-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Dropdown Menu Container */
        .dropdown-menu {
            position: absolute;
            top: 85px; /* Positions right below the header */
            left: 20px;
            right: 20px;
            background-color: #ffffff;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 90;
        }

        /* Active state for dropdown */
        .dropdown-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Menu List Styling */
        .dropdown-menu ul {
            list-style: none;
            margin: 0;
            padding: 8px 0;
        }

        .dropdown-menu li {
            padding: 16px 24px;
            font-size: 16px;
            color: #333;
            cursor: pointer;
            border-bottom: 1px solid #f0f0f0;
            text-transform: capitalize;
            transition: background-color 0.2s;
        }


       
        .dropdown-menu a {
            text-decoration: none;
           border-bottom: 1px solid #f0f0f0;
           display:flex;
        }

        .dropdown-menu li:last-child {
            border-bottom: none;
        }

        .dropdown-menu li:hover {
            background-color: #f9f9f9;
            color: #000;
            font-weight: 500;
        }

                /* Product Box Container - Updated to prevent overlap */
        .product-container {
            max-width: 500px;
            margin: 140px auto 0; /* Increased from 40px to 140px to account for the fixed header */
            padding: 0 20px;
        }


        #product-box {
            background-color: rgba(255, 255, 255, 0.95);
            border-radius: 16px;
            padding: 40px 24px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        #product-box h2 {
            margin: 0 0 10px 0;
            color: #1a1a1a;
            font-weight: 400;
            font-size: 24px;
        }

        #product-box p {
            color: #666;
            margin: 0;
        }
    

        /* ── HERO SECTION ── */
        .header-hero {
            position: relative;
            width: 100%;
            height: 80vh;
            min-height: 560px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 115px;
        }

        .header-hero-bg {
            position: absolute;
            inset: 0;
           
            filter: saturate(1.1) brightness(0.7);
            transform: scale(1.05);
            transition: transform 8s ease;
        }

        .header-hero:hover .hero-bg {
            transform: scale(1.0);
        }

        .header-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                180deg,
                rgba(0,0,0,0.15) 0%,
                rgba(0,0,0,0.6) 40%,
                rgba(10,10,10,1) 100%
            );
            z-index: 1;
        }

        .header-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 0 24px;
            max-width: 800px;
            margin-top: -40px;
        }

        .header-hero-badge {
            display: inline-block;
            padding: 6px 20px;
            border-radius: 100px;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.06);
            backdrop-filter: blur(12px);
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.6);
            margin-bottom: 30px;
        }

        .header-hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(48px, 10vw, 96px);
            font-weight: 700;
            color: #fff;
            line-height: 1.0;
            letter-spacing: -0.03em;
            margin-bottom: 20px;
        }

        .header-hero-title span {
            display: block;
            font-size: clamp(18px, 3vw, 28px);
            font-family: 'Inter', sans-serif;
            font-weight: 300;
            letter-spacing: 6px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.4);
            margin-top: 12px;
        }

        .header-hero-sub {
            font-size: 18px;
            font-weight: 300;
            color: rgba(255,255,255,0.55);
            line-height: 1.6;
            max-width: 540px;
            margin: 0 auto 32px;
        }

        /* ── SCROLL INDICATOR ── */
        .header-scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: rgba(255,255,255,0.3);
            font-size: 11px;
            letter-spacing: 2px;
            text-transform: uppercase;
            animation: float 3s ease-in-out infinite;
        }

        .header-scroll-line {
            width: 1px;
            height: 40px;
            background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-8px); }
        }

        @keyframes scrollPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }


.gallery-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 100%;
            max-width: 1000px;
            margin-top: -50px;
        }

        .top-row {
            display: flex;
            gap: 20px;
        }

        /* ── Bottom row: two equal columns ── */
        .bottom-row {
            display: flex;
            flex-direction: row;   /* side-by-side on all sizes */
            gap: 10px;
        }

        .bottom-row .jewelry-card {
            flex: 1;               /* each child takes half the space */
            min-width: 0;          /* prevents flex blowout */
            height: 350px;
        }

        .jewelry-card {
            text-decoration: none;
            position: relative;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
            background-color: #111;
            background-image:
                radial-gradient(circle at 50% 40%, #2a2a2a 0%, #0a0a0a 70%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 20%);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }

        .set-card {
            background-image: url('img/set.jpg');
        }

        .necklaces-card {
            background-image: url('img/necklace.jpg');
        }

        .rings-card {
            background-image: url('img/ring.jpg');
        }


 .bangles-card {
            background-image: url('img/bangle.jpg');
        }

 .pendant-card {
            background-image: url('img/pendant.jpg');
        }

 .bracelet-card {
            background-image: url('img/bracelet.jpg');
        }
        .jewelry-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
        }

        .jewelry-card:hover .gold-box {
            border-color: #f2d06b;
            box-shadow: 0 0 10px rgba(242, 208, 107, 0.3);
        }

        .top-row .jewelry-card {
            flex: 1;
            height: 550px;
        }

        .card-content {
            position: relative;
            z-index: 2;
            padding-top: 160px;
            width: 100%;
        }

        .jewelry-card h2 {
            color: #ffffff;
            font-size: 1.2rem;
            font-weight: 400;
            letter-spacing: 2px;
            margin-bottom: 12px;
            text-transform: uppercase;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
        }

        .gold-box {
            width: 40px;
            height: 15px;
            border: 1px solid #c79a49;
            transition: border-color 0.3s ease;
        }

        .rings-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
            padding-left: 60px;
        }

        .card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            z-index: 1;
        }

        .rings-overlay {
            height: 100%;
            width: 50%;
            background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, transparent 100%);
        }

        /* ── Responsive ── */
        @media (max-width: 768px) {
            .top-row {
                flex-direction: column;
            }
            .top-row .jewelry-card {
                height: 400px;
            }

            /* Bottom row stays as two columns on mobile,
               but with reduced height to fit smaller screens */
            .bottom-row {
                flex-direction: row;   /* keep side-by-side */
            }
            .bottom-row .jewelry-card {
                height: 200px;         /* shorter cards on mobile */
            }

            .jewelry-card h2 {
                font-size: 1rem;       /* slightly smaller text on mobile */
            }
            .rings-content {
                padding-left: 16px;    /* tighter padding on small cards */
            }
        }

        /* Very small screens: allow stacking if truly needed */
        @media (max-width: 360px) {
            .bottom-row {
                flex-direction: column;
            }
            .bottom-row .jewelry-card {
                height: 220px;
            }
        }




        .hero-left {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 150px 10px 10px 25px;
            max-width: 640px;
            
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #6366f1;
            margin-bottom:40px;
        }

        .hero-tag::before {
            content: '';
            width: 24px;
            height: 2px;
            background: #6366f1;
        }

        .hero-left h1 {
            font-family: 'Syne', sans-serif;
            font-size: clamp(48px, 6vw, 80px);
            font-weight: 800;
            line-height: 1.02;
            letter-spacing: -0.04em;
            color: #fff;
            margin-bottom: 20px;
        }

        .hero-left h1 .highlight {
            background: linear-gradient(135deg, #6366f1, #a855f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-left .sub {
            font-size: 17px;
            font-weight: 400;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            max-width: 460px;
            margin-bottom: 36px;
        }

   
        




/* Container holding the flex items */
    .premium-container {
      display: flex;
      flex-direction: column;
      gap: 24px; /* Exact space between the two boxes */
      width: 94%;
      margin:0 auto;
      margin-top:80px;
      max-width: 550px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
padding-top: 100px;
            
       }

    /* Individual card styling */
    .premium-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      
      /* Replicating the proportions from your image */
      min-height: 150px; 
      padding: 5px 30px;
      
      /* Premium Dark Theme Styles */
      background: linear-gradient(145deg, #1f2229, #15181f);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 4px; /* Subtle radius for a modern, sharp look */
      
      /* Soft depth glow instead of a harsh black drop shadow */
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); 
      transition: all 0.4s ease;
    }

    /* Subtle luxury hover effect */
    .premium-card:hover {
      transform: translateY(-4px);
      border-color: #d4af37; /* Shifts subtly to a jewelry gold accent */
      box-shadow: 0 15px 35px rgba(212, 175, 55, 0.08);
    }

    /* Icon Wrapper */
    .icon-wrapper {
      color: #c5a880; /* Soft, muted champagne gold */
      width: 44px;
      height: 44px;
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .icon-wrapper svg {
      width: 100%;
      height: 100%;
    }

    /* Text Formatting */
    .card-text {
      color: #e5e5e5; /* Soft off-white to prevent harsh contrast reading */
      font-size: 0.9rem;
      font-weight: 300;
      line-height: 1.6;
      letter-spacing: 0.5px;
      margin: 0;
    }



.carousel-container {
      position: relative;
      width: 100%;
      max-width: 600px;
      margin: auto;
      padding: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 100px;
      margin-top: 100px;

    }

    .carousel-track-wrapper {
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px #30363d;
      position: relative;
     }

    .carousel-track {
      display: flex;
      transition: transform 0.4s ease-in-out;
      list-style: none;
    }

    .carousel-slide {
      min-width: 100%;
      padding: 30px;
    }

    /* --- Card Layout --- */
    .review-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 12px;
    }

    .user-info {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .avatar {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #1f40af, #3b82f6);
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 24px;
      font-weight: 500;
    }

    .user-details h3 {
      font-size: 18px;
      font-weight: 600;
       color:#fff;
      margin-bottom: 4px;
    }

    .user-details span {
      font-size: 14px;
      color: #8b949e;
    }

    .google-logo svg {
      width: 24px;
      height: 24px;
    }

    .rating-container {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .stars {
      color: #fbbc04;
      font-size: 20px;
      letter-spacing: 2px;
    }

    .verified-badge svg {
      width: 18px;
      height: 18px;
      fill: #1d9bf0;
    }

    .review-content {
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }

    .review-text {
      font-size: 16px;
      line-height: 1.6;
      color: #e6edf3;
      flex: 1;
    }

    .review-image {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid #30363d;
    }

    /* --- Navigation Controls --- */
    .nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(22, 27, 34, 0.8);
      color: #e6edf3;
      border: 1px solid #30363d;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 18px;
      z-index: 10;
      backdrop-filter: blur(4px);
      transition: all 0.2s ease;
    }

    .nav-btn:hover {
      background: #30363d;
      transform: translateY(-50%) scale(1.1);
    }

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

    /* --- Indicators (Bottom Dots) --- */
    .carousel-nav {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }

    .carousel-indicator {
      border: none;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #30363d;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .carousel-indicator.current-slide {
      background: #1d9bf0;
      width: 24px;
      border-radius: 8px;
    }

    /* Responsive adjustments */
    @media (max-width: 500px) {
      .review-content {
        flex-direction: column;
      }
      .nav-btn {
        display: none; /* Hide side arrows on small screens */
      }
    }


/* FedEx card*/        
.fedex-card {
  position: relative;
  width: 90%;
  height: 254px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 12px;
  gap: 10px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
   margin: 0 auto;
   margin-top:100px;
   text-align:center;
}

.fedex-card::before {
  content: '';
  position: absolute;
  inset: 0;
  //left: -5px;
  margin: auto;
  width: 100%;
  height: 264px;
  border-radius: 10px;
  background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100% );
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fedex-card::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100% );
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.fedex-heading {
  font-size: 20px;
  //text-transform: capitalize;
  font-weight: 700;
   text-align:center;
 
}

.fedex-card p:not(.fedex-heading) {
  font-size: 0.95rem;
      color: rgba(255,255,255,0.6);
}

.fedex-card p:last-child {
  color: #e82cff;
  font-weight: 600;
}

.fedex-card:hover::after {
  filter: blur(30px);
}

.fedex-logo {
      width: 160px;
      height: auto;
      display:flex;
      margin: 0 auto;
      padding-bottom:10px
      
    }



/* Main Footer Container */
        .footer-container {
            //background: linear-gradient(145deg, #1e1b4b, #312e81);//#1a1e36; 
            color: #ffffff;
            padding: 50px 20px 20px 20px;
            text-align: center;
            margin-top:100px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 50px;
        }

        
        .newsletter {
            max-width: 500px;
            margin: 0 auto 40px auto;
        }

        .newsletter h2 {
            margin: 0 0 10px 0;
            font-size: 24px;
            font-weight: 600;
        }

        .newsletter p {
            margin: 0 0 20px 0;
            color: #e0e0e0;
        }

        .subscription-form {
            display: flex;
            justify-content: center;
            border-radius: 50px;
            background-color: #ffffff;
            padding: 5px;
            max-width: 400px;
            margin: 0 auto;
        }

        .subscription-form input {
            flex-grow: 1;
            border: none;
            background: transparent;
            padding: 10px 20px;
            font-size: 16px;
            outline: none;
            color: #333;
        }

        .subscription-form button {
            background-color: #FCD34D; /* Yellowish button */
            color: #222222;
            border: none;
            border-radius: 50px;
            padding: 10px 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .subscription-form button:hover {
            background-color: #fbc72d;
        }

        
        /* Payment Methods */
        .payment-methods {
            margin: 40px 0;
        }

        .payment-methods h3 {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 20px;
            color: #e0e0e0;
        }

        .payment-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            font-size: 32px;
            flex-wrap: wrap;
        }

        /* Bottom Bar */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom .social-icons-bottom a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 20px;
            margin-right: 15px;
            transition: color 0.3s;
        }
        
        .footer-bottom .social-icons-bottom a:hover {
            color: #ffffff;
        }

        .footer-bottom .settings {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .footer-bottom .language-selector {
            color: #e0e0e0;
        }

        .footer-bottom .scroll-to-top {
            background-color: #FCD34D;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #222222;
            text-decoration: none;
            font-size: 18px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 600px) {
            .footer-bottom {
                flex-direction: column;
                justify-content: center;
            }
            .subscription-form {
                flex-direction: column;
                background: none;
                gap: 10px;
            }
            .subscription-form button {
                padding: 15px;
            }
            .subscription-form input {
                background: white;
                border-radius: 50px;
            }
        }



.cart-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: #c0392b;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  min-width: 18px;
  height: 20px;
  border-radius: 50%;
  display: none;        /* Hidden by default */
  align-items: center;
  justify-content: center;
  padding: 1px 0px 0px 7px;
  box-sizing: content-box;
}

.cart-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #00c853; /* A vibrant green */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 1; /* Ensure it floats above all other page content */
text-decoration: none;
  color: #fff;
}
