@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Playfair+Display:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    line-height: 1.6;
    color: #2d1b05;
    background: #fdf6e3;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: linear-gradient(135deg, #fff, #f9e8b0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease; /* Add smooth transition for hiding */
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header.hidden {
    transform: translateY(-100%); /* Hide header by moving it up */
}

.logo {
    --logo-frame-h: 92px;
    --logo-img-h: 140px;
    height: var(--logo-frame-h);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.logo img {
    height: var(--logo-img-h);
    width: auto;
    display: block;
    object-fit: cover;
    object-position: 50% 55%;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.1);
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-list li {
    margin: 0 25px;
}

.nav-list a {
    text-decoration: none;
    color: #2d1b05;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 700;
    font-size: 16px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.nav-list a:hover, .nav-list a.active {
    color: #d35400;
    transform: translateY(-2px);
}

.admin-icon i {
    font-size: 24px;
    color: #2d1b05;
    transition: color 0.3s ease;
}

.admin-icon:hover i {
    color: #d35400;
}
.header.no-transition {
    transition: none; /* Disable transition temporarily for touch interactions */
}

.toggle-menu {
    display: none;
    font-size: 30px;
    color: #2d1b05;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1002; /* Higher z-index to ensure it stays above other elements */
    pointer-events: auto; /* Ensure toggle menu is always clickable */
}
.toggle-menu:hover {
    transform: rotate(90deg);
}

.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #2d1b05;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.close-menu:hover {
    transform: rotate(90deg);
}
/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.hero-content {
    position: relative;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: spiceZoom 15s infinite ease-in-out;
}

@keyframes spiceZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 22px;
    margin-bottom: 25px;
}

.order-now-btn {
    background: #d35400;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.order-now-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.spice-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Products Section */
.products {
    padding: 80px 5%;
    background:
        radial-gradient(circle at 14% 18%, rgba(243, 156, 18, 0.12), transparent 34%),
        radial-gradient(circle at 86% 14%, rgba(211, 84, 0, 0.1), transparent 26%),
        linear-gradient(180deg, #fff9e9, #f9e8b0);
}

.products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #d35400;
    margin-bottom: 14px;
}

.products .products-header {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.products .products-header p {
    font-size: 17px;
    color: #4a2c07;
}

.product-carousel {
    overflow: hidden;
    position: relative;
    padding: 10px 0;
    touch-action: none; /* Prevent touch scrolling */
    -webkit-user-select: none; /* Prevent selection */
    user-select: none;
}

.product-carousel::before,
.product-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 2;
    pointer-events: none;
}

.product-carousel::before {
    left: 0;
    background: linear-gradient(to right, #fbf3dd, rgba(251, 243, 221, 0));
}

.product-carousel::after {
    right: 0;
    background: linear-gradient(to left, #fbf3dd, rgba(251, 243, 221, 0));
}

.carousel-inner {
    display: inline-flex;
    animation: slide 42s infinite linear;
    will-change: transform; /* Optimize animation performance */
}

.product-item {
    flex: 0 0 240px;
    margin-right: 20px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #ecd7ab;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(45, 27, 5, 0.1);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    pointer-events: auto;
    display: flex;
    flex-direction: column;
}

.product-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(45, 27, 5, 0.16);
}

.product-image-wrap {
    position: relative;
    padding: 20px 18px 8px;
    background: linear-gradient(180deg, #fffaf0, #fff);
}

.product-item img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 8px 10px rgba(45, 27, 5, 0.16));
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    border-radius: 999px;
    padding: 4px 10px;
    background: rgba(45, 27, 5, 0.82);
    color: #fff;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-weight: 700;
}

.product-info {
    padding: 10px 16px 16px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.product-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    margin: 0;
    color: #2d1b05;
}

.product-item p {
    font-size: 14px;
    color: #4a2c07;
    line-height: 1.55;
}

.product-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: auto;
}

.product-tags span {
    font-size: 11px;
    color: #8f2d0b;
    background: #fdf1d6;
    border: 1px solid #efdbb3;
    border-radius: 999px;
    padding: 3px 9px;
    font-weight: 600;
}

.products-benefits {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.products-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    padding: 8px 12px;
    background: #fff3d8;
    border: 1px solid #efd6a4;
    color: #8f2d0b;
    font-size: 14px;
    font-weight: 600;
}

.products-benefits i {
    color: #d35400;
}

.view-all-btn {
    display: table;
    margin-top: 26px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 14px 30px;
    background: #d35400;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.view-all-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(45, 27, 5, 0.18);
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Recipes Section */
.recipes {
    padding: 80px 5%;
    background:
        radial-gradient(circle at 85% 16%, rgba(211, 84, 0, 0.12), transparent 30%),
        linear-gradient(180deg, #f9e8b0, #fff);
}

.recipes-header {
    max-width: 760px;
    margin: 0 auto 36px;
    text-align: center;
}

.recipes h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #d35400;
    margin-bottom: 14px;
}

.recipes-header p {
    font-size: 17px;
    color: #4a2c07;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 40px;
}

.recipe-card {
    background: #fff;
    border: 1px solid #ecd7ab;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(45, 27, 5, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(45, 27, 5, 0.16);
}

.recipe-image-wrap {
    position: relative;
}

.recipe-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.recipe-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(45, 27, 5, 0.82);
    color: #fff;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-weight: 700;
}

.recipe-content {
    padding: 18px 18px 20px;
}

.recipe-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 8px;
    color: #2d1b05;
}

.recipe-card p {
    font-size: 15px;
    color: #4a2c07;
    line-height: 1.6;
    margin-bottom: 12px;
}

.recipe-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.recipe-meta span {
    font-size: 13px;
    color: #8f2d0b;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-more-btn {
    padding: 14px 30px;
    margin-bottom: 20px;
    display: table;
    margin-left: auto;
        margin-right: auto;
        text-align: center;
    background: #d35400;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.view-more-btn:hover {
    background: #e67e22;
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 80px 5%;
    background:
        radial-gradient(circle at 14% 15%, rgba(243, 156, 18, 0.1), transparent 32%),
        #fff;
}

