*{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body, html {
            min-height: 100%;
        }

        body {
            background:
                radial-gradient(circle at center, rgba(0,0,0,0.55), rgba(0,0,0,0.96)),
                url("../images/coffee-bg.png") no-repeat center center fixed;
            background-size: cover;
            color: #ffffff;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        body.frontend-menu-open {
            overflow: hidden;
        }

        .page {
            min-height: 100vh;
            padding: 28px 20px 60px;
            background: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.92));
        }

        .frontend-light {
            background: #ffffff;
            color: #151515;
        }

        .frontend-light .page {
            position: relative;
            background: #ffffff;
            overflow: hidden;
        }

        .frontend-light .page::before {
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 100vh;
            background:
                radial-gradient(circle at center, rgba(0,0,0,0.48), rgba(0,0,0,0.94)),
                url("../images/coffee-bg.png") no-repeat center center/cover;
            z-index: 0;
        }

        .frontend-light .top-menu,
        .frontend-light .container {
            position: relative;
            z-index: 1;
        }

        .frontend-light .top-menu {
            z-index: 1000;
        }

        .frontend-light .header,
        .frontend-light .product-hero {
            color: #ffffff;
        }

        .frontend-light:not(.home-page) .header {
            min-height: calc(100vh - 116px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .top-menu {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            margin-bottom: 46px;
            font-size: 0.78rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            position: relative;
            z-index: 1000;
        }

        .menu-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 26px;
            flex-wrap: wrap;
        }

        .menu-backdrop {
            display: none;
        }

        .menu-toggle {
            display: none;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 999px;
            background: rgba(255,255,255,0.08);
            color: #ffffff;
            padding: 10px 15px;
            font-size: 0.74rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
        }

        .menu-toggle-bars {
            display: grid;
            gap: 4px;
            width: 18px;
        }

        .menu-toggle-bars span {
            display: block;
            height: 2px;
            border-radius: 999px;
            background: currentColor;
            transition: 0.25s ease;
        }

        .top-menu.is-open .menu-toggle-bars span:nth-child(1) {
            transform: translateY(6px) rotate(45deg);
        }

        .top-menu.is-open .menu-toggle-bars span:nth-child(2) {
            opacity: 0;
        }

        .top-menu.is-open .menu-toggle-bars span:nth-child(3) {
            transform: translateY(-6px) rotate(-45deg);
        }

        .menu-links a {
            color: rgba(255,255,255,0.68);
            transition: 0.3s ease;
            position: relative;
        }

        .menu-links a:hover,
        .menu-links a.active {
            color: #ffffff;
        }

        .menu-links a::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -6px;
            width: 0;
            height: 1px;
            background: rgba(255,255,255,0.75);
            transition: 0.3s ease;
            transform: translateX(-50%);
        }

        .menu-links a:hover::after,
        .menu-links a.active::after {
            width: 100%;
        }

        .menu-links .login-link {
            padding: 7px 16px;
            border: 1px solid rgba(255,255,255,0.35);
            border-radius: 999px;
        }

        .menu-links .login-link:hover {
            background: rgba(255,255,255,0.12);
        }

        .container {
            width: 100%;
            max-width: 1180px;
            margin: 0 auto;
        }

        .header {
            text-align: center;
            margin-bottom: 42px;
        }

        .logo {
            width: 130px;
            margin-bottom: 22px;
        }

        .tagline {
            font-size: 0.75rem;
            letter-spacing: 4px;
            text-transform: uppercase;
            opacity: 0.6;
            margin-bottom: 14px;
        }

        h1 {
            font-size: 3rem;
            line-height: 1.2;
            margin-bottom: 14px;
        }

        .intro {
            max-width: 720px;
            margin: 0 auto;
            opacity: 0.78;
            line-height: 1.8;
            font-size: 1rem;
        }

        .filter-row {
            display: flex;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 32px;
        }

        .filter-pill {
            padding: 9px 17px;
            border-radius: 999px;
            border: 1px solid rgba(255,255,255,0.14);
            background: rgba(255,255,255,0.07);
            color: rgba(255,255,255,0.72);
            font-size: 0.82rem;
        }

        .filter-pill.active {
            background: #ffffff;
            color: #111111;
            font-weight: 600;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 50px;
        }

        .product-card {
            background: rgba(255,255,255,0.075);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 26px;
            overflow: hidden;
            backdrop-filter: blur(12px);
            transition: 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.10);
        }

        .product-image {
            display: block;
            height: 200px;
            background: url("../images/coffee-bg.png") no-repeat center center/cover;
            position: relative;
            color: inherit;
        }

        .product-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(0,0,0,0.10), rgba(0,0,0,0.75));
        }

        .product-status {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(255,255,255,0.88);
            color: #111111;
            font-size: 0.72rem;
            font-weight: 600;
        }

        .product-body {
            padding: 24px;
        }

        .badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 14px;
        }

        .badge {
            padding: 5px 11px;
            border-radius: 999px;
            background: rgba(255,255,255,0.10);
            color: rgba(255,255,255,0.76);
            font-size: 0.72rem;
        }

        .product-body h2 {
            font-size: 1.25rem;
            margin-bottom: 10px;
        }

        .product-body p {
            opacity: 0.68;
            line-height: 1.7;
            font-size: 0.88rem;
            margin-bottom: 18px;
        }

        .meta-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 11px;
            margin-bottom: 18px;
        }

        .meta-box {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 15px;
            padding: 12px;
        }

        .meta-box span {
            display: block;
            font-size: 0.68rem;
            opacity: 0.48;
            margin-bottom: 5px;
        }

        .meta-box strong {
            font-size: 0.82rem;
        }

        .progress-wrap {
            margin-bottom: 20px;
        }

        .progress-info {
            display: flex;
            justify-content: space-between;
            font-size: 0.78rem;
            opacity: 0.7;
            margin-bottom: 8px;
        }

        .progress-bar {
            height: 8px;
            border-radius: 999px;
            background: rgba(255,255,255,0.12);
            overflow: hidden;
        }

        .progress-bar div {
            height: 100%;
            border-radius: 999px;
            background: rgba(255,255,255,0.78);
        }

        .card-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .btn-primary,
        .btn-secondary {
            display: inline-block;
            border-radius: 999px;
            padding: 11px 17px;
            font-size: 0.82rem;
            transition: 0.3s ease;
        }

        .btn-primary {
            background: #ffffff;
            color: #111111;
            font-weight: 600;
        }

        .btn-secondary {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.14);
            color: #ffffff;
        }

        .btn-primary:hover,
        .btn-secondary:hover {
            transform: translateY(-1px);
        }

        .info-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 20px;
        }

        .info-card {
            background: rgba(255,255,255,0.075);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 24px;
            padding: 28px;
            backdrop-filter: blur(12px);
        }

        .info-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .info-card p {
            opacity: 0.7;
            line-height: 1.8;
            font-size: 0.92rem;
        }

        .footer-note {
            text-align: center;
            margin-top: 46px;
            opacity: 0.45;
            font-size: 0.78rem;
        }

        @media (max-width: 1050px) {
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            h1 {
                font-size: 2.4rem;
            }
        }

        @media (max-width: 700px) {
            .page {
                padding: 24px 15px 45px;
            }

            .top-menu {
                align-items: stretch;
                justify-content: flex-start;
                font-size: 0.68rem;
                margin-bottom: 34px;
                position: relative;
                z-index: 1000;
            }

            .menu-toggle {
                display: inline-flex;
                align-self: flex-start;
                position: relative;
                z-index: 1003;
            }

            .menu-links {
                position: fixed;
                top: 0;
                bottom: 0;
                left: 0;
                z-index: 1002;
                width: min(82vw, 310px);
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 0;
                padding: 78px 18px 24px;
                border-right: 1px solid rgba(255,255,255,0.12);
                background: linear-gradient(180deg, #111111, #050505);
                backdrop-filter: blur(14px);
                overflow-y: auto;
                overflow-x: hidden;
                transform: translateX(-100%);
                transition: 0.3s ease;
                box-shadow: 24px 0 45px rgba(0,0,0,0.32);
            }

            .top-menu.is-open .menu-links {
                transform: translateX(0);
            }

            .menu-links a {
                padding: 13px 12px;
                border-radius: 12px;
                letter-spacing: 1.3px;
            }

            .menu-links a::after {
                display: none;
            }

            .menu-links a:hover,
            .menu-links a.active {
                background: rgba(255,255,255,0.10);
            }

            .menu-links .login-link {
                margin-top: 6px;
                text-align: center;
            }

            .menu-backdrop {
                position: fixed;
                inset: 0;
                z-index: 1001;
                border: 0;
                background: rgba(0,0,0,0.65);
                cursor: pointer;
            }

            .top-menu.is-open .menu-backdrop {
                display: block;
            }

            .menu-links::-webkit-scrollbar {
                width: 6px;
            }

            .menu-links::-webkit-scrollbar-track {
                background: transparent;
            }

            .menu-links::-webkit-scrollbar-thumb {
                background: rgba(255,255,255,0.16);
                border-radius: 10px;
            }

            .products-grid,
            .info-section {
                grid-template-columns: 1fr;
            }

            .logo {
                width: 110px;
            }

            h1 {
                font-size: 1.9rem;
            }

            .intro {
                font-size: 0.9rem;
            }

            .product-body {
                padding: 20px;
            }

            .meta-grid {
                grid-template-columns: 1fr;
            }
        }
        .product-hero {
    margin-bottom: 34px;
}

.hero-image {
    min-height: 480px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: end;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
}

.hero-content {
    padding: 42px;
    max-width: 850px;
}

.hero-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.hero-description,
.rich-text {
    opacity: 0.72;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1.6fr 0.7fr;
    gap: 24px;
}

.content-card,
.sticky-card {
    background: rgba(255,255,255,0.075);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
}

.content-card h2,
.sticky-card h3 {
    margin-bottom: 14px;
}

.stats-grid,
.units-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.stat-box,
.unit-card,
.summary-item {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    padding: 16px;
}

.stat-box span,
.summary-item span {
    display: block;
    opacity: 0.48;
    font-size: 0.72rem;
    margin-bottom: 7px;
}

.unit-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 10px 0;
}

