:root {
    --primary-green: #084c2e;
    --primary-dark: #032115;
    --secondary-green: #11683d;
    --accent-lime: #4fb023;
    --accent-gold: #c29b38;
    --accent-gold-light: #e2be58;
    --bg-light-mint: #f3f8f4;
    --bg-warm-hero: #fcfcfb;
    --text-dark: #1a202c;
    --text-muted: #5c6d62;
    --border-light: #edf2ed;
    --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-arabic: 'Cairo', sans-serif;
    --font-script: 'Dancing Script', cursive;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* ==========================================================================
   Brand Logo Preloader
   ========================================================================== */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999999;
    background: radial-gradient(circle at center, #ffffff 0%, #f4f8f5 55%, #e9f2eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.55s ease;
    will-change: opacity, visibility;
    pointer-events: all;
}

.site-preloader.loaded {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    max-width: 420px;
}

.preloader-graphic {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.preloader-glow {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(79, 176, 35, 0.3) 0%, rgba(8, 76, 46, 0.08) 65%, transparent 100%);
    filter: blur(14px);
    animation: preloaderGlow 2.5s ease-in-out infinite alternate;
}

.preloader-spinner-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid rgba(8, 76, 46, 0.08);
    border-top: 3.5px solid var(--primary-green);
    border-right: 3.5px solid var(--accent-lime);
    animation: preloaderSpin 1.15s cubic-bezier(0.5, 0.1, 0.4, 0.9) infinite;
    box-shadow: 0 0 16px rgba(79, 176, 35, 0.12);
}

.preloader-orbit-ring {
    position: absolute;
    inset: -9px;
    border-radius: 50%;
    border: 2px dashed rgba(194, 155, 56, 0.45);
    animation: preloaderOrbit 8s linear infinite;
}

.preloader-logo-img {
    width: 86px;
    height: 86px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: preloaderFloat 2.2s ease-in-out infinite alternate;
    filter: drop-shadow(0 6px 14px rgba(8, 76, 46, 0.18));
}

.preloader-brand-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 2.2px;
    color: var(--primary-green);
    margin: 0 0 4px 0;
    text-transform: uppercase;
}

.preloader-brand-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.preloader-progress-track {
    width: 140px;
    height: 4px;
    background: rgba(8, 76, 46, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto 12px;
    position: relative;
}

.preloader-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 45%;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-lime), var(--accent-gold));
    border-radius: 999px;
    animation: preloaderBar 1.4s ease-in-out infinite;
}

.preloader-arabic-tag {
    font-family: var(--font-arabic);
    font-size: 13.5px;
    color: var(--secondary-green);
    font-weight: 700;
    opacity: 0.9;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes preloaderOrbit {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

@keyframes preloaderFloat {
    0% { transform: scale(0.96) translateY(2px); }
    100% { transform: scale(1.03) translateY(-2px); }
}

@keyframes preloaderGlow {
    0% { transform: scale(0.9); opacity: 0.45; }
    100% { transform: scale(1.18); opacity: 0.95; }
}

@keyframes preloaderBar {
    0% { left: -45%; width: 40%; }
    50% { left: 35%; width: 55%; }
    100% { left: 105%; width: 30%; }
}

/* ==========================================================================
   Top Utility Bar
   ========================================================================== */
.top-bar {
    background-color: #063121;
    color: #e5f2ea;
    font-size: 13px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-item {
    color: #e5f2ea;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.top-bar-item:hover {
    color: #ffffff;
}

.top-bar-item i {
    color: #48bb78;
}

.top-bar-divider {
    color: rgba(255, 255, 255, 0.25);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
}

.active-lang {
    color: #ffffff;
    font-weight: 700;
}

.lang-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.lang-link:hover {
    color: #ffffff;
}

/* ==========================================================================
   Main Navbar
   ========================================================================== */
.main-navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    padding: 8px 0;
    border-bottom: 1px solid #edf2ed;
    z-index: 1020;
}

.navbar-logo {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.08));
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 900;
    color: var(--primary-green);
    letter-spacing: 0.6px;
    line-height: 1.1;
}

