@font-face {
    font-family: "Iranian_Sans";
    src: url("./fonts/iransans_regular.5657b50c.woff2") format("woff2"),
        url("./fonts/iransans_regular.e171c9bc.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0 auto;
    font-family: "Iranian_Sans", sans-serif;
    background: #fff9f0;
    color: #111;
    word-spacing: -3px;
}

.top-menu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.29);
    -webkit-backdrop-filter: blur(45.3px);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 6.8px 0 rgba(0, 0, 0, 0.31);
    height: 102px;
    padding: 16px calc(50% - 400px) 12px;
}

.top-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #1f1f1f;
    text-decoration: none;
}

.menu-toggle svg {
    width: 26px;
    height: 26px;
}

.menu-logo {
    display: block;
    height: 40px;
    width: auto;
}

.top-menu-nav {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    scrollbar-width: none;
    white-space: nowrap;
    height: 35px;
}

.top-menu-nav::-webkit-scrollbar {
    display: none;
}

.top-menu-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
}

.top-menu-nav ul::-webkit-scrollbar {
    display: none;
}

.top-menu-nav li {
    flex: 0 0 auto;
}

.top-menu-nav a {
    display: inline-block;
    color: #9f9f9f;
    text-decoration: none;
    font-size: 13px;
    line-height: 0;
    padding: 0px;
    white-space: nowrap;
    margin-top: 16px;
    position: relative;
}

.top-menu-nav a::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 90%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6e1322, transparent);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.top-menu-nav a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.top-menu-nav a.is-active {
    border: none;
    border-radius: 0;
    padding: 0px 10px 0px;
    color: #6e1322;
    font-size: 16px;
    font-weight: bold;
    position: relative;
}

.top-menu-nav a.is-active::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6e1322, transparent);
    border-radius: 2px;
}

.site-content {
    padding-top: 128px;
}
.container {
    max-width: 800px;
    margin: auto;
}
.section {
    padding: 32px 20px;
}

@media (max-width: 768px) {
    .top-menu-fixed {
        padding: 16px 12px 12px;
    }

    .top-menu-nav ul {
        gap: 18px;
        min-width: max-content;
    }

    .site-content {
        padding-top: 105px;
    }

    .section {
        padding: 5px 12px;
    }
}

#slogan h2 {
    margin-bottom: 5px;
    margin-top: 35px;
}

.text-center {
    text-align: center;
    word-spacing: 1.5px;
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6e1322, transparent);
    margin: 20px auto;
    width: 60%;
    max-width: 300px;
    border-radius: 2px;
}

/* ===== Pack Cards Section ===== */
.pack-section {
    padding-top: 50px;
    padding-bottom: 40px;
}

.pack-section .container {
    max-width: 920px;
}

.pack-section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    word-spacing: 1px;
}

.pack-section-title::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: #6e1322;
    margin: 12px auto 28px;
    border-radius: 2px;
}

.pack-cards {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    padding: 8px 20px 16px;
    width: 100%;
    max-width: 1340px;
    margin-inline: auto;
}

.pack-cards::before,
.pack-cards::after {
    content: "";
    flex: 1 1 0;
    min-width: 0;
}

.pack-cards::-webkit-scrollbar {
    display: none;
}

.pack-cards.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.pack-card {
    flex: 0 0 340px;
    width: 280px;
    background: #fffcf8;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pack-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: #f3f3f3;
}

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

.pack-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 1;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
}

.pack-badge--popular {
    background: #6e1322;
}

.pack-badge--economical {
    background: #b8956a;
}

.pack-badge--gathering {
    background: #5a7a52;
}

.pack-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pack-card-title {
    margin: 0 0 8px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.pack-card-desc {
    margin: 0 0 18px;
    text-align: center;
    font-size: 13px;
    line-height: 1.75;
    color: #777;
}

.pack-contents {
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    padding: 14px 0 12px;
    margin-bottom: 16px;
}

.pack-contents-label {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
}

.pack-contents-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    column-gap: 2px;
    row-gap: 10px;
    width: 100%;
}

.pack-contents-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    min-width: 0;
    width: 100%;
}

