/* Reset & Basics */
*,
*::before,
*::after {
    box-sizing: border-box;
}


body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Utility container */
.container {
    max-width: 1900px;
    margin: 0 auto;
    padding: 0 1rem;
}


/* Buttons */
.btn-primary,
.add-to-inquiry-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}


.btn-primary {
    background-color: #0056B8;
    color: #fff;
    text-decoration: none;

}


.btn-primary:hover,
.btn-primary:focus {
    background-color: #5DBE3D;
}


.add-to-inquiry-btn {
    background-color: #5DBE3D;
    color: #fff;
}


.add-to-inquiry-btn:hover,
.add-to-inquiry-btn:focus {
    background-color: #4a9b2b;
}




/* HEADER */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 4px rgb(0 0 0 / 0.05);
    z-index: 9999;
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    padding-top: 10px;
}


.sticky-header.shrink {
    padding: 0;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.15);
}


.header-inner {
    display: flex;
    align-items: center;
}


.logo img {
    height: 50px;
    transition: height 0.3s ease;
}


.sticky-header.shrink .logo img {
    height: 30px;
    padding-top: 5px;
}


/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f3f4f6;
    color: #333;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.2s;
}

.lang-switcher:hover {
    background: #0056B8;
    color: #fff;
}

.header-basket {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f0f7ff;
    color: #0056B8;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.header-basket:hover {
    background: #0056B8;
    color: #fff;
    transform: translateY(-1px);
}

.header-basket-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: #ef4444;
    color: #fff;
    border-radius: 9px;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.header-basket-count.bounce {
    animation: basketBounce 0.4s ease;
}

@keyframes basketBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

@media (max-width: 768px) {
    .header-actions {
        gap: 8px;
    }

    .lang-switcher,
    .header-basket {
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }
}


/* Desktop Nav */
.swoosh-hover {
    position: relative;
    display: inline-block;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em;
}



.swoosh-hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 115%;
    transform: translate(-50%, -50%) scale(1);
    z-index: -1;


    background: radial-gradient(at center, transparent 40%, #5DBE3D 42%, #5DBE3D 43%, transparent 45%);


    mask-image: conic-gradient(transparent 0deg 85deg,
            rgba(0, 0, 0, 1) 85deg 160deg,
            transparent 220deg 265deg,
            rgba(0, 0, 0, 1) 230deg 360deg,
            transparent 180deg 240deg);


    opacity: 0;
    transition: transform 0.4s ease, opacity 0.3s ease;
}



.swoosh-hover:hover::before {
    transform: translate(-50%, -50%) scale(1.05) rotate(5deg);
    opacity: 1;
}


.desktop-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}


.nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: center;


}


.nav-list li {
    position: relative;
    display: inline-flex;
    padding: 5px 5px;
    border-radius: 15px;
}




.nav-list a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    text-transform: none;
}


.nav-list a:hover,
.nav-list a:focus {
    color: #0056B8;


}


.dropdown {
    position: relative;
}


.dropdown>a::after {
    content: " ▾";
    font-weight: 700;
}


.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 200px;
    display: none;
    flex-direction: column;
    list-style: none;


    z-index: 10000;
}


.dropdown-menu li a {
    padding: 0.5rem 1rem;
    display: block;
    color: #222;
}


.dropdown-menu li a:hover,
.dropdown-menu li a:focus {
    color: #0056B8;
}


.dropdown:hover>.dropdown-menu,
.dropdown:focus-within>.dropdown-menu {
    display: flex;
    flex-direction: column;
}


/* Burger Button */
.burger-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 110;
    margin-left: auto;
    /* ensure it's above most elements */
}


.burger-btn span {
    display: block;
    width: 100%;
    /* make spans full width */
    height: 3px;
    background: #0056B8;
    border-radius: 2px;
    transition: all 0.3s ease;
}


.menu-close-btn {
    display: none;
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: #0056B8;
    cursor: pointer;
    z-index: 101;
    transition: color 0.3s ease;
}


.menu-close-btn:hover {
    color: #5DBE3D;
    /* Your Fresh Green for hover */
}


.mobile-logo {


    text-align: left;
}


.mobile-logo img {
    max-width: 140px;
    height: auto;
    margin-bottom: 20px;
}


/* Mobile Menu Overlay */
.mobile-menu {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 9998;
    overflow-y: auto;
    padding: 4rem 1rem 1rem 1rem;
}


.mobile-menu.open {
    right: 0;
}


.mobile-menu.open .menu-close-btn {
    display: block;
}


.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.mobile-nav-list>li {
    margin-bottom: 1.25rem;
}


.mobile-nav-list a,
.mobile-dropdown-btn {
    font-weight: 600;
    font-size: 1.25rem;
    color: #0056B8;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    padding: 0.25rem 0;
}


.mobile-dropdown-btn::after {
    content: " ▾";
    float: right;
}


