/* ============================================
   HOME PAGE SPECIFIC CSS
   ============================================ */

.section-padding {
    padding: 35px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 32px;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.view-all-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.view-all-link:hover {
    color: var(--primary-dark);
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

/* Common Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary-light);
}

.btn-white {
    background: white;
    color: var(--text-primary);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-white:hover {
    background: var(--bg-light);
}

/* ============================================
   HERO BANNER
   ============================================ */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 60px 0 60px 0;
    overflow: hidden;
    color: var(--text-primary);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Removed background gradient overlay */
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.15;
    margin-bottom: 20px;
}

.highlight-orange {
    color: #d95828;
}

.text-highlight {
    color: #d95828;
}

.hero-subtitle {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 28px;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon-wrapper {
    width: 32px;
    height: 32px;
    background: #fff3ea;
    border: 1px solid #fcdbca;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e85d04;
    flex-shrink: 0;
}

.feature-icon {
    width: 15px;
    height: 15px;
}

.feature-text {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    max-width: 120px;
    line-height: 1.25;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-btn {
    background: #d95828 !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(217, 88, 40, 0.2) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.hero-btn-outline {
    background: #ffffff !important;
    color: #1e293b !important;
    padding: 12px 24px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    border: 1px solid #cbd5e1 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.hero-btn-outline:hover {
    background: #f8fafc !important;
    border-color: #94a3b8 !important;
}

.hero-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 16px;
    color: var(--text-primary);
}

.trust-text span {
    font-size: 12px;
    color: var(--text-secondary);
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: var(--border-color);
}

.categories-section {
    position: relative;
    background-color: #fcf9f5;
    overflow: hidden;
    border-bottom: 1px solid #f2e9df;
    border-top: 1px solid #f2e9df;
}

.categories-section::before {
    content: '';
    position: absolute;
    inset: -4px;
    z-index: 0;
    background: url('../images/category_bg.png') center / cover no-repeat;
    filter: blur(2.5px);
}

.categories-section > .container {
    position: relative;
    z-index: 1;
}

.categories-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 12px 6px 24px 6px;
    margin-top: 32px;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.categories-grid::-webkit-scrollbar {
    display: none;
}

.category-card {
    flex-shrink: 0;
    width: 220px;
    scroll-snap-align: start;
    text-align: center;
    background: #ffffff;
    border: 1px solid #f2e9df;
    border-radius: 16px;
    padding: 24px 16px;
    box-shadow: 0 6px 16px rgba(74, 47, 29, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.category-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--bg-light);
    transition: transform 0.4s ease;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-name {
    font-size: 16px;
    font-weight: 700;
    color: #4a2f1d;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.category-count {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.category-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-link i {
    transition: transform 0.3s ease;
}

/* Hover effects */
.category-card:hover {
    transform: none;
    box-shadow: 0 16px 32px rgba(232, 93, 4, 0.12);
    border-color: rgba(232, 93, 4, 0.25);
    background: linear-gradient(180deg, #ffffff 0%, #fdfaf7 100%);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover .category-img {
    transform: scale(1.08);
}

.category-card:hover .category-name {
    color: var(--primary);
}

.category-card:hover .category-link i {
    transform: translateX(4px);
}

/* ============================================
   WHY CHOOSE US (ANIMATED)
   ============================================ */
.why-animated-section {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
    background: #fcf9f5;
    text-align: center;
    display: flex;
    align-items: center;
}

.bg-swoop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.why-animated-section .container {
    position: relative;
    z-index: 10;
}

.why-center-content {
    position: relative;
    z-index: 10;
    max-width: 500px;
    margin: 0 auto;
    padding: 16px 32px;
    will-change: transform, opacity;
}

.why-badge {
    display: inline-block;
    background-color: #fbe6e8;
    color: #e54d60;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.why-main-title {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.why-main-title .dark-text {
    font-size: 42px;
    color: #4a2f1d;
}

.why-main-title .pink-text {
    font-size: 56px;
    color: #e54d60;
}

.why-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

.why-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
    text-align: left;
    margin-top: 24px;
    margin-bottom: 32px;
}

.why-feature-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.why-icon-wrapper {
    width: 60px;
    height: 60px;
    background: #e85d04;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(232, 93, 4, 0.2);
    flex-shrink: 0;
}

.why-text-content h4 {
    font-size: 16px;
    color: #8c3b21;
    margin-bottom: 6px;
    font-weight: 700;
    margin-top: 4px;
}

.why-text-content p {
    font-size: 13px;
    color: #4a2f1d;
    line-height: 1.5;
    opacity: 0.9;
}

/* =====================
   MOBILE / RESPONSIVE
   ===================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    .hero-subtitle {
        font-size: 16px;
    }
    .hero-features {
        flex-wrap: wrap;
        gap: 12px;
    }
    .feature-text { max-width: 160px; }
    .categories-grid { padding-left: 8px; padding-right: 8px; }
}

@media (max-width: 768px) {
    #popular-grid .badge-best {
        display: none !important;
    }

    .section-padding { padding: 36px 0; }

    .hero-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    .hero-content { max-width: 100%; padding: 0 16px; }
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 15px; }
    .hero-features { flex-direction: column; gap: 12px; align-items: center; }
    .feature-item { justify-content: center; }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .hero-btn-outline, .btn-primary { width: 100%; justify-content: center; }

    /* Responsive Trust Bar Grid for Mobile */
    .trust-bar {
        padding: 18px 16px !important;
        background: #fcf9f5 !important;
        border-top: 1px solid #f0dec9 !important;
        border-bottom: 1px solid #f0dec9 !important;
    }
    .trust-bar-inner {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .trust-divider { 
        display: none !important; 
    }
    .trust-item, .trust-bar-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: center !important;
        background: #ffffff !important;
        border: 1px solid #ebd8c3 !important;
        border-radius: 10px !important;
        padding: 14px 10px !important;
        box-shadow: 0 2px 8px rgba(74, 47, 29, 0.04) !important;
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        gap: 8px !important;
    }
    .trust-icon, .trust-bar-item i {
        width: 26px !important;
        height: 26px !important;
        color: #e85d04 !important;
        margin: 0 !important;
    }
    .trust-text, .trust-bar-text {
        align-items: center !important;
        text-align: center !important;
        gap: 2px !important;
    }
    .trust-text strong, .trust-bar-text h4 {
        font-size: 14px !important;
        color: #3b2314 !important;
        line-height: 1.2 !important;
        margin: 0 !important;
    }
    .trust-text span, .trust-bar-text p {
        font-size: 11px !important;
        color: #6e5847 !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }
    /* 5th security badge spans both columns across the bottom */
    .trust-item:last-child,
    .trust-bar-item:last-child {
        grid-column: 1 / -1 !important;
        flex-direction: row !important;
        padding: 12px 18px !important;
        background: #fff6ef !important;
        border-color: #f5cfb3 !important;
        box-shadow: 0 2px 10px rgba(232, 93, 4, 0.06) !important;
        justify-content: center !important;
        gap: 12px !important;
    }
    .trust-item:last-child .trust-text,
    .trust-bar-item:last-child .trust-bar-text {
        align-items: flex-start !important;
        text-align: left !important;
    }

    .categories-grid { gap: 6px; padding: 12px 4px 24px 4px; }
    .category-card { width: calc(33.333% - 5px); min-width: calc(33.333% - 5px); padding: 10px 5px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 24px; }
    .hero-subtitle { font-size: 14px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
    .categories-grid { gap: 6px; padding: 10px 4px 20px 4px; }
    .category-card { width: calc(33.333% - 5px); min-width: calc(33.333% - 5px); padding: 8px 4px; }
    .feature-icon-wrapper { width: 28px; height: 28px; }
    .feature-text { font-size: 12px; }
}

.trust-badges-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #fbe6cb;
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge-icon {
    color: #e85d04;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.trust-badge-text {
    text-align: left !important;
    flex: 1;
}

.trust-badge-text h5 {
    font-size: 13px;
    color: #4a2f1d;
    margin: 0 0 4px 0;
    font-weight: 700;
    text-align: left !important;
}

.trust-badge-stars {
    color: #e85d04;
    font-size: 12px;
    text-align: left !important;
}

.partner-btn {
    margin-top: 24px;
    border-radius: 30px;
    padding: 14px 32px;
    background: #e54d60;
    box-shadow: 0 10px 20px rgba(229, 77, 96, 0.2);
}

.floating-sweet {
    position: absolute;
    z-index: 5;
    will-change: transform;
}

/* Initial positions (scattered outwards) */
.sweet-5 { width: 300px; height: 300px; bottom: 5%; left: 50%; margin-left: -700px; z-index: 8; }
.sweet-6 { width: 300px; height: 300px; top: 15%; right: 50%; margin-right: -700px; z-index: 8; }
.sweet-7 { width: 300px; height: 300px; bottom: 5%; right: 50%; margin-right: -700px; z-index: 8; }
.sweet-8 { width: 280px; height: 280px; top: 10%; left: 50%; margin-left: -700px; z-index: 8; }
.sweet-9 { width: 600px; height: 600px; top: 20%; left: 50%; margin-left: -750px; z-index: 7; }
.sweet-10 { width: 600px; height: 600px; top: 20%; right: 50%; margin-right: -750px; z-index: 7; }

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: none;
}

.product-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    position: relative;
}

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

.placeholder-product {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: rgba(0,0,0,0.5);
}

.product-info {
    padding: 16px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-weight {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.product-price-row {
    margin-bottom: 16px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.product-action-row {
    display: flex;
    gap: 8px;
}

.product-add-btn {
    flex: 1;
    padding: 8px 0;
    font-size: 13px;
    justify-content: center;
}

.product-cart-icon {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.product-cart-icon:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}

/* ============================================
   PROMO BANNERS
   ============================================ */
.promo-banners-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.promo-banner-large, .promo-banner-small {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    padding: 40px;
    display: flex;
    align-items: center;
}

.promo-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(67, 51, 42, 0.9) 0%, rgba(67, 51, 42, 0.4) 100%);
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-banner-large .promo-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 16px;
}

.promo-banner-large .promo-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    max-width: 320px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.promo-banner-small {
    background: linear-gradient(135deg, #fffaf4 0%, #fff1e0 100%) !important;
    border: 1px solid #f7dfcc !important;
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 20px rgba(232, 93, 4, 0.05);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.promo-banner-small:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(232, 93, 4, 0.14);
    border-color: #e85d04 !important;
}

.promo-banner-small .promo-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a2332;
    line-height: 1.25;
}

.promo-illustration {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.excel-doc-icon {
    width: 85px;
    height: 105px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    animation: floatDoc 4s ease-in-out infinite alternate;
    transition: transform 0.3s ease;
}

.promo-banner-small:hover .excel-doc-icon {
    transform: scale(1.05) rotate(-2deg);
}

@keyframes floatDoc {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-7px) rotate(-3deg);
    }
    100% {
        transform: translateY(2px) rotate(2deg);
    }
}

.excel-x {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #107c41 0%, #0b5c2f 100%);
    color: white;
    font-weight: 900;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(16, 124, 65, 0.3);
    transition: transform 0.3s ease;
}

.promo-banner-small:hover .excel-x {
    transform: scale(1.1) rotate(5deg);
}

.upload-arrow-circle {
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(132, 204, 22, 0.45);
    border: 3px solid #ffffff;
    animation: bounceUpload 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes bounceUpload {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 4px 12px rgba(132, 204, 22, 0.4);
    }
    50% {
        transform: translateY(-6px) scale(1.12);
        box-shadow: 0 10px 20px rgba(132, 204, 22, 0.65);
    }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 160px;
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px dashed #f5cdc2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    color: var(--primary);
}

.process-icon {
    width: 32px;
    height: 32px;
}

.step-number {
    position: absolute;
    bottom: -10px;
    background: white;
    border: 1px solid var(--border-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
}

.process-arrow {
    color: #e2e8f0;
    width: 24px;
    height: 24px;
}

.process-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.process-desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ============================================
   SELECT VENDORS IN MYSORE SECTION
   ============================================ */
.vendors-carousel-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 10px 4px 20px 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.vendors-carousel-grid::-webkit-scrollbar {
    display: none;
}

.vendor-card {
    flex-shrink: 0;
    width: 270px;
    height: 340px;
    background: #ffffff;
    border: 1px solid #efe4d8;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.vendor-card:hover {
    transform: none;
    box-shadow: 0 10px 25px rgba(232, 93, 4, 0.12);
    border-color: #f7cbaf;
}

.vendor-badge-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.vendor-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tag-heritage {
    background: #fff4e5;
    color: #d9662a;
    border: 1px solid #fcdbbf;
}

.tag-top {
    background: #ffebeb;
    color: #d92525;
    border: 1px solid #ffc2c2;
}

.tag-verified {
    background: #eefbf1;
    color: #1bb24a;
    border: 1px solid #c7f3d3;
}

.tag-savory {
    background: #f7efff;
    color: #8b3dff;
    border: 1px solid #e5cbff;
}

.tag-pure {
    background: #fffbe6;
    color: #b8860b;
    border: 1px solid #ffe999;
}

.vendor-rating {
    font-size: 12px;
    font-weight: 700;
    color: #e85d04;
    background: #fff8f2;
    padding: 3px 8px;
    border-radius: 10px;
}

.vendor-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff5ee;
    border: 1px solid #fce2d0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e85d04;
    margin-bottom: 12px;
}

.vendor-store-icon {
    width: 24px;
    height: 24px;
}

.vendor-title {
    font-size: 17px;
    font-weight: 700;
    color: #2b1b12;
    margin-bottom: 6px;
    line-height: 1.25;
}

.vendor-location {
    font-size: 12px;
    color: #7a685b;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
}

.vendor-specialty {
    background: #faf6f0;
    border-radius: 8px;
    padding: 8px 10px;
    margin-bottom: 16px;
    font-size: 12px;
}

.spec-label {
    color: #8c7667;
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
}

.spec-value {
    color: #4a2f1d;
    font-weight: 700;
}

.vendor-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #efe4d8;
    padding-top: 12px;
    margin-top: auto;
}

.vendor-orders {
    font-size: 11px;
    font-weight: 600;
    color: #8c7667;
}

.vendor-btn {
    font-size: 12px;
    font-weight: 700;
    color: #e85d04;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.vendor-card:hover .vendor-btn {
    gap: 7px;
}

/* ============================================
   THE SIHIPAK ADVANTAGE
   ============================================ */
.advantage-section {
    display: flex;
    background: #fdfaf6;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.advantage-image-col {
    width: 40%;
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
}

.advantage-content-col {
    width: 60%;
    padding: 60px 80px 60px 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.advantage-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 40px;
}

.advantage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 24px;
}

