@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@400;500;600;700;800;900&family=Cairo:wght@600;700;800;900&display=swap');

:root {
    --green: #12352F;
    --green-dark: #0B241F;
    --green-soft: #1F4A3F;
    --gold: #F5B331;
    --orange: #E46F2E;
    --cream: #FFF4E3;
    --white: #FFFBF3;
    --text: #24211D;
    --muted: #6F665A;
}

/* عام */
* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    direction: rtl;
    background: var(--cream);
    color: var(--text);
    font-family: 'IBM Plex Sans Arabic', Tahoma, Arial, sans-serif;
}

/* الهيدر والقائمة */
header,
.header,
nav,
.navbar {
    background: linear-gradient(135deg, var(--green-dark), var(--green), var(--green-soft));
    border-bottom: 3px solid var(--gold);
}

header,
.header {
    min-height: 120px;
    padding: 25px 70px;
}

.logo,
header img {
    max-width: 210px;
    height: auto;
    object-fit: contain;
}

nav a,
header a,
.navbar a,
.menu a {
    color: #FFF8E8;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    margin: 0 12px;
    transition: 0.3s;
}

nav a:hover,
header a:hover,
.navbar a:hover,
.menu a:hover {
    color: var(--gold);
}

.cart-link {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
}

.cart-link-icon {
    width: 19px;
    height: 19px;
    display: inline-flex;
}

.cart-link-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

/* قسم البداية */
.hero,
.hero-section,
#home,
.home {
    background:
        radial-gradient(circle at 15% 20%, rgba(245,179,49,0.14), transparent 30%),
        linear-gradient(135deg, var(--green-dark), var(--green), var(--green-soft));
    color: #fff;
}

.hero h1,
.hero-section h1,
#home h1,
.home h1 {
    color: #FFF8E8;
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.25;
}

.hero p,
.hero-section p,
#home p,
.home p {
    color: #F8E8C8;
    font-size: 20px;
}

/* الأقسام والعناوين */
section {
    background: var(--cream);
    padding: 70px 30px;
}

h1, h2, h3,
.section-title {
    color: var(--green);
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    font-weight: 900;
}

h2,
.section-title {
    text-align: center;
    font-size: 44px;
    margin-bottom: 45px;
}

/* المنتجات */
.products-container,
.product-container,
.cards-container,
.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card,
.product-card,
.menu-card,
.product {
    background: var(--white);
    border: 1px solid rgba(245,179,49,0.35);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(18, 53, 47, 0.13);
    transition: 0.3s ease;
}

.card:hover,
.product-card:hover,
.menu-card:hover,
.product:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(18, 53, 47, 0.22);
}

.card img,
.product-card img,
.menu-card img,
.product img,
.product-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.card-body,
.product-info,
.menu-info {
    background: var(--white);
    padding: 24px 20px;
    text-align: center;
}

.card-title,
.product-card h3,
.menu-card h3,
.product h3 {
    color: var(--green);
    font-size: 25px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 12px;
}

.card-text,
.product-card p,
.menu-card p,
.product p {
    color: var(--muted);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.9;
}

.price,
.product-price {
    color: var(--orange);
    font-size: 20px;
    font-weight: 900;
}