.mobile-dropdown-menu {
    list-style: none;
    padding-left: 1rem;
    margin-top: 0.5rem;
    display: none;
    flex-direction: column;
}


.mobile-dropdown-menu li {
    margin-bottom: 0.75rem;
}


.mobile-dropdown-menu li a {
    font-size: 1rem;
    color: #222;
}


.mobile-dropdown-open>.mobile-dropdown-menu {
    display: flex;
    flex-direction: column;
}


/* HERO SECTION */

.hidden {
    display: none !important;
}


.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--royal-blue) 40%, var(--fresh-green) 100%);
    height: 90vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    color: white;
    overflow: hidden;
    background: linear-gradient(-45deg, #0056B8, #003d82, #5DBE3D, #0056B8);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
}


#hero {
    height: 100vh;
    transition: background 0.3s ease;
}


.hero-content {
    transition: opacity 0.3s ease;
}


/* vortex animation */
/* Hero section base */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    color: white;
    overflow: hidden;
    background: #f0f0f0;
    /* Fallback before images load */
}


/* White overlay for animation */
.hero-white-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 15;
    opacity: 1;
    transition: opacity 1.2s ease;
}


.hero-white-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}


/* Logo animation container */
.hero-logo-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    opacity: 1;
    transition: opacity 1.2s ease;
}


.hero-logo-animation.hidden {
    opacity: 0;
    pointer-events: none;
}


/* Letter styling */
.vortex-letter {
    fill: #0056B8;
    font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 52px;
    opacity: 0;
    transform: translateY(-150px);
}


/* Letter drop animations - ONE BY ONE */
#letter-V {
    animation: letterDrop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}


#letter-O {
    animation: letterDrop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}


#letter-R {
    animation: letterDrop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
}


#letter-T {
    animation: letterDrop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s forwards;
}


#letter-E {
    animation: letterDrop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.4s forwards;
}


#letter-X {
    animation: letterDrop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.7s forwards;
}


@keyframes letterDrop {
    0% {
        opacity: 0;
        transform: translateY(-150px);
    }


    60% {
        opacity: 1;
        transform: translateY(5px);
    }


    80% {
        transform: translateY(-2px);
    }


    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* SWOOSH DRAWING ANIMATION (stroke draws in) */
#top-swoosh,
#bottom-swoosh {
    stroke-dasharray: 550;
    stroke-dashoffset: 550;
    animation: swooshDraw 1.8s ease-out forwards;
}


#top-swoosh {
    animation-delay: 2s;
    /* After letters start dropping */
}


#bottom-swoosh {
    animation-delay: 2.3s;
}


@keyframes swooshDraw {
    to {
        stroke-dashoffset: 0;
    }
}


/* Hero content - hidden during animation */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}


.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}


.hero-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.6);
}


.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.8);
}


/* When content becomes visible, animate children */
.hero-content.visible .hero-title {
    animation: fadeInUp 0.8s ease forwards;
}


.hero-content.visible .hero-subtitle {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}


.hero-content.visible .hero-cta {
    animation: fadeInUp 0.8s ease 0.4s forwards;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }


    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive adjustments */
@media (min-width: 600px) {
    .hero-title {
        font-size: 2.75rem;
    }


    .hero-subtitle {
        font-size: 1.25rem;
    }
}


/* end of animation */


.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url('images/eco-friendly-disposable-utensils-made-bamboo-wood-paper-top-view-concept-saving-planet-rejection-plastic.jpg') center center / cover no-repeat;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    transition: background 0.5s ease, opacity 0.4s ease;
    opacity: 0.4s;
}

/* === HERO BACKGROUND SLIDER (FIX) === */
.hero-section {
    position: relative;
    overflow: hidden;
}

/* number of slides */
.hero-section {
    --hero-slides: 7;
}

.hero-bg-slider {
    position: absolute;
    inset: 0;
    display: flex;
    width: calc(100% * var(--hero-slides));
    height: 100%;
    z-index: 0;
    transform: translateX(0);
    transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

.hero-bg-slide {
    flex: 0 0 calc(100% / var(--hero-slides));
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* optional readability overlay on top of images */
.hero-bg-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.25) 60%,
            rgba(0, 0, 0, 0.10) 100%);
}

/* Ensure content stays above slider + overlays */
#heroContent {
    position: relative;
    z-index: 30;
}

#heroWhiteOverlay {
    z-index: 35;
}

#heroLogoAnimation {
    z-index: 40;
}


.hero-content {
    position: absolute;
    max-width: 700px;
    z-index: 1;
}


.hero-content h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-shadow: 3px 3px 7px rgba(0, 0, 0, 0.6);
}


.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.8);
}


@media (min-width: 600px) {
    .hero-content h1 {
        font-size: 2.75rem;
    }


    .hero-content p {
        font-size: 1.25rem;
    }
}


/* ABOUT VORTEX */
.about-section {
    padding: 3rem 1rem 2rem 1rem;
}


