* {
    box-sizing: border-box;
}
:root {
    --theme-primary: #7a4b2b;
    --theme-secondary: #f4eadf;
    --theme-button: #c9822b;
    --theme-font: Inter, sans-serif;
}
html {
    scroll-padding-top: 90px;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--theme-font);
    background: var(--theme-secondary);
    color: #1f2933;
}

a {
    color: inherit;
}

.site-page {
    min-height: 100vh;
}

.site-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--theme-secondary);
}

.site-header-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--theme-primary);
    text-decoration: none;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.site-nav-link {
    font-size: 15px;
    color: #374151;
    text-decoration: none;
}

.site-nav-link:hover {
    color: var(--theme-primary);
}

.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 18px;
    background: var(--theme-secondary);
}

.admin-login-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.admin-login-title {
    margin: 0 0 18px;
    font-size: 26px;
    color: var(--theme-primary);
}

.admin-alert-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 600;
}

.form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 16px;
}

.button-primary {
    display: inline-block;
    background: var(--theme-button);
    color: #ffffff;
    border: 0;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.button-primary:hover {
    background: var(--theme-primary);
}

.admin-page {
    min-height: 100vh;
    background: #f5f3ee;
}

.admin-header {
    background: #6b4f3a;
    color: #ffffff;
}

.admin-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-brand {
    font-size: 20px;
    font-weight: 700;
}

.admin-header-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-header-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.admin-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 22px 18px;
}

.admin-title {
    margin: 0 0 8px;
    font-size: 28px;
    color: #1f2933;
}

.admin-subtitle {
    margin: 0 0 22px;
    color: #6b7280;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.admin-stat-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e5dfd3;
}

.admin-stat-number {
    margin: 0;
    font-size: 34px;
    color: #6b4f3a;
}

.admin-stat-label {
    margin: 6px 0 0;
    color: #6b7280;
}

.admin-section-card {
    margin-top: 22px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #e5dfd3;
}

.admin-section-title {
    margin: 0 0 14px;
    font-size: 22px;
}

.admin-link-list {
    display: grid;
    gap: 10px;
}

.admin-management-link {
    display: block;
    padding: 14px;
    border-radius: 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    text-decoration: none;
    color: #1f2933;
    font-weight: 600;
}

.admin-management-link:hover {
    border-color: #6b4f3a;
    color: #6b4f3a;
}

@media (min-width: 700px) {
    .site-header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .admin-header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .admin-stat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.admin-page-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 18px;
}