/* الأزرار */
button,
.btn,
.btn-primary,
.order-btn,
.hero-btn,
a.button {
    background: linear-gradient(135deg, #F8C24A, var(--gold), #E89B18);
    color: var(--green-dark);
    border: none;
    border-radius: 40px;
    padding: 12px 28px;
    font-family: 'IBM Plex Sans Arabic', sans-serif;
    font-size: 17px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(245,179,49,0.35);
    transition: 0.3s ease;
}

button:hover,
.btn:hover,
.btn-primary:hover,
.order-btn:hover,
.hero-btn:hover,
a.button:hover {
    background: linear-gradient(135deg, var(--orange), #C9511E);
    color: #fff;
    transform: translateY(-2px);
}

/* القائمة المتحركة */
.floating-menu {
    position: sticky;
    top: 15px;
    z-index: 9999;
    width: 85%;
    margin: -35px auto 60px;
    background: var(--green);
    border-radius: 50px;
    padding: 14px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    box-shadow: 0 12px 30px rgba(18, 53, 47, 0.28);
}

.floating-menu a {
    color: #fff;
}

.floating-menu a:hover {
    color: var(--gold);
}

/* الفوتر */
footer,
.footer {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: #FFF8E8;
    border-top: 3px solid var(--gold);
    padding: 45px 20px;
    text-align: center;
}

footer a,
.footer a {
    color: var(--gold);
    text-decoration: none;
}

.footer > p {
    display: none;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.footer-brand img {
    width: 130px;
    height: auto;
    display: block;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.footer-links a {
    color: #FFF8E8;
    font-size: 16px;
    font-weight: 900;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer-social[hidden] {
    display: none;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(245, 179, 49, 0.55);
    color: #FFF8E8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--green-dark);
}

.footer-social .inline-icon {
    width: 19px;
    height: 19px;
}

.footer-copy {
    color: #F8E8C8;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
}

/* الجوال */
@media (max-width: 768px) {
    header,
    .header {
        padding: 20px;
        text-align: center;
    }

    .logo,
    header img {
        max-width: 160px;
    }

    nav a,
    header a,
    .navbar a,
    .menu a {
        display: inline-block;
        font-size: 15px;
        margin: 8px;
    }

    .hero h1,
    .hero-section h1,
    #home h1,
    .home h1 {
        font-size: 40px;
    }

    h2,
    .section-title {
        font-size: 32px;
    }

    .card img,
    .product-card img,
    .menu-card img,
    .product img,
    .product-img {
        height: 220px;
    }

    .floating-menu {
        width: 92%;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 18px;
    }

    .floating-menu a {
        white-space: nowrap;
        font-size: 14px;
    }

    .footer-inner {
        gap: 18px;
    }

    .footer-brand img {
        width: 110px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 14px;
    }
}
/* إصلاح ظهور الخلفية والألوان */
body {
    background-color: #FFF4E3 !important;
}

/* يمسك أول جزء في الصفحة حتى لو ما اسمه header */
header,
.header,
nav,
.navbar,
.hero,
.hero-section,
.home,
#home,
main section:first-child,
body > section:first-of-type {
    background:
        radial-gradient(circle at 20% 20%, rgba(245,179,49,0.18), transparent 28%),
        linear-gradient(135deg, #0B241F 0%, #12352F 55%, #1F4A3F 100%) !important;
    color: #FFF8E8 !important;
}

/* يخلي النصوص في الهيرو واضحة */
.hero h1,
.hero-section h1,
.home h1,
#home h1,
main section:first-child h1,
body > section:first-of-type h1 {
    color: #FFF8E8 !important;
}

.hero p,
.hero-section p,
.home p,
#home p,
main section:first-child p,
body > section:first-of-type p {
    color: #F8E8C8 !important;
}

/* أزرار الهيرو */
.hero a,
.hero-section a,
.home a,
#home a,
main section:first-child a,
body > section:first-of-type a {
    color: #0B241F !important;
}

/* روابط القائمة فقط */
nav a,
header a,
.navbar a,
.menu a {
    color: #FFF8E8 !important;
}

nav a:hover,
header a:hover,
.navbar a:hover,
.menu a:hover {
    color: #F5B331 !important;
}

/* الأزرار */
button,
.btn,
.btn-primary,
.order-btn,
.hero-btn,
a.button {
    background: linear-gradient(135deg, #F8C24A, #F5B331, #E89B18) !important;
    color: #0B241F !important;
    border: none !important;
}

button:hover,
.btn:hover,
.btn-primary:hover,
.order-btn:hover,
.hero-btn:hover,
a.button:hover {
    background: linear-gradient(135deg, #E46F2E, #C9511E) !important;
    color: #ffffff !important;
}

/* تثبيت الهيدر أثناء النزول */
.header {
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
}
/* هيرو بصورة فخمة */
.hero {
    min-height: 620px;
    padding: 120px 90px 90px;
    background:
        linear-gradient(
            90deg,
            rgba(11, 36, 31, 0.05) 0%,
            rgba(11, 36, 31, 0.55) 45%,
            rgba(11, 36, 31, 0.98) 100%
        ),
        url("images/hero.jpg");
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}

/* لمعة ذهبية خفيفة تعطي فخامة */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 45%, rgba(245, 179, 49, 0.18), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.06), transparent 22%);
    pointer-events: none;
}

/* نص الهيرو */
.hero-text {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: right;
}

/* العنوان */
.hero h1 {
    color: #FFF8E8;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

/* الوصف */
.hero p {
    color: #F8E8C8;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* تحسين شكل الأزرار فوق الصورة */
.hero .btn {
    background: linear-gradient(135deg, #F8C24A, #F5B331, #E89B18);
    color: #0B241F;
    border-radius: 40px;
    padding: 14px 34px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(245, 179, 49, 0.35);
}

/* للجوال */
@media (max-width: 768px) {
    .hero {
        min-height: 560px;
        padding: 90px 25px 70px;
        background:
            linear-gradient(rgba(11, 36, 31, 0.75), rgba(11, 36, 31, 0.88)),
            url("images/hero.jpg");
        background-size: cover;
        background-position: center;
        justify-content: center;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        font-size: 18px;
    }
}

/* ===============================
   FIX HERO IMAGE + TEXT POSITION
================================ */

#home.hero {
    min-height: 620px !important;
    padding: 120px 90px 90px !important;

    background:
        linear-gradient(
            90deg,
            rgba(11, 36, 31, 0.10) 0%,
            rgba(11, 36, 31, 0.55) 45%,
            rgba(11, 36, 31, 0.96) 100%
        ),
        url("images/hero.jpg") !important;

    background-size: cover !important;
    background-position: left center !important;
    background-repeat: no-repeat !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    position: relative !important;
    overflow: hidden !important;
}

/* النص يرجع يمين */
#home .hero-text {
    position: relative !important;
    z-index: 2 !important;
    max-width: 650px !important;
    text-align: right !important;
}

/* عنوان الهيرو */
#home .hero-text h1 {
    color: #FFF8E8 !important;
    font-size: 72px !important;
    font-weight: 900 !important;
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
}

/* وصف الهيرو */
#home .hero-text p {
    color: #F8E8C8 !important;
    font-size: 22px !important;
    font-weight: 600 !important;
    line-height: 1.8 !important;
    margin-bottom: 30px !important;
}

/* أزرار الهيرو */
#home .hero-buttons {
    display: flex !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
}

/* الجوال */
@media (max-width: 768px) {
    #home.hero {
        min-height: 560px !important;
        padding: 90px 25px 70px !important;

        background:
            linear-gradient(rgba(11, 36, 31, 0.78), rgba(11, 36, 31, 0.88)),
            url("images/hero.jpg") !important;

        background-size: cover !important;
        background-position: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    #home .hero-text {
        text-align: center !important;
    }

    #home .hero-text h1 {
        font-size: 42px !important;
    }

    #home .hero-text p {
        font-size: 18px !important;
    }

    #home .hero-buttons {
        justify-content: center !important;
    }
}