.about-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr;
    gap: 24px;
    align-items: stretch;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #d35400;
    margin-bottom: 16px;
}

.about-main > p {
    font-size: 17px;
    color: #4a2c07;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 22px 0 28px;
}

.about-highlight {
    background: #fff7e5;
    border: 1px solid #edd6a2;
    border-radius: 12px;
    padding: 14px;
}

.about-highlight h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #2d1b05;
    margin-bottom: 6px;
}

.about-highlight p {
    font-size: 14px;
    color: #4a2c07;
    line-height: 1.5;
}

.about-card {
    background: linear-gradient(135deg, #2d1b05, #5a2e0f);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 10px 24px rgba(45, 27, 5, 0.2);
    display: flex;
    flex-direction: column;
}

.about-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff3d6;
    margin-bottom: 16px;
}

.about-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.about-card li {
    color: #fff;
    font-size: 14px;
    display: flex;
    gap: 8px;
    line-height: 1.5;
}

.about-card i {
    color: #f7b267;
    margin-top: 3px;
}

.about-card-link {
    margin-top: auto;
    align-self: flex-start;
    text-decoration: none;
    border-radius: 999px;
    padding: 10px 18px;
    background: #f7b267;
    color: #2d1b05;
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease;
}

.about-card-link:hover {
    background: #ffd097;
    transform: translateY(-2px);
}

/* Founders Section */
.founders {
    padding: 80px 5%;
    background:
        radial-gradient(circle at 15% 20%, rgba(243, 156, 18, 0.12), transparent 38%),
        radial-gradient(circle at 85% 18%, rgba(211, 84, 0, 0.1), transparent 30%),
        linear-gradient(180deg, #fffdf8, #f7e8bf);
}

.founders h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #d35400;
    margin-bottom: 14px;
}

.founders-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.founders-header p {
    font-size: 17px;
    color: #4a2c07;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.founder-card {
    background: #fff;
    border: 1px solid #ecd7ab;
    border-radius: 18px;
    padding: 26px 22px 24px;
    box-shadow: 0 10px 26px rgba(45, 27, 5, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d35400, #f39c12);
}

.founder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(45, 27, 5, 0.16);
    border-color: #dfbe7f;
}

.founder-photo-wrap {
    position: relative;
    width: max-content;
    margin: 4px auto 18px;
}

.founder-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #d35400;
    box-shadow: 0 8px 16px rgba(45, 27, 5, 0.15);
}

.founder-role {
    position: absolute;
    left: 50%;
    
    bottom: -22px;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #f0dba7;
    border-radius: 999px;
    padding: 4px 12px;
    white-space: nowrap;
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-weight: 700;
    color: #8f2d0b;
}

.founder-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    margin: 6px 0 10px;
    color: #2d1b05;
    text-align: center;
}

.founder-tagline {
    font-size: 16px;
    font-weight: 700;
    color: #8f2d0b;
    margin-bottom: 12px;
    text-align: center;
}

.founder-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #4a2c07;
    text-align: center;
}

/* FAQ Section */
.faq-home {
    padding: 80px 5%;
    background: linear-gradient(180deg, #fff, #f8edd0);
}

.faq-home-header {
    max-width: 760px;
    margin: 0 auto 35px;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #8f2d0b;
    background: #fde8cf;
}

.faq-home h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #d35400;
    margin-bottom: 14px;
}

.faq-home-header p {
    font-size: 17px;
    color: #4a2c07;
}

.faq-home-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border: 1px solid #ecd9ac;
    border-radius: 14px;
    padding: 0 18px;
    box-shadow: 0 4px 14px rgba(45, 27, 5, 0.07);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 30px 18px 0;
    color: #2d1b05;
    font-size: 18px;
    font-weight: 600;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #d35400;
    font-size: 22px;
    font-weight: 500;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 0 18px;
    color: #4a2c07;
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: 80px 5%;
    background: #fff;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.contact-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #d35400;
    margin-bottom: 18px;
}

.contact-intro > p {
    font-size: 17px;
    color: #4a2c07;
    max-width: 640px;
    margin-bottom: 24px;
}

.contact-channels {
    display: grid;
    gap: 14px;
}

.contact-channel {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid #f1ddb1;
    background: linear-gradient(135deg, #fff, #f9e8b0);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.contact-channel:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(45, 27, 5, 0.12);
}

.contact-channel i {
    color: #d35400;
    font-size: 20px;
    margin-top: 3px;
}

.contact-channel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 4px;
    color: #2d1b05;
}

.contact-channel p {
    color: #4a2c07;
    font-size: 15px;
    line-height: 1.5;
}

.contact-card {
    border-radius: 16px;
    padding: 30px;
    background: linear-gradient(135deg, #2d1b05, #5a2e0f);
    box-shadow: 0 10px 24px rgba(45, 27, 5, 0.2);
    display: flex;
    flex-direction: column;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff3d6;
    margin-bottom: 12px;
}

.contact-card > p {
    font-size: 15px;
    color: #f7e2bd;
    margin-bottom: 20px;
}

.contact-points {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
}

.contact-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #fff;
    font-size: 14px;
}

.contact-points i {
    color: #f7b267;
    margin-top: 3px;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.contact-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #d35400;
    background: #d35400;
    color: #fff;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    background: #e67e22;
    border-color: #e67e22;
}

.contact-btn-outline {
    background: transparent;
    border-color: #f7b267;
    color: #f7e2bd;
}

.contact-btn-outline:hover {
    background: #f7b267;
    border-color: #f7b267;
    color: #2d1b05;
}