.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.5fr);
    gap: 2rem;
    align-items: start;
}


.about-text h2 {
    color: #0056B8;
    font-size: 1.9rem;
    margin-bottom: 0.75rem;
}


.about-text p {
    margin-bottom: 0.75rem;
    color: #333;
}


.about-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}


.about-list li::before {
    content: "• ";
    color: #5DBE3D;
    font-weight: 700;
}


.about-list li {
    margin-bottom: 0.35rem;
}


.about-highlight {
    background: #f6f9fc;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


.about-highlight h3 {
    margin-top: 0;
    color: #0056B8;
    margin-bottom: 0.5rem;
}


.about-highlight p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
}


.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}


.about-stats div {
    min-width: 90px;
}


.about-stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #5DBE3D;
}



.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #555;
}


/* Mobile */
@media (max-width: 768px) {
    .about-inner {
        grid-template-columns: 1fr;
    }
}


/* why-choose-section */
.why-choose-section {
    padding: 2rem 1rem;
    text-align: center;
    background: linear-gradient(to bottom, #f6f9fc 0%, #ffffff 100%);
}


.stats-counter-wrapper {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}


.stat-counter-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}


.stat-counter-item.animated {
    opacity: 1;
    transform: translateY(0);
}


.stat-icon {
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}


@keyframes float {


    0%,
    100% {
        transform: translateY(0px);
    }


    50% {
        transform: translateY(-10px);
    }
}


.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0056B8 0%, #5DBE3D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* Stat Unit (%, h, etc.) */
.stat-unit {
    font-size: 2rem;
    font-weight: 600;
    color: #5DBE3D;
    display: inline-block;
    margin-left: 0.25rem;
}


/* Stat Title (FDA Certified, Fast Delivery, etc.) */
.stat-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0056B8;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}


/* Stat Subtitle (Food-Safe Materials, etc.) */
.stat-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}



/* Add mobile styles here */
@media (max-width: 768px) {
    .why-choose-section {
        padding: 1rem 1rem;
        /* Reduced from 1.5rem */
    }


    .stats-counter-wrapper {
        flex-direction: column;
        gap: 1rem;
        /* Reduced from 1.5rem */
        padding: 0.5rem 0;
        /* Reduced from 1rem */
    }


    .stat-counter-item {
        padding: 0.75rem 0;
        /* Add spacing around each item */
    }


    .stat-icon {
        margin-bottom: 0.5rem;
        /* Reduced icon spacing */
    }


    .stat-icon svg {
        width: 32px;
        /* Smaller icons - was 36px */
        height: 32px;
    }


    .stat-number {
        font-size: 1.75rem;
        /* Smaller numbers - was 2rem */
    }


    .stat-unit {
        font-size: 1.1rem;
        /* Smaller units - was 1.2rem */
    }


    .stat-title {
        font-size: 0.95rem;
        /* Slightly smaller - was 1rem */
        margin-top: 0.4rem;
        /* Add spacing */
    }


    .stat-subtitle {
        font-size: 0.8rem;
        /* Smaller subtitle - was 0.85rem */
    }
}


/* =======================
   CSS: Circle Slider Section
   ======================= */
.circle-section {
    position: relative;
    padding: 4rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.left-label {
    font-size: 2.2rem;
    font-weight: bold;
    color: #0056B8;
    margin-bottom: 1rem;
}


.circle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}


.center-circle {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #F0F4FA;
    box-shadow: 0 2px 8px hsla(105, 51%, 49%, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


.slide-container {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s ease;
}


.center-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: opacity 0.6s ease;
}


.circle-title {
    z-index: 1;
    font-size: 1.4rem;
    font-weight: bold;
    background-color: rgba(93, 190, 61, 0.8);
    padding: 0.2rem .5rem;
    border-radius: 15px;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: #003f87;
    transition: opacity 0.6s ease;
}


.small-circles {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 380px;
}


.small-circle {
    width: 65px;
    height: 65px;
    background-color: #0056B8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
}


.small-circle:nth-child(1) {
    transform: translateX(-80px) translateY(-50px);
}


.small-circle:nth-child(2) {
    transform: translateX(-25px) translateY(-30px);
}


.small-circle:nth-child(3) {
    transform: translateX(-0px) translateY(-10px);
}


.small-circle:nth-child(4) {
    transform: translateX(-0px) translateY(10px);
}


.small-circle:nth-child(5) {
    transform: translateX(-25px) translateY(30px);
}


.small-circle:nth-child(6) {
    transform: translateX(-80px) translateY(50px);
}


.small-circle.active,
.small-circle:hover {
    background-color: #5DBE3D;
}


.dot-indicators {
    margin-top: 2rem;
    display: flex;
    gap: 8px;
}


.dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}


.dot.active {
    background-color: #0056B8;
}


