﻿
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #4b2e32;
    color: #172033;
    font-family: "Poppins", sans-serif;
}

.hero {
    height: 600px;
}
.content {
    max-width: 720px;
    margin: -36px auto 0;
    background: #fbf6ee;
    border-radius: 32px 32px 0 0;
    padding: 28px 16px 36px;
    min-height: 100vh;
}

section[id^="cat-"] {
    scroll-margin-top: 75px;
}

.welcome {
    text-align: center;
    margin-bottom: 22px;
}

    .welcome small {
        color: #c9922e;
        font-weight: 800;
        letter-spacing: 3px;
    }

    .welcome h2 {
        font-family: "Playfair Display", serif;
        font-size: 36px;
        margin: 6px 0 0;
        color: #1c1c1c;
    }

.tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0 18px;
    position: sticky;
    top: 0;
    background: #fbf6ee;
    z-index: 20;
    scrollbar-width: none;
}

    .tabs::-webkit-scrollbar {
        display: none;
    }

    .tabs a {
        white-space: nowrap;
        text-decoration: none;
        color: #172033;
        background: #fff;
        padding: 12px 22px;
        border-radius: 999px;
        box-shadow: 0 8px 22px rgba(0,0,0,.08);
        font-weight: 800;
        transition: .25s;
    }

        .tabs a.active {
            background: #c9922e;
            color: #fff;
        }
.footer {
    margin-top: 40px;
    padding: 35px 20px;
    text-align: center;
    background: #111;
    border-radius: 24px;
}

.footer-brand {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.footer-tagline {
    color: #c9922e;
    font-style: italic;
    margin-bottom: 22px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: #c9922e;
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: .3s;
}

    .review-btn:hover {
        transform: translateY(-2px);
    }

.footer-note {
    margin-top: 22px;
    color: #a9a9a9;
    font-size: 13px;
}
.category-title {
    text-align:center;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 800;
    margin: 26px 0 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #d8aa55;
    color: #111827;
}

.product-card {
    display: grid;
    grid-template-columns: 125px 1fr auto;
    align-items: center;
    background: #fff;
    border-radius: 22px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.product-img-wrap {
    width: 125px;
    height: 118px;
    background: #f1e7da;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 14px 14px;
}

    .product-info h3 {
        font-size: 20px;
        line-height: 1.18;
        margin: 0 0 7px;
        font-weight: 800;
        color: #111827;
    }

    .product-info p {
        color: #687386;
        margin: 0;
        font-size: 14px;
        line-height: 1.35;
    }

.price {
    margin-right: 14px;
    background: #132033;
    color: #fff;
    padding: 12px 15px;
    border-radius: 14px;
    font-weight: 900;
    font-size: 18px;
    white-space: nowrap;
    box-shadow: inset 0 -3px 0 rgba(255,255,255,.08);
}

.footer {
    margin-top: 35px;
    background: linear-gradient(135deg, #151515, #24201c);
    color: white;
    border-radius: 22px;
    padding: 24px;
    text-align: center;
}

    .footer span {
        color: #ffffff;
        font-weight: 900;
    }
.footer-note {
    margin-top: 20px;
    color: #b9b9b9;
    font-size: 13px;
    line-height: 1.8;
}
#loader {
    position: fixed;
    inset: 0;
    background: #111;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .6s ease;
}

.loader-content {
    width: 90%;
    text-align: center;
}

    .loader-content h1 {
        color: #d6a23a;
        font-size: clamp(24px, 7vw, 42px);
        font-family: "Courier New", monospace;
        white-space: normal;
        line-height: 1.3;
        overflow: hidden;
    }

.loader-hide {
    opacity: 0;
    visibility: hidden;
}

.image-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    z-index: 999999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

    .image-modal img {
        max-width: 95%;
        max-height: 90vh;
        border-radius: 16px;
    }

.close-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.product-img {
    cursor: zoom-in;
    transition: .25s;
}

    .product-img:hover {
        transform: scale(1.05);
    }
.language-switch {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 14px 0 22px;
}

.lang-btn {
    border: none;
    padding: 9px 18px;
    border-radius: 999px;
    background: #ffffff;
    color: #172033;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    cursor: pointer;
}

    .lang-btn.active {
        background: #c9922e;
        color: #fff;
    }
.wifi-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.wifi-title {
    color: #c9922e;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 10px;
}

.wifi-name {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
}

.wifi-password {
    margin-top: 10px;
    display: inline-block;
    background: #c9922e;
    padding: 10px 18px;
    border-radius: 12px;
    font-family: monospace;
    font-size: 18px;
    cursor: pointer;
    transition: .25s;
}

    .wifi-password:hover {
        background: #ececec;
    }

.wifi-copy-text {
    margin-top: 8px;
    color: #999;
    font-size: 12px;
}
.simple-order-card {
    display: grid;
    grid-template-columns: 82px 1fr 46px;
    align-items: center;
    gap: 18px;
    margin: 12px 0 24px;
    padding: 18px;
    background: #fff;
    border: 1px solid rgba(201,146,46,.35);
    border-radius: 28px;
    text-decoration: none;
    color: #111827;
    box-shadow: 0 16px 38px rgba(0,0,0,.10);
}

.simple-order-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff4d8;
    color: #c9922e;
    font-size: 42px;
}

.simple-order-content h3 {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    color: #1c1c1c;
}

.simple-order-content p {
    margin: 6px 0 12px;
    font-size: 14px;
    color: #6b7280;
}

.simple-order-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fbf6ee;
    color: #111827;
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
}

