/* SECTION BASE */
.payment-gateway-section {
    background-color: #821d1a;
    /*padding: 20px;*/
}

.payment-gateway-container {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.payment-gateway-heading {
    margin-bottom: 20px;
}

.payment-gateway-heading h1 {
    margin-bottom: 0px;
    font-size: 50px;
    font-weight: bold;
    font-family: sans-serif;
    margin-top: 0px;
}

.payment-red-text {
    color: #ffffff;
}

.payment-pink-text {
    color: #a59b9b;
}

/* ==============================
   PERFECT NORMAL U CURVE (SMILE)
=================================*/
.payment-methods-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 120%;
    margin-left: -10%;
    margin-right: -10%;
    padding: 0px 0 40px;
    position: relative;
}

/* NORMAL SMILE CURVE (FINAL FIXED VERSION) */
.payment-icon-circle {
    --center: calc((var(--total) + 1) / 2);
    --offset: calc(var(--i) - var(--center));
    --curve: calc((var(--offset) * var(--offset)) * 18px);
    margin-bottom: var(--curve);
    width: 140px;
    height: 140px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.payment-icon-circle img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.payment-icon-circle:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* TABLET RESPONSIVE */
@media (max-width: 968px) {
    .payment-gateway-section {
        padding: 30px 15px;
    }

    .payment-gateway-heading h1 {
        font-size: 40px;
    }

    .payment-icon-circle {
        width: 110px;
        height: 110px;
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .payment-gateway-section {
        padding: 30px 15px;
    }

    .payment-gateway-heading h1 {
        font-size: 32px;
        padding: 0 10px;
    }

    .payment-methods-grid {
        width: 120%;
        margin-left: -10%;
        margin-right: -10%;
    }

    .payment-icon-circle {
        width: 80px;
        height: 80px;
    }

    .payment-icon-circle img {
        width: 65%;
        height: 65%;
    }
}

/* SMALL MOBILE RESPONSIVE */
@media (max-width: 480px) {
    .payment-gateway-section {
        padding: 25px 10px;
    }

    .payment-gateway-heading h1 {
        font-size: 24px;
        padding: 0 5px;
        line-height: 1.3;
    }

    .payment-methods-grid {
        width: 130%;
        margin-left: -15%;
        margin-right: -15%;
        padding: 0 0 30px;
    }

    .payment-icon-circle {
        width: 60px;
        height: 60px;
    }

    .payment-icon-circle img {
        width: 60%;
        height: 60%;
    }
}

/* EXTRA SMALL MOBILE */
@media (max-width: 360px) {
    .payment-gateway-heading h1 {
        font-size: 20px;
    }

    .payment-icon-circle {
        width: 50px;
        height: 50px;
    }

    .payment-icon-circle img {
        width: 55%;
        height: 55%;
    }
}
/****************************************************************************************************/
.testimonial-reviews-section {
    background-color: #efe4e4;
    padding: 60px 0 0 0;
    overflow: visible !important;
    position: relative;
}

.testimonial-reviews-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.testimonial-top-image {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: auto;
    z-index: 10;
}

.testimonial-reviews-header {
    margin-bottom: 0px;
}

.testimonial-main-title {
    font-size: 60px;
    font-weight: 800;
    color: #B90E0A;
    margin-bottom: 10px;
    font-family: sans-serif;
    margin-top: 15px;
}

.testimonial-subtitle {
    margin-bottom: 5px;
    font-size: 20px;
    color: #B90E0A;
    font-family: sans-serif;
}

.testimonial-cards-wrapper {
    position: relative;
    padding: 20px 0 60px;
}

.testimonial-cards-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonial-cards-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-review-card {
    min-width: 600px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    padding: 30px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.testimonial-review-card:hover {
    transform: translateY(-10px);
}

.testimonial-review-card:nth-child(odd) {
    background-image: url('https://jainnetis.com/popcorn/wp-content/uploads/2025/11/Decoration.png');
    background-color: #b90e0a;
}

.testimonial-review-card:nth-child(even) {
    background-image: url(https://jainnetis.com/popcorn/wp-content/uploads/2025/11/Decoration.png);
    background-color: #aeacac;
}

.testimonial-card-content {
    position: relative;
    z-index: 1;
}

.testimonial-customer-photo {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    margin: 0 0 20px 0;
    display: block;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.testimonial-review-text {
    font-family: sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.6;
    color: #303030;
    margin: 20px 0;
    text-align: left;
    min-height: 100px;
}

.testimonial-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.testimonial-customer-name {
    font-size: 14px;
    color: #303030;
    text-align: left;
    text-transform: uppercase;
    font-weight: 600;
}

.testimonial-verified-badge {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.75rem;
    color: #303030;
    text-transform: uppercase;
}

.testimonial-verified-icon {
    width: 16px;
    height: 16px;
    color: #ff6b6b;
}

.testimonial-nav-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #b90e0a;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-nav-btn:hover {
    background-color: #a01628;
    transform: scale(1.1);
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .testimonial-main-title {
        font-size: 48px;
    }

    .testimonial-subtitle {
        font-size: 18px;
    }

    .testimonial-review-card {
        min-width: 500px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .testimonial-reviews-section {
        padding: 40px 0 0 0;
    }

    .testimonial-top-image {
        width: 80px;
        top: -40px;
        left: 50%;
    }

    .testimonial-main-title {
        font-size: 32px;
        margin-top: 10px;
        padding: 0 15px;
    }

    .testimonial-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }

    .testimonial-cards-wrapper {
        padding: 20px 0 40px;
    }

    .testimonial-cards-slider {
        gap: 15px;
        padding: 20px 15px;
        scroll-snap-type: x mandatory;
    }

    .testimonial-review-card {
        min-width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        padding: 20px;
        scroll-snap-align: center;
        margin: 0 auto;
    }

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

    .testimonial-customer-photo {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
        border: 2px solid rgba(255, 255, 255, 0.5);
    }

    .testimonial-review-text {
        font-size: 16px;
        line-height: 1.5;
        min-height: auto;
        margin: 15px 0;
    }

    .testimonial-card-footer {
        margin-top: 15px;
    }

    .testimonial-customer-name {
        font-size: 12px;
    }

    .testimonial-verified-badge {
        font-size: 0.65rem;
        gap: 3px;
    }

    .testimonial-verified-icon {
        width: 14px;
        height: 14px;
    }

    .testimonial-nav-controls {
        gap: 10px;
        margin-top: 20px;
        padding: 0 15px;
    }

    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .testimonial-main-title {
        font-size: 28px;
    }

    .testimonial-subtitle {
        font-size: 14px;
    }

    .testimonial-review-card {
        min-width: calc(100vw - 20px);
        max-width: calc(100vw - 20px);
        padding: 15px;
    }

    .testimonial-cards-slider {
        padding: 20px 10px;
    }

    .testimonial-review-text {
        font-size: 14px;
    }

    .testimonial-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}
/* ************************************************************************************************* */


/**************************************************************************************************/
      /* Main Scroll-Triggered Section */
 .product-section {
            position: relative;
            height: 300vh; 
        } 
        
        .sticky-wrapper {
            position: sticky;
            top: 0;
            height: 100vh;
            overflow: hidden;
        }
        
        .horizontal-container {
            display: flex;
            height: 100%;
            will-change: transform;
            transform: translateX(0);
        }
        
        .slide-panel {
            min-width: 100vw;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 60px;
        }
        
        /* Slide Background Colors */
        .slide-1-bg { background-color: #1e3a5f; }
        .slide-2-bg { background-color: #d4a748; }
        .slide-3-bg { background-color: #f3c015eb; }
        
        /* Floating Popcorn Animation */
        .popcorn-float {
            position: absolute;
            width: 70px;
            height: 70px;
            opacity: 0.7;
            animation: floatRotate 4s ease-in-out infinite; 
        }
        
        .popcorn-1 {
            top: 10%;
            right: 8%;
            animation-delay: 0s;
        }
        
        .popcorn-2 {
            bottom: 15%;
            left: 6%;
            animation-delay: 2s;
        }
        
        @keyframes floatRotate {
            0%, 100% { 
                transform: translateY(0) rotate(0deg);
                opacity: 0.6;
            }
            50% { 
                transform: translateY(-25px) rotate(180deg);
                opacity: 1;
            }
        }
        
        /* Product Content Styling */
        .product-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10;
        }
        
        /* Large Background Text Styling */
        .bg-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: clamp(5rem, 12vw, 10rem);
            font-weight: 900;
            line-height: 0.85;
            white-space: nowrap;
            opacity: 0.75;
            pointer-events: none;
            text-align: center;
            font-family: 'Impact', sans-serif;
        }
        
        .slide-1-text { color: rgba(255, 255, 255, 0.15); }
        .slide-2-text { color: rgba(255, 255, 255, 0.1); }
        .slide-3-text { color: rgba(171, 103, 47, 0.2); }
        
        /* Product Image Wrapper - This moves with smiley */
        .product-image-wrapper {
            position: relative;
            margin-bottom: 3rem;
            will-change: transform;
            transition: none;
        }
        
        /* Default Product Image Styling */
        .product-image {
            width: clamp(200px, 25vw, 280px);
            height: auto;
            object-fit: contain;
            filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35));
        }
        
        /* Individual Slide Product Image Sizes */
        .slide-1-bg .product-image {
            width: clamp(200px, 25vw, 280px);
        }
        
        .slide-2-bg .product-image {
            width: clamp(200px, 25vw, 280px);
        }
        
        .slide-3-bg .product-image {
            width: clamp(320px, 40vw, 500px);
        }
        
        /* Smiley Badge - Attached to wrapper */
        .smiley-badge {
            position: absolute;
            right: -80px;
            top: 35%;
            width: 130px;
            height: 130px;
            background: white;
            border-radius: 50%;
            padding: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }
        
        
         .smiley-badge1 {
            position: absolute;
            right: -20px;
            top: 35%;
            width: 130px;
            height: 130px;
            background: white;
            border-radius: 50%;
            padding: 12px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
        }
        
         .smiley-badge1 img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            animation: continuousRotate 8s linear infinite;
        }
        
        .smiley-badge img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            animation: continuousRotate 8s linear infinite;
        }
        
        @keyframes continuousRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        /* CTA Button Group */
        .cta-button-group {
            display: flex;
            align-items: center;
            gap: 18px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        
        .cta-button-group:hover {
            transform: translateX(8px);
        }
        
        .arrow-circle {
            margin-right: -18px;
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #B90E0A;
            font-size: 18px;
        }
        
        .shop-button {
            background: white;
            color: #B90E0A;
            border: none;
            padding: 14px 36px;
            border-radius: 30px;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: 0.5px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: background 0.2s, transform 0.1s;
        }
        
        .shop-button:hover {
            transform: scale(1.05);
        }
/* ============================================
   SLIDE 1 - SALTED CUSTOMIZATION (Blue)
   ============================================ */
.slide-1-bg { 
    background-color: #1e3a5f; 
}
.slide-1-text { 
    color: #ffffff;
    font-size: 26vw;
    font-family: 'Thunder', 'Impact', sans-serif;
    font-weight: 900;
    letter-spacing: 0.02em;
}

/* ============================================
   SLIDE 2 - CHOCO CUSTOMIZATION (Brown)
   ============================================ */
.slide-2-bg { 
    background-color:;#d4a748; 
}
.slide-2-text { 
    color: #ffffff;
    font-size: 29vw;
    font-family: 'Thunder', 'Impact', sans-serif;
    font-weight: 900;
    letter-spacing: 0.02em;
}

/* ============================================
   SLIDE 3 - BUTTERY CUSTOMIZATION (Yellow)
   ============================================ */
.slide-3-bg { 
    background-color: #f3c015eb; 
}
.slide-3-text { 
    color: #ab672f;
    font-size: 26vw;
    font-family: 'Thunder', 'Impact', sans-serif;
    font-weight: 900;
    letter-spacing: 0.02em;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .slide-panel {
        padding: 40px 20px;
    }

    /* Default mobile size */
    .product-image {
        width: 180px;
    }

    /* Slide 3 - Buttery mobile size (larger) */
    .slide-3-bg .product-image {
        width: 220px;
    }

    .smiley-badge {
        width: 75px;
        height: 75px;
        right: -30px;
    }
    
    
    .smiley-badge1 {
        width: 75px;
        height: 75px;
    }

    .popcorn-float {
        width: 50px;
        height: 50px;
    }

    .bg-text {
        font-size: 6rem;
    }
}

/* Intro Section for initial view */
.intro-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d1f1a 100%);
}