/* Mobile */
@media (max-width: 768px) {
    .circle-wrapper {
        flex-direction: column;
    }


    .small-circles {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        gap: 10px;
        margin-top: 1rem;
        transform: none;
    }


    .small-circle {
        transform: none !important;
        width: 35px;
        height: 35px;
    }


    .left-label {
        order: -1;
        margin-bottom: 1rem;
    }


    .center-circle {
        width: 250px;
        height: 250px;
    }


    .circle-title {
        font-size: 1rem;
    }
}



/* Responsive */
@media (max-width: 768px) {
    .circle-wrapper {
        flex-direction: column;
    }


    .small-circles {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 1.5rem;
        gap: 10px;
    }


    .circle-title {
        margin-top: 120px;
    }


    .left-label {
        order: -1;
        margin-bottom: 1rem;
    }
}


/* 2-panel Aluminum Split Section */
.split-section {
    position: relative;
    background-image: url('../images/Untitled-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    overflow: hidden;
}


.split-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
}


.split-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    /* keep side by side on larger screens */
    gap: 30px;
    align-items: stretch;
}


/* LEFT PANEL */
.left-panel {
    flex: 1 1 30%;
    background-color: #0056B8;
    border-radius: 20px;
    padding: 35px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}


.info-box {
    max-width: 360px;
}


.info-box h2 {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 0.75rem;
}


.info-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}


.shop-btn {
    background: white;
    color: #0056B8;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease, transform 0.2s ease;
}


.shop-btn:hover {
    background: #f0f0f0;
    transform: translateY(-1px);
}


/* RIGHT PANEL */
.right-panel {
    flex: 1 1 70%;
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}


.aluminum-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    /* 3 columns on desktop */
    gap: 18px;
}


.product-item {
    text-align: center;
}


.badges {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
}


.badges img {
    height: 30px;
}


.product-img {
    width: 100%;
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}


.product-name {
    color: #5dbe3d;
    font-size: 14px;
    margin-top: 8px;
}


/* Only stack on small tablets / phones */
@media (max-width: 700px) {
    .split-inner {
        flex-direction: column;
        flex-wrap: nowrap;
    }


    .left-panel,
    .right-panel {
        border-radius: 16px;
    }


    .right-panel {
        margin-top: 12px;
    }
}


@media (max-width: 600px) {
    .split-section {
        padding: 40px 16px;
    }


    .info-box h2 {
        font-size: 22px;
    }


    .product-grid.aluminum-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Tablets / medium screens: 2 columns */
@media (max-width: 900px) {
    .aluminum-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Small phones: 2 or 1 column if you prefer */
@media (max-width: 600px) {
    .aluminum-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


.product-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}


/* Catering Equipment Grid Layout */
.catering-section .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}


/* Medium screens: 2 columns */
@media (max-width: 992px) {
    .catering-section .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}





/* PRODUCT GRID */
.product-categories,
.catering-section,
.custom-branding-section .branding-bottom {
    padding: 3rem 1rem 2rem 1rem;
}


.product-categories h2,
.catering-section h2,
.custom-branding-section .branding-top h2 {
    color: #0056B8;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: .8rem;
    text-align: center;
}


.product-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}


.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}


.product-card:hover,
.product-card:focus-within {
    box-shadow: 0 8px 20px rgb(0 0 0 / 0.15);
}


.product-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}


.product-card h3 {
    font-size: 1.1rem;
    margin: 1rem;
    color: #004090;
    flex-grow: 1;
}


.product-card button {
    margin: 0 1rem 1rem 1rem;
    align-self: flex-start;
}


/* CUSTOM BRANDING PROMO */
.custom-branding-section .branding-top {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    text-align: center;
    padding: 0 1rem;
}


.custom-branding-section .branding-top p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #222;
}


/* TESTIMONIALS / LOGOS */
.testimonials-section {
    padding: 3rem 1rem;
    text-align: center;
}


.testimonials-section h2 {
    color: #0056B8;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
}


.testimonials-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}


.testimonials-logos img {
    height: 50px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}


.testimonials-logos img:hover,
.testimonials-logos img:focus {
    filter: none;
    opacity: 1;
}


/* CTA BANNER */
/* CTA BANNER - Stats + CTA Combo */
.cta-banner-section {
    background: #ffffff;
    text-align: center;
    padding: 3rem 1rem;
    margin: 60px auto;
    max-width: 900px;
}


.cta-stats-wrapper {
    background: #f6f9fc;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.cta-main-title {
    color: #0056B8;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 700;
}


.cta-stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}


.cta-stat-item {
    text-align: center;
    min-width: 120px;
}


.cta-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5DBE3D;
    line-height: 1;
    margin-bottom: 0.5rem;
}


.cta-stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #0056B8;
    margin-bottom: 0.25rem;
}


.cta-stat-desc {
    font-size: 0.85rem;
    color: #666;
}


.cta-action-btn {
    margin-top: 1rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}