.adv-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.adv-icon {
    width: 22px;
    height: 22px;
    color: #7ab544; /* Light green check */
    flex-shrink: 0;
}

.quality-badge {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%) scale(0.2) rotate(-120deg);
    opacity: 0;
    background: #fdfaf6;
    border-radius: 50%;
    padding: 8px;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s ease;
    will-change: transform, opacity;
}

.quality-badge.active {
    transform: translateY(-50%) scale(1) rotate(0deg);
    opacity: 1;
}

.quality-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px dashed #d9662a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #d9662a;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(217, 102, 42, 0.15);
    animation: sealGlow 3s ease-in-out infinite alternate;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.quality-badge:hover .quality-circle {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 12px 30px rgba(217, 102, 42, 0.3);
    border-style: solid;
}

@keyframes sealGlow {
    0% {
        box-shadow: 0 4px 14px rgba(217, 102, 42, 0.15);
    }
    100% {
        box-shadow: 0 10px 24px rgba(217, 102, 42, 0.32);
    }
}

/* ============================================
   PREMIUM SAVOURIES PROMO BANNER
   ============================================ */
.banner-right-content {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 65%;
    max-width: 900px;
    padding-right: 20px;
    margin-left: auto;
}
.banner-text-section {
    flex: 1;
}
.savouries-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 20px;
    padding: 0 10px;
}
.savouries-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.savouries-icon-box {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: #fdf5ef;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d9662a;
    flex-shrink: 0;
}
.savouries-feature-label {
    font-size: 14px;
    color: #2d1a0d;
    font-weight: 600;
    line-height: 1.25;
}
.savouries-divider {
    width: 1px;
    border-left: 1px dashed #e2d1c3;
    height: 200px;
}
.banner-action-section {
    text-align: center;
    width: 280px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.savouries-action-desc {
    font-size: 17px;
    color: #4a2f1d;
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.3;
    font-weight: 600;
}
.savouries-order-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* ============================================
   PARTNERS & TESTIMONIALS (SLIDING MARQUEE)
   ============================================ */
.partners-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0 20px 0;
    margin-bottom: 20px;
}