.intro-content {
    text-align: center;
    color: white;
}

.intro-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.intro-content p {
    font-size: clamp(1rem, 2vw, 1.5rem);
    opacity: 0.8;
}
        /*********************************************************************/
        
        .popcorn-hanging-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 80px 0 100px;
    background: #f2f2f2;
    overflow: hidden;
}

.popcorn-title-wrapper {
    position: relative;
    text-align: right;
    margin-bottom: 60px;
    padding: 0 150px 0 20px;
}

.popcorn-title-text {
    font-family: Zeyada;
    font-size: 48px;
    color: #b91c1c;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right;
}

.popcorn-arrow-container {
    display: inline-block;
    text-align: center;
    margin-left: 20px;
}

.popcorn-arrow-svg {
    width: 80px;
    height: 100px;
    margin-top: -50px;
    margin-right: 100px;
}

/* Curved rope container - thicker wave */
.popcorn-rope-container {
    position: relative;
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
    overflow: hidden;
    z-index: 1;
}

.popcorn-rope-wrapper {
    position: absolute;
    width: 200%;
    height: 100%;
    left: 0;
    display: flex;
    animation: slideLeft 20s linear infinite;
    z-index: 1;
}

.popcorn-rope-svg {
    width: 50%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.popcorn-rope-container:hover .popcorn-rope-wrapper {
    animation-play-state: paused;
}

/* Cards container - horizontal scroll */
.popcorn-cards-container {
    position: relative;
    width: 100%;
    overflow: visible;
    margin-top: -120px;
    z-index: 10;
}

.popcorn-cards-wrapper {
    display: flex;
    gap: 120px;
    padding: 0 50px;
    animation: slideLeft 20s linear infinite;
    overflow: visible;
}

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

.popcorn-cards-wrapper:hover {
    animation-play-state: paused;
}

/* Card structure - alternating positions */
.popcorn-card-item {
    position: relative;
    flex-shrink: 0;
    z-index: 10;
}

/* Manual positioning for each card */
.popcorn-card-item:nth-child(1) {
    margin-top: -50px;
}

.popcorn-card-item:nth-child(2) {
    margin-top: 100px;
}

.popcorn-card-item:nth-child(3) {
    margin-top: -50px;
}

.popcorn-card-item:nth-child(4) {
    margin-top: 100px;
}

.popcorn-card-item:nth-child(5) {
    margin-top: -50px;
}

.popcorn-card-item:nth-child(6) {
    margin-top: 100px;
}

.popcorn-card-item:nth-child(7) {
    margin-top: -50px;
}

.popcorn-card-item:nth-child(8) {
    margin-top: 100px;
}

/* The hanging card */
.popcorn-hanging-card {
    width: 550px;
    min-height: 320px;
    padding: 25px 30px;
    background: #b90e0a;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    position: relative;
    animation: popcorn-gentle-swing 3s ease-in-out infinite;
    transform-origin: top center;
    z-index: 10;
}

.popcorn-card-item:nth-child(1) .popcorn-hanging-card { animation-delay: 0s; }
.popcorn-card-item:nth-child(2) .popcorn-hanging-card { animation-delay: 0.3s; }
.popcorn-card-item:nth-child(3) .popcorn-hanging-card { animation-delay: 0.6s; }
.popcorn-card-item:nth-child(4) .popcorn-hanging-card { animation-delay: 0.9s; }

@keyframes popcorn-gentle-swing {
    0%, 100% {
        transform: rotate(-1.5deg);
    }
    50% {
        transform: rotate(1.5deg);
    }
}

.popcorn-hanging-card:hover {
    animation: popcorn-swing-hover 0.8s ease-in-out infinite;
}

@keyframes popcorn-swing-hover {
    0%, 100% {
        transform: rotate(-4deg);
    }
    50% {
        transform: rotate(4deg);
    }
}

/* Smile icon inside card at top */
.popcorn-card-icon {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 85px;
    background: white;
    border: 4px solid #b90e0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 20;
}

.popcorn-card-icon img {
    width: 50px;
    height: 50px;
}

.popcorn-card-title {
    font-family: sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
    line-height: 1.0;
}

.popcorn-card-subtitle {
    font-family: sans-serif;
    font-size: 22px;
    color: white;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 12px;
}

.popcorn-card-note {
    font-family: sans-serif;
    font-size: 22px;
    color: white;
    text-align: center;
    line-height: 1.2;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1200px) {
    .popcorn-hanging-card {
        width: 480px;
    }

    .popcorn-title-wrapper {
        padding: 0 100px 0 20px;
    }

    .popcorn-title-text {
        font-size: 42px;
    }

    .popcorn-hanging-card {
        min-height: 300px;
        padding: 45px 30px;
    }

    .popcorn-card-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    
    
    
    .popcorn-rope-wrapper {
    position: absolute;
    width: 550%;
    height: 100%;
}
    .popcorn-hanging-card {
        width: 350px;
    }

    /* Faster animation on mobile */
    .popcorn-cards-wrapper {
        animation: slideLeft 15s linear infinite;
        gap: 80px;
    }

    .popcorn-rope-wrapper {
        animation: slideLeft 15s linear infinite;
    }

   .popcorn-card-item:nth-child(1) {
    margin-top: -40px;
}

.popcorn-card-item:nth-child(2) {
    margin-top: -5px;
}

.popcorn-card-item:nth-child(3) {
    margin-top: 30px;
}

.popcorn-card-item:nth-child(4) {
    margin-top: -40px;
}

.popcorn-card-item:nth-child(5) {
    margin-top: -5px;
}

.popcorn-card-item:nth-child(6) {
    margin-top: 40px;
}

.popcorn-card-item:nth-child(7) {
    margin-top:-40px;
}

.popcorn-card-item:nth-child(8) {
    margin-top:-10px;
}

    .popcorn-title-wrapper {
        padding: 0 60px 0 20px;
        text-align: center;
    }

    .popcorn-title-text {
        font-size: 32px;
        text-align: center;
    }

    .popcorn-arrow-container {
        margin: 0 auto;
    }

    .popcorn-arrow-svg {
        width: 60px;
        height: 80px;
        margin-right: 0;
        margin-top: -30px;
    }

    .popcorn-rope-container {
        height: 180px;
    }

    .popcorn-cards-container {
        margin-top: -80px;
    }

    .popcorn-hanging-card {
        min-height: 280px;
        padding: 40px 25px;
    }

    .popcorn-card-icon {
        width: 70px;
        height: 70px;
        top: -35px;
    }

    .popcorn-card-icon img {
        width: 40px;
        height: 40px;
    }

    .popcorn-card-title {
        font-size: 22px;
        margin-top: 25px;
    }

    .popcorn-card-subtitle {
        font-size: 14px;
    }

    .popcorn-card-note {
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .popcorn-hanging-card {
        width: 280px;
    }

    /* Even faster on small mobile */
    .popcorn-cards-wrapper {
        animation: slideLeft 12s linear infinite;
        gap: 60px;
        padding: 0 30px;
    }

    .popcorn-rope-wrapper {
        animation: slideLeft 12s linear infinite;
    }

    .popcorn-hanging-section {
        padding: 60px 0 80px;
        min-height: 80vh;
    }

    .popcorn-title-wrapper {
        padding: 0 30px;
        margin-bottom: 40px;
    }

    .popcorn-title-text {
        font-size: 28px;
    }

    .popcorn-arrow-svg {
        width: 50px;
        height: 70px;
    }

    .popcorn-rope-container {
        height: 150px;
    }

    .popcorn-cards-container {
        margin-top: -60px;
    }

    .popcorn-hanging-card {
        min-height: 200px;
        padding: 35px 20px;
    }

    .popcorn-card-icon {
        width: 60px;
        height: 60px;
        top: -30px;
    }

    .popcorn-card-icon img {
        width: 35px;
        height: 35px;
    }

    .popcorn-card-title {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .popcorn-card-subtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .popcorn-card-note {
        font-size: 11px;
    }
}

@keyframes slideLeftSmooth {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-670px * 4)); /* 670px = 550px card + 120px gap */
    }
}
        /*****************************************************************/
        