@media (max-width: 768px) {
    .cta-banner-section {
        margin: 40px 1rem;
    }


    .cta-stats-wrapper {
        padding: 2rem 1.5rem;
    }


    .cta-main-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }


    .cta-stats-grid {
        gap: 2rem;
    }


    .cta-stat-number {
        font-size: 2rem;
    }


    .cta-stat-label {
        font-size: 0.9rem;
    }


    .cta-stat-desc {
        font-size: 0.8rem;
    }
}



/* FOOTER */
.main-footer {
    padding: 3rem 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background-color: #f3f6fa;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: #333;
}


.footer-left {
    max-width: 290px;
    margin-left: 4rem;
}


.footer-left img {
    height: 56px;
    margin-bottom: 0.5rem;
}


.footer-nav {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    margin-right: auto;
    padding-left: 5rem;

}


.footer-col h3 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #0056B8;
}


.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}


.footer-col ul li {
    margin-bottom: 0.5rem;
}


.footer-col ul li a {
    color: #0056B8;
    text-decoration: none;
}


.footer-col ul li a:hover,
.footer-col ul li a:focus {
    text-decoration: underline;
}


/* INQUIRY BASKET - now in header */
/* (old floating .inquiry-basket-btn removed) */

/* INQUIRY POPUP */
.remove-from-basket-btn {
    background: none;
    border: none;
    color: #be1e1e;
    font-size: 1.1em;
    cursor: pointer;
}

.remove-from-basket-btn:hover {
    color: #0056B8;
}

/* INQUIRY POPUP */
.inquiry-popup {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 320px;
    max-width: 90vw;
    background: #fff;
    border: 1px solid #0056B8;
    box-shadow: 0 6px 18px rgba(0, 86, 184, 0.3);
    border-radius: 10px;
    padding: 1rem;
    display: none;
    z-index: 10002;
}


.inquiry-popup.open {
    display: block;
    animation: popupIn 0.2s ease-out;
}


@keyframes popupIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }


    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


.inquiry-popup-inner {
    display: flex;
    flex-direction: column;
}


.inquiry-popup h3 {
    margin: 0 0 0.5rem 0;
    color: #0056B8;
}


.inquiry-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    max-height: 240px;
    overflow-y: auto;
}


.inquiry-items li {
    padding: 0.25rem 0;
    border-bottom: 1px solid #eee;
}


.inquiry-items li.empty-msg {
    color: #777;
    font-style: italic;
    text-align: center;
}


.btn-primary {
    align-self: flex-start;
}


.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #0056B8;
    align-self: flex-end;
    cursor: pointer;
    padding: 0;
    margin-top: -1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1;
}


/* Centered popup for the form on desktop */
.inquiry-form-popup {
    bottom: auto;
    right: 50%;
    top: 50%;
    transform: translate(50%, -50%);
    max-width: 480px;
}


/* Form layout */
#inquiry-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}


#inquiry-form label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #0056B8;
    font-weight: 600;
}


#inquiry-form input,
#inquiry-form textarea {
    padding: 0.5rem 0.6rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 0.9rem;
}


#inquiry-form textarea {
    resize: vertical;
}


#inquiry-summary {
    max-height: 120px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 0.5rem;
    margin: 0;
}


#inquiry-summary li {
    font-size: 0.9rem;
}


#inquiry-form .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}


/* Success message */
.inquiry-success-message {
    display: none;
    background: #E6F9EC;
    border-left: 4px solid #5DBE3D;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}


.inquiry-success-message.show {
    display: block;
    animation: fadeSlideIn 0.25s ease-out;
}


@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }


    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Mobile: form takes the whole screen */
@media (max-width: 600px) {
    .inquiry-form-popup {
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 100vh;
        max-width: 100%;
        border-radius: 0;
    }


    .inquiry-popup-inner {
        max-height: 100%;
        overflow-y: auto;
    }
}



/* Form layout inside the popup */
#inquiry-form .form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
}


#inquiry-form label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: #0056B8;
    font-weight: 600;
}


#inquiry-form input,
#inquiry-form textarea {
    padding: 0.5rem 0.6rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-family: inherit;
    font-size: 0.9rem;
}


#inquiry-form textarea {
    resize: vertical;
}


#inquiry-summary {
    max-height: 120px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 0.5rem;
    margin: 0;
}


#inquiry-summary li {
    font-size: 0.9rem;
}


#inquiry-form .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}


/* Backdrop + prevent body scroll */
.popup-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 10000;
}


.popup-backdrop.visible {
    opacity: 1;
    pointer-events: auto;
}


body.no-scroll {
    overflow: hidden;
    height: 100%;
}



/* Responsive */
@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }


    .burger-btn {
        display: none;
    }


    .mobile-menu {
        display: none !important;
    }


    .menu-close-btn {
        display: none;
    }
}