.admin-alert-success {
    background: #dcfce7;
    color: #166534;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

.admin-list {
    display: grid;
    gap: 12px;
}

.admin-list-item {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 16px;
}

.admin-list-title {
    margin: 0 0 6px;
    font-size: 19px;
    color: #1f2933;
}

.admin-list-meta {
    margin: 4px 0 0;
    color: #6b7280;
    font-size: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.form-check {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 0 14px;
    font-size: 15px;
}

@media (min-width: 700px) {
    .admin-page-head {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.admin-list-item-with-actions {
    display: grid;
    gap: 14px;
}

.admin-list-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.button-secondary {
    display: inline-block;
    background: #ffffff;
    color: #6b4f3a;
    border: 1px solid #6b4f3a;
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.button-secondary:hover {
    background: #eff6ee;
}

.button-danger {
    display: inline-block;
    width: 100%;
    background: #b91c1c;
    color: #ffffff;
    border: 0;
    border-radius: 10px;
    padding: 11px 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.button-danger:hover {
    background: #991b1b;
}

.admin-danger-card {
    margin-top: 22px;
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #fecaca;
}

.admin-danger-text {
    color: #7f1d1d;
    margin-top: 0;
}

@media (min-width: 700px) {
    .admin-list-item-with-actions {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .admin-list-actions {
        flex-direction: row;
        align-items: center;
    }

    .button-danger {
        width: auto;
    }
}
.public-page {
    min-height: 100vh;
    background: var(--theme-secondary);
    color: #2f2a24;
}

.public-container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 18px;
}

.public-header {
    background: var(--theme-secondary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 20;
}

.public-header-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.public-logo {
    color: var(--theme-primary);
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
}

.public-logo span {
    display: block;
    font-size: 13px;
    color: var(--theme-primary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.public-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.public-nav a {
    color: #2f2a24;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.public-nav a:hover {
    color: var(--theme-primary);
}

.home-hero {
    background:
        linear-gradient(
            135deg,
            rgba(107, 79, 58, 0.94),
            rgba(140, 104, 73, 0.88)
        ),
        #6b4f3a;

    color: #ffffff;
}

.home-hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 48px 18px;
    display: grid;
    gap: 24px;
}

.home-kicker,
.section-kicker {
    margin: 0 0 10px;
    color: var(--theme-primary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero .home-kicker {
    color: #f1c892;
}

.home-hero h1 {
    margin: 0;
    font-size: 36px;
    line-height: 1.05;
    max-width: 760px;
}

.home-hero-text {
    margin: 18px 0 0;
    font-size: 18px;
    line-height: 1.6;
    max-width: 680px;
    color: #f8f3e8;
}

.home-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.button-light {
    display: inline-block;
    background: #fffaf2;
    color: #6b4f3a;
    border: 1px solid #fffaf2;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.home-hero-card {
    background: rgba(255, 250, 242, 0.96);
    color: #2f2a24;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid #eadbbf;
}

.home-hero-card h2 {
    margin: 0 0 10px;
    color: #6b4f3a;
}

.home-hero-card p {
    margin: 0 0 14px;
    line-height: 1.5;
}

.home-hero-card a {
    color: #6b4f3a;
    font-weight: 800;
}

.public-section {
    padding: 42px 0;
}

.public-section-muted {
    background: #fffaf2;
    border-top: 1px solid #eadbbf;
    border-bottom: 1px solid #eadbbf;
}

.section-title {
    margin: 0 0 20px;
    font-size: 30px;
    line-height: 1.15;
    color: #6b4f3a;
}

.home-feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.home-feature-card,
.contact-card,
.home-info-box,
.shop-product-card {
    background: #fffaf2;
    border: 1px solid #eadbbf;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.home-feature-card h3 {
    margin: 0 0 8px;
    color: #6b4f3a;
    font-size: 21px;
}

.home-feature-card p {
    margin: 0;
    line-height: 1.5;
}

.home-step-list {
    display: grid;
    gap: 12px;
}

.home-step-item {
    display: flex;
    gap: 12px;
    align-items: center;
    background: #f7f1e6;
    border-radius: 14px;
    padding: 14px;
}

.home-step-item strong {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    background: #6b4f3a;
    color: #ffffff;
    flex: 0 0 auto;
}

.contact-card p {
    line-height: 1.6;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.public-footer {
    background: var(--theme-primary);
    color: #ffffff;
    padding: 22px 0;
}

.public-footer p {
    margin: 5px 0;
}

.public-footer a {
    color: #ffffff;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.shop-product-category {
    color: #9a6a2f;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.shop-product-card h2 {
    margin: 8px 0;
    color: #6b4f3a;
    font-size: 23px;
}

.shop-product-description {
    min-height: 44px;
    line-height: 1.5;
    color: #4b5563;
}

.shop-product-price {
    font-size: 24px;
    font-weight: 800;
    color: #2f2a24;
    margin: 14px 0 8px;
}

.shop-product-price span {
    font-size: 15px;
    color: #6b7280;
}

.shop-stock {
    border-radius: 12px;
    padding: 10px;
    font-weight: 700;
    font-size: 14px;
}

.shop-stock-available {
    background: #dcfce7;
    color: #166534;
}

.shop-stock-empty {
    background: #fef3c7;
    color: #92400e;
}

@media (min-width: 700px) {
    .public-header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .home-hero-inner {
        grid-template-columns: 1.4fr 0.8fr;
        align-items: center;
        padding: 76px 18px;
    }

    .home-hero h1 {
        font-size: 54px;
    }

    .home-hero-actions,
    .contact-actions {
        flex-direction: row;
    }

    .home-feature-grid,
    .shop-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-info-box {
        display: grid;
        grid-template-columns: 0.8fr 1.2fr;
        gap: 24px;
        align-items: start;
    }
}
.mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid #eadbbf;
    background: #fffaf2;
    color: #6b4f3a;
    font-size: 22px;
    cursor: pointer;
}

.public-nav {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.public-nav-open {
    display: flex;
}

.opening-card {
    background: #fffaf2;
    border-radius: 18px;
    border: 1px solid #eadbbf;
    padding: 22px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.opening-grid {
    display: grid;
    gap: 10px;
}

.opening-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: #f7f1e6;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.footer-grid h3 {
    margin-top: 0;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

@media (min-width: 700px) {
    .mobile-menu-button {
        display: none;
    }

    .public-nav {
        display: flex !important;
        flex-direction: row;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.admin-product-image-preview {
    margin-bottom: 16px;
}

.admin-product-image-preview img {
    width: 100%;
    max-width: 260px;
    border-radius: 14px;
    border: 1px solid #eadbbf;
    display: block;
}

.shop-product-card {
    overflow: hidden;
    padding: 0;
}

.shop-product-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.shop-product-image-placeholder {
    height: 190px;
    background: #eadbbf;
    color: #6b4f3a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.shop-product-content {
    padding: 20px;
}
.public-alert-success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 18px;
    font-weight: 700;
}

.public-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 18px;
    font-weight: 700;
}

.shop-section-block {
    margin-top: 26px;
}

.shop-section-title {
    color: #6b4f3a;
    font-size: 24px;
    margin: 0 0 16px;
}

.shop-date-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.shop-date-card {
    background: #fffaf2;
    border: 1px solid #eadbbf;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.shop-date-meta {
    color: #6b7280;
    font-size: 14px;
    margin: 8px 0;
}

.preorder-form {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eadbbf;
}

@media (min-width: 900px) {
    .shop-date-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.button-disabled {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 14px;
    background: #d1d5db;
    color: #6b7280;
    font-size: 15px;
    font-weight: 800;
    cursor: not-allowed;
}
.admin-order-total {
    margin-top: 18px;
    font-size: 20px;
    color: #6b4f3a;
}
.cart-quantity-form {
    margin-top: 10px;
}

.cart-quantity-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #6f4729;
}

.cart-quantity-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.cart-quantity-input {
    width: 90px;
    padding: 10px;
    border: 1px solid #d6c2a9;
    border-radius: 10px;
    background: #fffaf5;
    font-size: 16px;
}

.cart-update-btn {
    border: none;
    border-radius: 10px;
    padding: 10px 12px;
    background: #8b5e3c;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.cart-update-btn:hover {
    background: #6f4729;
}
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #8b5e3c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
    z-index: 999;
    transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.06);
    background: #6f4729;
}
.location-section {
    padding: 70px 0;
    background: #f6efe7;
}

.location-grid {
    display: grid;
    gap: 24px;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.location-text {
    color: #5f5147;
    line-height: 1.7;
}

.location-address {
    font-size: 18px;
    font-weight: 700;
    color: #6f4729;
    line-height: 1.7;
}

.location-map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

@media (min-width: 900px) {

    .location-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

}
.gallery-section {
    padding: 70px 0;
    background: #fffaf5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
}

.gallery-card {
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gallery-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover .gallery-image {
    transform: scale(1.04);
}

@media (min-width: 700px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (min-width: 1100px) {

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}
.admin-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.admin-gallery-card {
    background: #fffaf2;
    border: 1px solid #eadbbf;
    border-radius: 18px;
    overflow: hidden;
}

.admin-gallery-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.admin-gallery-content {
    padding: 16px;
}

.admin-gallery-content p {
    color: #6b7280;
    line-height: 1.5;
}

.gallery-section {
    padding: 70px 0;
    background: #fffaf5;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
}

.gallery-card {
    overflow: hidden;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gallery-image {
    width: 100%;
    height: 260px;
    object-fit: contain;
    background: #ffffff;
    display: block;
    padding: 10px;
}

@media (min-width: 700px) {
    .admin-gallery-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.admin-gallery-edit-form {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}
.order-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-bottom: 24px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #eadbbf;
    color: #6f4729;
    font-weight: 700;
    font-size: 15px;
}
.admin-orders-grid {
    display: grid;
    gap: 18px;
}

.admin-order-card {
    background: #fffaf2;
    border: 1px solid #eadbbf;
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.admin-order-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.admin-order-number {
    margin: 0;
    font-size: 20px;
    color: #2f241d;
}

.admin-order-status-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.admin-order-status-badge {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.status-badge-new {
    background: #efe6d7;
    color: #7a5a2b;
}

.status-badge-confirmed {
    background: #dff4df;
    color: #256c2f;
}

.status-badge-prepared {
    background: #fff0d8;
    color: #9a5a00;
}

.status-badge-picked-up {
    background: #dceeff;
    color: #005ea8;
}

.status-badge-cancelled {
    background: #ffe1e1;
    color: #a12222;
}

.admin-order-date {
    font-size: 13px;
    color: #7b7280;
}

.admin-order-divider {
    height: 1px;
    background: #eadbbf;
    margin: 18px 0;
}

.admin-order-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.admin-order-customer {
    font-size: 16px;
    color: #2f241d;
}

.admin-order-email {
    color: #6b7280;
    word-break: break-word;
}

.admin-order-total {
    font-size: 15px;
    color: #4b5563;
}

.admin-empty-state {
    padding: 30px;
    text-align: center;
    border-radius: 18px;
    background: #fffaf2;
    border: 1px solid #eadbbf;
}

@media (max-width: 700px) {

    .admin-order-top {
        flex-direction: column;
    }

}
.admin-category-grid {
    display: grid;
    gap: 18px;
}

.admin-category-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid #eadbbf;
    border-radius: 18px;
    background: #fffaf2;
}
.admin-dashboard-hero {
    margin-bottom: 24px;
}

.admin-dashboard-kicker,
.admin-section-kicker,
.admin-stat-kicker {
    margin: 0 0 6px;
    color: #a66a2c;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-section-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.admin-dashboard-card {
    display: block;
    padding: 18px;
    border: 1px solid #ead8bd;
    border-radius: 18px;
    background: #fffaf2;
    color: #3b2616;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(68, 42, 20, 0.06);
}

.admin-dashboard-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
}

.admin-dashboard-card span {
    display: block;
    color: #7a6654;
    font-size: 14px;
    line-height: 1.4;
}

.admin-dashboard-card:hover {
    border-color: #b7793f;
    transform: translateY(-1px);
}

@media (min-width: 760px) {
    .admin-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.opening-special-list {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(80, 52, 28, 0.14);
}

.opening-special-list h3 {
    margin: 0 0 14px;
    font-size: 18px;
    color: #3b2616;
}

.opening-special-item {
    display: grid;
    gap: 4px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(80, 52, 28, 0.1);
}

.opening-special-item strong {
    color: #3b2616;
}

.opening-special-item span {
    color: #6f5b48;
    font-size: 14px;
}

.opening-special-item small {
    color: #8a7662;
    font-size: 13px;
    line-height: 1.4;
}
/* Legal pages */
.legal-page {
    padding: 32px 0 48px;
    background: #f7f2ea;
}

.legal-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 14px 35px rgba(67, 45, 24, 0.08);
}

.legal-title {
    margin: 0 0 22px;
    font-size: 2rem;
    line-height: 1.15;
    color: #3d2a18;
}

.legal-content {
    color: #4a3a2a;
    font-size: 1rem;
    line-height: 1.75;
}

.legal-content h2 {
    margin: 30px 0 12px;
    font-size: 1.28rem;
    color: #3d2a18;
}

.legal-content p {
    margin: 0 0 16px;
}

.legal-content strong {
    color: #2f2114;
}

.legal-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 18px 0 28px;
}

.legal-table {
    width: 100%;
    min-width: 640px;
    border-collapse: collapse;
    background: #ffffff;
}

.legal-table th,
.legal-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #eadfce;
    text-align: left;
    vertical-align: top;
}

.legal-table th {
    background: #f1e5d3;
    color: #3d2a18;
    font-weight: 700;
}

@media (min-width: 768px) {
    .legal-page {
        padding: 56px 0 72px;
    }

    .legal-card {
        padding: 42px;
    }

    .legal-title {
        font-size: 2.6rem;
    }
}
/* Premium footer */
.premium-footer {
    padding: 36px 0 24px;
        background: #3b2616;
    color: #f8efe2;
}

.premium-footer-brand {
    margin-bottom: 30px;
}

.premium-footer-brand h2 {
    margin: 0 0 12px;
    font-size: 1.9rem;
    line-height: 1.15;
    color: #ffffff;
}

.premium-footer-brand p {
    margin: 0 0 18px;
    color: #e7d5bd;
    line-height: 1.7;
}

.premium-footer-actions {
    display: grid;
    gap: 12px;
}

.premium-footer-button {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 999px;
    background: #c88635;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.premium-footer-button-light {
    background: #ffffff;
    color: #2f2114 !important;
    border: 2px solid #ffffff;
}

.premium-footer-button-light:hover {
    background: #f5f5f5;
}
.premium-footer-button-light,
.premium-footer-button-light:visited {
    color: #2f2114 !important;
}
.premium-footer-grid {
    display: grid;
    gap: 22px;
}

.premium-footer-column {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.07);
}

.premium-footer-column h3 {
    margin: 0 0 12px;
    font-size: 1.05rem;
    color: #ffffff;
}

.premium-footer-column p {
    margin: 0 0 12px;
    color: #e7d5bd;
    line-height: 1.65;
}

.premium-footer-column a {
    color: #ffffff;
    text-decoration: none;
}

.premium-footer-links {
    display: grid;
    gap: 8px;
}

.premium-footer-links a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 0;
    color: #f8efe2;
    text-decoration: none;
}

.premium-footer-bottom {
    display: grid;
    gap: 6px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #d8c3a7;
    font-size: 0.92rem;
}

@media (min-width: 700px) {
    .premium-footer-actions {
        display: flex;
        flex-wrap: wrap;
    }

    .premium-footer-button {
        min-width: 190px;
    }

    .premium-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (min-width: 1000px) {
    .premium-footer {
        padding: 54px 0 28px;
    }

    .premium-footer-brand {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 28px;
        align-items: end;
    }

    .premium-footer-brand p {
        max-width: 620px;
    }

    .premium-footer-actions {
        justify-content: flex-end;
    }

    .premium-footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.admin-dashboard-card {
    min-height: 76px;
    padding: 18px 20px;
}

.admin-dashboard-card-with-icon {
    display: flex;
    align-items: center;
    gap: 18px;
}

.admin-dashboard-card-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 999px;
    background: #f3e5d5;
    border: 1px solid #e2c8aa;

    color: #7a4b2a;
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    text-align: center;

    flex-shrink: 0;
}

.admin-dashboard-card-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.admin-dashboard-card-text strong {
    font-size: 17px;
    color: #1f2933;
}

.admin-dashboard-card-text small {
    font-size: 14px;
    line-height: 1.4;
    color: #5f6b7a;
}

.admin-dashboard-card-large {
    grid-column: 1 / -1;
}

@media (max-width: 700px) {
    .admin-dashboard-card {
        min-height: 72px;
        padding: 16px;
    }

    .admin-dashboard-card-with-icon {
        align-items: center;
        gap: 14px;
    }

    .admin-dashboard-card-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 17px;
    }

    .admin-dashboard-card-large {
        grid-column: auto;
    }
}
.opening-status-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 20px;
}

.opening-status-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 18px;
    border-radius: 18px;
    border: 1px solid #eadbbf;

    background: #fffaf2;
    box-shadow: 0 10px 24px rgba(68, 42, 20, 0.06);
}

.opening-status-open {
    background: #f1faef;
    border-color: #bfe3bc;
}

.opening-status-closed {
    background: #fffaf2;
    border-color: #eadbbf;
}

.opening-status-next {
    background: #fff6e8;
    border-color: #e8c89a;
}

.opening-status-dot {
    width: 16px;
    height: 16px;
    min-width: 16px;
    margin-top: 5px;
    border-radius: 999px;
}

.opening-status-open .opening-status-dot {
    background: #2f7d3b;
}

.opening-status-closed .opening-status-dot {
    background: #991b1b;
}

.opening-status-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    background: #f3e5d5;

    font-size: 19px;
}

.opening-status-content strong {
    display: block;
    font-size: 19px;
    color: #3b2616;
    margin-bottom: 6px;
}

.opening-status-content span {
    display: block;
    font-size: 15px;
    color: #3f342a;
    line-height: 1.45;
}

.opening-status-content small {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #7a6654;
    line-height: 1.4;
}

@media (min-width: 760px) {
    .opening-status-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.contact-form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #4b3a2a;
}

.contact-check input {
    margin-top: 3px;
}

.contact-check a {
    color: #6b4f3a;
    font-weight: 800;
}

@media (min-width: 700px) {
    .contact-form {
        max-width: 680px;
    }
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.product-detail-image-card {
    background: #fffaf2;
    border: 1px solid #eadbbf;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.product-detail-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.product-detail-image-placeholder {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3e5d5;
    color: #6b4f3a;
    font-weight: 700;
}

.product-detail-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-detail-category {
    color: #a66a2c;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-detail-title {
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
    color: #3b2616;
}

.product-detail-description {
    color: #5f5147;
    line-height: 1.7;
    font-size: 16px;
}

.product-detail-price {
    font-size: 34px;
    font-weight: 800;
    color: #2f241d;
}

.product-detail-unit {
    color: #7a6654;
    font-size: 15px;
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

@media (min-width: 900px) {

    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }

    .product-detail-image {
        height: 520px;
    }

    .product-detail-image-placeholder {
        height: 520px;
    }

    .product-detail-actions {
        flex-direction: row;
    }

}
.shop-product-title-link {
    color: inherit;
    text-decoration: none;
}

.shop-product-title-link:hover {
    color: #8b5e3c;
}

.shop-product-more-link {
    width: 100%;
    margin-top: 10px;
}
.admin-opening-time-group {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.admin-opening-time-group span {
    font-size: 13px;
    font-weight: 800;
    color: #7a4b2a;
}

@media (min-width: 900px) {
    .admin-opening-time-group {
        grid-template-columns: 110px 1fr 1fr;
        align-items: center;
    }
}
.shop-date-groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.shop-date-group-title {
    padding: 14px 16px;
    border-radius: 18px;
    background: #f4eadf;
    color: #3b2616;
    font-size: 18px;
    font-weight: 900;
}
.order-summary-date {
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: #f4eadf;
    color: #3b2616;
    font-size: 17px;
    font-weight: 800;
}

.order-summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #ececec;
}

.order-summary-product {
    font-weight: 700;
}

.order-summary-quantity {
    font-weight: 800;
    white-space: nowrap;
}
.content-page-card {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px;
    border-radius: 28px;
    background: #fffaf2;
    border: 1px solid #eadbbf;
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.content-page-card p {
    color: #5f5147;
    line-height: 1.7;
    font-size: 16px;
}

.content-page-highlight {
    margin-top: 24px;
    padding: 18px;
    border-radius: 18px;
    background: #f4eadf;
    color: #3b2616;
    line-height: 1.7;
}

.content-page-highlight a {
    color: inherit;
    font-weight: 800;
}

.content-page-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
}

@media (min-width: 700px) {
    .content-page-actions {
        flex-direction: row;
    }
}
.public-logo-image {
    max-height: 72px;
    width: auto;
    display: block;
}
.admin-logo-preview {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 18px;
    background: #fffaf2;
    border: 1px solid #eadbbf;
    margin-bottom: 12px;
}

.admin-logo-preview img {
    max-width: 220px;
    max-height: 100px;
    width: auto;
    height: auto;
    display: block;
}
.admin-color-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: center;
}

.admin-color-input {
    min-height: 42px;
    padding: 4px;
}
.admin-order-edit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 12px 18px;
    border-radius: 14px;
    background: var(--theme-button, #c9822b);
    color: #ffffff !important;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    transition: 0.2s ease;
}

.admin-order-edit-button:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.admin-order-edit-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.admin-order-edit-controls {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 760px) {
    .admin-order-edit-item {
        grid-template-columns: 1fr 220px;
        align-items: center;
    }
}
.landing-hero {
    padding: 72px 0;
    background: var(--theme-secondary);
}

.landing-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.landing-hero-content h1 {
    max-width: 780px;
    margin: 0;
    color: #2f2118;
    font-size: clamp(38px, 7vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.landing-hero-content p {
    max-width: 640px;
    color: #5f5147;
    font-size: 18px;
    line-height: 1.8;
}

.landing-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.landing-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.landing-trust-row span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.75);
    color: #3b2616;
    font-weight: 800;
    font-size: 14px;
}

.landing-hero-card {
    padding: 28px;
    border-radius: 30px;
    background: #3b2616;
    color: #fff;
    box-shadow: 0 24px 55px rgba(0,0,0,0.16);
}

.landing-hero-card strong {
    display: block;
    font-size: 24px;
    margin-bottom: 12px;
}

.landing-hero-card p {
    color: #f4eadf;
    line-height: 1.8;
}

.landing-hero-card a {
    color: #fff;
    font-weight: 900;
}

.landing-section {
    padding: 70px 0;
}

.landing-section-muted {
    background: #fff8ed;
}

.landing-section-dark {
    background: #3b2616;
    color: #fff;
}

.landing-section-dark .section-kicker {
    color: #f2c078;
}

.landing-section-dark h2 {
    margin: 0 0 16px;
    font-size: clamp(30px, 5vw, 54px);
    line-height: 1.05;
}

.landing-section-dark p {
    color: #f4eadf;
    line-height: 1.8;
}

.landing-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
}

.landing-card {
    padding: 26px;
    border-radius: 26px;
    background: #fffaf2;
    border: 1px solid #eadbbf;
    box-shadow: 0 14px 30px rgba(0,0,0,0.05);
}

.landing-card span {
    display: inline-flex;
    margin-bottom: 14px;
    font-size: 34px;
}

.landing-card h3 {
    margin: 0 0 10px;
    color: #3b2616;
    font-size: 22px;
}

.landing-card p {
    margin: 0;
    color: #5f5147;
    line-height: 1.7;
}

.landing-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.landing-step-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.landing-step-box div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
}

.landing-step-box strong {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2c078;
    color: #3b2616;
}

.landing-step-box span {
    font-weight: 800;
}

.landing-highlight-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.landing-highlight-card {
    padding: 30px;
    border-radius: 30px;
    background: #fffaf2;
    border: 1px solid #eadbbf;
    box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.landing-highlight-card h2 {
    margin: 0 0 14px;
    color: #3b2616;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
}

.landing-highlight-card p {
    color: #5f5147;
    line-height: 1.8;
    margin-bottom: 22px;
}

.landing-automat {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
}

.landing-automat p {
    max-width: 760px;
    color: #5f5147;
    line-height: 1.8;
}

.landing-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 760px) {
    .landing-hero-actions {
        flex-direction: row;
    }

    .landing-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .landing-highlight-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .landing-hero-grid {
        grid-template-columns: 1.35fr 0.65fr;
    }

    .landing-split {
        grid-template-columns: 1fr 0.75fr;
    }

    .landing-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .landing-automat {
        grid-template-columns: 1fr auto;
    }
}
.landing-map {
    margin-top: 22px;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid #eadbbf;
    min-height: 260px;
}

.landing-map iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}
.admin-password-wrap {
    position: relative;
}

.admin-password-wrap .form-input {
    padding-right: 48px;
}

.admin-password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: #3b2616;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.admin-login-card .button-primary {
    background: #c9822b;
    color: #ffffff !important;
    border: 1px solid #a66a2c;
    min-height: 44px;
    min-width: 120px;
    text-align: center;
}

.admin-login-card .button-primary:hover {
    background: #a66a2c;
    color: #ffffff !important;
}
/* Theme aus Admin-Design global anwenden */
body {
    font-family: var(--theme-font) !important;
}

.public-page {
    background: var(--theme-secondary) !important;
}

.public-header {
    background: var(--theme-secondary) !important;
    border-bottom-color: rgba(0, 0, 0, 0.08) !important;
}

.public-logo,
.public-logo span,
.section-kicker,
.home-kicker {
    color: var(--theme-primary) !important;
}

.public-nav a:hover {
    color: var(--theme-primary) !important;
}

.landing-hero {
    background: var(--theme-secondary) !important;
}

.landing-hero-card {
    background: var(--theme-primary) !important;
}

.button-primary,
button.button-primary,
a.button-primary {
    background: var(--theme-button) !important;
    border-color: var(--theme-button) !important;
}

.button-primary:hover,
button.button-primary:hover,
a.button-primary:hover {
    background: var(--theme-primary) !important;
    border-color: var(--theme-primary) !important;
}

.public-footer {
    background: var(--theme-primary) !important;
}
.content-page-hero-image {
    margin-bottom: 24px;
    border-radius: 24px;
    overflow: hidden;
    background: #f4eadf;
}

.content-page-hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

.content-page-text {
    color: #5f5147;
    line-height: 1.7;
    font-size: 16px;
}
.partyservice-hero {
    padding: 42px 0;
    background: linear-gradient(135deg, #fffaf2, #f4eadf);
}

.partyservice-hero-card {
    display: grid;
    gap: 22px;
    padding: 28px;
    border-radius: 30px;
    background: #fffaf2;
    border: 1px solid #eadbbf;
    box-shadow: 0 14px 34px rgba(0,0,0,0.07);
}

.partyservice-hero-card h1 {
    margin: 0;
    color: #6b4f3a;
    font-size: 34px;
    line-height: 1.12;
}

.partyservice-hero-card p {
    margin: 18px 0 0;
    color: #5f5147;
    font-size: 17px;
    line-height: 1.7;
}

.partyservice-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.partyservice-contact-box {
    display: grid;
    gap: 10px;
    padding: 20px;
    border-radius: 22px;
    background: #f4eadf;
    color: #3b2616;
    line-height: 1.6;
}

.partyservice-contact-box strong {
    font-size: 20px;
    color: #6b4f3a;
}

.partyservice-contact-box a {
    font-weight: 800;
    color: inherit;
}

.partyservice-section-head {
    max-width: 780px;
    margin-bottom: 22px;
}

.partyservice-offer-grid,
.partyservice-menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.partyservice-offer-card,
.partyservice-menu-card,
.partyservice-final-card {
    background: #fffaf2;
    border: 1px solid #eadbbf;
    border-radius: 24px;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.partyservice-offer-card h3,
.partyservice-menu-card h3,
.partyservice-final-card h2 {
    margin: 0 0 12px;
    color: #6b4f3a;
    font-size: 24px;
    line-height: 1.2;
}

.partyservice-offer-card p,
.partyservice-final-card p {
    margin: 0 0 16px;
    color: #5f5147;
    line-height: 1.7;
    font-size: 16px;
}

.partyservice-offer-card ul,
.partyservice-menu-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 9px;
}

.partyservice-offer-card li,
.partyservice-menu-card li {
    position: relative;
    padding-left: 24px;
    color: #3b3029;
    line-height: 1.45;
}

.partyservice-offer-card li::before,
.partyservice-menu-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--theme-button);
}

.partyservice-final-card {
    max-width: 860px;
    margin: 0 auto;
}

@media (min-width: 700px) {
    .partyservice-hero-card {
        grid-template-columns: 1.4fr 0.8fr;
        align-items: center;
        padding: 42px;
    }

    .partyservice-hero-card h1 {
        font-size: 48px;
    }

    .partyservice-hero-actions {
        flex-direction: row;
    }

    .partyservice-offer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partyservice-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.admin-partyservice-image-grid {
    display: grid;
    gap: 18px;
}

.admin-partyservice-image-box {
    padding: 16px;
    border-radius: 18px;
    background: #faf7f2;
    border: 1px solid #eadfce;
}

.partyservice-hero-image,
.partyservice-offer-image,
.partyservice-impression-image {
    overflow: hidden;
    background: #f4eadf;
}

.partyservice-hero-image {
    border-radius: 26px;
    min-height: 260px;
}

.partyservice-hero-image img,
.partyservice-offer-image img,
.partyservice-impression-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partyservice-offer-image {
    height: 210px;
    margin: -22px -22px 20px;
    border-radius: 24px 24px 0 0;
}

.partyservice-impression-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 26px;
}

.partyservice-impression-image {
    height: 240px;
    border-radius: 24px;
    box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

@media (min-width: 700px) {
    .admin-partyservice-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partyservice-impression-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.shop-date-toggle {
    width: 100%;
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.shop-date-toggle-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #fffaf2;
    color: #3b2616;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
}

.shop-date-toggle-open .shop-date-toggle-icon {
    transform: rotate(45deg);
}

.shop-date-accordion-content {
    display: none;
}

.shop-date-accordion-content-open {
    display: grid;
    gap: 18px;
}
.shop-filter-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 18px 0 22px;
    padding: 16px;
    border-radius: 22px;
    background: #fffaf2;
    border: 1px solid #eadbbf;
    box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.shop-filter-field {
    display: grid;
    gap: 7px;
}

.shop-filter-field label {
    color: #6b4f3a;
    font-size: 13px;
    font-weight: 800;
}

.shop-filter-field input,
.shop-filter-field select {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid #dcc9ad;
    background: #ffffff;
    color: #3b3029;
    font-size: 15px;
}

@media (min-width: 700px) {
    .shop-filter-bar {
        grid-template-columns: 1.4fr 0.8fr;
        align-items: end;
    }
}
.section-text {
    max-width: 760px;
    color: #5f5147;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-section {
    background: linear-gradient(135deg, #fffaf2, #f4eadf);
}

.about-card {
    display: grid;
    gap: 24px;
    padding: 28px;
    border-radius: 30px;
    background: #fffaf2;
    border: 1px solid #eadbbf;
    box-shadow: 0 14px 34px rgba(0,0,0,0.07);
}

.about-card .section-title {
    margin-bottom: 18px;
}

.about-values {
    display: grid;
    gap: 14px;
}

.about-values div {
    padding: 18px;
    border-radius: 22px;
    background: #f4eadf;
    border: 1px solid #eadbbf;
}

.about-values strong {
    display: block;
    color: #6b4f3a;
    font-size: 20px;
    margin-bottom: 6px;
}

.about-values span {
    display: block;
    color: #5f5147;
    line-height: 1.5;
}

.weekly-offers-hero {
    padding: 42px 0;
    background: linear-gradient(135deg, #fffaf2, #f4eadf);
}

.weekly-offers-hero-card {
    padding: 28px;
    border-radius: 30px;
    background: #fffaf2;
    border: 1px solid #eadbbf;
    box-shadow: 0 14px 34px rgba(0,0,0,0.07);
}

.weekly-offers-hero-card h1 {
    margin: 0;
    color: #6b4f3a;
    font-size: 34px;
    line-height: 1.12;
}

.weekly-offers-hero-card p {
    margin: 18px 0 0;
    color: #5f5147;
    font-size: 17px;
    line-height: 1.7;
}

.weekly-offers-page {
    min-height: 70vh;
    background: #fffaf2;
}

.weekly-offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.weekly-offer-card {
    background: #fffaf2;
    border: 1px solid #eadbbf;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.weekly-offer-image-wrap {
    background: #f4eadf;
}

.weekly-offer-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.weekly-offer-content {
    padding: 22px;
}

.weekly-offer-content h2 {
    margin: 0 0 12px;
    color: #6b4f3a;
    font-size: 24px;
    line-height: 1.2;
}

.weekly-offer-content p {
    margin: 0 0 16px;
    color: #5f5147;
    line-height: 1.7;
    font-size: 16px;
}

.weekly-offer-price {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 15px;
    border-radius: 999px;
    background: #6b4f3a;
    color: #ffffff;
    font-weight: 900;
}

.weekly-offer-empty {
    background: #fffaf2;
    border: 1px solid #eadbbf;
    border-radius: 24px;
    padding: 24px;
    color: #5f5147;
    box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .about-card {
        grid-template-columns: 1.3fr 0.7fr;
        align-items: center;
        padding: 36px;
    }

    .weekly-offer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .weekly-offer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.weekly-offer-card {
    width: 100%;
    max-width: 360px;
}

.weekly-offer-card .shop-product-image {
    height: 210px;
}

.weekly-offer-card .shop-product-content {
    padding: 18px;
}

.weekly-offer-card .shop-cart-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: center;
}

.weekly-offer-card .shop-quantity-input {
    width: 100%;
    min-height: 42px;
}

.weekly-offer-card .button-primary {
    width: 100%;
    min-height: 42px;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .weekly-offer-grid,
    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(280px, 360px));
        justify-content: start;
    }
}

@media (min-width: 1100px) {
    .weekly-offer-grid,
    .shop-product-grid {
        grid-template-columns: repeat(3, minmax(280px, 360px));
    }
}
.shop-page-header {
    margin-bottom: 28px;
}

.cart-empty-card {
    max-width: 680px;
    padding: 34px;
    border-radius: 28px;
    background: #fffaf2;
    border: 1px solid #eadbbf;
    box-shadow: 0 14px 34px rgba(0,0,0,0.07);
}

.cart-empty-icon {
    font-size: 42px;
    margin-bottom: 14px;
}

.cart-empty-card h2 {
    margin: 0 0 10px;
    color: #6b4f3a;
    font-size: 28px;
}

.cart-empty-card p {
    margin: 0;
    color: #5f5147;
    line-height: 1.7;
}

.cart-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.premium-cart-layout {
    display: grid;
    gap: 24px;
}

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

.premium-cart-item {
    display: grid;
    gap: 18px;
    padding: 22px;
    border-radius: 26px;
    background: #fffaf2;
    border: 1px solid #eadbbf;
    box-shadow: 0 10px 26px rgba(0,0,0,0.05);
}

.premium-cart-item-title {
    margin: 10px 0 8px;
    color: #6b4f3a;
    font-size: 24px;
}

.premium-cart-item-meta {
    margin: 0 0 16px;
    color: #5f5147;
}

.premium-cart-quantity-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 10px;
    align-items: center;
}

.premium-cart-quantity-input {
    min-height: 42px;
}

.premium-cart-item-side {
    display: grid;
    gap: 12px;
    align-content: start;
}

.premium-cart-item-sum {
    font-size: 24px;
    font-weight: 900;
    color: #2f1a0f;
}

.premium-cart-summary-card {
    padding: 26px;
    border-radius: 28px;
    background: #fffaf2;
    border: 1px solid #eadbbf;
    box-shadow: 0 14px 34px rgba(0,0,0,0.07);
}

.premium-cart-summary-card h2 {
    margin: 0 0 18px;
    color: #6b4f3a;
    font-size: 28px;
}

.premium-cart-total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px;
    margin-bottom: 20px;
    border-radius: 18px;
    background: #f4eadf;
    color: #5f5147;
}

.premium-cart-total-row strong {
    color: #2f1a0f;
    font-size: 24px;
}

.premium-cart-submit {
    width: 100%;
}

.premium-cart-note {
    margin: 16px 0 0;
    color: #5f5147;
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 900px) {
    .premium-cart-layout {
        grid-template-columns: minmax(0, 1fr) 380px;
        align-items: start;
    }

    .premium-cart-summary {
        position: sticky;
        top: 24px;
    }

    .premium-cart-item {
        grid-template-columns: minmax(0, 1fr) 160px;
    }
}
.opening-status-grid-main {
    display: block;
}

.opening-status-grid-main .opening-status-card {
    width: 100%;
    min-height: 96px;
    padding: 24px 26px;
    align-items: center;
}

.opening-status-grid-main .opening-status-next {
    margin-top: 14px;
}

.opening-status-grid-main .opening-status-content strong {
    font-size: 22px;
    line-height: 1.2;
}

.opening-status-grid-main .opening-status-content span,
.opening-status-grid-main .opening-status-content small {
    font-size: 15px;
}

.opening-status-grid-main .opening-status-dot {
    width: 16px;
    height: 16px;
}
.phone-float {
    position: fixed;
    right: 22px;
    bottom: 88px;
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #1f6f2a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.phone-float:hover {
    color: #ffffff;
    text-decoration: none;
}
.automat-section {
    display: grid;
    gap: 32px;
}

.automat-hero {
    background: #ffffff;
    border-radius: 26px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(70, 45, 20, 0.08);
}

.automat-hero .section-title {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.automat-hero p {
    font-size: 17px;
    line-height: 1.7;
    max-width: 760px;
    margin: 0;
}

.automat-help-box {
    background: linear-gradient(135deg, #f5ead9, #efe1cc);
    border-radius: 22px;
    padding: 28px;
}

.automat-help-box strong {
    display: block;
    font-size: 20px;
    margin-bottom: 10px;
}

.automat-help-box span {
    display: block;
    line-height: 1.6;
}

.automat-help-box a {
    display: inline-block;
    margin-top: 18px;
    padding: 12px 18px;
    background: #2f6f1e;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
}

.automat-location-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.automat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.automat-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 14px 40px rgba(70, 45, 20, 0.06);
    height: 100%;
}

.automat-card h3 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 24px;
    color: #6b4428;
}

.automat-card ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.8;
    columns: 1;
}

.automat-card li {
    margin-bottom: 6px;
}

.automat-info-card p {
    line-height: 1.8;
    font-size: 15px;
}

@media (max-width: 1100px) {
    .automat-hero {
        grid-template-columns: 1fr;
    }

    .automat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .automat-hero {
        padding: 26px;
    }

    .automat-hero .section-title {
        font-size: 30px;
    }

    .automat-hero p {
        font-size: 15px;
    }
}
.automat-hero .section-kicker {
    display: block;
    margin-bottom: 14px;
    line-height: 1.3;
}

.automat-hero .section-title {
    padding-top: 4px;
}
@media (max-width: 699px) {
    .public-header-inner {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding: 14px 20px;
    }

    .public-logo-image {
        max-height: 76px;
        max-width: 230px;
    }

    .mobile-menu-button {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        font-size: 28px;
        flex-shrink: 0;
        margin-left: auto;
    }

    .public-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 110px;
        background: #fffaf2;
        border: 1px solid #eadbbf;
        border-radius: 18px;
        padding: 16px;
        box-shadow: 0 14px 34px rgba(0,0,0,0.12);
        z-index: 50;
    }
}
.shop-shipping-badge {
    display: inline-flex;
    align-items: center;
    margin: 10px 0 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e9f8ea;
    color: #1f6f2a;
    font-size: 13px;
    font-weight: 800;
}
.public-nav-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    font-size: 18px;
    line-height: 1;
    text-decoration: none;
}