/* ===============================
   PRODUCTS SLIDER
================================ */

.products {
    background-color: var(--cream);
    padding: 70px 40px;
    position: relative;
}

.products h2 {
    text-align: center;
    color: var(--green);
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 40px;
}

.products-slider-wrapper {
    position: relative;
    max-width: 1350px;
    margin: auto;
    padding: 0 70px;
}

.product-slider {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 5px 35px;
    scrollbar-width: none;
}

.product-slider::-webkit-scrollbar {
    display: none;
}

.product-slider .product-card {
    flex: 0 0 300px;
    background-color: var(--white);
    border: 1px solid rgba(245, 179, 49, 0.45);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(18, 53, 47, 0.14);
    transition: 0.3s ease;
}

.product-slider .product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(18, 53, 47, 0.24);
}

.product-slider .product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-slider .product-info {
    padding: 24px 20px;
    text-align: center;
    background-color: var(--white);
}

.product-slider .product-info h3 {
    color: var(--green);
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 12px;
}

.product-slider .product-info p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.product-slider .product-info span {
    color: var(--orange);
    font-size: 22px;
    font-weight: 900;
}

/* أسهم السلايدر */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 2px solid rgba(245, 179, 49, 0.7) !important;
    background: #FFFBF3 !important;
    color: var(--green-dark) !important;
    font-size: 28px;
    font-weight: 900;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(18, 53, 47, 0.18);
    transition: 0.3s ease;
    padding: 0 !important;
}

.slider-arrow:hover {
    background: var(--gold) !important;
    color: var(--green-dark) !important;
    transform: translateY(-50%) scale(1.08);
}

.right-arrow {
    right: 0;
}

.left-arrow {
    left: 0;
}

