     :root {
            /* Primary Color Palette - Vibrant & Modern */
            --icy-blue: #e3f2fd;
            --pale-pink: #fce4ec;
            --creamy-white: #fffbf0;
            --mint-green: #e0f7f4;
            --lavender: #f3e5f5;
            
            /* Accent Colors */
            --primary-blue: #2196f3;
            --deep-blue: #1976d2;
            --accent-pink: #ff4081;
            --sunset-orange: #ff6b6b;
            --golden-yellow: #ffd93d;
            --mint-accent: #4ecdc4;
            --coral: #ff7675;
            --purple: #a29bfe;
            
            /* Text Colors */
            --text-dark: #1a1a2e;
            --text-medium: #4a5568;
            --text-light: #f7fafc;
            
            /* Shadows & Effects */
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
            --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.18);
            --glow-pink: 0 0 30px rgba(255, 64, 129, 0.3);
            --glow-blue: 0 0 30px rgba(33, 150, 243, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--icy-blue);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background Pattern */
        .snowflakes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .snowflake {
            position: absolute;
            background: white;
            border-radius: 50%;
            opacity: 0.8;
            animation: fall linear infinite;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        @keyframes fall {
            to {
                transform: translateY(100vh) rotate(360deg);
            }
        }

        /* =============== TYPOGRAPHY =============== */
        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
        }

        h1 {
            font-size: 3.8rem;
            color: var(--primary-blue);
            text-shadow: 3px 3px 0px rgba(33, 150, 243, 0.1);
        }

        h2 {
            font-size: 2.8rem;
            color: var(--primary-blue);
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }

        h2:after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 80px;
            height: 5px;
            background: var(--accent-pink);
            border-radius: 3px;
            box-shadow: 0 2px 8px rgba(255, 64, 129, 0.4);
        }

        p {
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: var(--text-medium);
        }

        /* =============== HEADER & NAVIGATION =============== */
        header {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: var(--shadow-md);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 3px solid var(--primary-blue);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 900;
            font-size: 1.9rem;
            color: var(--primary-blue);
        }

        .logo-icon {
            font-size: 2.2rem;
            color: var(--primary-blue);
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            font-size: 1.05rem;
        }

        .nav-links a:hover {
            color: var(--primary-blue);
            transform: translateY(-2px);
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--accent-pink);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .order-btn {
            background: var(--accent-pink);
            color: white;
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: 0 6px 20px rgba(255, 64, 129, 0.4);
            position: relative;
            overflow: hidden;
            border: none;
        }

        .order-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.3);
            transition: left 0.5s;
        }

        .order-btn:hover:before {
            left: 100%;
        }

        .order-btn:hover {
            background: var(--sunset-orange);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 30px rgba(255, 107, 107, 0.6);
        }

        /* =============== HERO SECTION =============== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: var(--creamy-white);
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, var(--icy-blue) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, var(--pale-pink) 0%, transparent 50%);
            opacity: 0.7;
        }

        .hero-content {
            max-width: 600px;
            z-index: 2;
            padding: 2rem;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            margin-bottom: 1.5rem;
            font-size: 3.5rem;
            line-height: 1.1;
        }

        .hero p {
            font-size: 1.35rem;
            margin-bottom: 2.5rem;
            color: var(--text-medium);
            font-weight: 500;
        }

        .hero-btns {
            display: flex;
            gap: 1.2rem;
        }

        .secondary-btn {
            background: white;
            color: var(--primary-blue);
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            border: 3px solid var(--primary-blue);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }

        .secondary-btn:hover {
            background: var(--primary-blue);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--glow-blue);
        }

        .hero-image {

          background: url(images/1.png);


          background-size: contain;
          background-repeat: initial;
          background-position: center;


            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            height: 80%;
            /*background: var(--accent-pink);*/
            border-radius: 30px 0 0 30px;
            overflow: hidden;
            box-shadow: -15px 15px 50px rgba(0,0,0,0.2);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(-50%) rotate(0deg); }
            50% { transform: translateY(-48%) rotate(1deg); }
        }

        .hero-image:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
          

          /*  background: 
                radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9) 0%, transparent 30%),
                radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.8) 0%, transparent 25%),
                radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.7) 0%, transparent 20%);*/
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.9; }
            50% { opacity: 1; }
        }

        /* =============== FLAVOR SHOWCASE =============== */
        .flavor-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            position: relative;
            border: 3px solid transparent;
            height: 100%;
        }
            .flavor-img-sqaure{
                height: 380px !important;
            }
             .flavor-img-potrait{
                height: 580px !important;
            }

        .flavor-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-blue);
        }

        .flavor-card:nth-child(1) .flavor-img {
            background: var(--accent-pink);
        }

        .flavor-card:nth-child(2) .flavor-img {
            background: var(--primary-blue);
        }

        .flavor-card:nth-child(3) .flavor-img {
            background: var(--golden-yellow);
        }

        .flavor-card:nth-child(4) .flavor-img {
            background: var(--mint-accent);
        }

        .flavor-card:nth-child(5) .flavor-img {
            background: var(--coral);
        }

        .flavor-card:nth-child(6) .flavor-img {
            background: var(--purple);
        }

        .flavor-img {
            height: 220px;
            background: var(--primary-blue);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .flavor-img:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
            animation: rotate 10s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .flavor-content {
            padding: 1.8rem;
        }

        .flavor-name {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
            font-weight: 700;
        }

        .rating {
            color: var(--golden-yellow);
            margin-bottom: 1rem;
            font-size: 1.1rem;
            text-shadow: 0 2px 4px rgba(255, 217, 61, 0.3);
        }

        .quick-buy-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            background: var(--accent-pink);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
            font-size: 1.05rem;
            box-shadow: 0 4px 15px rgba(255, 64, 129, 0.3);
        }

        .quick-buy-btn:hover {
            background: var(--sunset-orange);
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 107, 107, 0.5);
        }

        /* =============== ORDER SECTION =============== */
        .order-section {
            background: white;
            border-radius: 32px;
            padding: 3.5rem;
            box-shadow: var(--shadow-lg);
            margin-top: 3rem;
            border: 3px solid var(--icy-blue);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        label {
            display: block;
            margin-bottom: 0.6rem;
            font-weight: 700;
            color: var(--text-dark);
            font-size: 1.05rem;
        }

        input, select, textarea {
            width: 100%;
            padding: 1rem;
            border: 3px solid #e8e8e8;
            border-radius: 12px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        input:focus, select:focus, textarea:focus {
            border-color: var(--primary-blue);
            outline: none;
            background: white;
            box-shadow: 0 0 0 4px rgba(33, 150, 243, 0.1);
        }

        .flavor-selector {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 1.5rem 0;
        }

        .flavor-option {
            background: #f5f5f5;
            padding: 1rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 3px solid #e8e8e8;
            font-weight: 600;
            color: var(--text-dark);
        }

        .flavor-option:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
            border-color: var(--primary-blue);
        }

        .flavor-option.active {
            background: var(--primary-blue);
            color: white;
            border-color: var(--deep-blue);
            box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
        }

        .submit-btn {
            background: var(--accent-pink);
            color: white;
            padding: 1.2rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            width: fit-content;
            margin-top: 1rem;
            box-shadow: 0 6px 25px rgba(255, 64, 129, 0.4);
        }

        .submit-btn:hover {
            background: var(--sunset-orange);
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 35px rgba(255, 107, 107, 0.6);
        }

        /* =============== BLOG SECTION =============== */
        .blog-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.3s ease;
            border: 3px solid transparent;
            height: 100%;
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--mint-accent);
        }

        .blog-card:nth-child(1) .blog-img {
            background: var(--mint-green);
        }

        .blog-card:nth-child(2) .blog-img {
            background: var(--lavender);
        }

        .blog-card:nth-child(3) .blog-img {
            background: var(--pale-pink);
        }

        .blog-img {
            height: 220px;
            background: var(--mint-green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            font-size: 3.5rem;
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-date {
            color: var(--primary-blue);
            font-weight: 700;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
        }

        /* =============== SOCIAL FEED =============== */
        .social-post {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: all 0.3s ease;
            border: 3px solid var(--icy-blue);
            height: 100%;
        }

        .social-post:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-blue);
        }

        .social-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        /* =============== FOOTER =============== */
        footer {
            background: var(--text-dark);
            color: var(--text-light);
            padding: 4rem 0 2rem;
            margin-top: 5rem;
            position: relative;
            overflow: hidden;
            border-top: 5px solid var(--accent-pink);
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: var(--primary-blue);
        }

        .footer-links h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .footer-links ul {
            list-style: none;
            padding-left: 0;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-pink);
            transform: translateX(5px);
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: var(--accent-pink);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            backdrop-filter: blur(10px);
            border: 2px solid transparent;
        }

        .social-icons a:hover {
            background: var(--accent-pink);
            transform: translateY(-5px) rotate(360deg);
            box-shadow: 0 8px 20px rgba(255, 64, 129, 0.4);
            border-color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
        }

        /* =============== SUCCESS MESSAGE =============== */
        .success-message {
            background: var(--mint-green);
            color: #2e7d32;
            padding: 1.5rem;
            border-radius: 16px;
            margin: 1rem 0;
            text-align: center;
            font-weight: 600;
            display: none;
            border: 3px solid var(--mint-accent);
            box-shadow: 0 4px 15px rgba(78, 205, 196, 0.2);
        }

        .show {
            display: block !important;
            animation: slideDown 0.5s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* =============== TRUST BADGES =============== */
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
            justify-content: center;
        }

        .badge {
            background: white;
            padding: 1.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            text-align: center;
            min-width: 160px;
            transition: all 0.3s ease;
            border: 3px solid var(--icy-blue);
        }

        .badge:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-blue);
        }

        .badge i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
        }
     @media (min-width: 992px) {


 .nav-links {
    display: flex !important;
      gap: 29px;
    }
 

     }
        /* =============== RESPONSIVE DESIGN =============== */
        @media (max-width: 992px) {


            h1 {
                font-size: 3rem;
            }
            
            h2 {
                font-size: 2.4rem;
            }
            
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 5rem;
            }
            
            .hero-content {
                max-width: 100%;
                padding: 0 2rem;
            }
            
            .hero-image {
                position: relative;
                width: 85%;
                height: 600px;
                top: 0;
                transform: none;
                margin: 3rem auto 0;
                border-radius: 24px;
            }
            
            .hero-btns {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {

  .nav-links {
  display: flex;
  gap: 29px;
  padding: 22px;
  margin: 14px;

}


            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.15rem;
            }
            
            .order-section {
                padding: 2rem;
            }
        }

        @media (max-width: 576px) {

            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.9rem;
            }
            
            .hero-btns {
                flex-direction: column;
                align-items: stretch;
            }
            
            .order-btn, .secondary-btn {
                width: 100%;
                text-align: center;
            }
        }

        /* Cart Styles */
        .cart-icon {
            position: relative;
            cursor: pointer;
        }

        .cart-count {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--accent-pink);
            color: white;
            border-radius: 50%;
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .cart-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            width: 350px;
            max-height: 400px;
            overflow-y: auto;
            z-index: 1000;
            display: none;
        }

        .cart-dropdown.show {
            display: block;
        }

        .cart-item {
            display: flex;
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }

        .cart-item:last-child {
            border-bottom: none;
        }

        .cart-item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            margin-right: 1rem;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .cart-item-price {
            color: var(--primary-blue);
            font-weight: 700;
        }

        .cart-total {
            padding: 1rem;
            font-weight: 700;
            border-top: 2px solid #eee;
            display: flex;
            justify-content: space-between;
        }

        .checkout-btn {
            background: var(--accent-pink);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 8px;
            width: 100%;
            margin-top: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .checkout-btn:hover {
            background: var(--sunset-orange);
        }

        .empty-cart {
            padding: 2rem;
            text-align: center;
            color: var(--text-medium);
        }



 @media (min-width: 992px) {
       .hero-image {

              background: url(images/2.jpg);
              background-size: contain;
          }
  }

  .highlight-flavor {
    box-shadow: 0 0 0 3px var(--accent-pink), 0 0 10px 2px var(--accent-pink);
    border-color: var(--accent-pink) !important;
    background-color: #fff8e1 !important;
    transition: box-shadow 0.3s, border-color 0.3s, background-color 0.3s;
}