/* ========= Global mobile tweaks ========= */
@media (max-width: 768px) {


    /* Avoid hero content going under fixed header */
    .hero-section {
        padding-top: 90px;
        height: auto;
        min-height: 80vh;
    }


    .hero-content h1 {
        font-size: 1.7rem;
    }


    .hero-content p {
        font-size: 1rem;
    }


    /* CTA banner: reduce margins on small screens */
    .cta-banner-section {
        margin: 40px 16px;
        padding: 2.25rem 1.25rem;
    }


    /* Footer stacks nicely */
    .main-footer {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }


    .footer-left {
        margin-left: 0;
    }


    .footer-nav {
        margin-right: 0;
        gap: 1.5rem;
    }
}


@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }


    .hero-content p {
        font-size: 0.95rem;
    }


    .product-card img {
        height: 120px;
    }
}


/* MOBILE RESPONSIVE - The Fix! */
@media (max-width: 767px) {


    /* On screens SMALLER than 768px (mobile/tablet) */
    .desktop-nav {
        display: none !important;
        /* Hide desktop navigation */
    }


    .burger-btn {
        display: flex !important;
        /* Show burger button */
    }
}


@media (min-width: 768px) {


    /* On screens LARGER than 768px (desktop) */
    .desktop-nav {
        display: block;
        /* Show desktop navigation */
    }


    .burger-btn {
        display: none;
        /* Hide burger button */
    }


    .mobile-menu {
        display: none !important;
        /* Force hide mobile menu */
    }


    .menu-close-btn {
        display: none;
        /* Hide close button */
    }
}

/* Add to style.css */
.fade-in-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 10001;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: #0056B8;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
}