.pop-marquee {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  white-space: nowrap;
  overflow: hidden;
  z-index: 1; /* BELOW scrollsequence */
  opacity: 0.15;
}

.pop-marquee span {
  display: inline-block;
  font-size: 150px;
  font-weight: 500;  /* Freeman works best with 400 */
  letter-spacing: 5px;
  color: #ffffff;
  font-family: 'Freeman', sans-serif;
  animation: popScroll 18s linear infinite;
}

@keyframes popScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/*************************************************************************/
    .flavor-hero-wrapper {
    background-color: #821D1A;
    min-height: 180vh;
    position: relative;
    overflow: hidden;
}

/* --- Floating Decorations --- */
.flavor-decoration {
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    animation: flavorFloat 6s ease-in-out infinite;
    opacity: 0.8;
    z-index: 1;
}

/* Butter decorations */
.flavor-butter-decoration {
    width: 60px;
    height: 60px;
    background-image: url('https://jainnetis.com/popcorn/wp-content/uploads/2025/12/butter.png');
}

/* Chocolate decorations */
.flavor-chocolate-decoration {
    width: 50px;
    height: 50px;
    background-image: url('https://jainnetis.com/popcorn/wp-content/uploads/2025/12/choclate.png');
    animation: flavorFloat 7s ease-in-out infinite;
}