.pack-contents-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.pack-contents-item:hover {
    transform: translateY(-2px);
}

.pack-contents-item.is-disabled {
    cursor: default;
    opacity: 0.45;
}

.pack-contents-item.is-disabled:hover {
    transform: none;
}

.pack-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #555;
}

.pack-icon svg {
    width: 28px;
    height: 28px;
}

.pack-contents-name {
    font-size: 9px;
    line-height: 1.3;
    color: #666;
    text-align: center;
    word-spacing: 0;
    width: 100%;
    max-width: 72px;
}

.pack-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.pack-price {
    font-size: 17px;
    font-weight: 700;
    color: #6e1322;
    white-space: nowrap;
}

.pack-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    border-radius: 10px;
    background: #6e1222;
    color: #ffffff;
    font-family: inherit;
    font-size: 12px;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.pack-cta:hover {
    border-color: #6e1322;
    color: #6e1322;
}

.pack-cta span {
    font-size: 14px;
    line-height: 1;
}

@media (max-width: 768px) {
    .pack-cards {
        gap: 14px;
        padding: 8px 12px 16px;
        max-width: none;
    }

    .pack-card {
        flex: 0 0 240px;
        width: 240px;
    }

    .pack-card-body {
        padding: 16px;
    }

    .pack-contents-name {
        font-size: 9px;
        max-width: 68px;
    }
    .pack-contents-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .pack-icon {
        width: 32px;
        height: 30px;
    }

    .pack-icon svg {
        width: 22px;
        height: 22px;
    }

    .pack-price {
        font-size: 15px;
    }

    .pack-cta {
        font-size: 11px;
        padding: 7px 12px;
    }
}

/* ===== Food Slideshow Section ===== */
.food-slideshow-section {
    padding: 24px 0 100px;
}

.food-slideshow-section .container {
    max-width: 520px;
}

.food-slideshow-header {
    text-align: center;
    margin-bottom: 20px;
}

.food-slideshow-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
}

.food-slideshow-title::after {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background: #6e1322;
    margin: 10px auto 0;
    border-radius: 2px;
}

.food-slideshow-subtitle {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.8;
    color: #777;
}

.food-slideshow-nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 2px 12px;
    margin-bottom: 8px;
    cursor: grab;
    user-select: none;
}

.food-slideshow-nav::before,
.food-slideshow-nav::after {
    content: "";
    flex: 1 1 0;
    min-width: 0;
}

.food-slideshow-nav::-webkit-scrollbar {
    display: none;
}

.food-slideshow-nav.is-dragging {
    cursor: grabbing;
}

.food-slideshow-bullet {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 72px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.food-slideshow-bullet-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    color: #666;
    background: #fffcf8;
    transition: border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.food-slideshow-bullet-icon svg {
    width: 28px;
    height: 28px;
}

.food-slideshow-bullet-label {
    font-size: 10px;
    line-height: 1.3;
    color: #888;
    text-align: center;
    transition: color 0.25s ease;
}

.food-slideshow-bullet.is-active .food-slideshow-bullet-icon {
    border-color: #6e1322;
    color: #6e1322;
    box-shadow: 0 0 0 1px rgba(110, 19, 34, 0.15);
}

.food-slideshow-bullet.is-active .food-slideshow-bullet-label {
    color: #6e1322;
    font-weight: 700;
}

.food-slideshow-stage {
    touch-action: pan-y;
    cursor: grab;
    user-select: none;
}

.food-slideshow-stage.is-dragging {
    cursor: grabbing;
}

.food-slideshow-panels {
    position: relative;
}

.food-slideshow-panel {
    display: none;
    animation: foodSlideIn 0.35s ease;
}

.food-slideshow-panel.is-active {
    display: block;
}

@keyframes foodSlideIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.food-slide-image-wrap {
    display: flex;
    justify-content: center;
    padding: 8px 0 20px;
}

.food-slide-image {
    width: min(100%, 320px);
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.food-slide-body {
    text-align: center;
}

.food-slide-title {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.food-slide-desc {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.85;
    color: #666;
}

.food-slide-section-title {
    margin: 0 0 14px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
}

.food-slide-ingredients {
    margin-bottom: 24px;
}

.food-slide-ingredients-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
}

.food-slide-ingredients-list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 52px;
}

.food-slide-ingredient-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #555;
}