.simple-order-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c9922e;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(201,146,46,.35);
    transition: .25s;
}

.simple-order-card:hover .simple-order-arrow {
    transform: rotate(-12deg) scale(1.08);
}
.simple-order-card:active {
    transform: scale(.98);
}

@media (max-width: 576px) {
    .simple-order-card {
        grid-template-columns: 62px 1fr 40px;
        gap: 12px;
        padding: 14px;
        border-radius: 22px;
    }

    .simple-order-icon {
        width: 54px;
        height: 54px;
        font-size: 28px;
    }

    .simple-order-content h3 {
        font-size: 21px;
    }

    .simple-order-content p {
        font-size: 12px;
        margin-bottom: 9px;
    }

    .simple-order-phone {
        font-size: 13px;
        padding: 7px 12px;
    }

    .simple-order-arrow {
        width: 40px;
        height: 40px;
        font-size: 23px;
    }
}
@media (max-width: 576px) {
    .hero {
        height: 200px;
        background-position: center;
    }

    .content {
        margin-top: -28px;
        padding: 24px 14px 32px;
    }

    .welcome h2 {
        font-size: 30px;
    }

    .tabs a {
        padding: 11px 20px;
        font-size: 15px;
    }

    .category-title {
        font-size: 28px;
    }

    .product-card {
        grid-template-columns: 112px 1fr;
        position: relative;
        min-height: 122px;
    }

    .product-img-wrap {
        width: 112px;
        height: 122px;
    }

    .product-info {
        padding: 13px 72px 13px 14px;
    }

        .product-info h3 {
            font-size: 15px;
        }

        .product-info p {
            font-size: 13px;
        }

    .price {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        font-size: 14px;
        padding: 8px 10px;
        border-radius: 13px;
    }
}
.payment-card {
    margin-top: 24px;
    padding: 24px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #211b18, #151312);
    border: 1px solid rgba(214, 157, 42, .35);
    box-shadow: 0 14px 35px rgba(0,0,0,.28);
    text-align: center;
}

.payment-title {
    color: #d69d2a;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 16px;
}

.payment-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.payment-badge {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(214, 157, 42, .14);
    border: 1px solid rgba(214, 157, 42, .45);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}