/* Decoration positions */
.flavor-decoration:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.flavor-decoration:nth-child(2) { top: 20%; right: 12%; animation-delay: 1.5s; }
.flavor-decoration:nth-child(3) { top: 55%; left: 10%; animation-delay: 3s; }
.flavor-decoration:nth-child(4) { top: 60%; right: 10%; animation-delay: 4.5s; }
.flavor-decoration:nth-child(5) { top: 65%; left: 12%; animation-delay: 2s; }
.flavor-chocolate-decoration:nth-child(6) { top: 65%; right: 15%; animation-delay: 5s; }

@keyframes flavorFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* --- Main Sections --- */
.flavor-top-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.flavor-scroll-image {
    position: absolute;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    z-index: 10;
    will-change: transform, top;
    top: 35%;
    left: 55%;
    transform: translate(-50%, -50%);
    max-width: 450px;
}

.flavor-bottom-section {
    min-height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 0;
    z-index: 2;
}

.flavor-label-text {
    font-family: 'Zeyada', cursive;
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.flavor-content-container {
    width: 100%;
    text-align: center;
    position: relative;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.flavor-heading-section {
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .flavor-heading-section {
        margin-bottom: 4rem;
    }
}

/* Main Heading Styles */
.flavor-main-heading {
    margin-top: 0;
    color: white;
    font-family: sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .flavor-main-heading {
        font-size: 3.5rem;
        line-height: 1.25;
    }
}

@media (min-width: 1024px) {
    .flavor-main-heading {
        font-size: 3.75rem;
    }
}

/* Product Display */
.flavor-product-display {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

/* Desktop Label Tag Styles */
.flavor-label-tag-desktop {
    position: absolute;
    display: none;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    animation: fadeInSlide 1s ease-out;
}

@media (min-width: 768px) {
    .flavor-label-tag-desktop {
        display: flex;
    }
}

.flavor-label-tag-desktop.flavor-label-left {
    left: 70px;
    bottom: 90%;
}

.flavor-label-tag-desktop.flavor-label-right {
    right: 70px;
    bottom: 90%;
}

.flavor-arrow {
    width: 3rem;
    height: auto;
}

.flavor-arrow-rotated {
    transform: rotate(180deg);
}

.flavor-main-image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.5));
}

