:root {
    --primary-color: #2d5016;
    --secondary-color: #7cb342;
    --accent-color: #ffc107;
    --light-bg: #f5f5f0;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: linear-gradient(135deg, #f0f0e8 0%, #f9f9f5 100%);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

.nav-shell {
    min-height: 78px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 14px;
}

.logo {
    justify-self: center;
    display: inline-flex;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(31, 77, 45, 0.18);
}

.logo img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.left-menu {
    justify-content: flex-end;
}

.right-menu {
    justify-content: flex-start;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    padding: 7px 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-menu a svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.nav-menu a:hover {
    color: var(--secondary-color);
    background: rgba(124, 179, 66, 0.1);
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    justify-self: end;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 4px 0;
    display: block;
}

.hero {
    position: relative;
    padding: 44px 0 56px;
    background: url('images/slider.jpeg') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /*background: linear-gradient(135deg, rgba(245, 245, 240, 0.86) 0%, rgba(255, 255, 255, 0.72) 100%);*/
    background: linear-gradient(135deg, rgb(130 158 103) 0%, rgb(255 245 184 / 72%) 100%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    align-items: center;
}

.hero-intro {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(45, 80, 22, 0.12);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(2px);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    background: rgba(124, 179, 66, 0.15);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-intro h1 {
    color: var(--primary-color);
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-subtitle {
    color: var(--text-light);
    margin-bottom: 14px;
}

.hero-points {
    list-style: none;
    margin-bottom: 22px;
}

.hero-points li {
    margin: 6px 0;
    padding-left: 18px;
    position: relative;
    color: var(--text-light);
}

.hero-points li::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    position: absolute;
    left: 0;
    top: 9px;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.slider-panel {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 430px;
    background: rgba(26, 58, 15, 0.82);
}

.slider,
.slide,
.slide img {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide img {
    object-fit: cover;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    color: var(--white);
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: 50%;
    background-color: rgba(45, 80, 22, 0.65);
}

.next {
    right: 12px;
}

.prev {
    left: 12px;
}

.dots-container {
    text-align: center;
    position: absolute;
    bottom: 14px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    border: none;
    background-color: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
}

.dot.active {
    background-color: var(--accent-color);
}

.cta-button,
.submit-btn {
    display: inline-block;
    padding: 11px 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.cta-button:hover,
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-ghost,
.order-btn {
    display: inline-block;
    padding: 11px 18px;
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.cta-ghost:hover,
.order-btn:hover {
    background: var(--light-bg);
}

section {
    padding: 40px 0;
}

.section-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 44px;
    font-weight: 700;
}

.product-section {
    background-color: var(--light-bg);
}

.product-section .section-title {
    position: relative;
    margin-bottom: 52px;
}

.product-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -14px;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 999px;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.product-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.product-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.pricing-table {
    margin-bottom: 35px;
    background-color: var(--white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.pricing-table h4 {
    margin-bottom: 18px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.pricing-table table,
.pack-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: var(--primary-color);
}

.pricing-table thead th {
    color: var(--white);
    font-weight: 700;
}

.pricing-table th,
.pricing-table td,
.pack-table th,
.pack-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.pricing-table tr:last-child td,
.pack-table tr:last-child td {
    border-bottom: none;
}

.highlights-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.check {
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 5px;
}

.perfect-for {
    margin-top: 18px;
}

.perfect-for h4,
.highlights h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 7px 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.order-btn {
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.88rem;
}

.pricing-table .order-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
}

.pricing-table .order-btn:hover {
    background: var(--primary-color);
}

.cta-button::before,
.cta-ghost::before,
.submit-btn::before,
.order-btn::before {
    margin-right: 8px;
}

.cta-button::before {
    content: '🛒';
}

.cta-ghost::before {
    content: '📖';
}

.submit-btn::before {
    content: '✉';
}

.order-btn::before {
    content: '🧺';
}

/* Product Variants Styles */
.product-variants {
    margin-top: 28px;
    background: linear-gradient(135deg, #f9fcf7 0%, #f5f9f0 100%);
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(124, 179, 66, 0.2);
}

.product-variants h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 700;
}

.flavor-selector {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.flavor-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.flavor-option input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
    accent-color: var(--secondary-color);
}

.flavor-label {
    padding: 5px 10px;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
    cursor: pointer;
    font-size: 0.7em;
}

.flavor-option input[type="radio"]:checked+.flavor-label {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pack-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.pack-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    transition: var(--transition);
}

.pack-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.pack-size {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.pack-price {
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 12px;
}

.add-cart-btn {
    width: 100%;
    padding: 10px 12px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
}

.add-cart-btn:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.add-cart-btn svg {
    width: 16px;
    height: 16px;
}

.cart-summary {
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 16px;
    margin-top: 16px;
    position: sticky;
    top: 100px;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
    z-index: 50;
    max-height: 50vh;
    overflow-y: auto;
    animation: slideInCart 0.3s ease-out;
}

@keyframes slideInCart {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-items {
    margin-bottom: 16px;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-row:last-child {
    border-bottom: none;
}

.cart-item-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.cart-item-flavor {
    font-size: 0.85rem;
    color: var(--text-light);
}

.cart-item-price {
    color: var(--secondary-color);
    font-weight: 700;
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.remove-item-btn:hover {
    background: rgba(231, 76, 60, 0.1);
}

.cart-totals {
    background: linear-gradient(135deg, #f9fcf7 0%, #f5f9f0 100%);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    color: var(--primary-color);
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.checkout-btn:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.no-items {
    color: var(--text-light);
    text-align: center;
    padding: 20px;
    font-style: italic;
}

.about-section {
    background-color: var(--white);
}

.about-section .section-title {
    position: relative;
    margin-bottom: 56px;
}

.about-section .section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -14px;
    width: 56px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 999px;
}

.about-content {
    max-width: 100%;
    margin: 0 0 0;
    color: var(--text-light);
    line-height: 1.85;
    text-align: center;
}

.about-layout {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 34px;
}

.about-image img {
    height: 150px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.about-content p {
    margin-bottom: 18px;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
    background-color: rgba(124, 179, 66, 0.1);
    padding: 14px;
    border-left: 4px solid var(--secondary-color);
    border-radius: 6px;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.value-item {
    text-align: center;
    padding: 24px 18px;
    background-color: var(--light-bg);
    border-radius: 10px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.value-icon {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.contact-section {
    background-color: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.contact-card {
    background: var(--white);
    border: 1px solid rgba(45, 80, 22, 0.12);
    border-radius: 14px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(124, 179, 66, 0.25);
}

.contact-header {
    background: linear-gradient(135deg, #f9fcf7 0%, #f5f9f0 100%);
    padding: 20px 20px;
    border-bottom: 1px solid rgba(45, 80, 22, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrapper.phone-icon {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.15), rgba(124, 179, 66, 0.1));
    color: var(--primary-color);
}

.contact-icon-wrapper.email-icon {
    background: linear-gradient(135deg, rgba(124, 179, 66, 0.15), rgba(139, 158, 95, 0.1));
    color: var(--secondary-color);
}

.contact-icon-wrapper.address-icon {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15), rgba(124, 179, 66, 0.1));
    color: var(--accent-color);
}

.contact-icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.contact-header h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.contact-body {
    padding: 18px 20px;
}

.contact-body p {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-body p:last-child {
    margin-bottom: 0;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.order-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px 24px;
    border-radius: 14px;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.cta-buttons .cta-button.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.enquiry-box {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
}

.enquiry-box h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 12px;
    padding: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px;
}

.full-width {
    grid-column: 1 / -1;
}

input,
textarea,
select {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(124, 179, 66, 0.2);
    border-color: var(--secondary-color);
}

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(5px);
    z-index: 2000;
    padding: 16px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: var(--white);
    width: min(820px, 100%);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.order-modal {
    width: min(900px, 100%);
    background:
        radial-gradient(circle at top right, rgba(124, 179, 66, 0.16), transparent 38%),
        linear-gradient(160deg, #ffffff 0%, #f9fdf5 100%);
    border: 1px solid rgba(45, 80, 22, 0.14);
    box-shadow: 0 22px 48px rgba(23, 56, 11, 0.22);
}

.order-modal-header {
    margin-bottom: 16px;
}

.order-kicker {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
    background: rgba(124, 179, 66, 0.14);
    border: 1px solid rgba(124, 179, 66, 0.35);
    border-radius: 999px;
    padding: 5px 12px;
}

.order-modal h2 {
    color: var(--primary-color);
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.2;
    margin-bottom: 6px;
}

.form-caption {
    color: var(--text-light);
}

.order-form-modern {
    display: grid;
    gap: 14px;
}

.order-card {
    background: rgba(255, 255, 255, 0.88);
    /* border: 1px solid rgba(45, 80, 22, 0.12); */
    border-radius: 14px;
    /* box-shadow: 0 8px 18px rgba(45, 80, 22, 0.08); */
}

.order-card-title {
    color: var(--primary-color);
    font-size: 1.02rem;
    margin-bottom: 10px;
}

.pack-title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}

.pack-note {
    font-size: 0.84rem;
    color: var(--text-light);
}

.close {
    position: absolute;
    right: 12px;
    top: 6px;
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
}

.pack-table-wrap {
    margin: 12px 0;
    border: 1px solid #d9e7d0;
    border-radius: 12px;
    overflow: hidden;
}

.pack-table thead {
    background: linear-gradient(135deg, #2d5016, #3f6d23);
}

.pack-table thead th {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.92rem;
}

.pack-table tbody tr:nth-child(even) {
    background: #fcfef9;
}

.pack-table td {
    vertical-align: middle;
}

.qty-input {
    width: 86px;
    text-align: center;
    font-weight: 600;
}

.total-box {
    margin: 12px 0 14px;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef8e8 0%, #f8fff4 100%);
    border: 1px solid #cfe4bf;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.total-box strong {
    color: var(--primary-color);
}

.row-amount {
    font-weight: 600;
    color: var(--primary-color);
}

.form-status {
    margin-top: 10px;
    min-height: 20px;
    font-weight: 600;
}

.form-status.success {
    color: #1b6e34;
}

.form-status.error {
    color: #b12828;
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 28px 0;
}

.fssai-badge {
    display: inline-flex;
    margin-top: 12px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.fssai-badge img {
    width: min(240px, 78vw);
    height: auto;
    display: block;
    border-radius: 6px;
}

.lightbox-content {
    width: min(900px, 96vw);
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
}

.lightbox-image {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

.lightbox-close {
    right: 10px;
    top: 4px;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--secondary-color);
    color: var(--white);
    cursor: pointer;
    display: none;
    z-index: 1200;
}

.back-to-top.show {
    display: block;
}

@media (max-width: 980px) {

    .hero-grid,
    .product-showcase,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .slider-panel {
        min-height: 300px;
    }

    .about-image img {
        height: 150px;
    }
}

@media (max-width: 820px) {
    .nav-shell {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        min-height: 76px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: 8px;
        z-index: 2;
    }

    .logo img {
        width: 58px;
        height: 58px;
    }

    .hamburger {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(45, 80, 22, 0.2);
        border-radius: 10px;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.86);
        margin-left: auto;
        z-index: 3;
    }

    .hamburger[aria-expanded="true"] {
        background: rgba(124, 179, 66, 0.15);
        border-color: rgba(45, 80, 22, 0.4);
    }

    .nav-menu {
        position: absolute;
        left: 0;
        right: 0;
        background: var(--white);
        border: 1px solid rgba(45, 80, 22, 0.14);
        border-radius: 14px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
        padding: 10px;
        gap: 8px;
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: 0.25s ease;
        display: grid;
        grid-template-columns: 1fr;
        z-index: 4;
    }

    .left-menu {
        top: 74px;
    }

    .right-menu {
        top: 188px;
    }

    .left-menu.active,
    .right-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu a {
        display: block;
        text-align: center;
        padding: 10px 14px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .total-box {
        grid-template-columns: 1fr;
    }

    .highlights-list {
        grid-template-columns: 1fr;
    }

    .order-modal {
        padding: 16px;
    }

    .pack-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .pack-table th,
    .pack-table td {
        padding: 10px 8px;
        font-size: 0.88rem;
    }
}