/* للجوال */
@media (max-width: 768px) {
    .products {
        padding: 55px 15px;
    }

    .products h2 {
        font-size: 34px;
    }

    .products-slider-wrapper {
        padding: 0 45px;
    }

    .product-slider {
        gap: 18px;
    }

    .product-slider .product-card {
        flex: 0 0 250px;
    }

    .product-slider .product-card img {
        height: 190px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}

/* ===============================
   CURRENT OFFERS
================================ */

.offers-section[hidden] {
    display: none;
}

.offers-section {
    background: var(--cream);
    padding: 70px 35px;
}

.offers-section h2 {
    text-align: center;
    color: var(--green);
    font-family: 'Cairo', 'IBM Plex Sans Arabic', sans-serif;
    font-size: 44px;
    font-weight: 900;
    margin: 0 0 40px;
}

.offers-status {
    max-width: 760px;
    margin: 0 auto;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid rgba(245, 179, 49, 0.45);
    border-radius: 18px;
    color: var(--green);
    font-size: 19px;
    font-weight: 900;
    text-align: center;
}

.offers-status[hidden] {
    display: none;
}

.offers-content {
    max-width: 1180px;
    margin: 0 auto;
}

.offers-single {
    max-width: 1040px;
}

.offer-card {
    background: var(--white);
    border: 1px solid rgba(245, 179, 49, 0.38);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(18, 53, 47, 0.14);
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
}

.offer-card-main {
    min-height: 420px;
}

.offer-image-wrap {
    background: var(--white);
    aspect-ratio: 8 / 7;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.offer-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.offer-image-empty::before {
    content: "";
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(245, 179, 49, 0.22);
    border: 2px solid rgba(245, 179, 49, 0.45);
}

.offer-info {
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: right;
}

.offer-info h3 {
    color: var(--green);
    font-size: 34px;
    font-weight: 900;
    line-height: 1.35;
    margin: 0 0 14px;
}

.offer-info p {
    color: var(--muted);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.9;
    margin: 0 0 18px;
}

.offer-promo {
    align-self: flex-start;
    color: var(--green-dark);
    background: rgba(245, 179, 49, 0.22);
    border: 1px solid rgba(245, 179, 49, 0.55);
    border-radius: 32px;
    padding: 8px 15px;
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 14px;
}

.offer-end-date {
    color: var(--orange);
    font-size: 16px;
    font-weight: 900;
    margin: 0 0 22px;
}

.offer-button {
    align-self: flex-start;
}

.offers-slider-wrapper {
    position: relative;
    padding: 0 68px 42px;
}

.offers-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 2px 22px;
}

.offers-slider::-webkit-scrollbar {
    display: none;
}

.offers-slider .offer-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

.offers-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(245, 179, 49, 0.7) !important;
    background: var(--white) !important;
    color: var(--green-dark) !important;
    font-size: 26px;
    font-weight: 900;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
}

.offers-arrow:hover {
    background: var(--gold) !important;
    color: var(--green-dark) !important;
}

.offers-arrow-right {
    right: 0;
}

.offers-arrow-left {
    left: 0;
}

.offers-dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.offers-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    padding: 0 !important;
    box-shadow: none;
    background: rgba(18, 53, 47, 0.25) !important;
}

.offers-dots button.active {
    width: 26px;
    border-radius: 12px;
    background: var(--gold) !important;
}