.back-to-top:hover {
    background: #5DBE3D;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

.reviews-section {
    padding: 4rem 1rem;
    background: linear-gradient(to bottom, #fff 0%, #f6f9fc 100%);
}

.reviews-section h2 {
    color: #0056B8;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.review-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author strong {
    display: block;
    color: #0056B8;
    font-size: 1rem;
}

.review-author span {
    display: block;
    color: #666;
    font-size: 0.85rem;
}

.newsletter-section {
    background: linear-gradient(135deg, #0056B8 0%, #003d82 100%);
    padding: 3rem 1rem;
    color: #fff;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.newsletter-text h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
}

.newsletter-text p {
    margin: 0;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-form button {
    white-space: nowrap;
}

@media (max-width: 768px) {

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: 100%;
        margin-bottom: 0.3rem;
    }

    .newsletter-form button {
        position: absolute;
        bottom: 0;
        margin-bottom: 0.45rem;
        margin-left: 20%;
    }
}

/* Enhanced button with ripple */
.btn-primary,
.add-to-inquiry-btn {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.add-to-inquiry-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-primary:active::after,
.add-to-inquiry-btn:active::after {
    width: 300px;
    height: 300px;
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-primary.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-primary.loading::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.6s linear infinite;
}

/* ===== FORM VALIDATION STYLES ===== */

.form-row input.error,
.form-row textarea.error,
.form-row select.error {
    border-color: #d32f2f !important;
    background-color: #ffebee;
}

.error-message {
    display: block;
    color: #d32f2f;
    font-size: 0.85rem;
    margin-top: 4px;
    font-weight: 500;
}

.form-row input:valid:not(:placeholder-shown),
.form-row textarea:valid:not(:placeholder-shown) {
    border-color: #4caf50;
    background-color: #f1f8f4;
}

.success-feedback {
    display: block;
    color: #4caf50;
    font-size: 0.9rem;
    margin-top: 8px;
    font-weight: 600;
    padding: 10px;
    background: #e8f5e9;
    border-radius: 4px;
    text-align: center;
}

/* ===== NEWSLETTER NOTIFICATION STYLES ===== */

.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    max-width: 400px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification-success {
    background: #4caf50;
    color: white;
}

.notification-error {
    background: #f44336;
    color: white;
}

.notification-info {
    background: #2196f3;
    color: white;
}

@media (max-width: 600px) {
    .notification {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

/* ===== HERO SEARCH BAR ===== */

.hero-search-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding: 0 1rem;
    animation: slideUp 0.8s ease 4.5s forwards;
    opacity: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-search-input {
    width: 100%;
    padding: 1rem 1.2rem 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-search-input:focus {
    outline: none;
    background: white;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.hero-search-input::placeholder {
    color: #bbb;
}

.hero-search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1.2rem;
    color: #999;
}

.hero-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.hero-search-results.open {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-search-result-item {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: #222;
    display: block;
}

.hero-search-result-item:hover {
    background: #f6f9fc;
    color: #0056B8;
    padding-left: 1.5rem;
}

.hero-search-result-item:last-child {
    border-bottom: none;
}

.hero-search-result-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hero-search-result-category {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
}

.hero-search-no-results {
    padding: 1.5rem;
    text-align: center;
    color: #999;
    font-size: 0.95rem;
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
    .hero-search-container {
        margin-top: 1.5rem;
        padding: 0 0.75rem;
    }

    .hero-search-input {
        padding: 0.85rem 1rem 0.85rem 2.5rem;
        font-size: 0.95rem;
    }

    .hero-search-icon {
        font-size: 1rem;
    }

    .hero-search-result-item {
        padding: 0.75rem 1rem;
    }

    .hero-search-results {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-search-container {
        margin-top: 1rem;
        padding: 0 0.5rem;
    }

    .hero-search-input {
        padding: 0.75rem 0.9rem 0.75rem 2.2rem;
        font-size: 0.9rem;
    }

    .hero-search-icon {
        left: 10px;
        font-size: 0.9rem;
    }

    .hero-search-result-item {
        padding: 0.65rem 0.9rem;
    }

    .hero-search-wrapper {
        max-width: 100%;
    }
}

/* Only Product List layout – scoped so it does not touch buffet cards */

.catering-list-wrapper .products-wrapper {
    display: flex;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto 2rem auto;
    padding: 0 1rem;
    gap: 2rem;
}

.catering-list-wrapper .sidebar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
    min-width: 250px;
    max-width: 270px;
    padding: 1.3rem 1.1rem 1rem;
    flex-shrink: 0;
}

.catering-list-wrapper .sidebar-title {
    color: #0056B8;
    font-weight: 700;
    margin-bottom: 1rem;
}

.catering-list-wrapper .sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catering-list-wrapper .sidebar-list a,
.catering-list-wrapper .sidebar-link {
    text-decoration: none;
}

.catering-list-wrapper .sidebar-list li {
    margin-bottom: 0.36rem;
}

.catering-list-wrapper .sidebar-link,
.catering-list-wrapper .sidebar-dropdown-btn {
    width: 100%;
    background: none;
    border: none;
    color: #222;
    text-align: left;
    font-size: 1rem;
    font-family: inherit;
    padding: 8px 9px;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.18s;
    display: block;
}

.catering-list-wrapper .sidebar-link:hover,
.catering-list-wrapper .sidebar-dropdown-btn:hover,
.catering-list-wrapper .sidebar-link.active,
.catering-list-wrapper .sidebar-dropdown-btn.active {
    background: #e9f7ea;
    color: #0056B8;
}

.catering-list-wrapper .sidebar-dropdown-btn::after {
    content: " ▼";
    font-size: 0.88em;
    float: right;
    color: #5DBE3D;
    transition: transform .18s;
}

.catering-list-wrapper .sidebar-dropdown-btn[aria-expanded="true"]::after {
    transform: rotate(-180deg);
}

.catering-list-wrapper .dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
    background: #f6f9fc;
    border-radius: 4px;
    margin-top: 4px;
    margin-bottom: 5px;
}

.catering-list-wrapper .dropdown-content.open {
    max-height: 400px;
    padding-bottom: 2px;
}

.catering-list-wrapper .dropdown-content a {
    color: #0056B8;
    padding: 8px 18px 8px 26px;
    display: block;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.98rem;
    margin-bottom: 2px;
    transition: background .14s;
}

.catering-list-wrapper .dropdown-content a:hover {
    background: #eaf2ff;
}

@media (max-width: 770px) {
    .catering-list-wrapper .products-wrapper {
        flex-direction: column;
        gap: 1.3rem;
        padding: 0 1rem 2rem 1rem;
    }

    .catering-list-wrapper .sidebar {
        width: 100%;
        max-width: 100%;
    }
}

/*.................*/
.catalog-download-section {
    margin-top: 3rem;
    padding: 3rem 1rem 3rem 1rem;
    background: radial-gradient(circle at top left, #e5f0ff 0, #f7fff8 40%, #ffffff 80%);
    border-top: 1px solid #e5e7eb;
}

.catalog-download-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.catalog-text {
    flex: 1 1 360px;
    max-width: 640px;
}

.catalog-text h2 {
    color: #0056B8;
    font-size: 2.1rem;
    margin: 0 0 0.75rem 0;
}

.catalog-intro {
    color: #374151;
    margin: 0 0 1.1rem 0;
}

.catalog-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.3rem;
}

.catalog-highlight-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(93, 190, 61, 0.08);
    color: #166534;
    font-size: 0.88rem;
    font-weight: 600;
}

.catalog-highlight-pill i {
    font-size: 1rem;
}

.catalog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
}

.catalog-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.catalog-visual {
    flex: 0 0 280px;
    display: flex;
    justify-content: center;
}

.catalog-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 1.7rem 1.6rem 1.6rem 1.6rem;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
    max-width: 320px;
}

.catalog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #0056B8;
    color: #fff;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.catalog-icon {
    font-size: 3.2rem;
    color: #0056B8;
    margin-bottom: 0.5rem;
}

.catalog-file-name {
    margin: 0.35rem 0 0.2rem 0;
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
}

.catalog-size {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
}

.catalog-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 1rem 0 0.9rem 0;
}

.catalog-qr-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.catalog-qr-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    border: 1px dashed #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    font-size: 1.7rem;
}

.catalog-qr-text {
    font-size: 0.86rem;
    color: #4b5563;
}

.catalog-qr-text strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #111827;
}