@media (min-width: 768px) {
    .flavor-main-image {
        width: 100%;
    }
}

/* Mobile Labels */
.flavor-mobile-labels {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 24rem;
    margin-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 768px) {
    .flavor-mobile-labels {
        display: none;
    }
}

@keyframes fadeInSlide {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .flavor-hero-wrapper { min-height: 150vh; }
    .flavor-top-section { height: 65vh; }
    .flavor-bottom-section { min-height: 85vh; }
    .flavor-scroll-image {
        left: 57%;
        max-width: 320px;
    }
    .flavor-label-text { font-size: 2rem; }
}

@media (max-width: 576px) {
    .flavor-hero-wrapper { 
        min-height: 80vh; /* 100vh se kam kiya */
    }
    
    .flavor-top-section { 
        height: 25vh; /* 50vh se 25vh */
    }
    
    .flavor-bottom-section { 
        min-height: 55vh; /* 80vh se kam kiya */
    }

    .flavor-scroll-image { 
        margin-top:15px;
        max-width: 180px;
    }

    .flavor-mobile-labels .flavor-label-text {
        font-size: 1rem;
    }

    .flavor-label-tag-desktop.flavor-label-left,
    .flavor-label-tag-desktop.flavor-label-right {
        position: relative !important;
        bottom: auto !important;
    }
}