.partners-marquee-wrapper::before,
.partners-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 3;
    pointer-events: none;
}
.partners-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}
.partners-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: slowSlidePartners 28s linear infinite;
    will-change: transform;
}

.partners-track:hover {
    animation-play-state: paused;
}

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

.partner-logo-wrapper {
    width: auto;
    height: 95px;
    opacity: 1;
    filter: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 15px !important;
    box-shadow: none !important;
}

.partner-logo-wrapper:hover {
    transform: translateY(-4px);
}

.partner-logo-img {
    height: 85px;
    max-height: 85px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.08));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.3s ease;
}

.partner-logo-wrapper:hover .partner-logo-img {
    transform: scale(1.18);
    filter: drop-shadow(0 8px 18px rgba(232, 93, 4, 0.25));
}

.partner-logo-svg {
    width: 100%;
    height: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.testimonial-quote {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 80px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.star.filled {
    color: var(--accent-yellow);
    fill: var(--accent-yellow);
    width: 16px;
    height: 16px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-secondary);
}

.user-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.user-company {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ============================================
   APP PROMO
   ============================================ */
.app-promo-section {
    background: #2e1503; /* Rich dark brown from user swatch */
    display: flex;
    justify-content: center; /* Center the inner wrap */
    padding: 0; /* Remove side padding so background can hit edges */
    color: white;
    overflow: hidden;
    width: calc(100% - 40px);
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 32px;
}

.app-promo-inner-wrap {
    display: flex;
    width: 100%;
    max-width: 1400px; /* Same max-width as the container usually has */
    padding: 0 40px; /* Internal padding */
}

.app-promo-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    padding: 30px 0; /* Reduced from 60px */
}

.app-mockup {
    width: 160px; /* Reduced from 180px */
    height: 320px; /* Reduced from 360px */
    background: black;
    border-radius: 20px;
    border: 8px solid #222;
    margin-bottom: -100px; /* To let it stick out bottom slightly */
}

.app-title {
    font-size: 24px; /* Reduced from 28px */
    font-weight: 700;
    margin-bottom: 12px;
}

.app-desc {
    font-size: 13px; /* Reduced from 14px */
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px; /* Reduced from 32px */
    max-width: 280px;
    line-height: 1.5;
}

.app-buttons {
    display: flex;
    gap: 12px; /* Reduced from 16px */
}

.app-promo-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; /* Reduced from 32px */
    padding: 30px 0 30px 40px; /* Reduced from 60px */
    border-left: 1px solid rgba(255,255,255,0.1);
    align-items: center;
}