.brand-sub {
    font-family: var(--font-main);
    font-size: 9.5px;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 2px;
}

.main-navbar .nav-link {
    font-size: 14.5px;
    font-weight: 600;
    color: #222b38;
    padding: 8px 16px !important;
    position: relative;
    transition: color 0.2s ease;
}

.main-navbar .nav-link:hover {
    color: var(--primary-green);
}

.main-navbar .nav-link.active {
    color: var(--primary-green) !important;
}

.main-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2.5px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, #fdfdfc 0%, #f4f7f2 100%);
    padding: 45px 0 55px 0;
    position: relative;
}

.floating-leaf {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    animation: gentleFloat 6s ease-in-out infinite alternate;
}

.leaf-top {
    top: 12%;
    left: 48%;
    animation-delay: 0s;
}

.leaf-bottom-left {
    bottom: 12%;
    left: 4%;
    animation-delay: 1.5s;
    transform: rotate(25deg);
}

.leaf-bottom-right {
    top: 8%;
    right: 4%;
    animation-delay: 3s;
    transform: rotate(-35deg);
}

@keyframes gentleFloat {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-10px) rotate(8deg);
    }
}

.hero-tagline {
    font-size: 14px;
    font-weight: 700;
    color: #17653f;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    color: var(--primary-green);
    font-size: clamp(2.2rem, 4.2vw, 3.1rem);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -0.5px;
}

.hero-title-ar {
    color: var(--primary-green);
    font-family: var(--font-arabic);
    font-size: clamp(1.4rem, 2.6vw, 1.95rem);
    font-weight: 800;
    line-height: 1.35;
}

.hero-features {
    font-size: 14.5px;
    font-weight: 600;
    color: #3f614b;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bullet-dot {
    color: var(--accent-gold);
    font-size: 18px;
    line-height: 1;
}

.btn-hero {
    background-color: var(--primary-green);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(8, 76, 46, 0.25);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background-color: #05331f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 76, 46, 0.35);
}

.hero-image-wrapper {
    position: relative;
    border-radius: 18px;
}

.hero-produce-img {
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-height: 440px;
    object-fit: cover;
}

.fresh-natural-badge {
    position: absolute;
    top: -12px;
    right: 14px;
    background-color: #083e25;
    color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    text-align: center;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    z-index: 3;
}