.unit-meta span {
    font-size: 0.72rem;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.09);
}

.unit-price {
    margin: 10px 0;
    font-weight: 600;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
}

.gallery-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 10px;
    background: rgba(0,0,0,0.65);
    font-size: 0.78rem;
}

.gallery-caption strong,
.gallery-caption span {
    display: block;
}

.gallery-caption span {
    margin-top: 3px;
    opacity: 0.78;
}

.sticky-card {
    position: sticky;
    top: 24px;
}

.full-width-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
}

@media (max-width: 900px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .sticky-card {
        position: relative;
        top: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .hero-content {
        padding: 26px;
    }

    .hero-image {
        min-height: 390px;
    }

    .stats-grid,
    .units-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.frontend-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.frontend-form-group {
    margin-bottom: 18px;
}

.frontend-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    opacity: 0.75;
}

.frontend-form-group input,
.frontend-form-group textarea,
.frontend-form-group select {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    padding: 13px 15px;
    outline: none;
}

.frontend-form-group select option {
    background: #111111;
    color: #ffffff;
}

.frontend-form-group input::placeholder,
.frontend-form-group textarea::placeholder {
    color: rgba(255,255,255,0.36);
}

.frontend-form-group input:focus,
.frontend-form-group textarea:focus,
.frontend-form-group select:focus {
    border-color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.11);
}

