        /* Secure the Sip Section */
        .secure-sip {
            padding: 40px 0;
            background: url(images/bg1.jpg);
            position: relative;
            overflow: hidden;
            border-radius: 10px;
        }
        
        .sip-title {
            font-size: 45px;
            font-weight: 800;
            color: #000;
            text-align: center;
            margin-bottom: 20px;
        }
        
        .sip-carousel {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .sip-container {
            overflow: hidden;
            margin: 0 80px;
        }
        
        .sip-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 30px;
        }
        
        .sip-product {
            min-width: calc(25% - 22.5px);
            background: transparent;
            border-radius: 0;
            transition: transform 0.3s;
        }
        
        .sip-product:hover {
            transform: translateY(-10px);
        }
        
        .product-image-container {
            height: 250px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
            position: relative;
            border-radius: 20px 20px 0 0;
        }
        
        .gradient-green {
            background: linear-gradient(135deg, #3fab60 0%, #0e357a 100%);
        }
        
        .gradient-rainbow {
            background: linear-gradient(135deg, #afd969 50%, #dadf7d 75%, #FFD93D 100%);
        }
        
        .gradient-pink {
            background: linear-gradient(135deg, #bfc2c4 0%, #4fba64 100%);
        }
        
        .gradient-blue {
            background: linear-gradient(135deg, #df97bc 0%, #b83971 100%);
        }
        
        .gradient-brown {
            background: linear-gradient(135deg, #d9b465 0%, #0b5469 100%);
        }
        
        .gradient-purple {
            background: linear-gradient(135deg, #e3a0bc 0%, #c61234 100%);
        }
        
        .variety-pack {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .can-row {
            display: flex;
            gap: 10px;
        }
        
        .mini-can {
            width: 60px;
            height: 90px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 10px;
            font-weight: bold;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .mini-can.brown { background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%); }
        .mini-can.purple { background: linear-gradient(135deg, #9370DB 0%, #8A2BE2 100%); }
        .mini-can.blue { background: linear-gradient(135deg, #4169E1 0%, #1E90FF 100%); }
        .mini-can.orange { background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%); }
        .mini-can.yellow { background: linear-gradient(135deg, #FFD700 0%, #FFED4E 100%); }
        .mini-can.green { background: linear-gradient(135deg, #3e407a 0%, #00897B 100%); }
        .mini-can.pink { background: linear-gradient(135deg, #FF69B4 0%, #FFB6C1 100%); }
        .mini-can.red { background: linear-gradient(135deg, #DC143C 0%, #FF6B6B 100%); }
        
        .single-can {
            width: 150px;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            /* box-shadow: 0 10px 30px rgba(0,0,0,0.3); */
            padding: 10px;
            text-align: center;
            position: relative;
        }
        
        /* .single-can.pink { background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%); }
        .single-can.blue { background: linear-gradient(135deg, #4169E1 0%, #87CEEB 100%); }
        .single-can.brown { background: linear-gradient(135deg, #8B4513 0%, #D2691E 100%); }
        .single-can.purple { background: linear-gradient(135deg, #9370DB 0%, #E6E6FA 100%); }
         */
        .can-flavor {
            font-size: 18px;
            font-weight: 900;
            margin-bottom: 10px;
            text-transform: uppercase;
        }
        
        .can-brand {
            font-size: 42px;
            font-weight: 900;
            font-style: italic;
            letter-spacing: -2px;
            margin: 10px 0;
        }
        
        .can-tagline {
            font-size: 12px;
            margin-bottom: 10px;
        }
        
        .can-size {
            font-size: 10px;
            position: absolute;
            bottom: 10px;
        }
        
        .product-details {
            padding: 25px;
            text-align: center;
            background: white;
            border-radius: 0 0 20px 20px;
        }
        
        .product-details h4 {
            font-size: 16px;
            font-weight: 900;
            color: #3e407a;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            min-height: 30px;
            line-height: 1.3;
        }
        
        .buy-button {
            background: #3e407a;
            color: white;
            padding: 14px 35px;
            border: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
        }
        
        .buy-button:hover {
            background: #00897B;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,107,94,0.3);
        }
        
        .sip-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            padding: 0;
            color: #3e407a;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
            z-index: 10;
        }
        
        .sip-arrow:hover {
            background: #3e407a;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .sip-arrow.prev {
            left: 20px;
        }
        
        .sip-arrow.next {
            right: 20px;
        }
        
        @media (max-width: 1200px) {
            .sip-product {
                min-width: calc(33.333% - 20px);
            }
        }
        
        @media (max-width: 768px) {
            .sip-title {
                font-size: 48px;
            }
            
            .sip-container {
                margin: 0 20px;
            }
            
            .sip-product {
                min-width: calc(50% - 15px);
            }
        }
        
        @media (max-width: 480px) {
            .sip-product {
                min-width: 100%;
            }
        }
        /* Flavor Spotlight Section */
        .flavor-spotlight {
            padding: 80px 0;
            background: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .spotlight-title {
            font-size: 72px;
            font-weight: 900;
            color: #3e407a;
            text-align: center;
            margin-bottom: 60px;
            text-transform: uppercase;
            letter-spacing: -2px;
            font-style: italic;
        }
        
        .spotlight-carousel {
            position: relative;
            max-width: 100%;
            margin: 0 auto;
        }
        
        .spotlight-container {
            overflow: hidden;
            margin: 0 80px;
        }
        
        .spotlight-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 30px;
        }
        
        .spotlight-slide {
            min-width: calc(100% - 100px);
            display: flex;
            background: #ecffec;
            border-radius: 30px;
            overflow: hidden;
            height: 450px;
        }
        
        .spotlight-slide:nth-child(2) {
            background: linear-gradient(135deg, #fff0df 0%, #ffbec7 100%)
        }
        
        .spotlight-slide:nth-child(3) {
            background: linear-gradient(135deg, #ffebeb 0%, #ffaaf1 100%);
        }

        .spotlight-slide:last-child {
            min-width: 100%;
        }
        
        .slide-image {
            flex: 1;
            position: relative;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
        }

        .slide-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 30px;
        }
        
        /* .slide-image.orange-theme {
            background: linear-gradient(135deg, #FF9966 0%, #FFB380 100%);
        }
        
        .slide-image.cherry-theme {
            background: linear-gradient(135deg, #8B0000 0%, #CD5C5C 100%);
        } */
        
        .product-display {
            display: flex;
            align-items: center;
            gap: 30px;
        }
        
        .super-spotlight-can {
            width: 150px;
            height: 240px;
            background: linear-gradient(135deg, #3e407a 0%, #00897B 100%);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transform: rotate(-10deg);
        }
        
        .super-spotlight-can.orange {
                background: linear-gradient(135deg, #aa2b2b 0%, #fd5756 100%);
                background-image: url(images/can.png);
                background-position: center;
                background-size: cover;
        }
        
        .super-spotlight-can.cherry {
                background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
                background-image: url(images/can.png);
                background-position: center;
                background-size: cover;
        }
    
        .super-spotlight-can.blueberry {
                background-image: url(images/can.png);
                background-position: center;
                background-size: cover;
        }
        
        .super-spotlight-can .brand {
            font-size: 32px;
            font-weight: bold;
            font-style: italic;
            letter-spacing: -1px;
            margin-bottom: 10px;
        }
        
        .super-spotlight-can .flavor-name {
            font-size: 16px;
            font-weight: 700;
            text-align: center;
            line-height: 1.2;
        }
        
        .spotlight-glass {
            width: 120px;
            height: 150px;
            background: url("images/spotlight-glass.png");
            background-position: center;
            background-size: cover;
        }
        
        /* .spotlight-glass::after {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            height: 30%;
            background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
            border-radius: 50%;
        } */
        
        .creamsicle-pops {
            width: 150px;
            height: 200px;
            background: linear-gradient(to bottom, #FF6600 0%, #FF6600 45%, white 45%, white 55%, #FF6600 55%, #FF6600 100%);
            border-radius: 60px 60px 10px 10px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .creamsicle-pops::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 40px;
            background: #D4A574;
            border-radius: 2px;
        }
        
        .slide-info {
            flex: 2;
            padding: 60px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .slide-info h3 {
            font-size: 64px;
            font-weight: 900;
            color: #000;
            line-height: 0.9;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: -2px;
            font-style: italic;
        }
        
        .slide-info p {
            font-size: 18px;
            line-height: 1.6;
            color: #003333;
            margin-bottom: 40px;
            max-width: 500px;
        }
        
        .spotlight-cta {
            background: #3e407a;
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            display: inline-block;
            transition: transform 0.3s, box-shadow 0.3s;
            width: fit-content;
        }
        
        .spotlight-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,107,94,0.3);
        }
        
        .spotlight-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            color: #3e407a;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s;
            z-index: 10;
        }
        
        .spotlight-arrow:hover {
            background: #3e407a;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }
        
        .spotlight-arrow.prev {
            left: 20px;
        }
        
        .spotlight-arrow.next {
            right: 20px;
        }
        
        @media (max-width: 1024px) {
            .spotlight-container {
                margin: 0 60px;
            }
            
            .spotlight-slide {
                min-width: calc(100% - 100px);
            }
            
            .slide-info {
                padding: 40px;
            }
            
            .slide-info h3 {
                font-size: 48px;
            }
        }
        
        @media (max-width: 768px) {
            .spotlight-title {
                font-size: 48px;
            }
            
            .spotlight-container {
                margin: 0 20px;
            }
            
            .spotlight-slide {
                min-width: 100%;
                flex-direction: column;
                height: auto;
            }
            
            .slide-image {
                height: 300px;
            }
            
            .slide-info {
                padding: 30px;
            }
            
            .slide-info h3 {
                font-size: 36px;
            }
            
            .slide-info p {
                font-size: 16px;
            }
        }

          /* Footer */
        .footer {
            background: #192e4e;
            color: white;
            padding: 60px 20px 30px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 40px;
        }

        /* Medium screens: 2 columns */
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Small screens: 1 column */
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        
        .footer-column h4 {
            margin-bottom: 20px;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
            display: flex;
            justify-content: start;
            align-items: center;
            gap: 5px;
        }
        
        .footer-column ul li div {
            width: 8px;
        }
        
        .footer-column ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: white;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-size: 32px;
            font-weight: bold;
            font-style: italic;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }
        
        .social-links a {
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: background 0.3s;
        }
        
        .social-links a:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .copyright {
            text-align: center;
            padding: 20px;
            font-size: 12px;
            color: rgba(255,255,255,0.6);
        }

.fa-chevron-left, .fa-chevron-right {
    font-size: 16px;
}