/* Contact Page */
.contact-page {
    padding: 48px 5% 90px;
    background:
        radial-gradient(circle at 12% 10%, rgba(243, 156, 18, 0.14), transparent 28%),
        radial-gradient(circle at 92% 14%, rgba(211, 84, 0, 0.1), transparent 24%),
        linear-gradient(180deg, #fff9ed 0%, #fff 60%, #fff9ed 100%);
}

.contact-page-hero,
.contact-page-main,
.contact-page-map {
    max-width: 1120px;
    margin: 0 auto;
}

.contact-page-hero {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 24px;
    margin-bottom: 28px;
}

.contact-page-hero-content,
.contact-page-hero-aside,
.contact-page-form-wrap,
.contact-page-map,
.contact-page-channel {
    border-radius: 18px;
    border: 1px solid #ecd9ac;
    box-shadow: 0 8px 24px rgba(45, 27, 5, 0.08);
}

.contact-page-hero-content {
    padding: 40px;
    background: linear-gradient(140deg, #fff, #f9e8b0 92%);
}

.contact-page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #8f2d0b;
    line-height: 1.16;
    margin: 14px 0 14px;
}

.contact-page-hero-content > p {
    font-size: 17px;
    color: #4a2c07;
    max-width: 700px;
    margin-bottom: 24px;
}

.contact-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 24px;
    border-radius: 999px;
    border: 2px solid #d35400;
    background: #d35400;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.contact-page-btn:hover {
    transform: translateY(-2px);
    background: #e67e22;
    border-color: #e67e22;
}

.contact-page-btn-outline {
    background: transparent;
    color: #8f2d0b;
    border-color: #c96b28;
}

.contact-page-btn-outline:hover {
    color: #fff;
}

.contact-page-trust-list {
    list-style: none;
    display: grid;
    gap: 9px;
}

.contact-page-trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #4a2c07;
    font-size: 15px;
}

.contact-page-trust-list i {
    color: #d35400;
    margin-top: 2px;
}

.contact-page-hero-aside {
    background: linear-gradient(150deg, #2d1b05, #5a2e0f);
    color: #fff;
    padding: 32px 28px;
}

.contact-page-hero-aside h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #fff3d6;
    margin-bottom: 18px;
}

.contact-page-hero-aside ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-page-hero-aside li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 243, 214, 0.28);
    font-size: 14px;
}

.contact-page-hero-aside li span {
    color: #f7e2bd;
}

.contact-page-hero-aside li strong {
    color: #fff;
    font-weight: 600;
}

.contact-page-hero-aside p {
    color: #f7e2bd;
    font-size: 14px;
}

.contact-page-main {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.contact-page-details {
    display: grid;
    gap: 14px;
}

.contact-page-channel {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 22px 20px;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.contact-page-channel:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(45, 27, 5, 0.13);
}

.contact-page-channel i {
    color: #d35400;
    font-size: 20px;
    margin-top: 4px;
}

.contact-page-channel h2 {
    font-family: 'Playfair Display', serif;
    color: #2d1b05;
    font-size: 24px;
    margin-bottom: 4px;
}

.contact-page-channel p {
    color: #4a2c07;
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 3px;
}

.contact-page-channel small {
    color: #7a5c2e;
    font-size: 13px;
}

.contact-page-form-wrap {
    background: #fff;
    padding: 32px;
}

.contact-page-form-wrap h2 {
    font-family: 'Playfair Display', serif;
    color: #8f2d0b;
    font-size: 36px;
    margin-bottom: 8px;
}

.contact-page-form-wrap > p {
    color: #4a2c07;
    font-size: 15px;
    margin-bottom: 20px;
}

.contact-page-form .form-group {
    margin-bottom: 16px;
}

.contact-page-form label {
    display: inline-block;
    color: #2d1b05;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-grid-two > div {
    min-width: 0;
}

.contact-page-form input,
.contact-page-form select,
.contact-page-form textarea {
    width: 100%;
    border: 1px solid #d8be87;
    border-radius: 10px;
    padding: 13px;
    font-size: 15px;
    color: #2d1b05;
    background: #fffef9;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-page-form input:focus,
.contact-page-form select:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: #d35400;
    box-shadow: 0 0 0 3px rgba(211, 84, 0, 0.15);
}

.contact-page-form select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23b75117" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 44px;
}

.contact-page-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-page-submit {
    min-width: 170px;
    min-height: 46px;
    border: 0;
    border-radius: 999px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #d35400, #e67e22);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-page-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(45, 27, 5, 0.18);
}

.contact-page-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.contact-page-form-note {
    margin-top: 12px;
    font-size: 12px;
    color: #7a5c2e;
}

.contact-status-popup {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-status-popup.is-open {
    display: flex;
}

.contact-status-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 12, 2, 0.6);
    backdrop-filter: blur(2px);
}

.contact-status-popup__card {
    position: relative;
    z-index: 1;
    width: min(460px, 100%);
    border-radius: 16px;
    border: 1px solid #ecd9ac;
    background: linear-gradient(165deg, #fff, #fff6e5);
    box-shadow: 0 24px 60px rgba(18, 12, 4, 0.32);
    padding: 28px 24px 22px;
    text-align: center;
    animation: contactPopupIn 0.22s ease;
}

.contact-status-popup__icon {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    background: rgba(46, 174, 71, 0.15);
    color: #1f8a36;
    font-size: 28px;
}

.contact-status-popup.is-error .contact-status-popup__icon {
    background: rgba(220, 53, 69, 0.14);
    color: #b61f34;
}

.contact-status-popup__card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #2d1b05;
    margin-bottom: 8px;
}

.contact-status-popup__card p {
    color: #4a2c07;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.contact-status-popup__btn {
    border: 0;
    border-radius: 999px;
    min-height: 44px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #d35400, #e67e22);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-status-popup__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(45, 27, 5, 0.2);
}

@keyframes contactPopupIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.contact-page-map {
    padding: 30px;
    background: #fff;
}

.contact-page-map-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #8f2d0b;
    margin: 10px 0 18px;
}

.contact-page-map-frame {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e7d09f;
}

.contact-page-map-frame iframe {
    width: 100%;
    min-height: 380px;
    border: 0;
    display: block;
}