.form-error {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    color: #ffb4b4;
}

.alert-success {
    background: rgba(34,197,94,0.14);
    border: 1px solid rgba(34,197,94,0.25);
    color: #bbf7d0;
    padding: 14px 16px;
    border-radius: 14px;
    margin-bottom: 18px;
    font-size: 0.88rem;
}

@media (max-width: 700px) {
    .frontend-form-grid {
        grid-template-columns: 1fr;
    }
}

.home-hero {
    position: relative;
    min-height: calc(100vh - 116px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-bottom: 55px;
    color: #ffffff;
}

.home-logo-bg {
    position: absolute;
    width: 55vw;
    max-width: 700px;
    opacity: 0.10;
    animation: float 6s ease-in-out infinite;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.home-logo-main {
    width: 18vw;
    max-width: 220px;
    min-width: 120px;
    margin-bottom: 25px;
}

.home-section {
    margin-bottom: 60px;
}

.frontend-light .products-grid,
.frontend-light .details-grid,
.frontend-light .info-section,
.frontend-light .home-section,
.frontend-light .content-card,
.frontend-light .footer-note {
    color: #151515;
}

.frontend-light .filter-pill {
    background: #f4f6f8;
    border-color: #dde4eb;
    color: #55616b;
}

.frontend-light .filter-pill.active {
    background: #151515;
    color: #ffffff;
}

.frontend-light .section-heading p,
.frontend-light .home-section .tagline,
.frontend-light .info-card p,
.frontend-light .footer-note,
.frontend-light .frontend-form-group label,
.frontend-light .rich-text,
.frontend-light .product-body p,
.frontend-light .unit-card p,
.frontend-light .info-box p {
    color: #4f5a62;
    opacity: 1;
}

.frontend-light .product-card,
.frontend-light .info-card,
.frontend-light .content-card,
.frontend-light .sticky-card {
    background: #ffffff;
    border: 1px solid #e3e8ee;
    box-shadow: 0 18px 45px rgba(18, 28, 38, 0.08);
    backdrop-filter: none;
}

.frontend-light .product-card:hover {
    background: #ffffff;
}

.frontend-light .product-card .badge,
.frontend-light .content-card .badge,
.frontend-light .sticky-card .badge,
.frontend-light .meta-box,
.frontend-light .stat-box,
.frontend-light .unit-card,
.frontend-light .summary-item,
.frontend-light .info-box,
.frontend-light .document-item {
    background: #f5f7f9;
    border-color: #e4e9ef;
    color: #27313a;
}

.frontend-light .progress-info,
.frontend-light .meta-box span,
.frontend-light .stat-box span,
.frontend-light .summary-item span,
.frontend-light .info-box small,
.frontend-light .document-item span {
    color: #66727c;
    opacity: 1;
}

.frontend-light .progress-bar {
    background: #e7ebef;
}

.frontend-light .progress-bar div {
    background: #171717;
}

.frontend-light .product-card .btn-primary,
.frontend-light .content-card .btn-primary,
.frontend-light .sticky-card .btn-primary {
    background: #151515;
    color: #ffffff;
}

.frontend-light .product-card .btn-secondary,
.frontend-light .content-card .btn-secondary,
.frontend-light .sticky-card .btn-secondary,
.frontend-light .btn-small {
    background: #ffffff;
    border-color: #d5dce3;
    color: #151515;
}

.frontend-light .frontend-form-group input,
.frontend-light .frontend-form-group textarea,
.frontend-light .frontend-form-group select {
    border-color: #d7dee5;
    background: #ffffff;
    color: #151515;
}

.frontend-light .frontend-form-group select option {
    background: #ffffff;
    color: #151515;
}

.frontend-light .frontend-form-group input::placeholder,
.frontend-light .frontend-form-group textarea::placeholder {
    color: #8a959e;
}

.frontend-light .frontend-form-group input:focus,
.frontend-light .frontend-form-group textarea:focus,
.frontend-light .frontend-form-group select:focus {
    border-color: #151515;
    background: #ffffff;
}

.frontend-light .form-error {
    color: #b42318;
}

.frontend-light .alert-success {
    background: #ecfdf3;
    border-color: #abefc6;
    color: #067647;
}

.frontend-light:not(.home-page) .product-hero .hero-image {
    min-height: calc(100vh - 116px);
}

.frontend-light .unit-meta span {
    background: #eef2f6;
    color: #3e4952;
}

.frontend-light .gallery-item {
    border-color: #e3e8ee;
}

.about-grid,
.contact-grid,
.documents-list {
    display: grid;
    gap: 24px;
}

.about-grid,
.contact-grid {
    grid-template-columns: repeat(2, 1fr);
}

.documents-list {
    margin-top: 18px;
}

.document-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 18px;
    padding: 16px;
}

.document-item span {
    display: block;
    margin-top: 5px;
    font-size: 0.78rem;
    opacity: 0.58;
}

.documents-list .btn-small {
    white-space: nowrap;
}

.info-box {
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 24px;
}

.info-box small {
    display: block;
    opacity: 0.45;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.72rem;
}

.info-box h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-box p {
    opacity: 0.72;
    line-height: 1.8;
}

.btn-small {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 0.78rem;
    transition: 0.3s ease;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 34px;
}

.section-heading h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.section-heading p {
    opacity: 0.72;
    line-height: 1.8;
}

@keyframes float {
    0% { transform: translateY(-8px); }
    50% { transform: translateY(8px); }
    100% { transform: translateY(-8px); }
}

@media (max-width: 700px) {
    .home-hero {
        min-height: 70vh;
    }

    .home-logo-bg {
        width: 85vw;
    }

    .home-logo-main {
        width: 35vw;
        max-width: 160px;
    }

    .section-heading h2 {
        font-size: 1.7rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .document-item {
        align-items: flex-start;
        flex-direction: column;
    }
}