@media (max-width: 900px) {
    .offer-card {
        grid-template-columns: 1fr;
    }

    .offer-card-main {
        min-height: 0;
    }

    .offer-image-wrap {
        order: 1;
    }

    .offer-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .offers-section {
        padding: 55px 15px;
    }

    .offers-section h2 {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .offers-slider-wrapper {
        padding: 0 46px 40px;
    }

    .offer-info {
        padding: 26px 20px;
    }

    .offer-info h3 {
        font-size: 27px;
    }

    .offer-info p {
        font-size: 16px;
    }

    .offers-arrow {
        width: 42px;
        height: 42px;
        font-size: 21px;
    }
}

/* ===============================
   HOME CONTENT SECTIONS
================================ */

.site-about[hidden],
.intro-video[hidden],
.contact-section[hidden] {
    display: none;
}

.site-about {
    background: var(--cream);
    padding: 70px 30px;
}

.site-about .about-intro {
    max-width: 900px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 19px;
    font-weight: 600;
    line-height: 2;
    text-align: center;
}

.about-cards {
    max-width: 1180px;
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-card {
    background: var(--white);
    border: 1px solid rgba(245, 179, 49, 0.35);
    border-radius: 22px;
    padding: 28px 24px;
    box-shadow: 0 14px 35px rgba(18, 53, 47, 0.13);
    text-align: right;
}

.about-card[hidden] {
    display: none;
}

.about-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(245, 179, 49, 0.20);
    color: var(--green-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.about-card-icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-card h3 {
    color: var(--green);
    font-size: 25px;
    font-weight: 900;
    margin: 0 0 12px;
}

.about-card p {
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.9;
    margin: 0;
}

.intro-video {
    background: var(--white);
    padding: 70px 30px;
}

.video-container {
    max-width: 980px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(245, 179, 49, 0.35);
    box-shadow: 0 16px 38px rgba(18, 53, 47, 0.14);
    background: var(--green-dark);
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact-section {
    background: var(--cream);
    padding: 70px 30px;
}

.contact-layout {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: stretch;
}

.contact-info,
.map-container {
    background: var(--white);
    border: 1px solid rgba(245, 179, 49, 0.35);
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(18, 53, 47, 0.13);
}

.contact-info {
    padding: 30px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-line {
    color: var(--green);
    font-size: 19px;
    font-weight: 800;
    line-height: 1.8;
    margin: 0 0 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.contact-line .inline-icon {
    color: var(--green-dark);
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.contact-line[hidden],
.contact-actions[hidden],
.social-links[hidden],
.map-container[hidden] {
    display: none;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.contact-button .inline-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

.inline-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.social-links a {
    color: var(--orange);
    font-size: 16px;
    font-weight: 900;
    text-decoration: none;
}

.map-container {
    min-height: 360px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
    display: block;
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-about,
    .intro-video,
    .contact-section {
        padding: 55px 15px;
    }

    .site-about .about-intro {
        font-size: 17px;
    }

    .about-cards {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 32px;
    }

    .about-card {
        padding: 24px 20px;
    }

    .contact-info {
        padding: 24px 20px;
    }

    .contact-line {
        font-size: 17px;
    }

    .map-container,
    .map-container iframe {
        min-height: 300px;
    }
}

/* ===============================
   FULL MENU PAGE
================================ */

.menu-page {
    background: var(--cream);
}

.full-menu {
    background: var(--cream);
}

.menu-hero {
    min-height: 310px;
    padding: 95px 30px 70px;
    background:
        radial-gradient(circle at 20% 25%, rgba(245, 179, 49, 0.18), transparent 28%),
        linear-gradient(135deg, var(--green-dark), var(--green), var(--green-soft));
    color: #FFF8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.menu-hero-content {
    max-width: 760px;
}

.menu-hero h1 {
    color: #FFF8E8;
    font-size: 58px;
    margin: 0 0 18px;
}

.menu-hero p {
    color: #F8E8C8;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    margin: 0;
}

.menu-content {
    padding: 55px 30px 80px;
}

.menu-status {
    max-width: 760px;
    margin: 0 auto 28px;
    padding: 18px 22px;
    background: var(--white);
    border: 1px solid rgba(245, 179, 49, 0.45);
    border-radius: 18px;
    color: var(--green);
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    box-shadow: 0 12px 30px rgba(18, 53, 47, 0.10);
}

.menu-status[hidden] {
    display: none;
}

.menu-categories-nav {
    position: sticky;
    top: 120px;
    z-index: 50;
    max-width: 1200px;
    margin: 0 auto 55px;
    padding: 14px 18px;
    background: var(--green);
    border: 1px solid rgba(245, 179, 49, 0.45);
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(18, 53, 47, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.menu-categories-nav:empty {
    display: none;
}

.menu-categories-nav a {
    color: #FFF8E8;
    text-decoration: none;
    font-size: 16px;
    font-weight: 900;
    padding: 10px 18px;
    border-radius: 30px;
    transition: 0.3s ease;
}

.menu-categories-nav a:hover {
    background: var(--gold);
    color: var(--green-dark);
}

.menu-sections {
    max-width: 1220px;
    margin: 0 auto;
}

.menu-category-section {
    padding: 0 0 65px;
    scroll-margin-top: 215px;
}

.menu-category-section h2 {
    margin: 0 0 30px;
    text-align: right;
    color: var(--green);
    font-size: 38px;
}

.menu-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.menu-product-card {
    background: var(--white);
    border: 1px solid rgba(245, 179, 49, 0.35);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(18, 53, 47, 0.13);
    transition: 0.3s ease;
}

.menu-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(18, 53, 47, 0.22);
}

.menu-product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #FFF8E8;
}

.menu-product-info {
    padding: 22px 20px 24px;
    text-align: right;
}

.menu-product-info h3 {
    color: var(--text);
    font-size: 26px;
    font-weight: 900;
    line-height: 1.4;
    margin: 0 0 4px;
}

.menu-product-category {
    display: block;
    color: var(--muted);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 0 12px;
}

.menu-product-info p {
    color: var(--muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    margin: 0 0 14px;
}

.menu-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 16px;
}

.menu-product-meta span {
    background: rgba(245, 179, 49, 0.18);
    color: var(--green-dark);
    border: 1px solid rgba(245, 179, 49, 0.35);
    border-radius: 28px;
    padding: 6px 11px;
    font-size: 13px;
    font-weight: 800;
}

.menu-product-price {
    display: block;
    color: var(--orange);
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 16px;
}

.add-cart-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    justify-content: center;
}

.add-cart-btn:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.menu-cart-notice {
    position: fixed;
    left: 50%;
    bottom: 22px;
    z-index: 40;
    transform: translate(-50%, 16px);
    background: var(--green-dark);
    color: #FFF8E8;
    border: 1px solid rgba(245, 179, 49, 0.55);
    border-radius: 999px;
    padding: 12px 20px;
    box-shadow: 0 16px 35px rgba(11, 36, 31, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    font-size: 15px;
    font-weight: 800;
}

.menu-cart-notice.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 1024px) {
    .menu-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .menu-categories-nav {
        top: 112px;
    }
}

@media (max-width: 768px) {
    .menu-hero {
        min-height: 270px;
        padding: 80px 22px 55px;
    }

    .menu-hero h1 {
        font-size: 38px;
    }

    .menu-hero p {
        font-size: 17px;
    }

    .menu-content {
        padding: 42px 15px 60px;
    }

    .menu-categories-nav {
        top: 104px;
        margin-bottom: 42px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        border-radius: 34px;
    }

    .menu-categories-nav a {
        white-space: nowrap;
        font-size: 14px;
        padding: 9px 14px;
    }

    .menu-category-section {
        scroll-margin-top: 190px;
        padding-bottom: 48px;
    }

    .menu-category-section h2 {
        font-size: 30px;
        margin-bottom: 22px;
    }

    .menu-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .menu-product-card img {
        height: 210px;
    }
}

.cart-main {
    background: var(--cream);
}

.cart-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 62px 22px 78px;
}

.cart-heading {
    text-align: center;
    margin-bottom: 32px;
}

.cart-heading h1 {
    font-size: 46px;
    margin: 0 0 12px;
}

.cart-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    font-weight: 700;
}

.cart-items {
    display: grid;
    gap: 18px;
}

.cart-item {
    background: var(--white);
    border: 1px solid rgba(245, 179, 49, 0.35);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(18, 53, 47, 0.13);
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
}

.cart-item img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #FFF8E8;
}

.cart-item-body {
    padding: 22px;
}

.cart-item-body h2 {
    margin: 0 0 8px;
    text-align: right;
    color: var(--text);
    font-size: 28px;
}

.cart-unit-price,
.cart-summary-note {
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;
}

.cart-quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0;
}

.cart-quantity-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(245, 179, 49, 0.55);
    border-radius: 50%;
    background: var(--cream);
    color: var(--green-dark);
    cursor: pointer;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
}

.cart-quantity-controls span {
    min-width: 34px;
    text-align: center;
    color: var(--green);
    font-size: 20px;
    font-weight: 900;
}

.cart-notes-label {
    display: grid;
    gap: 8px;
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 900;
    margin: 0 0 16px;
}

.cart-notes-label textarea {
    width: 100%;
    min-height: 86px;
    resize: vertical;
    border: 1px solid rgba(245, 179, 49, 0.45);
    border-radius: 14px;
    background: #FFF8E8;
    color: var(--text);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.7;
    padding: 12px;
}

.cart-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cart-item-footer strong {
    color: var(--orange);
    font-size: 22px;
}

.cart-remove-btn {
    border: 0;
    background: transparent;
    color: #9E2F1E;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 900;
    padding: 8px 0;
}

.cart-summary,
.cart-empty {
    margin-top: 24px;
    background: var(--white);
    border: 1px solid rgba(245, 179, 49, 0.35);
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(18, 53, 47, 0.13);
    padding: 24px;
}

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

.cart-empty p {
    margin: 0 0 18px;
    color: var(--green);
    font-size: 22px;
    font-weight: 900;
}

.cart-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(245, 179, 49, 0.28);
    color: var(--green-dark);
    font-size: 18px;
    font-weight: 900;
}

.cart-summary-row strong {
    color: var(--orange);
}

.cart-checkout-btn {
    width: 100%;
    border: 0;
    margin-top: 14px;
    cursor: pointer;
    font-family: inherit;
}

.cart-message {
    margin: 16px 0 0;
    color: var(--green-dark);
    font-size: 16px;
    font-weight: 900;
    text-align: center;
}

.cart-message.error {
    color: #9E2F1E;
}

.cart-message.success {
    color: var(--green);
}

@media (max-width: 768px) {
    .cart-heading h1 {
        font-size: 36px;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item img {
        height: 230px;
        min-height: 0;
    }

    .cart-item-body {
        padding: 18px;
    }

    .cart-item-body h2 {
        font-size: 24px;
    }

    .cart-item-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-summary-row {
        font-size: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .menu-cart-notice,
    .cart-link,
    .add-cart-btn,
    .cart-quantity-controls button {
        transition: none;
    }
}

.checkout-main {
    background: var(--cream);
}

.checkout-section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 62px 22px 78px;
}

.checkout-heading {
    text-align: center;
    margin-bottom: 28px;
}

.checkout-heading h1 {
    font-size: 46px;
    margin: 0 0 12px;
}

.checkout-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    font-weight: 700;
}

.checkout-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.checkout-steps li {
    background: var(--white);
    border: 1px solid rgba(245, 179, 49, 0.35);
    border-radius: 16px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 900;
    padding: 14px;
    text-align: center;
}

.checkout-steps .is-active,
.checkout-steps .is-complete {
    background: var(--green);
    color: #FFF8E8;
}

.checkout-steps .is-pending {
    opacity: 0.75;
}

.checkout-form {
    display: grid;
    gap: 20px;
}

.checkout-card,
.checkout-empty {
    background: var(--white);
    border: 1px solid rgba(245, 179, 49, 0.35);
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(18, 53, 47, 0.13);
    padding: 24px;
}

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

.checkout-empty p {
    margin: 0 0 18px;
    color: var(--green);
    font-size: 22px;
    font-weight: 900;
}

.checkout-card h2 {
    margin: 0 0 18px;
    color: var(--green);
    font-size: 28px;
    text-align: right;
}

.checkout-field {
    display: grid;
    gap: 8px;
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 16px;
}

.checkout-field input,
.otp-panel input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(245, 179, 49, 0.45);
    border-radius: 14px;
    background: #FFF8E8;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    padding: 12px 14px;
}