/************************************************************************/
.cinema-history-section {
    background-color: #e8d5d5;
    position: relative;
}
.cinema-history-header {
    padding: 80px 20px 40px;
    text-align: center;
    background-color: #e8d5d5;
}
.cinema-history-title {
    margin-top: 0;
    font-size: 3.5rem;
    font-weight: bold;
    color: #b91c1c;
    margin-bottom: 20px;
}
.cinema-history-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b91c1c;
    max-width: 800px;
    margin: 0 auto;
}
.cinema-gallery-sticky-wrapper {
    position: relative;
    width: 100%;
}
.cinema-gallery-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #e8d5d5;
}
.cinema-photo-strip {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    white-space: nowrap;
    will-change: transform;
    padding: 0 50px;
}
.cinema-photo-card {
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transform: rotate(var(--rotation));
    transition: transform 0.3s ease;
    position: relative;
    flex-shrink: 0;
}
.cinema-photo-card::before {
    content: '📌';
    position: absolute;
    top: -8px;
    right: 15px;
    font-size: 1.5rem;
    z-index: 10;
}
.cinema-photo-card:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 100;
}
.cinema-photo-card img,
.cinema-photo-card video,
.cinema-photo-card iframe {
    width: 280px;
    height: 500px;
    border-radius: 5px;
    display: block;
    object-fit: cover;
    border: none;
}
.cinema-photo-strip .cinema-photo-card:nth-child(odd) {
    --rotation: -8deg;
}
.cinema-photo-strip .cinema-photo-card:nth-child(even) {
    --rotation: 5deg;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .cinema-history-title {
        font-size: 1.7rem;
    }
    
    .cinema-history-description {
        font-size: 0.85rem;
        padding: 0 20px;
    }
    
    .cinema-gallery-sticky-wrapper {
        height: auto !important;
        padding: 0px 0px 80px;
    }
    
    .cinema-gallery-container {
        position: relative;
        height: 280px;
        align-items: center;
        padding: 20px 0 60px;
        overflow: hidden;
        touch-action: pan-y pinch-zoom;
        cursor: grab;
    }
    
    .cinema-gallery-container:active {
        cursor: grabbing;
    }
    
    .cinema-photo-strip {
        gap: 15px;
        padding: 0 20px;
        transition: transform 0.3s ease-out;
    }
    
    .cinema-photo-strip.dragging {
        transition: none;
    }
    
    .cinema-photo-card img,
    .cinema-photo-card video,
    .cinema-photo-card iframe {
        width: 150px;
        height: 200px;
        pointer-events: none;
    }
    
    .cinema-duplicate {
        display: flex;
    }
}

@media (min-width: 769px) {
    .cinema-duplicate {
        display: none;
    }
}