/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Comfortaa', cursive;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utility */
.fw-light {
    font-weight: 300;
}

.dark-title {
    color: #333;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-white:hover {
    background: #fff;
    color: #e5b22b;
}

.btn-solid-white {
    background: #e1ebfa;
    color: #5F8CEE;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-solid-white:hover {
    background: #d0e0f8;
}


/* Placeholders */
.placeholder-box {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    border-radius: 10px;
    min-height: 300px;
    width: 100%;
    text-align: center;
    padding: 20px;
}

/* Header */
.site-header {
    background-color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.home-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.home-header.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #d12027;
    /* Red color matching image */
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #d12027;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    color: #fff;
}

.hero-content {
    margin-bottom: 40px;
}

.hero-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #a62b2b;
    font-family: 'Comfortaa', cursive;
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #444;
    line-height: 1.6;
}

.search-box {
    display: inline-flex;
    background: #fff;
    border-radius: 30px;
    padding: 5px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.search-box input {
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    outline: none;
    flex-grow: 1;
    font-family: 'Nunito', sans-serif;
}

.search-box button {
    background-color: #f6d148;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    font-family: 'Nunito', sans-serif;
    transition: background 0.3s ease;
}

.search-box button:hover {
    background-color: #e5b22b;
}

.hero-image-placeholder {
    max-width: 900px;
    margin: 0 auto;
    /* To sit on the bottom edge */
    transform: translateY(20px);
}

.hero-image-placeholder .placeholder-box {
    min-height: 400px;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Sliders Section */
.sliders-section {
    background-color: #F5CC25;
    padding: 80px 0;
}

.sliders-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sliders-content {
    flex: 1;
    color: #fff;
    text-align: center;
}

.sliders-subheading {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.sliders-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.sliders-description {
    font-size: 14px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.sliders-image {
    flex: 1;
}

.sliders-image .placeholder-box {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

/* Slider Controls */
.slider-controls {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.slider-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-controls button:hover {
    background: #fff;
    color: #f0ce35;
}

.dark-controls button {
    border-color: #ccc;
    color: #666;
}

.dark-controls button:hover {
    background: #ccc;
    color: #333;
}

/* Benefits Section */
.benefits-section {
    background-color: #fff;
    padding: 80px 0;
}

.benefits-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.benefits-title-col {
    flex: 1;
}

.section-title {
    font-size: 36px;
    font-weight: 500;
    color: #555;
    line-height: 1.2;
}

.benefits-content-col {
    flex: 1;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    border: none;
}

.icon-placeholder {
    font-size: 12px;
    color: #999;
}

.benefit-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.benefit-description {
    font-size: 14px;
    color: #666;
}

/* About Us Section */
.about-section {
    background-color: #5F8CEE;
    padding: 60px 0;
}

.about-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.about-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 15px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-heading {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-card p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.about-image {
    flex: 1;
}

.about-img-placeholder {
    border-radius: 15px;
    min-height: 400px;
}

/* Reviews Section */
.reviews-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.reviews-header {
    margin-bottom: 50px;
}

.reviews-header .section-title {
    font-size: 40px;
}

.reviews-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 10px auto 0;
}

.reviews-slider-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    padding: 20px 0;
}

.reviews-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    align-items: stretch;
}

.review-card {
    background: #fdfdfd;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: left;
    position: relative;
    border: none;
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card.active-review {
    background: #f4efe9;
}

.quote-icon {
    font-size: 60px;
    color: #e6a5a5;
    font-family: serif;
    line-height: 0.8;
    margin-bottom: 10px;
    font-weight: bold;
}

.active-review .quote-icon {
    color: #b52b2b;
}

.review-text {
    font-size: 16px;
    color: #999;
    margin-bottom: 30px;
    min-height: 80px;
    font-weight: 400;
}

.active-review .review-text {
    color: #333;
    font-weight: 500;
}

.review-author {
    display: flex;
    flex-direction: column;
}

.review-author strong {
    font-size: 12px;
    color: #b0b0b0;
    font-weight: 600;
}

.active-review .review-author strong {
    color: #555;
}

.review-author span {
    font-size: 10px;
    color: #b0b0b0;
    text-transform: lowercase;
}

.active-review .review-author span {
    color: #333;
}

/* Review Navigation */
.review-controls {
    justify-content: flex-end;
    padding-right: 20px;
}

.review-controls button {
    border: none;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    background: transparent;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.review-controls button:hover {
    color: #000;
    background: transparent;
}

/* Footer Styles */
.site-footer {
    position: relative;
    background-image: url('../images/footer/footer_image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    color: #333;
    padding-top: 60px;
}

.footer-card-container {
    position: relative;
    z-index: 10;
}

.footer-card {
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 250px;
}

.footer-card-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo-placeholder {
    font-size: 48px;
    font-weight: 900;
    color: #a82323;
    letter-spacing: 2px;
}

.social-links-footer {
    display: flex;
    gap: 10px;
}

.social-links-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
}

.footer-card-right {
    display: flex;
    gap: 60px;
}

.footer-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.footer-links-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-section li {
    margin-bottom: 12px;
}

.footer-links-section a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.footer-contact-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.btn-reach-out {
    background: #1a1a1a;
    color: #fff;
    padding: 8px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 30px;
}

.footer-address {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-powered-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-powered-by span {
    font-size: 10px;
    color: #666;
}

.uflex-logo-placeholder {
    background: #2570b8;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    font-size: 18px;
}

.footer-bottom-section {
    padding: 60px 0 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-cta-left h2 {
    font-size: 38px;
    color: #3f7ae0;
    line-height: 1.2;
    font-weight: 500;
}

.footer-cta-right {
    max-width: 400px;
    width: 100%;
}

.footer-cta-right p {
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.email-input-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 8px 15px;
    display: flex;
    flex-direction: column;
}

.input-label {
    font-size: 9px;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.email-input-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: #333;
    width: 90%;
}

.submit-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
}

.footer-copyright-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    color: #555;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 20px;
}

.copy-center a {
    color: #555;
    text-decoration: none;
}

/* Hero Image & Hotspots */
.hero-image-showcase {
    position: relative;
    width: 100%;
    margin: 0;
    aspect-ratio: 1351 / 747;
}

.hero-text-overlay {
    position: absolute;
    top: 28%;
    left: 5%;
    width: 35%;
    text-align: left;
    z-index: 5;
    pointer-events: none;
    /* Let clicks pass through to the hotspots below */
}

@media (max-width: 992px) {
    .hero-text-overlay {
        width: 45%;
        top: 15%;
    }

    .hero-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .hero-text-overlay {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
        padding: 30px 20px;
        background-color: #fcf9f4;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }

    .hero-title {
        color: #a62b2b;
        font-size: 28px;
    }

    .hero-subtitle {
        color: #555;
    }
}

.banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-hotspot {
    position: absolute;
    z-index: 10;
}

.hotspot-toggle {
    position: relative;
    width: 24px;
    height: 24px;
    background-color: #a62b2b; /* Logo red */
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff; /* White plus sign */
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background-color 0.3s;
    font-family: monospace;
}

/* Touch targets for accessibility */
.hotspot-toggle::after {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
}

.hotspot-toggle:hover {
    transform: scale(1.1);
    background-color: #8c2020; /* Darker red */
}

.hotspot-popup {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid #eee;
}

.hotspot-popup::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.product-hotspot.active {
    z-index: 100;
}

.product-hotspot.active .hotspot-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Right side alignments to prevent popup screen overflow */
.product-hotspot.align-right .hotspot-popup {
    left: auto;
    right: -10px;
    transform: translateY(10px);
}

.product-hotspot.align-right.active .hotspot-popup {
    transform: translateY(0);
}

.product-hotspot.align-right .hotspot-popup::after {
    left: auto;
    right: 12px;
}

@media (max-width: 768px) {
    .hotspot-toggle {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
}

.hotspot-popup h4 {
    color: #5bb3cc;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 2px;
}

.hotspot-popup p {
    color: #666;
    font-size: 12px;
    margin-bottom: 12px;
}

.btn-solid-yellow {
    background-color: #a62b2b; /* Logo red */
    color: #fff; /* White text */
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-solid-yellow:hover {
    background-color: #8c2020; /* Darker red */
    color: #fff;
}

/* Top Announcement Bar */
.top-announcement-bar {
    background-color: #fcf1f1;
    text-align: center;
    padding: 8px 0;
    font-size: 10px;
    color: #666;
}

.top-announcement-bar p {
    margin: 0;
}

/* Nav Active State */
.main-nav a.active {
    position: relative;
    color: #333;
    font-weight: 700;
}

.main-nav a.active::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #d12027;
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
}

/* About Us Page Styles */
.breadcrumb-section {
    padding: 20px 20px;
    font-size: 12px;
    color: #666;
}

.btn-home {
    background: #4b89dc;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.current-page {
    color: #333;
    font-weight: 600;
}

/* About Hero */
.about-hero {
    margin-bottom: 60px;
}

.about-hero-bg {
    width: 100%;
    height: 350px;
    position: relative;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-overlay {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    color: #333;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.about-hero-title {
    font-size: 42px;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.about-hero-subtitle {
    font-size: 14px;
    color: #333;
}

/* A Little About Us */
.about-split-section {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

.about-split-left {
    flex: 1;
    background-color: #aed6f1;
    padding: 40px;
    border-radius: 15px;
    color: #333;
}

.about-split-left h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.about-split-left p,
.about-split-left li {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-split-left ul {
    padding-left: 20px;
}

.about-split-right {
    flex: 1;
    display: flex;
}

.about-split-image {
    width: 100%;
    min-height: 100%;
    border-radius: 15px;
    background-color: #f9ce3b;
    border: none;
    color: #333;
}

/* Why Zipouch Section */
.why-zipouch-section {
    margin-bottom: 100px;
}

.why-zipouch-title {
    font-size: 36px;
    color: #4b89dc;
    margin-bottom: 15px;
}

.why-zipouch-subtitle {
    font-size: 14px;
    color: #666;
    max-width: 800px;
    margin-bottom: 40px;
}

.why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.why-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #eaeaea;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 14px);
}

.why-card-image {
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.why-card-image img {
    width: 100%;
    aspect-ratio: 1.6;
    object-fit: cover;
    display: block;
}

.why-card-content {
    padding: 20px;
    flex: 1;
}

.why-card-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.why-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Products Page Styles */
.products-hero {
    margin-bottom: 60px;
}

.products-hero-bg {
    width: 100%;
    height: 400px;
    position: relative;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-hero-overlay {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 800px;
    color: #333;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.products-hero-title {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.products-hero-subtitle {
    font-size: 14px;
    color: #333;
}

.products-grid-section {
    margin-bottom: 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

.product-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    grid-column: span 2;
    border-radius: 15px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    margin-bottom: 15px;
}

.product-image img {
    border-radius: 15px;
    width: 100%;
    height: auto;
    display: block;
}

.product-content {
    padding: 0 15px 20px 15px;
}

.product-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.product-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.product-card.centered-card:nth-last-child(2) {
    grid-column: 2 / span 2;
}

.product-card.centered-card:nth-last-child(1) {
    grid-column: 4 / span 2;
}

.products-bottom-section {
    background: #5F8CEE;
    padding: 60px 0;
}

.products-bottom-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.bottom-callout-left {
    flex: 1;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 40px;
    border-radius: 15px;
    color: #fff;
}

.bottom-callout-left h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 20px;
}

.bottom-callout-left p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.bottom-callout-right {
    flex: 1;
    display: flex;
}

.bottom-callout-right .placeholder-box {
    border-radius: 15px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

/* Sliders Page Styles */
.sliders-page-hero {
    margin-bottom: 60px;
}

.product-details-section {
    margin-bottom: 80px;
}

.product-details-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.product-gallery {
    flex: 1;
    display: flex;
    gap: 20px;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-main-img {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    background: #e0e0e0;
}

.gallery-main-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: scale-down !important;
    border-radius: 15px;
}

.product-info-details {
    flex: 1;
}

.product-info-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.product-info-details p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.size-selection {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.size-btn {
    padding: 8px 20px;
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
}

.size-btn:hover {
    border-color: #5F8CEE;
    color: #5F8CEE;
}

.buy-now-section {
    margin-top: 30px;
}

.buy-now-section span {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.buy-logos {
    display: flex;
    gap: 15px;
}

.buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    font-size: 18px;
    border: none;
}

.amazon-btn {
    background: #f0a316;
    color: #fff;
}

.blinkit-btn {
    background: #f5d13d;
    color: #333;
}

.zepto-btn {
    background: #8916d8;
    color: #fff;
}

/* Related Products */
.related-products-section {
    background: #fcfaf5;
    padding: 60px 0;
}

.related-products-title {
    font-size: 48px;
    color: #4b89dc;
    margin-bottom: 40px;
    text-align: left;
    font-weight: 300;
}

.related-products-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.related-products-grid::-webkit-scrollbar {
    display: none;
}

.related-card {
    background: transparent;
    border: none;
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
}

.related-card .product-content {
    padding: 15px 0 0 0;
}

.carousel-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 20px;
}

.arrow-btn {
    background: transparent;
    border: none;
    color: #555;
    font-size: 32px;
    cursor: pointer;
    font-weight: 300;
}

/* Contact Page Styles */
.contact-hero {
    margin-bottom: 0;
}

.contact-dark-section {
    background-color: #1a1a1a;
    padding: 80px 0;
    color: #fff;
}

.contact-split-layout {
    display: flex;
    gap: 60px;
}

.contact-left-content {
    flex: 1;
}

.contact-left-content h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.2;
}

.contact-left-content p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
}

.contact-right-form {
    flex: 1;
}

.custom-contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-row-2>.input-group,
.form-row-1>.input-group {
    flex: 1;
}

.input-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.input-group label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
    font-weight: 500;
}

.input-group input,
.input-group select {
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    padding: 10px 0;
    color: #fff;
    font-size: 16px;
    outline: none;
    font-family: 'Nunito', sans-serif;
    transition: border-color 0.3s;
}

.input-group input:focus,
.input-group select:focus {
    border-bottom-color: #5F8CEE;
}

.input-group select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23999%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px auto;
}

.input-group select option {
    background: #333;
    color: #fff;
}

.btn-submit-blue {
    background: #3a75e2;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.btn-submit-blue:hover {
    background: #2a61c7;
}

.contact-map-section {
    width: 100%;
}

/* Header Dropdown */
.main-nav ul li.has-dropdown {
    position: relative;
}

.main-nav ul li .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    z-index: 999;
    padding: 10px 0;
    border-radius: 8px;
    flex-direction: column;
    gap: 0;
}

.main-nav ul li.has-dropdown:hover .dropdown-menu {
    display: flex;
}

.main-nav ul li .dropdown-menu li {
    margin: 0;
}

.main-nav ul li .dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.main-nav ul li .dropdown-menu li a:hover {
    background: #f5f5f5;
    color: #5F8CEE;
}

.main-nav ul li .dropdown-menu li a.active {
    color: #5F8CEE;
}

/* Our Products Section */
.our-products-section {
    background-color: #fcfaf5;
    padding: 80px 0;
}

.our-products-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.products-list-col {
    flex: 0 0 350px;
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
}

.our-products-title {
    font-size: 42px;
    color: #666;
    font-weight: 300;
    margin-bottom: 30px;
}

.products-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    --product-title-size: 18px;
    --product-desc-size: 13px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(226, 106, 44, 0.3) rgba(0, 0, 0, 0.03);
}

.products-list::-webkit-scrollbar {
    width: 6px;
}

.products-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 10px;
}

.products-list::-webkit-scrollbar-thumb {
    background: rgba(226, 106, 44, 0.3);
    border-radius: 10px;
    transition: background 0.3s;
}

.products-list::-webkit-scrollbar-thumb:hover {
    background: rgba(226, 106, 44, 0.6);
}

.product-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    padding: 15px 25px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: transparent;
}

.product-list-item:hover {
    background-color: rgba(226, 106, 44, 0.05);
}

.product-list-item.active {
    background-color: #E26A2C;
    box-shadow: 0 8px 20px rgba(226, 106, 44, 0.15);
}

.product-list-item .product-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.product-list-item.active .product-icon {
    border-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-list-item .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-list-item h4 {
    margin: 0;
    font-size: var(--product-title-size, 18px);
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.product-list-item p {
    margin: 4px 0 0 0;
    font-size: var(--product-desc-size, 13px);
    color: #666;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.product-list-item.active h4 {
    color: #ffffff !important;
    font-weight: 600 !important;
}

.product-list-item.active p {
    color: #fdf5f0 !important;
}

.product-display-col {
    flex: 0 0 750px;
    height: calc(100vh - 150px);
    max-height: 580px;
    border-radius: 24px;
    position: -webkit-sticky;
    position: sticky;
    top: 110px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

#productDisplayBg {
    background-size: cover;
    background-position: center;
}

#productDisplayContent {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

#displayTitle {
    font-size: 42px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

#displaySubtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 600;
}

.display-btn-link {
    font-size: 14px;
    padding: 8px 20px;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.display-btn-link:hover {
    background: #ffffff;
    color: #E26A2C !important;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Recipes Page */
.recipe-top-slider-section {
    padding: 20px 0;
    background: #fff;
}

.recipe-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.recipe-section-title {
    color: #4a7be8;
    font-size: 32px;
    font-weight: 300;
    margin: 0;
}

.slider-arrows {
    display: flex;
    gap: 15px;
}

.slider-arrows .arrow-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #888;
    cursor: pointer;
    padding: 0;
}

.recipe-top-carousel,
.recipe-bottom-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-top: 15px;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.recipe-top-carousel::-webkit-scrollbar,
.recipe-bottom-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-item {
    text-align: center;
    min-width: 120px;
}

.circle-img-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    margin: 0 auto 15px;
    border: 3px solid transparent;
}

.circle-img-placeholder.active-ring {
    border-color: #e23b3b;
}

.carousel-item p {
    color: #666;
    margin: 0;
    font-size: 15px;
}

.recipe-detail-section {
    background-color: #fcfaf5;
    padding: 70px 0;
}

.recipe-header {
    text-align: center;
    margin-bottom: 50px;
}

.recipe-title {
    color: #2b7a78;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
}

.recipe-subtitle {
    color: #555;
    font-size: 16px;
}

.recipe-content-grid {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    gap: 40px;
    align-items: center;
}

.recipe-col-left,
.recipe-col-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.recipe-info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(55.77389144897461px);
    -webkit-backdrop-filter: blur(55.77389144897461px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
}

.recipe-info-card h4 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 16px;
    color: #333;
}

.recipe-info-card p {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
}

.recipe-main-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: transparent;
    border-radius: 16px;
}

.recipe-bottom-slider-section {
    padding: 60px 0;
    background: #fff;
}

.carousel-item-square {
    text-align: center;
    min-width: 140px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.carousel-item-square:hover {
    transform: translateY(-8px);
}

.square-img-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    margin: 0 auto 15px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.carousel-item-square:hover .square-img-placeholder {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.carousel-item-square p {
    color: #666;
    margin: 0;
    font-size: 15px;
}

/* Responsive Design */
@media (max-width: 992px) {

    .sliders-container,
    .benefits-container,
    .about-split-section,
    .products-bottom-container {
        flex-direction: column;
        text-align: center;
    }

    .about-container {
        flex-direction: column;
        text-align: left;
    }

    .recipe-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .recipe-col-center {
        grid-row: 1;
        /* Move image to top on mobile */
    }

    .recipe-col-left,
    .recipe-col-right {
        gap: 20px;
    }

    .our-products-container {
        flex-direction: column;
        gap: 40px;
    }

    .product-display-col {
        position: static !important;
    }

    .products-list-col {
        flex: 1;
        width: 100%;
        text-align: center;
        position: static !important;
    }

    .our-products-title {
        margin-bottom: 25px;
    }

    .products-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        text-align: left;
        --product-title-size: 14px;
        --product-desc-size: 11px;
        max-height: none !important;
        overflow-y: visible !important;
        padding-right: 0 !important;
    }

    .product-list-item {
        padding: 10px 15px;
        gap: 12px;
        border-radius: 12px;
    }

    .product-list-item .product-icon {
        width: 40px;
        height: 40px;
    }

    .about-split-layout,
    .contact-split-layout {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .product-details-layout {
        flex-direction: column;
    }

    .about-split-left,
    .bottom-callout-left {
        text-align: left;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-card {
        flex: 0 0 calc(50% - 15px);
    }

    .product-card {
        grid-column: span 1;
    }

    .product-card.centered-card:nth-last-child(2),
    .product-card.centered-card:nth-last-child(1) {
        grid-column: span 1;
    }

    .why-card {
        width: calc(50% - 10px);
    }

    .sliders-description {
        margin: 0 auto 30px;
    }

    .benefits-card {
        align-items: center;
    }

    .benefit-icon {
        margin: 0 auto 15px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-card-right {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-contact-section {
        align-items: center;
        text-align: center;
    }

    .sliders-hero-title {
        font-size: 32px !important;
    }

    .related-products-title {
        font-size: 24px !important;
    }

}


@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-nav ul li .dropdown-menu {
        position: relative;
        top: 0;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        display: none;
        padding: 10px 0 0 0;
    }

    .main-nav ul li:hover .dropdown-menu {
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title,
    .about-hero-title {
        color: #a62b2b;
        font-size: 14px;
        line-height: 1.2;
        font-weight: 700;
        margin-bottom: 4px;
        text-shadow: none;
    }

    .hero-subtitle {
        color: #555;
        font-size: 8px;
        padding: 0;
        font-weight: 500;
        line-height: 1.3;
        text-shadow: none;
    }

    .hero-text-overlay {
        position: absolute;
        top: 32%;
        left: 4%;
        width: 42%;
        text-align: left;
        padding: 0;
        background-color: transparent;
        box-shadow: none;
        z-index: 10;
        pointer-events: none;
    }

    .hero-content {
        margin-bottom: 0;
        padding: 0 !important;
        margin: 0 !important;
    }

    .hotspot-toggle {
        width: 20px;
        height: 20px;
        font-size: 13px;
        border-width: 1.5px;
    }

    .hotspot-popup {
        min-width: 120px;
        padding: 8px 12px;
        transform: translateX(-50%) translateY(5px);
        z-index: 9999;
    }

    .hotspot-popup h4 {
        font-size: 13px;
    }

    .hotspot-popup p {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .hotspot-popup .btn-solid-yellow {
        padding: 4px 10px;
        font-size: 10px;
    }

    /* Prevent hotspots near right edge from causing horizontal scroll */
    .product-hotspot.align-right .hotspot-popup {
        left: auto;
        right: -10px;
        transform: translateY(5px);
    }

    .product-hotspot.align-right.active .hotspot-popup {
        transform: translateY(0);
    }

    .product-hotspot.align-right .hotspot-popup::after {
        left: auto;
        right: 10px;
    }

    .why-card {
        width: 100%;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-display-col {
        flex: none !important;
        height: auto !important;
        aspect-ratio: 4/3 !important;
        width: 100% !important;
        min-height: auto;
        padding: 0;
        position: relative !important;
        overflow: hidden;
        border-radius: 20px;
        margin-top: 20px;
        background-color: transparent;
    }

    #productDisplayBg {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 20px;
        width: 100%;
        height: 100%;
    }

    .product-display-bg::before {
        top: 0 !important;
        bottom: auto !important;
        height: 60% !important;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent) !important;
    }

    .products-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        --product-title-size: 12px;
        --product-desc-size: 10px;
        max-height: none !important;
        overflow-y: visible !important;
        padding-right: 0 !important;
    }

    .product-list-item {
        padding: 10px !important;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .product-list-item .product-icon {
        margin-bottom: 8px;
    }

    #productDisplayContent {
        left: 20px;
        top: 20px !important;
        bottom: auto !important;
        right: 20px;
    }

    #displayTitle {
        font-size: 24px;
    }

    .related-card {
        flex: 0 0 100%;
    }

    .product-gallery {
        flex-direction: column-reverse;
    }

    .gallery-thumbnails {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
        flex: 0 0 auto;
    }

    .buy-logos {
        flex-wrap: wrap;
    }

    .footer-bottom-content,
    .footer-copyright-row {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-cta-left h2 {
        margin: 0 auto 20px;
        font-size: 28px;
    }

    .social-links,
    .social-links-footer {
        justify-content: center;
    }

    .footer-cta h2 {
        margin: 0 auto;
    }

    .about-hero-bg,
    .products-hero-bg {
        min-height: 160px !important;
        height: auto !important;
        padding: 40px 15px !important;
    }

    .about-hero-overlay,
    .products-hero-overlay {
        padding: 20px !important;
        width: 90% !important;
        margin: 0 auto;
    }

    .sliders-hero-bg {
        min-height: 160px !important;
    }

    .about-hero-title,
    .products-hero-title,
    .sliders-hero-title {
        font-size: 24px !important;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .related-products-title {
        font-size: 24px !important;
    }

}

/* Global Product Card Styles */
.product-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}