.checkout-field input[readonly] {
    background: rgba(255, 248, 232, 0.55);
    color: var(--muted);
}

.checkout-fieldset {
    border: 1px solid rgba(245, 179, 49, 0.35);
    border-radius: 16px;
    padding: 16px;
    margin: 0 0 16px;
}

.checkout-fieldset legend {
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 900;
    padding: 0 8px;
}

.checkout-fieldset label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 8px 18px;
    color: var(--text);
    font-weight: 800;
}

.checkout-note,
.checkout-final-card p {
    margin: 0;
    color: var(--muted);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.8;
}

.checkout-status {
    background: rgba(245, 179, 49, 0.18);
    border: 1px solid rgba(245, 179, 49, 0.35);
    border-radius: 14px;
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 16px;
    padding: 12px;
}

.checkout-status.success {
    background: rgba(18, 53, 47, 0.1);
    border-color: rgba(18, 53, 47, 0.25);
    color: var(--green);
}

.checkout-actions,
.otp-panel {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.otp-panel {
    margin-top: 16px;
}

.otp-panel .checkout-field {
    flex: 1 1 220px;
    margin-bottom: 0;
}

.checkout-actions .btn,
.otp-panel .btn,
.checkout-payment-btn {
    border: 0;
    cursor: pointer;
    font-family: inherit;
}

.secondary-btn {
    background: transparent;
    border: 1px solid rgba(18, 53, 47, 0.28) !important;
    color: var(--green-dark);
}

.checkout-payment-btn {
    width: 100%;
    margin-top: 18px;
}

.checkout-message {
    background: rgba(18, 53, 47, 0.1);
    border: 1px solid rgba(18, 53, 47, 0.22);
    border-radius: 16px;
    color: var(--green);
    font-size: 16px;
    font-weight: 900;
    line-height: 1.8;
    margin: 0;
    padding: 14px;
    text-align: center;
}

.checkout-message.error {
    background: rgba(158, 47, 30, 0.08);
    border-color: rgba(158, 47, 30, 0.24);
    color: #9E2F1E;
}

.checkout-message.success {
    color: var(--green);
}

.payment-panel {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.quote-summary {
    display: grid;
    gap: 12px;
}

.quote-items {
    display: grid;
    gap: 10px;
}

.quote-item,
.quote-total,
.bank-details dl div,
.last-order-card dl div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid rgba(245, 179, 49, 0.28);
    padding: 10px 0;
}

.quote-item strong,
.quote-total span,
.bank-details dt,
.last-order-card dt {
    color: var(--green-dark);
    font-weight: 900;
}

.quote-item span,
.bank-details dd,
.last-order-card dd {
    color: var(--muted);
    font-weight: 800;
    margin: 0;
    text-align: left;
}

.quote-total {
    border-bottom: 0;
    color: var(--orange);
    font-size: 20px;
}

.quote-total strong {
    color: var(--orange);
}

.payment-options label,
.policy-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.8;
}