.public-nav-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #c9202d;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 16px;
    text-align: center;
}
.public-nav-more {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.public-nav-more-button {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}

.public-nav-more-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 190px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    background: #fffaf2;
    border: 1px solid rgba(120, 80, 45, 0.18);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(60, 35, 20, 0.16);
    z-index: 50;
}

.public-nav-more:hover .public-nav-more-menu,
.public-nav-more:focus-within .public-nav-more-menu {
    display: flex;
}

.public-nav-more-menu a {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    white-space: nowrap;
}

.public-nav-more-menu a:hover {
    background: #f3eadc;
}

@media (max-width: 520px) {
    .public-nav-more {
        display: contents;
    }

    .public-nav-more-button {
        display: none;
    }

    .public-nav-more-menu {
        position: static;
        display: contents;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }
}
.gift-basket-shop-banner,
.gift-basket-cart-banner {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    margin: 18px 0 26px;
    min-height: 190px;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(90deg, #fffaf2 0%, #fff4df 48%, #ead0aa 100%);
    border: 1px solid rgba(120, 80, 45, 0.18);
    box-shadow: 0 18px 40px rgba(60, 35, 20, 0.10);
}

.gift-basket-banner-content {
    position: relative;
    z-index: 2;
    max-width: 430px;
    padding: 28px 30px;
}

.gift-basket-shop-kicker {
    display: inline-block;
    margin-bottom: 8px;
    color: #c9202d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gift-basket-shop-banner h2 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.15;
    color: #3a2418;
}

.gift-basket-shop-banner p {
    margin: 0 0 18px;
    color: #6b5844;
    font-size: 15px;
    line-height: 1.5;
}

.gift-basket-cart-banner strong {
    display: block;
    margin-bottom: 10px;
    color: #3a2418;
    font-size: 26px;
    line-height: 1.15;
}

.gift-basket-cart-banner span {
    display: block;
    margin-bottom: 18px;
    color: #6b5844;
    font-size: 15px;
    line-height: 1.5;
}

.gift-basket-banner-image {
    flex: 1;
    min-width: 280px;
    background-image:
        linear-gradient(90deg, rgba(255, 250, 242, 0.95) 0%, rgba(255, 250, 242, 0.45) 28%, rgba(255, 250, 242, 0) 55%),
        url('/assets/img/gift-basket.jpg');
    background-size: cover;
    background-position: center right;
}

@media (max-width: 720px) {
    .gift-basket-shop-banner,
    .gift-basket-cart-banner {
        flex-direction: column;
        min-height: 0;
    }

    .gift-basket-banner-content {
        padding: 22px;
    }

    .gift-basket-banner-image {
        min-width: 0;
        min-height: 180px;
        width: 100%;
        background-position: center;
    }

    .gift-basket-shop-banner h2,
    .gift-basket-cart-banner strong {
        font-size: 22px;
    }
}
@media (max-width: 520px) {
    .public-header {
        position: sticky;
        top: 0;
        z-index: 200;
    }

    .public-header-inner {
        position: relative;
    }

    .mobile-menu-button {
        width: 64px;
        height: 64px;
        border-radius: 22px;
        border: 1px solid rgba(120, 80, 45, 0.18);
        background: #fffaf2;
        color: #3a2418;
        font-size: 34px;
        font-weight: 800;
        box-shadow: 0 16px 34px rgba(60, 35, 20, 0.14);
    }

    .public-nav {
        position: absolute;
        top: calc(100% + 14px);
        left: 0;
        right: 0;
        display: none;
        padding: 18px;
        border-radius: 28px;
        background: rgba(255, 250, 242, 0.98);
        border: 1px solid rgba(120, 80, 45, 0.18);
        box-shadow: 0 24px 60px rgba(60, 35, 20, 0.22);
        z-index: 300;
    }

    .public-nav.public-nav-open {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .public-nav a,
    .public-nav-more-menu a {
        display: flex;
        align-items: center;
        min-height: 52px;
        padding: 0 16px;
        border-radius: 16px;
        color: #2d2018;
        font-size: 21px;
        font-weight: 850;
        text-decoration: none;
    }

    .public-nav a:hover,
    .public-nav-more-menu a:hover {
        background: #f3eadc;
    }

    .public-nav-more {
        display: contents;
    }

    .public-nav-more-button {
        display: none;
    }

    .public-nav-more-menu {
        position: static;
        display: contents;
        padding: 0;
        border: 0;
        box-shadow: none;
        background: transparent;
    }

    .public-nav-cart {
        justify-content: center;
        margin-top: 10px;
        min-height: 58px;
        background: #1f6f20;
        color: #fff !important;
        font-size: 28px;
        box-shadow: 0 14px 28px rgba(31, 111, 32, 0.22);
    }

    .public-nav-cart::after {
        content: "Warenkorb";
        margin-left: 10px;
        font-size: 18px;
        font-weight: 850;
    }

    .public-nav-cart-count {
        top: 8px;
        right: 18px;
        background: #c9202d;
        color: #fff;
    }
}
.mobile-menu-button {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    user-select: none;
}