.food-slide-ingredient-icon svg {
    width: 26px;
    height: 26px;
}

.food-slide-ingredient-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.food-slide-ingredient-label {
    font-size: 10px;
    color: #777;
}

.food-slide-features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.food-slide-features-list li {
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 999px;
    font-size: 12px;
    color: #444;
    background: #fffcf8;
}

@media (min-width: 769px) {
    .food-slideshow-section .container {
        max-width: 640px;
    }

    .food-slide-image {
        width: 340px;
    }
}

#call {
    width: calc(100% - 32px);
    max-width: 420px;
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: #6e1322;
    box-shadow: 0 6px 24px rgba(110, 19, 34, 0.35);
    z-index: 100;
    border-radius: 14px;
    padding: 0;
    height: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

#call.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(16px);
    pointer-events: none;
}

#call a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.call-btn-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ===== Contact Section ===== */
.contact-section {
    padding-top: 48px;
    background-color: #1a3429;
    background-image:
        linear-gradient(160deg, rgba(26, 52, 41, 0.93) 0%, rgba(18, 40, 32, 0.95) 100%),
        url('../storage/images/IMG-20251214-WA0066.jpg');
    background-size: cover;
    background-position: center;
}

.contact-header {
    text-align: center;
    margin-bottom: 28px;
}

.contact-title {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #f5f0e6;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    display: block;
    width: 72px;
    height: 2px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, transparent, #f5f0e6, transparent);
    border-radius: 2px;
}

.contact-subtitle {
    margin: 0 auto;
    max-width: 420px;
    font-size: 13px;
    line-height: 1.9;
    color: rgba(245, 240, 230, 0.82);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 22px 14px;
    background: #fff;
    border: 1px solid rgba(110, 19, 34, 0.1);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(110, 19, 34, 0.06);
    text-decoration: none;
    color: #222;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(110, 19, 34, 0.1);
    border-color: rgba(110, 19, 34, 0.22);
}

.contact-card--featured {
    background: linear-gradient(160deg, #fff 0%, #f4faf7 100%);
    border-color: rgba(26, 52, 41, 0.18);
}

.contact-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    background: rgb(245 240 230);
    color: #1a3429;
    margin-bottom: 4px;
    overflow: hidden;
}

.contact-section .contact-card-icon svg {
    display: block;
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    flex-shrink: 0;
}

.contact-card-label {
    font-size: 11px;
    color: #888;
}

.contact-card-value {
    font-size: 14px;
    font-weight: 700;
    color: #222;
    direction: ltr;
    unicode-bidi: plaintext;
}

.contact-card-hint {
    font-size: 11px;
    color: #9a9a9a;
    line-height: 1.6;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.contact-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 22px 20px;
    background: rgba(245, 240, 230, 0.1);
    border: 1px solid rgba(245, 240, 230, 0.18);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-banner-text {
    margin: 0;
    max-width: 520px;
    font-size: 13px;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.92);
}

.contact-banner-text strong {
    color: #fff;
    font-weight: 700;
}

.contact-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: #f5f0e6;
    color: #1a3429;
    border-radius: 12px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-banner-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.site-footer {
    padding: 20px;
    text-align: center;
    font-size: 12px;
    color: #888;
    border-top: 1px solid rgba(110, 19, 34, 0.08);
}

@media (max-width: 768px) {
    .contact-section {
        padding-top: 32px;
        padding-bottom: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-card {
        flex-direction: row;
        text-align: right;
        align-items: center;
        padding: 16px;
        gap: 12px;
    }

    .contact-card-icon {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        margin-bottom: 0;
    }

    .contact-section .contact-card-icon svg {
        width: 20px;
        height: 20px;
        max-width: 20px;
        max-height: 20px;
    }

    .contact-card-content {
        align-items: flex-start;
        flex: 1;
        text-align: right;
    }

    .contact-card-label,
    .contact-card-value,
    .contact-card-hint {
        text-align: right;
    }

    .contact-card-value {
        font-size: 13px;
    }
}