.app-feature {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Reduced from 16px */
    font-size: 12px; /* Reduced from 13px */
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.app-feature-icon {
    width: 24px; /* Reduced from 28px */
    height: 24px;
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   HOMEPAGE MOBILE & TABLET RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
    /* Hero Banner floating sweets adjust */
    .sweet-9, .sweet-10 {
        width: 300px;
        height: 300px;
    }
    .sweet-9 { margin-left: -500px; }
    .sweet-10 { margin-right: -500px; }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 16px 0 !important;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px !important;
        margin-bottom: 14px !important;
    }

    /* Hero Banner Section */
    .hero-section {
        padding: 24px 0 !important;
        text-align: center;
    }
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    .hero-desc {
        font-size: 14px;
        margin: 0 auto 30px auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    /* Enable and style floating sweets on mobile as background decorations */
    .floating-sweet {
        display: block !important;
        opacity: 0.35 !important;
        z-index: 1 !important;
    }
    .sweet-5 {
        width: 130px !important;
        height: 130px !important;
        margin-left: -170px !important;
        bottom: 12% !important;
    }
    .sweet-6 {
        width: 130px !important;
        height: 130px !important;
        margin-right: -170px !important;
        top: 15% !important;
    }
    .sweet-7 {
        width: 130px !important;
        height: 130px !important;
        margin-right: -160px !important;
        bottom: 5% !important;
    }
    .sweet-8 {
        width: 120px !important;
        height: 120px !important;
        margin-left: -160px !important;
        top: 10% !important;
    }
    .sweet-9 {
        width: 280px !important;
        height: 280px !important;
        margin-left: -200px !important;
        top: 20% !important;
        opacity: 0.2 !important;
    }
    .sweet-10 {
        width: 280px !important;
        height: 280px !important;
        margin-right: -200px !important;
        top: 20% !important;
        opacity: 0.2 !important;
    }

    /* Homepage Trust Bar */
    .hero-trust-bar {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }
    .trust-divider {
        display: none;
    }
    .trust-item {
        justify-content: center;
        width: 100%;
    }

    /* Categories Grid */
    .categories-grid {
        display: flex !important;
        gap: 16px !important;
    }

    /* Products Grid - 3 Cards on Mobile */
    .products-grid,
    .products-grid-4,
    .top-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    .product-card {
        padding: 6px !important;
        border-radius: 10px !important;
    }
    .product-name, .product-title {
        font-size: 11px !important;
        line-height: 1.2 !important;
    }
    .product-price {
        font-size: 12px !important;
    }

    /* Blogs Grid */
    .news-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        gap: 16px !important;
        padding-bottom: 10px;
    }
    .news-grid::-webkit-scrollbar {
        display: none;
    }
    .news-grid .blog-card {
        flex: 0 0 85% !important;
        scroll-snap-align: start;
        max-width: 85% !important;
    }

    /* Why Choose Us Section Mobile Adjustments */
    .why-main-title .dark-text {
        font-size: 28px !important;
    }
    .why-main-title .pink-text {
        font-size: 38px !important;
    }
    .why-subtitle {
        font-size: 14px !important;
    }
    /* Why Choose Us Redesign Mobile */
    .why-center-content {
        padding: 16px !important;
    }
    
    .why-main-title .highlight-orange {
        font-size: 40px !important;
    }
    
    .why-grid-2col {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .trust-badges-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px 20px !important;
        align-items: center !important;
        padding: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Partners Marquee Mobile */
    .partner-logo-wrapper {
        width: auto !important;
        height: 75px !important;
    }
    .partner-logo-img {
        height: 65px !important;
        max-height: 65px !important;
    }

    /* Advantage Section Mobile */
    .advantage-section {
        flex-direction: column !important;
        overflow: hidden !important;
    }
    .advantage-image-col {
        width: 100% !important;
        height: 240px !important;
        min-height: 240px !important;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
        background-size: cover !important;
        background-position: center !important;
    }
    .advantage-content-col {
        width: 100% !important;
        padding: 28px 20px !important;
        box-sizing: border-box !important;
    }
    .advantage-title {
        font-size: 24px !important;
        margin-bottom: 24px !important;
    }
    .advantage-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
    .quality-badge {
        position: relative !important;
        right: 0 !important;
        top: 0 !important;
        transform: none !important;
        margin: 24px auto 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        opacity: 1 !important;
    }
    .quality-badge.active {
        transform: none !important;
    }

    /* Vendors & Product Horizontal Touch Scrolling */
    .vendors-carousel-grid,
    .carousel-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 12px !important;
        gap: 16px !important;
        scrollbar-width: none !important;
    }
    .vendors-carousel-grid::-webkit-scrollbar,
    .carousel-grid::-webkit-scrollbar {
        display: none !important;
    }
    .vendor-card {
        min-width: 280px !important;
        max-width: 280px !important;
        scroll-snap-align: start !important;
        flex-shrink: 0 !important;
    }

    /* How Bulk Ordering Works Mobile Layout */
    .process-flow {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        padding: 10px 0 !important;
    }
    .process-arrow {
        display: none !important;
    }
    .process-step {
        max-width: 100% !important;
        background: #fffcf9;
        border: 1px solid #fce8dc;
        border-radius: 16px;
        padding: 16px 12px;
        box-shadow: 0 4px 12px rgba(232, 93, 4, 0.04);
        transition: transform 0.25s ease;
    }
    .process-step:nth-last-child(1) {
        grid-column: span 2;
        max-width: 240px !important;
        margin: 0 auto;
        width: 100%;
    }
    .process-icon-wrapper {
        width: 56px !important;
        height: 56px !important;
        margin-bottom: 12px !important;
        border-width: 2px !important;
    }
    .process-icon {
        width: 24px !important;
        height: 24px !important;
    }
    .process-title {
        font-size: 14px !important;
        margin-bottom: 4px !important;
        line-height: 1.25 !important;
    }
    .process-desc {
        font-size: 11px !important;
        line-height: 1.35 !important;
    }
    /* Promo Banners Grid Mobile Stack */
    .promo-banners-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
    }
    .promo-banner-large {
        padding: 30px 24px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .promo-banner-small {
        padding: 24px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 16px !important;
    }
    .promo-title {
        font-size: 22px !important;
    }
    .promo-banner-small .promo-title {
        font-size: 20px !important;
        line-height: 1.25 !important;
    }
    .promo-banner-small .promo-desc {
        max-width: 100% !important;
        font-size: 13px !important;
    }
    .promo-illustration {
        width: 80px !important;
        height: 80px !important;
        flex-shrink: 0 !important;
    }
    .excel-doc-icon {
        width: 65px !important;
        height: 80px !important;
    }
    .excel-x {
        width: 34px !important;
        height: 34px !important;
        font-size: 18px !important;
    }
    .upload-arrow-circle {
        width: 34px !important;
        height: 34px !important;
    }

    /* Premium Savouries Promo Banner Mobile */
    .savouries-promo-section {
        padding: 20px 0 !important;
        min-height: auto !important;
    }
    .savouries-promo-container {
        justify-content: center !important;
        background-image: linear-gradient(135deg, #fff7f0 0%, #fbeadb 100%) !important;
        padding: 24px 16px !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04) !important;
    }
    .banner-right-content {
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column !important;
        gap: 20px !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        box-sizing: border-box !important;
    }
    .banner-text-section {
        width: 100% !important;
    }
    .savouries-title-text {
        font-size: 19px !important;
        padding: 6px 10px !important;
        white-space: normal !important;
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4px !important;
        line-height: 1.3 !important;
    }
    .savouries-title-text span {
        margin-right: 0 !important;
    }
    .typing-text-savouries-wrapper {
        display: inline-block !important;
    }
    .typing-text-savouries {
        font-size: 19px !important;
    }
    .savouries-subtitle-line span:not(:nth-child(2)) {
        width: 20px !important;
    }
    .savouries-subtitle-line span:nth-child(2) {
        font-size: 12.5px !important;
    }
    .savouries-features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        column-gap: 10px !important;
        row-gap: 12px !important;
        padding: 0 !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .savouries-feature-item {
        gap: 8px !important;
    }
    .savouries-icon-box {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
    }
    .savouries-icon-box [data-lucide] {
        width: 16px !important;
        height: 16px !important;
    }
    .savouries-feature-label {
        font-size: 11.5px !important;
        line-height: 1.2 !important;
    }
    .banner-action-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-top: 10px !important;
    }
    .savouries-action-desc {
        font-size: 14px !important;
        margin-bottom: 12px !important;
    }
    .savouries-order-btn {
        width: 100% !important;
        padding: 12px 16px !important;
        font-size: 15px !important;
    }
    .savouries-order-btn {
        padding: 12px 18px !important;
        font-size: 16px !important;
    }

    /* App Promo Section Mobile */
    .app-promo-section {
        padding: 20px 0 !important;
        width: calc(100% - 32px) !important;
        margin: 0 auto !important;
        border-radius: 20px !important;
        box-sizing: border-box !important;
    }
    .app-promo-inner-wrap {
        flex-direction: column !important;
        padding: 24px 16px !important;
        gap: 32px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .app-promo-left {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 24px 0 0 0 !important;
        border-top: 1px solid rgba(255,255,255,0.12) !important;
        border-left: none !important;
    }
    .app-promo-text {
        text-align: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    .app-promo-text .app-title {
        text-align: center !important;
        font-size: 22px !important;
    }
    .app-desc {
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    .app-buttons {
        justify-content: center !important;
        width: 100% !important;
    }
    .app-mockup {
        margin: 0 auto 16px auto !important;
        width: 200px !important;
        max-width: 200px !important;
    }
    .app-promo-bulk {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        padding: 0 !important;
        border-left: none !important;
        text-align: center !important;
    }
    .app-promo-bulk .app-title {
        text-align: center !important;
        font-size: 22px !important;
    }
    .app-promo-bulk .app-desc {
        text-align: center !important;
        margin: 0 auto 16px auto !important;
    }
    .bulk-features {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        width: 100% !important;
        margin-bottom: 20px !important;
        box-sizing: border-box !important;
    }
    .bulk-tag {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
        box-sizing: border-box !important;
        padding: 8px 6px !important;
        font-size: 11.5px !important;
    }
    .bulk-action-buttons {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
        align-items: stretch !important;
        box-sizing: border-box !important;
    }
    .bulk-primary-btn, .bulk-outline-btn {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    .app-promo-features {
        position: relative !important;
        overflow: hidden !important;
        padding: 24px 0 0 0 !important;
        border-left: none !important;
        border-top: 1px solid rgba(255,255,255,0.12) !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 100% !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        box-sizing: border-box !important;
    }
    .app-feature {
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 12px !important;
        padding: 12px 10px !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        transition: all 0.3s ease !important;
        z-index: 1 !important;
    }
    .app-feature-icon,
    .app-feature [data-lucide] {
        width: 22px !important;
        height: 22px !important;
        color: #e85d04 !important;
        flex-shrink: 0 !important;
    }
    .app-feature span {
        color: #ffffff !important;
        font-size: 11.5px !important;
        font-weight: 600 !important;
        line-height: 1.25 !important;
    }
    .app-promo-features .promo-mandala-decor {
        display: block !important;
        position: absolute !important;
        right: -30px !important;
        bottom: -20px !important;
        top: auto !important;
        width: 180px !important;
        height: 180px !important;
        opacity: 0.22 !important;
        pointer-events: none !important;
        z-index: 0 !important;
        animation: rotateMandala 25s linear infinite !important;
    }
}

@keyframes rotateMandala {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 480px) {
    .promo-banner-small {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 20px !important;
    }
    .promo-illustration {
        align-self: center !important;
    }
    .categories-grid {
        display: flex !important;
    }
    .products-grid,
    .products-grid-4,
    .top-products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
    }
    .hero-title {
        font-size: 28px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* --- Hero Slider Styles --- */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.hero-slider-container {
    position: relative;
    width: 100%;
}
.hero-slides {
    display: flex;
    width: 300%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide {
    width: 33.3333%;
    flex-shrink: 0;
    position: relative;
    padding: 80px 0;
    min-height: 520px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.highlight-orange {
    color: #e85d04;
}

.hero-slide .hero-script {
    font-family: 'Great Vibes', cursive;
    font-size: 32px;
    color: #e54d60;
    margin-bottom: -10px;
    display: block;
}

/* Navigation Dots positioning */
.hero-dots-container {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.hero-dots-container .hero-dots {
    display: flex;
    gap: 10px;
}
.hero-dots-container .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(74, 47, 29, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-dots-container .dot.active {
    background: #e85d04;
    width: 28px;
    border-radius: 5px;
}

/* Responsive adjustments for Slider */
@media (max-width: 768px) {
    .hero-slide {
        padding: 50px 0 70px 0;
        min-height: auto;
        text-align: center;
        background-blend-mode: overlay;
        background-color: rgba(255, 255, 255, 0.8) !important;
    }
    .hero-slide.dark-slide {
        background-color: rgba(0, 0, 0, 0.65) !important;
    }
    .hero-inner {
        justify-content: center;
        width: 100%;
        padding: 0 20px;
    }
    .hero-content {
        max-width: 100%;
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-slide .hero-script {
        font-size: 24px !important;
        margin-bottom: 8px !important;
    }
    .hero-title {
        font-size: 28px !important;
        line-height: 1.25 !important;
        margin-bottom: 16px !important;
    }
    .hero-subtitle {
        font-size: 14px !important;
        margin-bottom: 24px !important;
        line-height: 1.5 !important;
        max-width: 480px;
        color: var(--text-primary) !important;
    }
    .dark-slide .hero-subtitle {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    .hero-features {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-bottom: 30px !important;
        width: 100%;
        max-width: 400px;
    }
    .feature-item {
        justify-content: flex-start;
        background: rgba(255, 255, 255, 0.7);
        padding: 8px 12px;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.08);
        gap: 8px;
    }
    .dark-slide .feature-item {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.1);
    }
    .feature-text {
        text-align: left;
        max-width: 100% !important;
        font-size: 12px !important;
    }
    .hero-actions {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100%;
        max-width: 320px;
    }
    .hero-actions .btn, .hero-actions button {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
        margin: 0 !important;
    }
    .hero-dots-container {
        bottom: 20px;
    }
}

/* Dark Slide Custom Styling for high contrast */
.dark-slide {
    color: #ffffff;
}
.dark-slide .hero-title {
    color: #ffffff;
}
.dark-slide .hero-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
}
.dark-slide .hero-script {
    color: #ffb703 !important; /* Premium warm gold color script text */
}
.dark-slide .highlight-orange {
    color: #ff9f1c !important; /* Brighter gold/orange */
    text-shadow: 0 2px 10px rgba(255, 159, 28, 0.4);
}
.dark-slide .feature-text {
    color: #ffffff !important;
}
.dark-slide .hero-btn-outline {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
}
.dark-slide .hero-btn-outline i,
.dark-slide .hero-btn-outline [data-lucide] {
    color: #000000 !important;
}
.dark-slide .hero-btn-outline:hover {
    background: #f1f5f9 !important;
    color: #000000 !important;
}

/* --- B2B Checkout and Success Modals (Demo) --- */
.demo-checkout-modal, .demo-success-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-backdrop {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content-card {
    position: relative;
    background: white;
    width: 90%;
    max-width: 650px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 10;
    overflow: hidden;
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    background: #fffcf9;
}

.modal-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a2f1d;
    font-size: 18px;
    font-weight: 700;
}

.modal-close-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: #888;
    padding: 4px;
    border-radius: 50%;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-body {
    padding: 24px;
    max-height: 80vh;
    overflow-y: auto;
}

.order-summary-section {
    background: #fdfbf9;
    border: 1px solid #fae6cb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.order-summary-section h4, .checkout-demo-form h4 {
    margin: 0 0 12px 0;
    color: #4a2f1d;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.checkout-items-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 150px;
    overflow-y: auto;
    margin-bottom: 12px;
}

.checkout-item-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    padding: 4px 0;
    border-bottom: 1px dashed #eee;
}

.checkout-item-name {
    font-weight: 600;
    color: #333;
}

.checkout-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #fae6cb;
    font-size: 15px;
    color: #4a2f1d;
}

.checkout-total-row strong {
    font-size: 18px;
    color: #e85d04;
    font-weight: 800;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.form-group input, .form-group textarea {
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: #e85d04;
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 93, 4, 0.1);
}

.place-order-submit-btn {
    width: 100%;
    margin-top: 24px;
    padding: 14px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    cursor: pointer;
    background: #e85d04;
    color: white;
    border: none;
    transition: background 0.2s;
}

.place-order-submit-btn:hover {
    background: #dc2f02;
}

/* Success Modal specific styles */
.success-content-card {
    position: relative;
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    z-index: 10;
    text-align: center;
    animation: scaleUp 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleUp {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-icon-wrapper {
    width: 72px;
    height: 72px;
    background: #e6f7ed;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}

.success-check-icon {
    width: 36px;
    height: 36px;
}

.success-content-card h3 {
    margin: 0 0 12px 0;
    color: #4a2f1d;
    font-size: 22px;
    font-weight: 800;
}

.success-order-id {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    background: #f4fbf7;
    border: 1px solid #a7f3d0;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
}

.success-order-id strong {
    color: #10b981;
}

.success-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.close-success-btn {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    background: #10b981;
    color: white;
    border: none;
    transition: background 0.2s;
}

.close-success-btn:hover {
    background: #059669;
}

/* Toast Notification Styles */
.demo-toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.demo-toast {
    background: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: toastSlideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid #e85d04;
}

@keyframes toastSlideIn {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.demo-toast.removing {
    animation: toastFadeOut 0.3s forwards;
}

@keyframes toastFadeOut {
    to { transform: translateY(10px); opacity: 0; }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .demo-toast-container {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

/* ==========================================
   BLOGS & ARTICLES SECTION
   ========================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.blog-card:hover {
    transform: none;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #fdfbf7;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
    transform: scale(1.06);
}

.blog-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(232, 93, 4, 0.2);
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta-item i {
    width: 14px;
    height: 14px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    color: #4a2f1d;
    line-height: 1.4;
    margin: 0 0 12px 0;
    transition: color 0.2s;
}

.blog-card:hover .blog-title {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.blog-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
    margin-top: auto;
}

.blog-card:hover .blog-link {
    gap: 10px;
}

/* Carousel Arrow buttons */
.carousel-arrows {
    display: flex;
    gap: 8px;
}
.arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #f2e9df;
    background: #ffffff;
    color: #4a2f1d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}
.arrow-btn:hover {
    background: #e85d04;
    color: #ffffff;
    border-color: #e85d04;
    box-shadow: 0 4px 10px rgba(232, 93, 4, 0.15);
}
.arrow-btn i {
    width: 18px;
    height: 18px;
    display: block;
}

@media (max-width: 768px) {
    .carousel-arrows {
        display: flex !important;
        gap: 8px !important;
    }
}

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #ebdcd0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(60, 36, 21, 0.02);
}

/* Override reveal-stagger for FAQ items:
   translateY is clipped by overflow:hidden, so use opacity + scale only */
.faq-accordion-wrapper.reveal-stagger > * {
    opacity: 0;
    transform: translateY(0) scale(0.97);
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-wrapper.reveal-stagger.active > * {
    opacity: 1;
    transform: scale(1);
}

.faq-item:hover {
    border-color: #e85d04;
    box-shadow: 0 8px 25px rgba(232, 93, 4, 0.06);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 24px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #3c2415;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #e85d04;
}

.faq-question .faq-icon {
    width: 20px;
    height: 20px;
    color: #e85d04;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    color: #e85d04;
    padding-bottom: 12px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 24px;
    background: #ffffff;
}

.faq-item.active .faq-answer {
    padding-bottom: 22px;
}

.faq-answer p {
    font-size: 15px;
    color: #7d7268;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
    .faq-answer p {
        font-size: 14.5px;
    }
    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }
}
/* ============================================
   PROMO BANNER VIDEO & TYPING ANIMATION
   ============================================ */
.promo-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.typing-text-title-wrapper {
    display: inline-block;
}

.typing-text-title {
    display: inline-block;
    color: #e85d04;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #e85d04;
    width: 11ch; /* Length of "Bulk Order?" */
    animation: typing-title 3.5s steps(11, end) infinite, blink-caret-title .75s step-end infinite;
    vertical-align: bottom;
}

@keyframes typing-title {
    0%, 20% { width: 0; }
    40%, 80% { width: 11ch; }
    100% { width: 0; }
}

@keyframes blink-caret-title {
    from, to { border-color: transparent }
    50% { border-color: #e85d04; }
}

.slide-text-anim {
    display: inline-block;
    color: #e85d04;
    animation: slide-text-loop 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    opacity: 0;
}

@keyframes slide-text-loop {
    0%, 10% { transform: translateX(30px); opacity: 0; }
    20%, 80% { transform: translateX(0); opacity: 1; }
    90%, 100% { transform: translateX(-30px); opacity: 0; }
}

/* ============================================
   BULK ORDER ANIMATIONS (IN APP PROMO)
   ============================================ */
.typing-text-bulk-wrapper {
    display: inline-block;
}

.typing-text-bulk {
    display: inline-block;
    color: #e85d04;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #e85d04;
    width: 17ch; /* Length of "Bulk Order Today" */
    animation: typing-bulk 4s steps(17, end) infinite, blink-caret-title .75s step-end infinite;
    vertical-align: bottom;
}

@keyframes typing-bulk {
    0%, 20% { width: 0; }
    40%, 80% { width: 17ch; }
    100% { width: 0; }
}

/* SAVOURIES PROMO BANNER TYPING ANIMATION */
.typing-text-savouries-wrapper {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.typing-text-savouries {
    display: inline-block;
    color: #e85d04;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #e85d04;
    width: 18ch; /* Length of "Sweets & Savouries" */
    animation: typing-savouries 4.5s steps(18, end) infinite, blink-caret-title .75s step-end infinite;
    vertical-align: middle;
}

@keyframes typing-savouries {
    0%, 15% { width: 0; }
    40%, 85% { width: 18ch; }
    100% { width: 0; }
}

.pulse-btn-anim {
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(232, 93, 4, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(232, 93, 4, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(232, 93, 4, 0); }
}

.bounce-btn-anim {
    animation: bounce-horizontal 2.5s infinite;
}

@keyframes bounce-horizontal {
    0%, 20%, 50%, 80%, 100% { transform: translateX(0); }
    40% { transform: translateX(-5px); }
    60% { transform: translateX(-3px); }
}

/* ============================================
   PRODUCTS CAROUSEL GRID
   ============================================ */
.products-carousel-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding-bottom: 20px;
}
.products-carousel-grid::-webkit-scrollbar {
    display: none;
}
.products-carousel-grid .product-card {
    flex-shrink: 0;
    width: 244px; /* similar to 1/5 or 1/6 depending on screen */
    scroll-snap-align: start;
}

/* Restored Bulk Order Classes */
.bulk-tag {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.95) !important;
    background: rgba(255,255,255,0.08) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    padding: 8px 18px !important;
    border-radius: 24px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.bulk-primary-btn {
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    background: #e85d04 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 44px !important;
    box-shadow: 0 6px 16px rgba(232, 93, 4, 0.35) !important;
}

.bulk-outline-btn {
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    background: rgba(255,255,255,0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    height: 44px !important;
}

/* Restored Desktop Classes for App Promo */
@media (min-width: 992px) {
    .bulk-action-buttons {
        display: flex !important;
        flex-direction: row !important;
        gap: 14px !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        width: auto !important;
    }

    .bulk-primary-btn {
        width: auto !important;
    }

    .bulk-outline-btn {
        width: auto !important;
    }
    .app-promo-left {
        flex: 0 0 32% !important;
        max-width: 32% !important;
        overflow: visible !important;
        align-items: flex-start !important;
        padding-top: 40px !important;
        gap: 24px !important;
    }

    .app-promo-text {
        flex: 1 !important;
        min-width: 0 !important;
        overflow: visible !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        text-align: left !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .app-title {
        font-size: 22px !important;
        font-weight: 800 !important;
        margin-top: 0 !important;
        margin-bottom: 8px !important;
        color: #ffffff !important;
        text-align: left !important;
        white-space: normal !important;
        line-height: 1.25 !important;
    }

    .app-desc {
        font-size: 13px !important;
        color: rgba(255,255,255,0.85) !important;
        margin-bottom: 14px !important;
        line-height: 1.45 !important;
        text-align: left !important;
        max-width: 100% !important;
    }

    .app-buttons {
        display: flex !important;
        gap: 10px !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
    }

    .app-buttons img {
        height: 38px !important;
        cursor: pointer !important;
    }

    .app-promo-bulk {
        flex: 0 0 38% !important;
        max-width: 38% !important;
        min-width: 0 !important;
        padding: 40px 24px 0 24px !important;
        border-left: 1px solid rgba(255,255,255,0.12) !important;
        border-right: 1px solid rgba(255,255,255,0.12) !important;
        border-top: none !important;
        border-bottom: none !important;
        box-sizing: border-box !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        text-align: left !important;
        overflow: visible !important;
    }

    .app-promo-bulk .app-title {
        font-size: 22px !important;
        font-weight: 800 !important;
        margin-top: 0 !important;
        margin-bottom: 8px !important;
        color: #ffffff !important;
        text-align: left !important;
    }

    .app-promo-bulk .app-desc {
        font-size: 13px !important;
        color: rgba(255,255,255,0.85) !important;
        margin-bottom: 14px !important;
        line-height: 1.45 !important;
        text-align: left !important;
    }

    .bulk-features {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin-bottom: 14px !important;
        justify-content: flex-start !important;
    }

    .app-promo-features {
        position: relative !important;
        flex: 1 !important;
        max-width: none !important;
        overflow: visible !important;
        border-left: none !important;
        padding: 40px 24px 0 24px !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 16px 16px !important;
        align-content: start !important;
    }

    .app-feature {
        position: relative !important;
        z-index: 1 !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 14px !important;
        padding: 16px 16px !important;
        transition: all 0.3s ease !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        gap: 10px !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
    }

    .app-feature:hover {
        background: rgba(232, 93, 4, 0.14) !important;
        border-color: rgba(232, 93, 4, 0.45) !important;
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 24px rgba(232, 93, 4, 0.25) !important;
    }

    .app-feature-icon,
    .app-feature [data-lucide] {
        width: 26px !important;
        height: 26px !important;
        color: #e85d04 !important;
    }
}
/* ==========================================================================
   MOBILE RESPONSIVE ENGINE: 3 PRODUCT CARDS PER ROW ACROSS ALL GRIDS & CAROUSELS
   ========================================================================== */
@media (max-width: 768px) {
    /* All Product Grids - 3 Columns on Mobile */
    .products-grid,
    .products-grid-4,
    .top-products-grid,
    .category-products-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
    }

    /* Product Carousels - Exactly 3 Cards Visible per Screen Width */
    .products-carousel-grid .product-card,
    .carousel-grid .product-card {
        width: calc(33.333% - 6px) !important;
        min-width: calc(33.333% - 6px) !important;
        max-width: calc(33.333% - 6px) !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
    }

    .products-carousel-grid,
    .carousel-grid {
        gap: 6px !important;
    }

    /* Compact 3-Column Mobile Product Card Styling */
    .product-card {
        padding: 5px !important;
        border-radius: 8px !important;
        box-sizing: border-box !important;
    }

    .product-img-wrapper,
    .product-image-container {
        height: 85px !important;
        min-height: 85px !important;
        max-height: 85px !important;
        margin-bottom: 4px !important;
    }

    .product-img,
    .product-image {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .product-name,
    .product-title {
        font-size: 10.5px !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        margin-bottom: 3px !important;
        height: 2.4em !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .product-price,
    .price-discounted {
        font-size: 11.5px !important;
        font-weight: 800 !important;
    }

    .price-original {
        font-size: 9.5px !important;
    }

    .product-weight,
    .product-meta {
        font-size: 9px !important;
        margin-bottom: 3px !important;
    }

    .product-actions,
    .product-footer {
        gap: 3px !important;
        margin-top: 4px !important;
    }

    .add-to-cart-btn,
    .btn-add-cart,
    .product-card .btn-primary {
        padding: 4px 5px !important;
        font-size: 9.5px !important;
        border-radius: 5px !important;
        height: 26px !important;
        line-height: 1 !important;
    }

    .badge-top,
    .product-badge {
        font-size: 7.5px !important;
        padding: 1px 4px !important;
        top: 3px !important;
        left: 3px !important;
    }

    /* 3 Category Cards Visible per Screen Width on Mobile */
    .categories-grid,
    .categories-carousel-grid {
        display: flex !important;
        gap: 6px !important;
    }

    .category-card {
        width: calc(33.333% - 4.5px) !important;
        min-width: calc(33.333% - 4.5px) !important;
        max-width: calc(33.333% - 4.5px) !important;
        flex-shrink: 0 !important;
        padding: 8px 4px !important;
        border-radius: 10px !important;
    }

    .category-img-wrapper,
    .category-card .category-img,
    .category-card img {
        height: 75px !important;
        min-height: 75px !important;
        max-height: 75px !important;
        object-fit: cover !important;
        border-radius: 8px !important;
    }

    .category-name,
    .category-card h3,
    .category-card h4 {
        font-size: 10.5px !important;
        line-height: 1.2 !important;
        font-weight: 700 !important;
        margin-top: 4px !important;
        margin-bottom: 2px !important;
    }

    .category-count,
    .category-products-count,
    .category-card p {
        font-size: 8.5px !important;
        margin-bottom: 3px !important;
    }

    .category-link {
        font-size: 9px !important;
    }

    /* Fixed Add to Cart Button for Mobile */
    .product-action-row {
        gap: 4px !important;
    }
    .product-card .btn-primary,
    .product-add-btn {
        flex: 1 1 auto !important;
        width: 100% !important;
        padding: 5px 2px !important;
        font-size: 10.5px !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }
    .product-cart-icon {
        display: none !important;
    }
}
/* ==========================================================================
   WHAT OUR BUSINESS PARTNERS SAY - HIDE SECTION ON MOBILE & TABLET (UP TO 1024PX)
   ========================================================================== */
@media (max-width: 1024px) {
    .testimonials-section,
    .testimonials-header,
    .testimonials-mobile-hide,
    .hide-on-mobile,
    #testimonials-grid,
    .testimonials-grid,
    .testimonial-card {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
    }
}

/* ========================================================================== 
   SWEET STORIES FROM OUR VENDORS
   ========================================================================== */
.vendor-video-section {
    position: relative;
    overflow: hidden;
    padding: 64px 0 70px;
    background: #fff;
}

.vendor-video-section::before,
.vendor-video-section::after {
    display: none;
}

.vendor-video-section::before {
    top: -105px;
    left: -75px;
}

.vendor-video-section::after {
    right: -80px;
    bottom: -105px;
}

.vendor-video-inner {
    position: relative;
    z-index: 1;
}

.vendor-video-heading {
    margin: 0 0 10px;
    text-align: center;
}

.vendor-video-heading .ornate-title-box {
    display: inline-block;
}

.vendor-video-heading .ornate-title-text {
    padding: 10px 30px;
    font-size: clamp(26px, 2.5vw, 34px);
}

.vendor-video-intro {
    max-width: 660px;
    margin: 0 auto 34px;
    color: #7b6658;
    font: 500 15px/1.7 'Plus Jakarta Sans', sans-serif;
    text-align: center;
}

.vendor-video-carousel {
    position: relative;
    padding: 0 28px;
}

.vendor-video-grid {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.vendor-video-grid::-webkit-scrollbar {
    display: none;
}

.vendor-video-card {
    display: flex;
    min-width: calc((100% - 40px) / 3);
    max-width: calc((100% - 40px) / 3);
    overflow: hidden;
    flex-direction: column;
    flex: 0 0 calc((100% - 40px) / 3);
    border: 1px solid #edddd1;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(88, 50, 27, 0.08);
    scroll-snap-align: start;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.vendor-video-card:hover {
    transform: none;
    border-color: rgba(230, 92, 8, 0.35);
    box-shadow: 0 20px 40px rgba(88, 50, 27, 0.14);
}

.vendor-video-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #2e160b;
}

.vendor-video-media::after {
    position: absolute;
    inset: auto 0 0;
    height: 38%;
    background: linear-gradient(to top, rgba(35, 15, 6, 0.38), transparent);
    content: "";
    pointer-events: none;
}

.vendor-video-media video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.vendor-video-card:hover .vendor-video-media video {
    transform: scale(1.035);
}

.vendor-video-badge {
    position: absolute;
    z-index: 1;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(225, 83, 7, 0.92);
    box-shadow: 0 5px 14px rgba(58, 22, 3, 0.18);
    color: #fff;
    font: 800 10px/1 'Plus Jakarta Sans', sans-serif;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.vendor-video-content {
    display: flex;
    padding: 19px 18px 17px;
    flex-direction: column;
}

.vendor-video-content h3 {
    margin: 0 0 8px;
    color: #452719;
    font: 750 17px/1.35 'Plus Jakarta Sans', sans-serif;
}

.vendor-video-content > p {
    margin: 0 0 18px;
    color: #806d61;
    font: 500 13px/1.6 'Plus Jakarta Sans', sans-serif;
}

.vendor-video-link {
    display: flex;
    min-height: 48px;
    margin-top: 0;
    padding: 9px 10px 9px 12px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-radius: 12px;
    background: #fff4e9;
    color: #5c2f18;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.vendor-video-scroll-btn {
    position: absolute;
    z-index: 3;
    top: 50%;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid #ead4c3;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 24px rgba(72, 36, 16, 0.18);
    color: #d95106;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.vendor-video-scroll-btn:hover:not(:disabled),
.vendor-video-scroll-btn:focus-visible:not(:disabled) {
    transform: translateY(-50%) scale(1.06);
    background: #e75b09;
    color: #fff;
}

.vendor-video-scroll-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.vendor-video-scroll-btn svg {
    width: 22px;
    height: 22px;
}

.vendor-video-scroll-prev {
    left: 6px;
}

.vendor-video-scroll-next {
    right: 6px;
}

.vendor-video-link span {
    min-width: 0;
    overflow: hidden;
    font: 750 12px/1.3 'Plus Jakarta Sans', sans-serif;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vendor-video-link small {
    display: block;
    margin-bottom: 2px;
    color: #a1765c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.vendor-video-link svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.vendor-video-link:hover,
.vendor-video-link:focus-visible {
    background: #e75b09;
    color: #fff;
}

.vendor-video-link:hover small,
.vendor-video-link:focus-visible small {
    color: #ffe0c8;
}

@media (max-width: 1100px) {
    .vendor-video-card {
        min-width: calc((100% - 20px) / 2);
        max-width: calc((100% - 20px) / 2);
        flex-basis: calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .vendor-video-section {
        padding: 32px 0 38px !important;
    }

    .vendor-video-heading .ornate-title-text {
        padding: 8px 14px;
        font-size: 23px;
    }

    .vendor-video-intro {
        margin-bottom: 22px;
        padding: 0 8px;
        font-size: 13px;
        line-height: 1.6;
    }

    .vendor-video-carousel {
        padding: 0 20px;
    }

    .vendor-video-grid {
        gap: 14px;
    }

    .vendor-video-card {
        min-width: 100%;
        max-width: 100%;
        flex-basis: 100%;
    }

    .vendor-video-media {
        aspect-ratio: 16 / 10;
    }

    .vendor-video-scroll-btn {
        width: 38px;
        height: 38px;
    }

    .vendor-video-scroll-prev {
        left: 0;
    }

    .vendor-video-scroll-next {
        right: 0;
    }
}

/* ========================================================================== 
   UNIVERSAL MOBILE SECTION SPACING & GAP COMPRESSION
   ========================================================================== */
@media (max-width: 992px) {
    /* Compress large padding and margins across all sections and major containers */
    section,
    .section-padding,
    .hero-section,
    .hero-slider-section,
    .categories-section,
    .why-animated-section,
    .advantage-section,
    .savouries-promo-section,
    .app-promo-section,
    .order-summary-section,
    .page-content > section,
    .page-content > div:not(.trust-bar):not(.global-trust-bar) {
        padding-top: 16px !important;
        padding-bottom: 16px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    /* Snug styling for trust bar banners */
    .trust-bar, .global-trust-bar {
        padding: 14px 16px !important;
        margin: 0 !important;
    }

    /* Reduce spacing under section titles to prevent awkward gaps above cards and content */
    .section-header, 
    .why-header, 
    .advantage-header {
        margin-top: 0 !important;
        margin-bottom: 12px !important;
        gap: 6px !important;
    }

    .section-title, .why-main-title, .advantage-title {
        margin-bottom: 4px !important;
    }

    /* Tighten grids so card items do not drift too far apart vertically */
    .categories-grid, .products-grid, .why-grid-2col {
        gap: 12px !important;
    }
}