@media (max-width: 1024px) {
    .contact-page-hero,
    .contact-page-main {
        grid-template-columns: 1fr;
    }

    .contact-page-hero-content {
        padding: 34px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 34px 5% 64px;
    }

    .contact-page-hero-content,
    .contact-page-form-wrap,
    .contact-page-map {
        padding: 24px;
    }

    .contact-page-hero-content h1 {
        font-size: 38px;
    }

    .contact-page-form-wrap h2,
    .contact-page-map-header h2 {
        font-size: 30px;
    }

    .form-grid-two {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-page-hero-actions {
        flex-direction: column;
    }

    .contact-page-btn,
    .contact-page-submit {
        width: 100%;
        text-align: center;
    }

    .contact-page-map-frame iframe {
        min-height: 310px;
    }
}

@media (max-width: 480px) {
    .contact-page {
        padding-top: 26px;
    }

    .contact-page-hero-content h1 {
        font-size: 32px;
    }

    .contact-page-hero-content > p,
    .contact-page-channel p,
    .contact-page-form-wrap > p {
        font-size: 14px;
    }

    .contact-page-channel h2 {
        font-size: 21px;
    }

    .contact-page-form input,
    .contact-page-form select,
    .contact-page-form textarea {
        font-size: 14px;
    }

    .contact-status-popup__card {
        padding: 22px 16px 18px;
    }

    .contact-status-popup__card h2 {
        font-size: 28px;
    }

    .contact-status-popup__card p {
        font-size: 15px;
    }
}



/* Home Page Footer Upgrade */
.home-footer {
    text-align: left;
    color: #fbe9c4;
    padding: 54px 5% 30px;
    background:
        radial-gradient(circle at 14% 18%, rgba(243, 156, 18, 0.18), transparent 34%),
        radial-gradient(circle at 88% 10%, rgba(211, 84, 0, 0.2), transparent 32%),
        linear-gradient(135deg, #1f1204, #3b2208 48%, #5a2f0f);
}

.home-footer-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.home-footer-top {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.95fr 1.15fr;
    gap: 22px;
    align-items: stretch;
}

.home-footer-brand,
.home-footer-group,
.home-footer-contact {
    border-radius: 16px;
    border: 1px solid rgba(247, 203, 130, 0.26);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
    padding: 20px 18px;
}

.home-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.home-footer-logo img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #f2b766;
    background: #fff;
}

.home-footer-logo h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #fff4da;
    line-height: 1.1;
}

.home-footer-logo p {
    margin: 3px 0 0;
    color: #f6c987;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.home-footer-about {
    margin: 14px 0 14px;
    color: #f6dfb8;
    font-size: 15px;
    line-height: 1.7;
}

.home-footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.home-footer-badges span {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    border: 1px solid rgba(247, 183, 103, 0.6);
    background: rgba(247, 183, 103, 0.14);
    color: #ffe8c2;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 11px;
}

.home-footer-group h4,
.home-footer-contact h4 {
    margin: 0 0 14px;
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    color: #fff2d3;
}

.home-footer-group ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.home-footer-group a {
    text-decoration: none;
    color: #f7dfb7;
    font-size: 15px;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.home-footer-group a:hover {
    color: #f7b267;
    transform: translateX(3px);
}

.home-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-footer-contact a,
.home-footer-contact p {
    margin: 0;
    text-decoration: none;
    color: #f7dfb7;
    font-size: 14px;
    line-height: 1.6;
    display: inline-flex;
    gap: 9px;
    align-items: flex-start;
}

.home-footer-contact i {
    color: #f7b267;
    margin-top: 3px;
}

.home-footer-cta {
    margin-top: 6px;
    align-self: flex-start;
    border-radius: 999px;
    padding: 10px 16px;
    background: #f7b267;
    color: #2d1b05 !important;
    border: 2px solid #f7b267;
    font-weight: 700;
    transition: all 0.25s ease;
}

.home-footer-cta:hover {
    background: #ffd39b;
    border-color: #ffd39b;
    transform: translateY(-1px);
}

.home-footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 24px 0 18px;
}

.home-footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff2d8;
    text-decoration: none;
    border: 1px solid rgba(247, 183, 103, 0.35);
    background: rgba(247, 183, 103, 0.1);
    font-size: 19px;
    transition: all 0.25s ease;
}

.home-footer-social a:hover {
    color: #2d1b05;
    background: #f7b267;
    border-color: #f7b267;
    transform: translateY(-2px);
}

.home-footer-bottom {
    border-top: 1px solid rgba(247, 183, 103, 0.3);
    padding-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: #f5dcb4;
    font-size: 13px;
}

.home-footer-bottom p {
    margin: 0;
}