.payment-options label[hidden] {
    display: none !important;
}

.bank-details,
.receipt-panel,
.last-order-card {
    background: #FFF8E8;
    border: 1px solid rgba(245, 179, 49, 0.35);
    border-radius: 18px;
    padding: 18px;
}

.bank-details h3,
.last-order-card h2 {
    color: var(--green);
    font-size: 24px;
    margin: 0 0 12px;
}

.bank-details dl,
.last-order-card dl {
    margin: 0 0 14px;
}

.checkout-field textarea {
    width: 100%;
    min-height: 100px;
    border: 1px solid rgba(245, 179, 49, 0.45);
    border-radius: 14px;
    background: #FFF8E8;
    color: var(--text);
    font-family: inherit;
    font-size: 16px;
    line-height: 1.8;
    padding: 12px 14px;
    resize: vertical;
}

.receipt-preview {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.receipt-preview p,
.pdf-preview {
    color: var(--green-dark);
    font-size: 15px;
    font-weight: 900;
    margin: 0;
}

.receipt-preview img {
    width: 100%;
    max-height: 260px;
    object-fit: contain;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid rgba(245, 179, 49, 0.25);
}

.policy-consent {
    background: rgba(245, 179, 49, 0.12);
    border: 1px solid rgba(245, 179, 49, 0.3);
    border-radius: 16px;
    padding: 14px;
}

.policy-consent a {
    color: var(--green);
    font-weight: 900;
}

.last-order-card {
    max-width: 760px;
    margin: 24px auto 0;
}

.success-order-card > p {
    color: var(--muted);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    margin: 0 0 16px;
}

.success-order-products {
    align-items: flex-start !important;
}

.success-order-products dd {
    flex: 1;
    width: 100%;
    max-width: 540px;
    text-align: right;
}

.success-products-list {
    list-style: none;
    display: grid;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.success-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(245, 179, 49, 0.12);
    border-radius: 12px;
    color: var(--text);
    padding: 10px 12px;
}

.success-product span {
    font-weight: 800;
}

.success-product strong {
    color: var(--orange);
    white-space: nowrap;
}

.success-product-empty {
    color: var(--muted);
    font-weight: 800;
}

.success-order-card .checkout-message {
    margin-top: 16px;
}

.success-order-card .checkout-actions {
    margin-top: 18px;
}

.success-empty {
    max-width: 760px;
    margin: 24px auto 0;
}

.policy-main {
    background: var(--cream);
}

.policy-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 24px;
}

.policy-section h1 {
    font-size: 44px;
    margin: 0 0 24px;
    text-align: right;
}

.policy-section p {
    color: var(--muted);
    font-size: 18px;
    font-weight: 700;
    line-height: 2;
}

@media (max-width: 768px) {
    .checkout-heading h1 {
        font-size: 36px;
    }

    .checkout-steps {
        grid-template-columns: 1fr;
    }

    .checkout-card,
    .checkout-empty {
        padding: 18px;
    }

    .checkout-card h2 {
        font-size: 24px;
    }

    .checkout-actions,
    .otp-panel {
        align-items: stretch;
        flex-direction: column;
    }

    .checkout-actions .btn,
    .otp-panel .btn {
        width: 100%;
    }

    .quote-item,
    .quote-total,
    .bank-details dl div,
    .last-order-card dl div {
        align-items: flex-start;
        flex-direction: column;
    }

    .quote-item span,
    .bank-details dd,
    .last-order-card dd {
        text-align: right;
    }

    .success-product {
        align-items: flex-start;
        flex-direction: column;
    }

    .policy-section h1 {
        font-size: 34px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .checkout-actions .btn,
    .otp-panel .btn,
    .checkout-payment-btn {
        transition: none;
    }
}