.badge-script {
    font-family: var(--font-script);
    font-size: 20px;
    line-height: 1;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ==========================================================================
   Section Title Wrap & Gold Wings
   ========================================================================== */
.section-title-wrap {
    margin-bottom: 2px;
}

.section-title {
    color: var(--primary-green);
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.gold-wing-line {
    display: inline-block;
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    position: relative;
}

.gold-wing-line::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 6px;
    height: 6px;
    background-color: var(--accent-gold);
}

.section-subtitle {
    color: #17653f;
    font-size: 15px;
    font-weight: 600;
    margin-top: 2px;
}

/* ==========================================================================
   Products Section
   ========================================================================== */
.products-section {
    background-color: #ffffff;
}

.product-card {
    background-color: #ffffff;
    border: 1px solid #e5ece6;
    border-radius: 18px; /* Rounded card */
    overflow: hidden; /* Clips full-width image to rounded card corners */
    padding: 0; /* Zero padding on card wrapper for edge-to-edge image */
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(8, 76, 46, 0.12);
    border-color: #bedbc2;
}

.product-img-box {
    width: 100%;
    height: 165px; /* Full-width edge-to-edge produce image */
    position: relative;
    overflow: hidden;
    background-color: #f7faf7;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover; /* Full-width cover filling the top header */
    transition: transform 0.4s ease;
}

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

.product-info {
    padding: 14px 14px 4px 14px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-action, .product-actions {
    padding: 0 14px 15px 14px;
}

.product-title {
    font-size: 13.5px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.25;
}

.product-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 3px;
}

.product-title-ar {
    font-family: var(--font-arabic);
    font-size: 14.5px;
    font-weight: 800;
    color: #1a202c;
}

/* ==========================================================================
   Special Offer Banner (Full Cover Image Redesign)
   ========================================================================== */
.special-offer-banner {
    position: relative;
    background: linear-gradient(90deg, rgba(4, 32, 19, 0.96) 0%, rgba(5, 38, 23, 0.92) 48%, rgba(5, 38, 23, 0.62) 78%, rgba(5, 38, 23, 0.35) 100%),
                url('../images/special-offer.jpg') center right / cover no-repeat;
    border-radius: 22px;
    border: 2px solid rgba(212, 165, 55, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
    color: #ffffff;
    padding: 38px 24px;
    overflow: hidden;
}

.offer-badge-pill {
    background: linear-gradient(135deg, var(--accent-gold), #9e751b);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 14px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.offer-heading-script {
    font-family: var(--font-script);
    font-size: clamp(38px, 4.5vw, 54px);
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.offer-subheading {
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.offer-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    line-height: 1.55;
}

.price-seal {
    width: 96px;
    height: 96px;
    background: radial-gradient(circle, #e5b03f 0%, #b37d18 100%);
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255, 255, 255, 0.7);
    animation: sealGlow 3s ease-in-out infinite alternate;
}

@keyframes sealGlow {
    0% {
        box-shadow: 0 6px 20px rgba(229, 176, 63, 0.35);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 8px 30px rgba(229, 176, 63, 0.65);
        transform: scale(1.04);
    }
}

.price-seal-inner {
    text-align: center;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.price-label {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
}

.price-val {
    font-size: 26px;
    font-weight: 900;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.price-currency {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
}

.fresh-everyday-wrap {
    background-color: rgba(255, 255, 255, 0.88);
    padding: 8px 16px;
    border-radius: 30px;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fresh-script {
    font-family: var(--font-script);
    font-size: 22px;
    color: var(--primary-green);
}

.everyday-script {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-green);
    letter-spacing: 0.5px;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
    background-color: #ffffff;
}

.about-img {
    border-radius: 14px;
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.about-company-name {
    color: var(--primary-green);
    font-size: 24px;
    font-weight: 800;
}

.about-description {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-feature-box {
    padding: 8px 4px;
}

.about-icon {
    font-size: 26px;
    color: #156b3e;
}

.about-feature-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.35;
}

.btn-learn-more {
    background-color: var(--primary-green);
    color: #ffffff;
    font-weight: 600;
    font-size: 14.5px;
    border-radius: 50px;
    padding: 10px 24px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(8, 76, 46, 0.25);
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    background-color: #05331f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(8, 76, 46, 0.35);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-choose-section {
    background-color: var(--bg-light-mint);
}

.why-card {
    background-color: transparent;
    padding: 15px 10px;
}

.why-icon-circle {
    width: 68px;
    height: 68px;
    background-color: #dbeede;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #13663b;
    font-size: 28px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.why-card:hover .why-icon-circle {
    transform: scale(1.1);
    background-color: #cae6cf;
}

.why-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #1a202c;
}

.why-card-desc {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* ==========================================================================
   Order Now Banner
   ========================================================================== */
.order-now-section {
    background: linear-gradient(rgba(7, 45, 27, 0.92), rgba(5, 36, 21, 0.92)), url('../images/banner-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 55px 0;
}

.order-accent-bar {
    width: 45px;
    height: 3px;
    background-color: var(--accent-gold);
}

.order-tagline {
    font-size: 13px;
    font-weight: 700;
    color: #d4e8da;
    letter-spacing: 1px;
}

.order-headline {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.order-subline {
    font-size: 15.5px;
    color: #c3dcce;
}

.contact-white-circle {
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #083e25;
    font-size: 16px;
}

.contact-value {
    font-size: 14.5px;
}

.contact-sub {
    font-size: 12px;
}

.btn-whatsapp-order {
    background-color: var(--accent-lime);
    color: #ffffff;
    font-weight: 700;
    font-size: 14.5px;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 14px rgba(79, 176, 35, 0.35);
    transition: all 0.3s ease;
}

.btn-whatsapp-order:hover {
    background-color: #42991c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(79, 176, 35, 0.45);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--primary-dark);
    color: #ffffff;
}

.footer-logo {
    height: 54px;
    width: auto;
    object-fit: contain;
    background: #ffffff;
    border-radius: 12px;
    padding: 3px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.footer-brand-name {
    font-family: var(--font-heading);
    font-size: 16.5px;
    font-weight: 900;
    letter-spacing: 0.6px;
    line-height: 1.1;
}

.footer-brand-sub {
    font-family: var(--font-main);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 2px;
}

.footer-info-icon {
    font-size: 20px;
    color: #48bb78;
    margin-top: 2px;
}

.footer-info-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.footer-info-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

.social-circle {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
}

.social-circle:hover {
    background-color: #48bb78;
    border-color: #48bb78;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-text {
    font-size: 12px;
}

/* ==========================================================================
   Responsive Mobile Redesign & Breakpoints
   ========================================================================== */

/* Tablet and below (< 992px) */
@media (max-width: 991.98px) {
    .top-bar {
        font-size: 11.5px;
        padding: 5px 0;
    }

    .top-bar-item {
        font-size: 11px;
        white-space: nowrap;
    }

    /* Mobile Header Layout */
    .main-navbar {
        padding: 6px 0;
    }

    .navbar-logo {
        height: 44px;
    }

    .brand-name {
        font-size: 14.5px;
    }

    .brand-sub {
        font-size: 8.5px;
        letter-spacing: 1.2px;
    }

    .btn-mobile-basket {
        background-color: #f1f8f3;
        color: var(--primary-green) !important;
        border: 1px solid #cce5d3;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        font-size: 15px;
        transition: all 0.2s ease;
    }

    .btn-mobile-basket:active {
        transform: scale(0.92);
    }

    .mobile-cart-badge {
        position: absolute;
        top: -3px;
        right: -3px;
        font-size: 10px;
        font-weight: 800;
        padding: 2px 5px;
        min-width: 17px;
        height: 17px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1.5px solid #ffffff;
    }

    .mobile-menu-btn {
        background-color: #f3f8f4;
        border-radius: 8px;
        padding: 6px 9px;
        transition: background-color 0.2s ease;
    }

    .mobile-menu-btn:focus {
        box-shadow: none;
    }

    /* Mobile Drawer Menu */
    .navbar-collapse {
        background: #ffffff;
        border-radius: 16px;
        margin-top: 10px;
        padding: 12px 16px 16px;
        box-shadow: 0 16px 40px rgba(8, 76, 46, 0.12);
        border: 1px solid #e1ebe3;
    }

    .mobile-nav-list .nav-item {
        width: 100%;
    }

    .mobile-nav-list .nav-link {
        font-size: 14.5px;
        font-weight: 600;
        color: #2d3748;
        padding: 10px 14px !important;
        border-radius: 10px;
        display: flex;
        align-items: center;
        transition: all 0.2s ease;
    }

    .mobile-nav-list .nav-link:hover,
    .mobile-nav-list .nav-link.active {
        background-color: #edf6ef;
        color: var(--primary-green) !important;
    }

    .mobile-nav-list .nav-link.active::after {
        display: none;
    }

    .btn-nav-cta {
        padding: 10px 20px;
        font-size: 14px;
        box-shadow: 0 4px 14px rgba(79, 176, 35, 0.35);
    }

    /* Hero & Sections */
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-title-ar {
        font-size: 1.5rem;
    }

    .about-img {
        height: 300px;
    }
}

/* Mobile Devices (< 768px) */
@media (max-width: 767.98px) {
    .top-bar {
        padding: 4px 0;
        font-size: 11px;
    }

    .top-bar-item {
        font-size: 11px;
        letter-spacing: 0.2px;
        white-space: nowrap;
    }

    .top-bar-item i {
        font-size: 12px;
    }

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

    .hero-tagline {
        font-size: 12px;
        letter-spacing: 0.6px;
    }

    .hero-title {
        font-size: 1.95rem;
        line-height: 1.15;
    }

    .hero-title-ar {
        font-size: 1.35rem;
        line-height: 1.3;
    }

    .hero-features {
        font-size: 12.5px;
        gap: 6px;
    }

    .btn-hero {
        padding: 10px 20px;
        font-size: 13.5px;
        width: 100%;
        justify-content: center;
    }

    .btn-hero-outline {
        padding: 10px 20px;
        font-size: 13.5px;
        width: 100%;
        justify-content: center;
    }

    .hero-image-wrapper {
        margin-top: 14px;
    }

    .hero-produce-img {
        max-height: 260px;
        border-radius: 14px;
    }

    .fresh-natural-badge {
        width: 72px;
        height: 72px;
        top: -10px;
        right: 10px;
    }

    .badge-script {
        font-size: 17px;
    }

    .badge-text {
        font-size: 8px;
    }

    .hero-floating-pill {
        font-size: 10.5px;
        padding: 5px 12px;
        bottom: -8px;
        left: 12px;
    }

    /* Stats Bar Grid */
    .stats-bar-section {
        padding: 16px 0 !important;
    }

    .stat-card {
        padding: 6px 2px !important;
    }

    .stat-icon-wrapper {
        width: 38px;
        height: 38px;
        font-size: 16px;
        margin-bottom: 4px !important;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* Section Titles */
    .section-title {
        font-size: 20px;
    }

    .gold-wing-line {
        width: 32px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    /* Product Cards in 2-Column Mobile View */
    .product-card {
        border-radius: 14px;
    }

    .product-img-box {
        height: 140px;
    }

    .product-info {
        padding: 10px 8px 4px 8px;
    }

    .product-title {
        font-size: 12px;
        margin-bottom: 2px;
        letter-spacing: 0.1px;
    }

    .product-price {
        font-size: 11.5px;
        margin-bottom: 2px;
    }

    .product-title-ar {
        font-size: 12px;
    }

    .product-action, .product-actions {
        padding: 0 8px 10px 8px;
    }

    .btn-add-basket, .btn-card-order, .btn-product-order {
        font-size: 11px;
        padding: 5px 8px;
        border-radius: 30px;
    }

    /* Special Offer Banner */
    .special-offer-banner {
        background: linear-gradient(180deg, rgba(4, 32, 19, 0.97) 0%, rgba(5, 38, 23, 0.94) 65%, rgba(5, 38, 23, 0.78) 100%),
                    url('../images/special-offer.jpg') center bottom / cover no-repeat;
        padding: 26px 16px;
        text-align: center;
        border-radius: 18px;
    }

    .offer-heading-script {
        font-size: 34px;
    }

    .offer-subheading {
        font-size: 16px;
    }

    .offer-desc {
        font-size: 13px;
    }

    .price-seal {
        width: 80px;
        height: 80px;
    }

    .price-val {
        font-size: 20px;
    }

    /* Floating Action Buttons */
    .floating-whatsapp-btn {
        bottom: 18px;
        right: 18px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .back-to-top-btn {
        bottom: 78px;
        right: 21px;
        width: 44px;
        height: 44px;
    }

    .cart-toast-alert {
        bottom: 135px;
        right: 18px;
        font-size: 12.5px;
        padding: 9px 16px;
    }
}

/* Small Phones (< 576px) */
@media (max-width: 575.98px) {
    .navbar-logo {
        height: 38px;
    }

    .brand-name {
        font-size: 13px;
        letter-spacing: 0.2px;
    }

    .brand-sub {
        font-size: 7.5px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 1.7rem;
    }

    .hero-title-ar {
        font-size: 1.2rem;
    }

    .product-img-box {
        height: 125px;
    }
}

/* ==========================================================================
   Multi-Page & Dynamic Features Styling
   ========================================================================== */
.text-gold {
    color: var(--accent-gold) !important;
}

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

.bg-primary-green {
    background-color: var(--primary-green) !important;
}

/* Navbar CTA */
.btn-nav-cta {
    background-color: var(--accent-lime);
    color: #ffffff !important;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 50px;
    padding: 7px 18px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 3px 10px rgba(79, 176, 35, 0.3);
    transition: all 0.25s ease;
}

.btn-nav-cta:hover {
    background-color: #42991c;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(79, 176, 35, 0.45);
}

/* Page Banner */
.page-banner-section {
    background: linear-gradient(135deg, rgba(8, 76, 46, 0.95), rgba(4, 40, 24, 0.96)), url('../images/banner-bg.jpg') center/cover no-repeat;
    padding: 60px 0 55px 0;
    border-bottom: 3px solid var(--accent-gold);
}

.banner-subtitle {
    font-size: 13px;
    letter-spacing: 1.5px;
}

.banner-title {
    font-size: clamp(2rem, 3.8vw, 2.9rem);
    font-weight: 900;
    letter-spacing: -0.5px;
}

.banner-title-ar {
    font-family: var(--font-arabic);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 700;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* Hero Outline Button */
.btn-hero-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    padding: 10px 24px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background-color: var(--primary-green);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Stats Bar */
.stat-card {
    transition: transform 0.25s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
}

.stat-icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #dbeede;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-number {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1.2;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

/* Product Card Enhancements */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, rgba(212, 165, 55, 0.95), rgba(179, 139, 43, 0.95));
    color: #ffffff;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cursor-pointer {
    cursor: pointer;
}

.product-hover-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(8, 76, 46, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.product-card:hover .product-hover-overlay {
    opacity: 1;
}

.btn-product-order {
    background-color: #177a45;
    color: #ffffff;
    font-weight: 700;
    font-size: 12.5px;
    border-radius: 50px;
    padding: 6px 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}

.btn-product-order:hover {
    background-color: #0e562f;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-view-catalog {
    background-color: var(--primary-green);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 50px;
    padding: 12px 32px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(8, 76, 46, 0.25);
    transition: all 0.3s ease;
}

.btn-view-catalog:hover {
    background-color: #05331f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 76, 46, 0.35);
}

/* Category Filter Tabs */
.category-filter-btn {
    background-color: #f1f5f2;
    color: #2d3748;
    font-size: 13.5px;
    font-weight: 600;
    border: 1px solid #e2e8e4;
    border-radius: 50px;
    padding: 7px 18px;
    transition: all 0.2s ease;
}

.category-filter-btn:hover {
    background-color: #e2ece4;
    color: var(--primary-green);
}

.category-filter-btn.active {
    background-color: var(--primary-green);
    color: #ffffff;
    border-color: var(--primary-green);
    box-shadow: 0 3px 10px rgba(8, 76, 46, 0.25);
}

/* Experience Badge */
.about-exp-badge {
    position: absolute;
    bottom: -15px;
    right: 15px;
    background-color: var(--primary-green);
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid var(--accent-gold);
}

.exp-num {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    font-family: var(--font-heading);
}

.exp-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Vision & Mission Cards */
.vision-card {
    position: relative;
    border-left: 4px solid var(--primary-green) !important;
}

.vision-watermark-icon {
    position: absolute;
    right: -15px;
    bottom: -20px;
    font-size: 110px;
    color: rgba(8, 76, 46, 0.04);
    pointer-events: none;
}

.vision-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #e8f5ec, #d1ecd9);
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* Process Step Cards */
.process-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.process-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 20px;
    font-weight: 900;
    color: rgba(8, 76, 46, 0.15);
    font-family: var(--font-heading);
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #e8f5ec;
    color: var(--primary-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto;
}

/* Why Choose Us Pillars */
.why-pillar-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.pillar-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    background-color: #e8f5ec;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Comparison Table */
.comparison-table th, .comparison-table td {
    vertical-align: middle;
}

.bg-mint-highlight {
    background-color: #f1f9f3 !important;
}

/* FAQ Accordion */
.accordion-custom .accordion-button {
    padding: 16px 20px;
    background-color: #ffffff;
    font-size: 15.5px;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background-color: #edf7ef;
    color: var(--primary-green);
    box-shadow: none;
}

.accordion-custom .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(8, 76, 46, 0.25);
}

/* Contact Cards */
.contact-card {
    transition: transform 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #e8f5ec;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

/* Order Builder */
.order-builder-card {
    border-top: 4px solid #25d366 !important;
}

.whatsapp-builder-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #e8f7ee;
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* Floating WhatsApp Widget */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    z-index: 1050;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp-btn:hover {
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: waPulse 2s infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Footer Nav */
.footer-nav-list li {
    margin-bottom: 8px;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-nav-list a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* ==========================================================================
   Shopping Basket & Cart Drawer Styling
   ========================================================================== */
.btn-nav-cart {
    background-color: #f1f8f3;
    color: var(--primary-green) !important;
    border: 1px solid #cce5d3;
    font-size: 13.5px;
    font-weight: 700;
    border-radius: 50px;
    padding: 7px 16px;
    transition: all 0.25s ease;
}

.btn-nav-cart:hover {
    background-color: #e1f1e5;
    color: #05331f !important;
    transform: translateY(-1px);
}

.cart-offcanvas {
    width: 380px !important;
    max-width: 90vw;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
}

.cart-item-card {
    background: #ffffff;
    border: 1px solid #edf2ed;
    border-radius: 14px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: box-shadow 0.2s ease;
}

.cart-item-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.cart-item-img {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
    background: #f7faf7;
}

.cart-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #dee2e6;
    border-radius: 30px;
    padding: 2px 6px;
}

.cart-qty-btn {
    background: none;
    border: none;
    font-weight: bold;
    font-size: 14px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2d3748;
    cursor: pointer;
}

.cart-qty-btn:hover {
    color: var(--primary-green);
}

.btn-add-basket {
    background-color: #f1f8f3;
    color: var(--primary-green);
    border: 1px solid #c2e2c9;
    font-weight: 700;
    font-size: 12.5px;
    border-radius: 50px;
    padding: 6px 12px;
    transition: all 0.2s ease;
}

.btn-add-basket:hover {
    background-color: var(--primary-green);
    color: #ffffff;
}

/* Added to cart toast */
.cart-toast-alert {
    position: fixed;
    bottom: 155px;
    right: 25px;
    background-color: #084c2e;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 2000;
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-toast-alert.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ==========================================================================
   DYNAMIC ANIMATIONS & INTERACTIVE MOTION SYSTEM
   ========================================================================== */

/* 1. Scroll Reveal Engine */
.reveal-init {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-init.reveal-left {
    transform: translateX(-35px);
}

.reveal-init.reveal-right {
    transform: translateX(35px);
}

.reveal-init.reveal-scale {
    transform: scale(0.92);
}

.reveal-init.reveal-active {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

/* Stagger Delays */
.delay-100 { transition-delay: 0.08s; }
.delay-200 { transition-delay: 0.16s; }
.delay-300 { transition-delay: 0.24s; }
.delay-400 { transition-delay: 0.32s; }
.delay-500 { transition-delay: 0.4s; }

/* 2. Enhanced Card Elevation & Specular Sheen */
.product-card {
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.3s ease !important;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.015) !important;
    box-shadow: 0 16px 36px rgba(8, 76, 46, 0.15) !important;
    border-color: #a8d5b2 !important;
}

.product-img-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-25deg);
    transition: left 0.85s ease;
    pointer-events: none;
    z-index: 2;
}

.product-card:hover .product-img-box::after {
    left: 170%;
}

.product-badge {
    animation: badgeShimmer 3.2s ease-in-out infinite;
}

@keyframes badgeShimmer {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.15) drop-shadow(0 2px 6px rgba(194, 155, 56, 0.4)); }
}

/* 3. Hero Section Organic Floating Motions */
.leaf-top {
    animation: floatLeafTop 7s ease-in-out infinite alternate !important;
}

.leaf-bottom-left {
    animation: floatLeafLeft 8.5s ease-in-out infinite alternate !important;
}

.leaf-bottom-right {
    animation: floatLeafRight 6.8s ease-in-out infinite alternate !important;
}

@keyframes floatLeafTop {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-16px) rotate(14deg); }
    100% { transform: translateY(4px) rotate(-6deg); }
}

@keyframes floatLeafLeft {
    0% { transform: translateY(0) rotate(25deg); }
    50% { transform: translateY(-22px) rotate(38deg) translateX(8px); }
    100% { transform: translateY(6px) rotate(18deg); }
}

@keyframes floatLeafRight {
    0% { transform: translateY(0) rotate(-35deg); }
    50% { transform: translateY(-18px) rotate(-20deg) translateX(-10px); }
    100% { transform: translateY(5px) rotate(-42deg); }
}

/* Hero Badge Floating Bob */
.fresh-natural-badge {
    animation: badgeBob 4s ease-in-out infinite alternate !important;
}

@keyframes badgeBob {
    0% { transform: translateY(0) rotate(-2deg); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); }
    50% { transform: translateY(-9px) rotate(4deg); box-shadow: 0 14px 28px rgba(8, 76, 46, 0.35); }
    100% { transform: translateY(0) rotate(-2deg); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); }
}

.hero-produce-img {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
}

.hero-produce-img:hover {
    transform: scale(1.02);
    box-shadow: 0 18px 45px rgba(8, 76, 46, 0.16);
}

.hero-floating-pill {
    position: absolute;
    bottom: -12px;
    left: 20px;
    background: #ffffff;
    color: var(--primary-green);
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(8, 76, 46, 0.18);
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(8, 76, 46, 0.1);
    animation: floatingPill 3.6s ease-in-out infinite alternate;
    z-index: 3;
}

@keyframes floatingPill {
    0% { transform: translateY(0); }
    100% { transform: translateY(-7px); }
}

/* 4. Special Offer Banner Dynamic Animations */
.special-offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -70%;
    width: 45%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: rotate(25deg);
    animation: bannerLightSweep 6.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes bannerLightSweep {
    0% { left: -70%; }
    28% { left: 160%; }
    100% { left: 160%; }
}

.price-seal {
    position: relative;
}

.price-seal::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(229, 176, 63, 0.75);
    animation: sealPulseRing 2.2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
    pointer-events: none;
}

@keyframes sealPulseRing {
    0% { transform: scale(0.95); opacity: 0.9; }
    70% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.35); opacity: 0; }
}

.offer-badge-pill {
    position: relative;
    padding-left: 26px;
}

.offer-badge-pill::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: #4fb023;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(79, 176, 35, 0.8);
    animation: radarPulse 1.8s infinite;
}

@keyframes radarPulse {
    0% { box-shadow: 0 0 0 0 rgba(79, 176, 35, 0.85); }
    70% { box-shadow: 0 0 0 8px rgba(79, 176, 35, 0); }
    100% { box-shadow: 0 0 0 0 rgba(79, 176, 35, 0); }
}

/* 5. Dynamic Navbar Glassmorphism */
.main-navbar {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 6px 25px rgba(8, 76, 46, 0.08) !important;
    padding: 5px 0 !important;
}

/* 6. Dynamic Back to Top Button with Circular Progress */
.back-to-top-btn {
    position: fixed;
    bottom: 95px;
    right: 28px;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(8, 76, 46, 0.18);
    cursor: pointer;
    z-index: 1045;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px) scale(0.9);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top-btn:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 25px rgba(8, 76, 46, 0.3);
}

.back-to-top-btn .progress-ring {
    position: absolute;
    inset: 0;
    transform: rotate(-90deg);
}

.progress-ring-track {
    fill: transparent;
    stroke: rgba(8, 76, 46, 0.12);
    stroke-width: 3.5;
}

.progress-ring-fill {
    fill: transparent;
    stroke: var(--primary-green);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-dasharray: 125.66;
    stroke-dashoffset: 125.66;
    transition: stroke-dashoffset 0.1s linear;
}

.progress-arrow {
    color: var(--primary-green);
    font-size: 16px;
    z-index: 2;
    transition: transform 0.2s ease, color 0.2s ease;
}

.back-to-top-btn:hover .progress-arrow {
    transform: translateY(-2px);
    color: var(--accent-lime);
}

/* 7. Tactile Button Micro-Interactions */
.btn-hero, .btn-hero-outline, .btn-whatsapp-order, .btn-card-order, .btn-add-basket, .btn-success {
    position: relative;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero:active, .btn-whatsapp-order:active, .btn-card-order:active, .btn-add-basket:active {
    transform: scale(0.96) !important;
}

/* 8. Shimmering Gold Wing Lines */
.gold-wing-line {
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    background-size: 200% 100%;
    animation: goldWingShine 4s linear infinite;
}

@keyframes goldWingShine {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