@media (max-width: 1100px) {
    .home-footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .home-footer {
        padding: 42px 5% 24px;
    }

    .home-footer-top {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-footer-brand,
    .home-footer-group,
    .home-footer-contact {
        padding: 18px 15px;
    }

    .home-footer-logo {
        width: 100%;
        justify-content: center;
    }

    .home-footer-about {
        text-align: center;
    }

    .home-footer-badges {
        justify-content: center;
    }

    .home-footer-group h4,
    .home-footer-contact h4 {
        text-align: center;
        font-size: 21px;
    }

    .home-footer-group ul {
        justify-items: center;
    }

    .home-footer-group a:hover {
        transform: none;
    }

    .home-footer-contact a,
    .home-footer-contact p {
        justify-content: center;
        text-align: center;
    }

    .home-footer-cta {
        align-self: center;
    }

    .home-footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 5%;
    }

    .logo {
        --logo-frame-h: 88px;
        --logo-img-h: 130px;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #fff, #f9e8b0);
        padding: 80px 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-list.active {
        display: flex;
        left: 0;
    }

    .nav-list li {
        margin: 20px 0;
    }

    .nav-list a {
        font-size: 20px;
        font-weight: 600;
    }

    .toggle-menu {
        display: block;
        z-index: 1000;
    }

    .hero {
        height: 60vh;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .order-now-btn {
        padding: 16px 35px;
        font-size: 16px;
    }

    .product-carousel {
        touch-action: pan-y; /* Allow vertical scrolling only */
        -webkit-user-select: none;
        user-select: none;
    }

    .products {
        padding: 60px 5%;
    }

    .products .products-header p {
        font-size: 16px;
    }

    .product-carousel::before,
    .product-carousel::after {
        width: 36px;
    }

    .product-item {
        flex: 0 0 208px;
        margin-right: 14px;
        pointer-events: none;
    }

    .carousel-inner {
        animation: slide 50s infinite linear;
    }

    .product-image-wrap {
        padding: 16px 12px 6px;
    }

    .product-item img {
        height: 138px;
    }

    .product-info {
        padding: 8px 12px 13px;
    }

    .product-item h3 {
        font-size: 18px;
    }

    .product-item p {
        font-size: 13px;
    }

    .product-tags span {
        font-size: 10px;
        padding: 3px 7px;
    }

    .products-benefits {
        margin-top: 18px;
        gap: 8px;
    }

    .products-benefits span {
        font-size: 12px;
        padding: 6px 10px;
    }

    .products h2, .recipes h2, .about h2, .founders h2, .faq-home h2, .contact-intro h2 {
        font-size: 28px;
    }

    .recipes {
        padding: 60px 5%;
    }

    .recipes-header p {
        font-size: 16px;
    }

    .recipe-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .recipe-card img {
        height: 210px;
    }

    .recipe-content {
        padding: 16px;
    }

    .recipe-card h3 {
        font-size: 21px;
    }

    .recipe-card p {
        font-size: 14px;
    }

    .about {
        padding: 60px 5%;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-main > p {
        font-size: 16px;
    }

    .about-highlights {
        grid-template-columns: 1fr;
        margin: 18px 0 24px;
    }

    .about-highlight {
        padding: 12px;
    }

    .about-card {
        padding: 22px 18px;
    }

    .about-card h3 {
        font-size: 24px;
    }

    .about-card-link {
        width: 100%;
        text-align: center;
    }

    .faq-home {
        padding: 60px 5%;
    }

    .faq-home-header p,
    .contact-intro > p {
        font-size: 16px;
    }

    .faq-item summary {
        font-size: 16px;
        padding: 16px 28px 16px 0;
    }

    .faq-item p {
        font-size: 15px;
    }

    .contact {
        padding: 60px 5%;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-channel {
        padding: 16px;
    }

    .contact-channel h3 {
        font-size: 18px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-actions {
        flex-direction: column;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }

    .founders {
        padding: 60px 5%;
    }

    .founders-header {
        margin-bottom: 26px;
    }

    .founders-header p {
        font-size: 16px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .founder-card {
        padding: 22px 18px 20px;
    }

    .founder-card h3 {
        font-size: 22px;
    }

    .founder-tagline {
        font-size: 15px;
    }

    .founder-bio {
        font-size: 14px;
        line-height: 1.6;
    }

    .founder-card img {
        width: 132px;
        height: 132px;
    }

    .footer-nav ul {
        flex-direction: column;
        align-items: center;
        margin-bottom: 15px;
    }

    .footer-nav li {
        margin: 10px 0;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .social-icons a {
        margin: 0 10px;
        font-size: 24px;
    }

    .footer-links a {
        margin: 0 8px;
        font-size: 12px;
    }

    .footer p {
        font-size: 12px;
    }
}
.nav-list.active {
    left: 0;
    z-index: 1001; /* Ensure menu stays above hidden header */
}

.toggle-menu, .close-menu {
    pointer-events: auto; /* Ensure toggle/close menu are clickable */
}
.header.menu-active {
    transform: translateY(0) !important; /* Force header to stay visible when menu is active */
}


/* ============================================
   ORDER HISTORY STYLES - EXPANDABLE ORDERS
   ============================================ */

.order-history-controls {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 2px solid #d35400;
}

.control-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.clear-history-btn,
.delete-selected-btn {
    background: #dc2626;
    color: white;
    padding: 11px 22px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
    min-height: 40px;
}

.clear-history-btn:hover,
.delete-selected-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
}

.clear-history-btn:active,
.delete-selected-btn:active {
    transform: translateY(0);
}

/* Order Checkbox */
.order-checkbox {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.order-select-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #d35400;
}

.order-select-checkbox:hover {
    transform: scale(1.1);
}

/* Delete Order Button */
.delete-order-btn {
    background: #ff6b6b;
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
    flex-shrink: 0;
}

.delete-order-btn:hover {
    background: #ff5252;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

.delete-order-btn:active {
    transform: scale(0.95);
}

/* Expandable Order Card */
.order-card {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.order-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 14px 16px;
    background: linear-gradient(135deg, #f9e8b0, #fff);
    user-select: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    gap: 12px;
}

.order-header:hover {
    background: linear-gradient(135deg, #f0d88a, #fff);
    border-bottom-color: #d35400;
}

.order-checkbox {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.order-select-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #d35400;
}

.order-info {
    flex: 1;
    min-width: 0;
    cursor: pointer;
}

.order-info h3 {
    margin: 0;
    color: #2d1b05;
    font-size: 15px;
    font-weight: 600;
    word-break: break-word;
}

.order-date {
    margin: 2px 0 0 0;
    color: #999;
    font-size: 12px;
}

.order-total {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.total-label {
    display: none;
}

.total-amount {
    font-size: 16px;
    font-weight: 700;
    color: #d35400;
    white-space: nowrap;
}

.expand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(211, 84, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.expand-icon i {
    color: #d35400;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.order-header:hover .expand-icon {
    background: rgba(211, 84, 0, 0.2);
    transform: scale(1.05);
}

/* Order Details Container (Hidden by Default) */
.order-details-container {
    padding: 20px;
    border-top: 1px solid #eee;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
        overflow: hidden;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

/* Order Items */
.order-items {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.order-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    background: #f5f5f5;
}

.order-item-details {
    flex: 1;
}

.order-item-details h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #2d1b05;
    font-weight: 600;
}

.order-item-details p {
    margin: 0;
    font-size: 12px;
    color: #999;
}

.order-item-price {
    font-weight: 600;
    color: #d35400;
    font-size: 14px;
    white-space: nowrap;
}

/* Order Delivery Info */
.order-delivery {
    background: #f9e8b0;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.order-delivery p {
    margin: 0;
    color: #2d1b05;
    font-size: 13px;
    line-height: 1.5;
}

/* Order Actions */
.order-actions {
    display: flex;
    gap: 10px;
    padding-top: 15px;
}

.reorder-btn {
    flex: 1;
    padding: 12px;
    background: #d35400;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.reorder-btn:hover {
    background: #c44a00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.reorder-btn:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .order-header {
        padding: 12px;
        gap: 8px;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .order-checkbox {
        margin-right: 0;
        align-self: center;
        margin-top: 1px;
    }

    .order-select-checkbox {
        width: 18px;
        height: 18px;
    }

    .order-info {
        flex: 1 1 auto;
        cursor: pointer;
        min-width: 0;
        order: 1;
    }

    .order-info h3 {
        font-size: 13px;
        margin: 0;
        font-weight: 700;
        word-break: break-word;
        color: #2d1b05;
    }

    .order-date {
        font-size: 11px;
        margin-top: 2px;
        color: #666;
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .order-total {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        flex-shrink: 0;
        order: 2;
        align-self: flex-start;
        padding: 6px 10px;
        background: rgba(211, 84, 0, 0.05);
        border-radius: 6px;
    }

    .total-label {
        display: block;
        font-size: 10px;
        color: #666;
    }

    .total-amount {
        font-size: 14px;
        font-weight: 700;
        color: #d35400;
        white-space: nowrap;
    }

    .expand-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        order: 3;
        align-self: center;
    }

    .expand-icon i {
        font-size: 14px;
    }

    .delete-order-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
        order: 4;
        align-self: center;
    }

    .order-item {
        gap: 10px;
        padding: 10px;
    }

    .order-item img {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .order-item-details h4 {
        font-size: 12px;
        font-weight: 600;
    }

    .order-item-details p {
        font-size: 11px;
        color: #666;
    }

    .order-item-price {
        font-size: 12px;
        font-weight: 700;
        color: #d35400;
        white-space: nowrap;
        align-self: center;
    }

    .clear-history-btn,
    .delete-selected-btn {
        padding: 8px 12px;
        font-size: 12px;
        min-height: 40px;
    }

    .control-buttons {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }

    .clear-history-btn,
    .delete-selected-btn {
        width: 100%;
    }

    .order-delivery {
        padding: 10px;
        margin-bottom: 10px;
        background: #f9e8b0;
        border-radius: 6px;
    }

    .order-delivery p {
        font-size: 11px;
        line-height: 1.3;
    }

    .order-details-container {
        padding: 12px;
        border-top: 1px solid #eee;
    }

    .order-actions {
        display: flex;
        gap: 6px;
        padding-top: 10px;
        flex-direction: column;
    }

    .reorder-btn {
        padding: 10px 14px;
        font-size: 13px;
        font-weight: 600;
        width: 100%;
        min-height: 40px;
    }

    .reorder-btn:active {
        transform: scale(0.98);
    }

    .order-history-section {
        padding: 15px 5%;
    }

    .order-card {
        margin-bottom: 10px;
        border-radius: 8px;
        padding: 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .order-history-header h2 {
        font-size: 20px;
    }

    .order-history-header {
        margin-bottom: 16px;
    }

    .close-history {
        font-size: 24px;
    }

    .order-items {
        margin-bottom: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #eee;
    }
}

/* Update the existing .header and .header.hidden styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: linear-gradient(135deg, #fff, #f9e8b0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease; /* Smooth transition for hiding */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header.hidden {
    transform: translateY(-100%); /* Hide header by moving it up */
}

/* Ensure close-menu is visible when menu is active */
.close-menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #2d1b05;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1001;
}

.close-menu.active {
    display: block; /* Show close button when menu is active */
}

/* Update mobile responsive nav-list styles */
@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: linear-gradient(135deg, #fff, #f9e8b0);
        padding: 80px 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease; /* Smooth slide-in for menu */
        z-index: 999;
    }

    .nav-list.active {
        display: flex;
        left: 0;
    }

    .view-more-btn,
    .view-all-btn {
        display: table;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-page {
    background:
        radial-gradient(circle at 16% 10%, rgba(243, 156, 18, 0.12), transparent 36%),
        radial-gradient(circle at 86% 8%, rgba(211, 84, 0, 0.1), transparent 28%),
        linear-gradient(180deg, #fffdf7, #f9ebc2);
}

.about-hero {
    max-width: 1150px;
    margin: 0 auto;
    padding: 72px 5% 56px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    line-height: 1.15;
    color: #2d1b05;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 17px;
    color: #4a2c07;
    line-height: 1.75;
}

.about-hero-actions {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-hero-actions .view-all-btn,
.about-hero-actions .view-more-btn {
    margin-top: 0;
}

.about-hero-actions .view-more-btn {
    background: transparent;
    border: 2px solid #d35400;
    color: #d35400;
}

.about-hero-actions .view-more-btn:hover {
    background: #d35400;
    color: #fff;
}

.about-metrics {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.about-metrics article {
    background: #fff8e7;
    border: 1px solid #ecd8aa;
    border-radius: 14px;
    padding: 14px 12px;
    text-align: center;
}

.about-metrics h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #8f2d0b;
    margin-bottom: 2px;
}

.about-metrics p {
    font-size: 13px;
    font-weight: 600;
    color: #4a2c07;
}

.about-hero-media {
    position: relative;
}

.about-hero-media img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 14px 28px rgba(45, 27, 5, 0.2);
}

.about-hero-note {
    position: absolute;
    right: 16px;
    bottom: 16px;
    max-width: 270px;
    padding: 14px 14px 12px;
    border-radius: 14px;
    background: rgba(45, 27, 5, 0.92);
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.about-hero-note i {
    margin-top: 3px;
    color: #f7b267;
}

.about-hero-note p {
    color: #fff;
    font-size: 13px;
    line-height: 1.45;
}

.about-story-panel {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 5% 34px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.about-story-main {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #ecd8aa;
    padding: 30px 28px;
    box-shadow: 0 10px 24px rgba(45, 27, 5, 0.1);
}

.about-story-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #d35400;
    margin-bottom: 14px;
}

.about-story-main p {
    font-size: 16px;
    color: #4a2c07;
    line-height: 1.75;
    margin-bottom: 10px;
}

.about-story-side {
    background: linear-gradient(135deg, #2d1b05, #5a2e0f);
    border-radius: 18px;
    padding: 30px 24px;
    box-shadow: 0 10px 24px rgba(45, 27, 5, 0.2);
}

.about-story-side h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #fff3d6;
    margin-bottom: 14px;
}

.about-story-side ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.about-story-side li {
    color: #fff;
    font-size: 15px;
    display: flex;
    gap: 8px;
}

.about-story-side i {
    color: #f7b267;
    margin-top: 3px;
}

.about-pillars {
    max-width: 1150px;
    margin: 0 auto;
    padding: 8px 5% 76px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-pillar-card {
    background: #fff;
    border: 1px solid #ecd8aa;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 10px 22px rgba(45, 27, 5, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(45, 27, 5, 0.16);
}

.about-pillar-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fde8cf;
    color: #d35400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 12px;
}

.about-pillar-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #2d1b05;
    margin-bottom: 8px;
}

.about-pillar-card p {
    font-size: 15px;
    color: #4a2c07;
    line-height: 1.65;
}

@media (max-width: 992px) {
    .about-hero,
    .about-story-panel {
        grid-template-columns: 1fr;
    }

    .about-pillars {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 44px;
    }

    .about-story-main h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 58px 5% 42px;
        gap: 18px;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero p {
        font-size: 15px;
    }

    .about-hero-actions {
        flex-direction: column;
    }

    .about-hero-actions .view-all-btn,
    .about-hero-actions .view-more-btn {
        display: block;
        width: 100%;
        text-align: center;
    }

    .about-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .about-hero-note {
        position: static;
        margin-top: 10px;
        max-width: none;
    }

    .about-story-panel {
        gap: 16px;
        padding-bottom: 22px;
    }

    .about-story-main,
    .about-story-side {
        padding: 22px 18px;
    }

    .about-story-main h2 {
        font-size: 30px;
    }

    .about-story-main p,
    .about-story-side li {
        font-size: 14px;
    }

    .about-pillars {
        padding-bottom: 58px;
        gap: 12px;
    }

    .about-pillar-card {
        padding: 20px 16px;
    }

    .about-pillar-card h3 {
        font-size: 24px;
    }
}

/* ============================================
   HOME MOBILE DRAWER REDESIGN
   ============================================ */

.mobile-only-nav,
.mobile-only-inline,
.nav-link-icon {
    display: none;
}

.menu-overlay {
    display: none;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .nav {
        --mobile-drawer-width: min(88vw, 340px);
        --mobile-drawer-top-space: calc(16px + env(safe-area-inset-top, 0px));
    }

    .menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background:
            radial-gradient(circle at 15% 20%, rgba(255, 214, 143, 0.2), transparent 40%),
            rgba(35, 18, 2, 0.52);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.24s ease, visibility 0.24s ease;
        z-index: 1190;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .toggle-menu,
    .close-menu {
        width: 44px;
        height: 44px;
        display: none;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(143, 45, 11, 0.18);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.9);
        color: #2d1b05;
        box-shadow: 0 8px 20px rgba(45, 27, 5, 0.16);
        cursor: pointer;
        transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    }

    .toggle-menu {
        display: inline-flex;
        position: relative;
        z-index: 1202;
    }

    .toggle-menu i,
    .close-menu i {
        font-size: 15px;
        line-height: 1;
    }

    .toggle-menu:hover,
    .toggle-menu:focus-visible,
    .close-menu:hover,
    .close-menu:focus-visible {
        transform: none;
        color: #8f2d0b;
        background: #fff;
        box-shadow: 0 10px 22px rgba(45, 27, 5, 0.2);
    }

    .close-menu {
        position: fixed;
        top: calc(14px + env(safe-area-inset-top, 0px));
        left: min(calc(var(--mobile-drawer-width) + 8px), calc(100vw - 44px));
        z-index: 1202;
        width: 36px;
        height: 36px;
        border-radius: 11px;
        border: 1px solid rgba(143, 45, 11, 0.24);
        background: linear-gradient(145deg, #fff, #fdf3dd);
        color: #7a2608;
        box-shadow: 0 8px 18px rgba(45, 27, 5, 0.22);
    }

    .nav-list#mainMobileNav {
        position: fixed;
        top: 0;
        left: 0 !important;
        width: var(--mobile-drawer-width);
        height: 100dvh;
        margin: 0;
        padding: var(--mobile-drawer-top-space) 14px calc(18px + env(safe-area-inset-bottom, 0px));
        list-style: none;
        background: linear-gradient(180deg, #fffdf8 0%, #fff4d8 54%, #f8dea5 100%);
        border-right: 1px solid rgba(143, 45, 11, 0.2);
        box-shadow: 24px 0 44px rgba(45, 27, 5, 0.26);
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateX(calc(-100% - 18px));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.22s ease, visibility 0.22s ease;
        z-index: 1201;
    }

    .nav-list#mainMobileNav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-list#mainMobileNav li {
        margin: 0 !important;
        width: 100%;
    }

    .nav-list#mainMobileNav a {
        width: 100%;
        min-height: 46px;
        padding: 11px 13px;
        border-radius: 13px;
        border: 1px solid rgba(143, 45, 11, 0.14);
        background: rgba(255, 255, 255, 0.76);
        box-shadow: 0 5px 12px rgba(45, 27, 5, 0.08);
        text-decoration: none;
        font-size: 15px !important;
        font-weight: 700;
        line-height: 1.35;
        color: #2d1b05;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    .nav-list#mainMobileNav a span {
        flex: 1;
        min-width: 0;
    }

    .nav-list#mainMobileNav a:hover,
    .nav-list#mainMobileNav a.active {
        color: #8f2d0b;
        transform: none;
        background: #fff;
        border-color: rgba(143, 45, 11, 0.3);
        box-shadow: 0 8px 15px rgba(45, 27, 5, 0.12);
    }

    .nav-link-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
        
        color: #8f2d0b;
        font-size: 10px;
        line-height: 1;
    }

    

    .mobile-only-nav {
        display: block;
    }

    .mobile-only-inline {
        display: inline-block;
        padding-left: 4px;
        font-size: 13px;
        font-weight: 700;
    }

    .mobile-drawer-brand {
        display: block !important;
        flex-shrink: 0;
        margin: 0 0 6px;
        border-radius: 16px;
        border: 1px solid rgba(143, 45, 11, 0.2);
        background: linear-gradient(145deg, #fff, #fff1cd);
        box-shadow: 0 10px 18px rgba(45, 27, 5, 0.12);
        overflow: hidden;
    }

    .mobile-drawer-brand-row {
        display: flex;
        align-items: center;
        gap: 11px;
        padding: 12px;
    }

    .mobile-drawer-brand-text {
        min-width: 0;
        flex: 1;
    }

    .mobile-drawer-logo {
        width: 52px;
        height: 52px;
        flex-shrink: 0;
        border-radius: 12px;
        border: 1px solid rgba(211, 84, 0, 0.22);
        background: #fff;
        padding: 5px;
        object-fit: contain;
    }

    .mobile-drawer-title {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        line-height: 1.1;
        color: #6f2608;
        font-weight: 700;
    }

    .mobile-drawer-subtitle {
        margin-top: 3px;
        font-size: 11px;
        line-height: 1.4;
        color: #5d4423;
    }

    .mobile-section-label {
        margin-top: 6px;
        padding: 8px 6px 4px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.09em;
        text-transform: uppercase;
        color: #8f2d0b;
    }

    .nav-list#mainMobileNav a.admin-icon {
        justify-content: flex-start !important;
        gap: 10px;
    }

    .nav-list#mainMobileNav a.admin-icon i {
        width: 18px;
        flex: 0 0 18px;
        font-size: 16px;
        text-align: center;
        color: #2d1b05;
    }

    .mobile-drawer-cta {
        margin-top: auto !important;
        padding-top: 8px;
    }

    .mobile-drawer-cta-link {
        justify-content: center !important;
        gap: 8px;
        font-size: 15px !important;
        font-weight: 700 !important;
        color: #fff !important;
        border: 1px solid rgba(255, 255, 255, 0.34) !important;
        background: linear-gradient(135deg, #8f2d0b 0%, #c14300 100%) !important;
        box-shadow: 0 12px 20px rgba(143, 45, 11, 0.34) !important;
        padding: 12px 14px !important;
    }

    .mobile-drawer-cta-link i {
        font-size: 12px;
        color: #fff;
    }
}

@media (max-width: 420px) {
    .nav {
        --mobile-drawer-width: min(92vw, 320px);
        --mobile-drawer-top-space: calc(14px + env(safe-area-inset-top, 0px));
    }

    .toggle-menu {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .close-menu {
        top: calc(12px + env(safe-area-inset-top, 0px));
        width: 34px;
        height: 34px;
        border-radius: 10px;
        left: min(calc(var(--mobile-drawer-width) + 6px), calc(100vw - 40px));
    }

    .toggle-menu i,
    .close-menu i {
        font-size: 14px;
    }

    .nav-list#mainMobileNav {
        padding: var(--mobile-drawer-top-space) 11px calc(14px + env(safe-area-inset-bottom, 0px));
        gap: 7px;
    }

    .nav-list#mainMobileNav a {
        padding: 10px 11px;
        font-size: 14px !important;
        border-radius: 11px;
    }

    .mobile-drawer-brand-row {
        padding: 10px;
        gap: 9px;
    }

    .mobile-drawer-logo {
        width: 46px;
        height: 46px;
        border-radius: 10px;
    }

    .mobile-drawer-title {
        font-size: 17px;
    }

    .mobile-drawer-subtitle {
        font-size: 10px;
        line-height: 1.35;
    }

    .mobile-only-inline {
        font-size: 12px;
    }

    .mobile-drawer-cta-link {
        font-size: 14px !important;
        padding: 11px 12px !important;
    }
}

@media (max-width: 340px) {
    .nav {
        --mobile-drawer-width: min(94vw, 298px);
        --mobile-drawer-top-space: calc(12px + env(safe-area-inset-top, 0px));
    }

    .close-menu {
        top: calc(10px + env(safe-area-inset-top, 0px));
        width: 32px;
        height: 32px;
        border-radius: 9px;
        left: min(calc(var(--mobile-drawer-width) + 4px), calc(100vw - 36px));
    }

    .close-menu i {
        font-size: 13px;
    }

    .nav-list#mainMobileNav {
        padding: var(--mobile-drawer-top-space) 9px calc(12px + env(safe-area-inset-bottom, 0px));
        gap: 6px;
    }

    .mobile-drawer-brand {
        border-radius: 13px;
    }

    .mobile-drawer-brand-row {
        padding: 8px;
        gap: 8px;
    }

    .mobile-drawer-logo {
        width: 42px;
        height: 42px;
        padding: 4px;
    }

    .mobile-drawer-title {
        font-size: 15px;
    }

    .mobile-drawer-subtitle {
        font-size: 9px;
    }
}