/* Responsive */
@media (max-width: 900px) {
    .catalog-download-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-visual {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 540px) {
    .catalog-text h2 {
        font-size: 1.6rem;
    }
}

/* =====================
   VORTEX CUSTOM OVERRIDES
   ===================== */

/* Body - no side padding */
body {
    padding: 0;
}

/* Container - 100px side padding for desktop */
.container {
    max-width: 1900px;
    padding: 0 100px;
    margin: 0 auto;
}

/* HERO - New Split Design */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4f8 50%, #f0fdf4 100%);
    padding: 100px 0 60px;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-left { position: relative; z-index: 2; }

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0056B8, #003d82);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-section .hero-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: none;
}

.hero-section .hero-subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
    text-shadow: none;
}

.hero-section .hero-cta {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #0056B8, #003d82);
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,86,184,0.3);
    margin-bottom: 24px;
}

.hero-section .hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,86,184,0.4);
}

.hero-right { position: relative; z-index: 2; }

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin-left: auto;
}

.hero-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px 30px 80px 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    animation: floatCard 3s ease-in-out infinite;
}

.hero-float-card i { font-size: 1.2rem; color: #5DBE3D; }
.hero-float-1 { top: 20px; left: -20px; }
.hero-float-2 { bottom: 30px; right: -10px; animation-delay: 1.5s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-search-container { margin-top: 0; }

.hero-search-wrapper { position: relative; max-width: 400px; }

.hero-search-input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    background: #fff;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.hero-search-input:focus {
    outline: none;
    border-color: #0056B8;
    box-shadow: 0 4px 12px rgba(0,86,184,0.15);
}

.hero-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1.1rem;
}

.hero-search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    margin-top: 8px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 100;
}

.hero-search-result-item {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.2s;
}

.hero-search-result-item:hover { background: #f9fafb; }
.hero-search-result-name { font-weight: 600; font-size: 0.95rem; }
.hero-search-result-category { font-size: 0.8rem; color: #888; }

/* Bottom Navigation Bar */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    z-index: 9999;
    padding: 6px 0 env(safe-area-inset-bottom, 8px);
    justify-content: space-around;
    align-items: center;
}

.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: #6b7280;
    font-size: 10px;
    font-weight: 500;
    padding: 4px 8px;
    transition: color 0.2s;
}

.bottom-nav a i { font-size: 22px; line-height: 1; }
.bottom-nav a.active { color: #0056B8; }

/* CATEGORY GRID */
.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.cat-box {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px 8px;
    background: #f3f4f6;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    text-decoration: none;
    line-height: 1.3;
    min-height: 56px;
    word-break: break-word;
    transition: all 0.2s ease;
    border: 2px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.cat-box:hover { border-color: #0056B8; color: #0056B8; background: #f0f7ff; }

.cat-box.active {
    background: #0056B8;
    color: #fff;
    border-color: #0056B8;
    box-shadow: 0 2px 8px rgba(0,86,184,0.3);
}

.cat-box:active { transform: scale(0.96); }

/* MOBILE APP-LIKE STYLES */
@media (max-width: 768px) {
    body { padding: 0; overflow-x: hidden; -webkit-tap-highlight-color: transparent; }

    main { padding-bottom: 70px; }

    .bottom-nav { display: flex !important; }

    .main-footer { display: none !important; }

    .hero-section {
        padding: 80px 16px 40px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-left { order: 1; }
    .hero-right { order: 2; }

    .hero-section .hero-title { font-size: 1.6rem; line-height: 1.25; }
    .hero-section .hero-subtitle { font-size: 0.95rem; max-width: 100%; }
    .hero-image-wrapper { max-width: 320px; margin: 0 auto; }
    .hero-main-img { height: 260px; border-radius: 24px 24px 60px 24px; }

    .category-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .cat-box { padding: 10px 4px; font-size: 0.72rem; min-height: 50px; border-radius: 10px; }

    .products-grid, .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .product-card img { height: 130px; }
    .product-card h3 { font-size: 0.85rem; margin: 8px 10px 4px; }
    .product-card button { padding: 8px 10px; font-size: 0.75rem; margin: 0 10px 10px; }

    .container { padding: 0 16px; }

    input[type="text"], input[type="email"], input[type="tel"], textarea, select {
        font-size: 16px !important;
        padding: 14px 16px;
        border-radius: 12px;
    }

    .whatsapp-float { bottom: 80px; right: 16px; width: 50px; height: 50px; }
    .back-to-top { display: none !important; }

    .fade-in-hidden { opacity: 1 !important; transform: none !important; }
    .product-card { opacity: 1 !important; transform: none !important; }
}

@media (max-width: 380px) {
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid, .product-grid { grid-template-columns: 1fr; }
}