/* =========================================================
   NURAY PARFUM — TAM STYLE.CSS
   PREMIUM MAĞAZA + KATEQORİYA + TAYMER + SEVİMLİLƏR
   ========================================================= */


/* =========================================================
   RƏNGLƏR
   ========================================================= */

:root {
    --bg: #06172c;
    --bg-dark: #041222;
    --bg-deep: #03101f;
    --card: #0b2948;
    --card-light: #0d3157;

    --gold: #d4af37;
    --gold-light: #f5dc83;

    --text: #ffffff;
    --muted: #a9b7c8;

    --success: #62d695;
    --warning: #ffcf66;
    --danger: #ff7c89;

    --line: rgba(212, 175, 55, 0.28);

    --shadow:
        0 20px 50px rgba(0, 0, 0, 0.35);

    --radius-small: 12px;
    --radius-medium: 20px;
    --radius-large: 28px;
}


/* =========================================================
   ÜMUMİ QAYDALAR
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    color: var(--text);

    background:
        linear-gradient(
            180deg,
            var(--bg-dark),
            #071c33 45%,
            var(--bg-dark)
        );

    line-height: 1.6;
}


img {
    display: block;
    max-width: 100%;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: none;
}


main {
    min-height: 70vh;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    min-height: 78px;

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

    gap: 30px;

    padding: 0 5%;

    background:
        rgba(3, 14, 27, 0.96);

    border-bottom:
        1px solid var(--line);

    position: sticky;
    top: 0;

    z-index: 1000;
}


.brand {
    display: flex;
    align-items: center;

    gap: 12px;
}


.brand-mark {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    color: var(--gold-light);

    border:
        2px solid var(--gold);

    border-radius: 50%;

    font-size: 22px;
    font-weight: 900;
}


.brand strong {
    display: block;

    color: var(--gold-light);

    letter-spacing: 1.3px;
}


.brand small {
    display: block;

    color: var(--muted);

    font-size: 11px;
}


.main-nav {
    display: flex;

    gap: 8px;
}


.main-nav a {
    padding: 10px 14px;

    border-radius: 10px;

    font-size: 14px;
    font-weight: 700;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}


.main-nav a:hover {
    color: var(--gold-light);

    background:
        rgba(212, 175, 55, 0.08);
}


.cart-link {
    display: flex;
    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    color: var(--bg-dark);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    border-radius: 14px;

    font-weight: 900;
}


.cart-link span {
    width: 24px;
    height: 24px;

    display: grid;
    place-items: center;

    color: var(--gold-light);
    background: var(--bg-dark);

    border-radius: 50%;

    font-size: 12px;
}


/* =========================================================
   DÜYMƏLƏR
   ========================================================= */

.btn {
    min-height: 50px;

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

    padding: 13px 24px;

    border-radius: 28px;

    font-weight: 900;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.btn:hover {
    transform: translateY(-2px);
}


.btn-gold {
    color: var(--bg-dark);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );
}


.btn-outline {
    color: var(--gold-light);

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid var(--line);
}


.btn.wide {
    width: 100%;
}


/* =========================================================
   ANA SƏHİFƏ HERO
   ========================================================= */

.hero {
    min-height: 640px;

    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    align-items: center;

    gap: 60px;

    padding: 70px 6%;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(212, 175, 55, 0.15),
            transparent 28%
        );
}


.eyebrow,
.page-hero > span,
.section-title span,
.cta span {
    color: var(--gold-light);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.7px;
}


.hero h1 {
    max-width: 700px;

    margin: 14px 0 20px;

    font-size:
        clamp(
            52px,
            7vw,
            88px
        );

    line-height: 1.02;
}


.hero-copy p {
    max-width: 620px;

    margin-bottom: 28px;

    color: var(--muted);

    font-size: 20px;
}


.hero-actions {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


.hero-card,
.detail-image,
.detail-copy,
.cart-items,
.cart-summary,
.content-page,
.payment-notice,
.success-box,
.checkout-wrap,
.admin-panel,
.admin-auth {
    padding: 24px;

    background:
        linear-gradient(
            145deg,
            var(--card-light),
            var(--bg-dark)
        );

    border:
        1px solid var(--line);

    border-radius:
        var(--radius-large);

    box-shadow:
        var(--shadow);
}


.hero-card img {
    width: 100%;
    height: 470px;

    object-fit: contain;

    background:
        var(--bg-deep);

    border-radius: 22px;
}


.hero-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    padding: 18px 8px 4px;
}


.hero-card strong,
.product-content strong,
.detail-price {
    color: var(--gold-light);
}


/* =========================================================
   ÜSTÜNLÜKLƏR
   ========================================================= */

.benefits {
    max-width: 1240px;

    margin:
        -35px auto 80px;

    padding: 0 20px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


.benefits article,
.contact-cards article {
    padding: 25px;

    background:
        linear-gradient(
            145deg,
            var(--card-light),
            var(--bg-dark)
        );

    border:
        1px solid var(--line);

    border-radius:
        var(--radius-medium);

    box-shadow:
        var(--shadow);
}


.benefits span {
    font-size: 28px;
}


.benefits h3,
.contact-cards h2 {
    margin: 10px 0 5px;

    color: var(--gold-light);
}


.benefits p,
.contact-cards p {
    color: var(--muted);

    font-size: 14px;
}


/* =========================================================
   ÜMUMİ BÖLMƏ
   ========================================================= */

.section {
    padding: 85px 5%;
}


.section-title {
    max-width: 740px;

    margin: 0 auto 45px;

    text-align: center;
}


.section-title h2 {
    margin-top: 8px;

    font-size:
        clamp(
            34px,
            5vw,
            52px
        );
}


/* =========================================================
   KATEQORİYALAR
   ========================================================= */

.category-menu {
    max-width: 1180px;

    margin: 0 auto;

    padding:
        0 20px 30px;

    display: flex;
    justify-content: center;

    gap: 10px;

    flex-wrap: wrap;
}


.category-menu a {
    padding: 11px 17px;

    color: var(--gold-light);

    background:
        rgba(255, 255, 255, 0.03);

    border:
        1px solid var(--line);

    border-radius: 22px;

    font-weight: 800;

    transition:
        color 0.25s ease,
        background 0.25s ease;
}


.category-menu a:hover,
.category-menu a.active {
    color: var(--bg-dark);

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );
}


/* =========================================================
   MƏHSUL KARTLARI
   ========================================================= */

.product-grid {
    max-width: 1280px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(270px, 1fr)
        );

    gap: 28px;
}


.product-card {
    overflow: hidden;

    background:
        linear-gradient(
            150deg,
            var(--card-light),
            var(--bg-dark)
        );

    border:
        1px solid var(--line);

    border-radius: 24px;

    box-shadow:
        var(--shadow);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}


.product-card:hover {
    transform:
        translateY(-9px);

    border-color:
        rgba(212, 175, 55, 0.65);
}


.product-image {
    position: relative;

    padding: 16px;

    background:
        var(--bg-deep);
}


.product-image img {
    width: 100%;
    height: 330px;

    object-fit: contain;

    border-radius: 18px;
}


.badge {
    position: absolute;
    top: 26px;
    left: 26px;

    z-index: 2;

    padding: 7px 12px;

    color: var(--text);

    background:
        linear-gradient(
            135deg,
            #ff8125,
            #d94b00
        );

    border-radius: 18px;

    font-size: 12px;
    font-weight: 900;
}


.badge.inline {
    position: static;

    display: inline-block;

    margin-bottom: 12px;
}


.product-content {
    padding: 23px;
}


.product-content small {
    color: var(--gold-light);

    font-weight: 800;
}


.product-content h3 {
    margin: 7px 0;

    font-size: 23px;
}


.product-content p {
    min-height: 50px;

    color: var(--muted);
}


.product-content > strong {
    display: block;

    margin-top: 16px;

    color: var(--gold-light);

    font-size: 27px;
}


/* =========================================================
   SEVİMLİLƏR DÜYMƏSİ
   ========================================================= */

.detail-image,
.product-image {
    position: relative;
}


.favorite-toggle {
    width: 48px !important;
    height: 48px !important;

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

    position: absolute !important;
    top: 20px !important;
    right: 20px !important;

    z-index: 20;

    padding: 0 !important;

    color: var(--gold-light) !important;

    background:
        rgba(3, 16, 31, 0.94) !important;

    border:
        1px solid
        rgba(212, 175, 55, 0.6) !important;

    border-radius: 50% !important;

    font-size: 29px !important;
    line-height: 1 !important;

    cursor: pointer;

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.45),
        0 0 17px
        rgba(212, 175, 55, 0.18);

    transition:
        transform 0.25s ease,
        color 0.25s ease,
        background 0.25s ease;
}


.favorite-toggle:hover {
    color: var(--bg-dark) !important;

    background:
        var(--gold-light) !important;

    transform:
        scale(1.1);
}


.favorite-toggle.active {
    color: #a4001b !important;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        ) !important;

    border-color:
        var(--gold-light) !important;
}


.card-favorite {
    top: 18px !important;
    right: 18px !important;
}


/* =========================================================
   BAXIŞ VƏ SƏBƏTƏ ƏLAVƏ SAYI
   ========================================================= */

.social-proof,
.product-proof {
    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}


.social-proof {
    margin: 18px 0;
}


.product-proof {
    margin: 14px 0;
}


.social-proof span,
.product-proof span {
    padding: 8px 11px;

    color: var(--muted);

    background:
        rgba(255, 255, 255, 0.04);

    border:
        1px solid
        rgba(212, 175, 55, 0.2);

    border-radius: 12px;

    font-size: 13px;
}


/* =========================================================
   STOK XƏBƏRDARLIĞI
   ========================================================= */

.low-stock,
.stock-warning {
    color:
        var(--warning) !important;

    background:
        rgba(255, 174, 0, 0.08) !important;

    border-color:
        rgba(255, 207, 102, 0.35) !important;
}


.in-stock {
    color:
        var(--success) !important;
}


.out-stock {
    color:
        var(--danger) !important;
}


.stock-warning {
    margin: 12px 0;

    padding: 10px 12px;

    border:
        1px solid;

    border-radius: 12px;

    font-size: 13px;
    font-weight: 800;
}


/* =========================================================
   KAMPANİYA TAYMERİ
   ========================================================= */

.campaign-countdown {
    margin: 18px 0;

    padding: 14px 16px;

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

    gap: 16px;

    flex-wrap: wrap;

    background:
        rgba(3, 16, 31, 0.78);

    border:
        1px solid
        rgba(212, 175, 55, 0.35);

    border-radius: 15px;
}


.campaign-countdown span {
    color: var(--muted);
}


.campaign-countdown strong {
    color: var(--gold-light);

    font-size: 17px;
}


.campaign-countdown.finished strong {
    color: var(--danger);
}


.compact-countdown {
    margin: 12px 0;

    padding: 10px 12px;
}


.compact-countdown strong {
    font-size: 14px;
}


/* =========================================================
   KÖHNƏ QİYMƏT
   ========================================================= */

.old-price {
    display: block;

    margin-bottom: 3px;

    color: var(--muted);

    font-size: 17px;

    text-decoration:
        line-through;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
    max-width: 1180px;

    margin:
        20px auto 90px;

    padding: 38px 45px;

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

    gap: 25px;

    background:
        linear-gradient(
            135deg,
            #123a61,
            var(--bg-dark)
        );

    border:
        1px solid var(--line);

    border-radius: 26px;

    box-shadow:
        var(--shadow);
}


/* =========================================================
   SƏHİFƏ BAŞLIĞI
   ========================================================= */

.page-hero {
    padding:
        95px 20px 70px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(212, 175, 55, 0.12),
            transparent 35%
        );
}


.page-hero.compact {
    padding-bottom: 40px;
}


.page-hero h1 {
    margin: 8px 0;

    font-size:
        clamp(
            42px,
            6vw,
            70px
        );
}


.page-hero p,
.lead,
.detail-tabs p,
.content-page p,
.payment-notice p {
    max-width: 720px;

    margin: 0 auto;

    color: var(--muted);

    font-size: 18px;
}


/* =========================================================
   MƏHSUL DETAL SƏHİFƏSİ
   ========================================================= */

.product-detail {
    max-width: 1240px;

    margin: 0 auto;

    padding: 75px 24px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 60px;
}


.detail-image img {
    width: 100%;
    max-height: 650px;

    object-fit: contain;

    background:
        var(--bg-deep);

    border-radius: 22px;
}


.detail-copy h1 {
    font-size:
        clamp(
            38px,
            5vw,
            58px
        );

    line-height: 1.1;
}


.lead {
    margin: 18px 0;
}


.detail-meta {
    display: flex;

    gap: 12px;

    margin: 20px 0;

    flex-wrap: wrap;
}


.detail-meta span {
    padding: 9px 13px;

    color: var(--gold-light);

    border:
        1px solid var(--line);

    border-radius: 12px;
}


.detail-price {
    margin: 20px 0;

    color: var(--gold-light);

    font-size: 38px;
    font-weight: 900;
}


.buy-form {
    display: flex;
    align-items: flex-end;

    gap: 12px;

    flex-wrap: wrap;
}


.buy-form label,
.checkout-form label,
.admin-form label {
    display: grid;

    gap: 7px;

    color: var(--gold-light);

    font-weight: 700;
}


.buy-form input {
    width: 90px;
}


.buy-form button:disabled {
    opacity: 0.5;

    cursor: not-allowed;
}


/* =========================================================
   MƏHSUL MƏLUMAT KARTLARI
   ========================================================= */

.detail-tabs {
    max-width: 1180px;

    margin:
        0 auto 80px;

    padding: 0 24px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 25px;
}


.detail-tabs article {
    padding: 35px;

    background:
        linear-gradient(
            145deg,
            var(--card-light),
            var(--bg-dark)
        );

    border:
        1px solid var(--line);

    border-radius: 24px;
}


.detail-tabs h2,
.content-page h2 {
    margin-bottom: 12px;

    color: var(--gold-light);
}


/* =========================================================
   HAQQIMIZDA, ÖDƏNİŞ, UĞURLU SİFARİŞ
   ========================================================= */

.content-page,
.payment-notice,
.success-box,
.checkout-wrap {
    max-width: 900px;

    margin:
        20px auto 90px;
}


/* =========================================================
   ƏLAQƏ
   ========================================================= */

.contact-cards {
    max-width: 1100px;

    margin:
        20px auto 90px;

    padding: 0 20px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.contact-cards article {
    text-align: center;
}


.contact-cards span {
    font-size: 34px;
}


/* =========================================================
   SƏBƏT
   ========================================================= */

.cart-layout {
    max-width: 1180px;

    margin:
        0 auto 90px;

    padding: 0 20px;

    display: grid;

    grid-template-columns:
        1.5fr 0.7fr;

    align-items: start;

    gap: 26px;
}


.cart-item {
    display: grid;

    grid-template-columns:
        90px
        1fr
        90px
        120px;

    align-items: center;

    gap: 18px;

    padding: 16px 0;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);
}


.cart-item img {
    width: 90px;
    height: 100px;

    object-fit: contain;

    background:
        var(--bg-deep);

    border-radius: 12px;
}


input,
textarea,
select {
    padding: 12px 14px;

    color: var(--text);

    background:
        var(--bg-deep);

    border:
        1px solid var(--line);

    border-radius: 12px;

    outline: none;
}


.cart-summary > div {
    display: flex;
    justify-content: space-between;

    margin: 16px 0;

    color: var(--muted);
}


.cart-summary .total {
    padding-top: 16px;

    border-top:
        1px solid var(--line);
}


/* =========================================================
   FORMALAR
   ========================================================= */

.checkout-form,
.admin-form {
    display: grid;

    gap: 18px;
}


.checkout-form textarea,
.admin-form textarea {
    min-height: 110px;

    resize: vertical;
}


.checkout-form fieldset {
    padding: 18px;

    border:
        1px solid var(--line);

    border-radius: 15px;
}


.radio,
.check {
    display: flex !important;
    align-items: center;

    gap: 10px !important;

    color: var(--text) !important;
}


.radio input,
.check input {
    width: auto;
}


.alert {
    margin-bottom: 18px;

    padding: 14px 16px;

    background:
        rgba(228, 82, 98, 0.15);

    border:
        1px solid
        rgba(228, 82, 98, 0.45);

    border-radius: 12px;
}


.success-box {
    text-align: center;
}


.success-box > div {
    width: 80px;
    height: 80px;

    display: grid;
    place-items: center;

    margin:
        0 auto 20px;

    color: var(--bg-dark);
    background: var(--gold);

    border-radius: 50%;

    font-size: 42px;
    font-weight: 900;
}


.empty-state {
    padding: 45px 20px;

    text-align: center;
}


.empty-state p {
    margin-top: 8px;

    color: var(--muted);
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 55px 5%;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr;

    gap: 35px;

    background: #020b15;

    border-top:
        1px solid var(--line);
}


.site-footer a {
    display: block;

    margin: 8px 0;

    color: var(--muted);
}


.site-footer strong {
    color: var(--gold-light);

    font-size: 20px;
}


.site-footer p {
    color: var(--muted);
}


/* =========================================================
   ADMİN PANEL
   ========================================================= */

.admin-body {
    background:
        var(--bg-dark);
}


.admin-header {
    min-height: 72px;

    padding: 0 4%;

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

    background: #020b15;

    border-bottom:
        1px solid var(--line);
}


.admin-header strong {
    color: var(--gold-light);
}


.admin-header nav {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


.admin-main {
    max-width: 1300px;

    margin: 0 auto;

    padding: 45px 20px;
}


.admin-stats {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}


.admin-stats article {
    padding: 25px;

    background: var(--card);

    border:
        1px solid var(--line);

    border-radius: 18px;
}


.admin-stats strong {
    display: block;

    color: var(--gold-light);

    font-size: 38px;
}


.admin-auth {
    max-width: 460px;

    margin:
        100px auto;
}


.admin-auth form {
    display: grid;

    gap: 16px;

    margin-top: 20px;
}


.panel-title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 20px;
}


.table-wrap {
    overflow-x: auto;
}


table {
    width: 100%;

    border-collapse: collapse;
}


th,
td {
    padding: 14px;

    text-align: left;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);
}


th {
    color: var(--gold-light);
}


.thumb {
    width: 60px;
    height: 65px;

    object-fit: contain;

    background:
        var(--bg-deep);

    border-radius: 8px;
}


.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;
}


/* =========================================================
   PLANŞET
   ========================================================= */

@media (max-width: 900px) {

    .main-nav {
        display: none;
    }


    .hero,
    .product-detail,
    .detail-tabs,
    .cart-layout {
        grid-template-columns: 1fr;
    }


    .hero {
        text-align: center;
    }


    .hero-copy p {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-actions {
        justify-content: center;
    }


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

        margin-top: 30px;
    }


    .contact-cards {
        grid-template-columns: 1fr;
    }


    .site-footer {
        grid-template-columns: 1fr;

        text-align: center;
    }

}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 600px) {

    .site-header {
        padding:
            0 16px;
    }


    .brand small {
        display: none;
    }


    .brand strong {
        font-size: 14px;
    }


    .brand-mark {
        width: 42px;
        height: 42px;
    }


    .hero {
        padding:
            50px 18px;
    }


    .hero h1 {
        font-size: 46px;
    }


    .hero-card img {
        height: 380px;
    }


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


    .section {
        padding:
            60px 16px;
    }


    .cta {
        margin:
            10px 16px 60px;

        padding: 28px;

        flex-direction: column;

        text-align: center;
    }


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


    .cart-item {
        grid-template-columns:
            70px 1fr;
    }


    .cart-item input,
    .cart-item strong {
        grid-column: 2;
    }


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


    .favorite-toggle {
        width: 44px !important;
        height: 44px !important;

        top: 16px !important;
        right: 16px !important;

        font-size: 26px !important;
    }


    .social-proof {
        flex-direction: column;
    }


    .campaign-countdown {
        align-items: flex-start;
        flex-direction: column;
    }

}
/* =========================================================
   NURAY PARFUM LOQOSU
   ========================================================= */
.brand-logo {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(212, 175, 55, 0.18));
}

.brand-text {
    display: block;
}

@media (max-width: 560px) {
    .brand-logo {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }
}

/* VARİANT 2: WhatsApp, əlaqə forması, rəylər */
.whatsapp-btn{display:inline-flex;align-items:center;justify-content:center;margin-top:12px;background:#1f9d55;color:#fff!important;border:1px solid rgba(255,255,255,.15)}
.whatsapp-btn:hover{filter:brightness(1.08);transform:translateY(-2px)}
.whatsapp-note{display:block;margin-top:8px;color:var(--muted)}
.rating-summary{display:flex;align-items:center;gap:8px;margin:10px 0 14px}.stars{color:var(--gold);letter-spacing:2px}.rating-summary small{color:var(--muted)}
.reviews-section,.contact-form-section{padding:70px 5%}.reviews-layout{display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:start}.review-list{display:grid;gap:15px}.review-card,.review-form,.contact-form{padding:24px;background:rgba(255,255,255,.035);border:1px solid rgba(212,175,55,.22);border-radius:18px}.review-card>div{display:flex;justify-content:space-between;gap:15px;align-items:center}.review-card p{color:var(--muted);line-height:1.7}.review-card small{color:var(--muted)}
.review-form,.contact-form{display:grid;gap:16px}.review-form label,.contact-form label{display:grid;gap:8px;font-weight:700}.review-form input,.review-form select,.review-form textarea,.contact-form input,.contact-form textarea{width:100%;padding:13px 14px;color:var(--text);background:rgba(0,0,0,.25);border:1px solid rgba(212,175,55,.28);border-radius:12px;font:inherit}.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.form-success,.form-error{padding:13px 15px;border-radius:12px;font-weight:700}.form-success{color:#b7f7cc;background:rgba(31,157,85,.15);border:1px solid rgba(31,157,85,.4)}.form-error{color:#ffd0d0;background:rgba(190,40,40,.15);border:1px solid rgba(190,40,40,.4)}
@media(max-width:800px){.reviews-layout,.form-grid{grid-template-columns:1fr}.reviews-section,.contact-form-section{padding:45px 20px}}

/* TAM NƏZARƏT VƏ YENİ LOQO */
.brand-logo-full{width:190px;height:58px;flex-basis:190px;object-fit:contain;background:#fff;border-radius:8px;padding:3px 8px;mix-blend-mode:screen}
.permission-card{display:grid;gap:10px;padding:18px;margin-top:14px;border:1px solid rgba(212,175,55,.25);border-radius:14px;background:rgba(255,255,255,.025)}
.approval-notice{padding:14px 16px;margin-bottom:18px;border:1px solid rgba(212,175,55,.4);border-radius:12px;background:rgba(212,175,55,.1);color:var(--gold-light);font-weight:700}
.inline-approval{display:flex;gap:7px;align-items:center;flex-wrap:wrap;margin-top:8px}.inline-approval input{max-width:115px;padding:8px;border-radius:8px;border:1px solid var(--line);background:#061322;color:#fff}.inline-approval button{padding:8px 10px;border:0;border-radius:8px;cursor:pointer;background:var(--gold);font-weight:700}.inline-approval .danger-button{background:#9f2d2d;color:#fff}
.status{display:inline-block;padding:5px 9px;border-radius:999px;font-size:12px;font-weight:800}.status-approved{background:rgba(31,157,85,.18);color:#8ff0b3}.status-pending{background:rgba(212,175,55,.16);color:var(--gold-light)}.status-rejected{background:rgba(190,40,40,.18);color:#ffb0b0}
.danger-check{padding:12px;border:1px solid rgba(190,40,40,.4);border-radius:10px;background:rgba(190,40,40,.1)}
@media(max-width:700px){.brand-logo-full{width:135px;height:48px;flex-basis:135px}.admin-header{align-items:flex-start;padding-top:14px;padding-bottom:14px;gap:12px;flex-direction:column}}

/* Nuray Parfum idarə olunan header */
body{font-family:var(--site-font,Arial,sans-serif);color:var(--text-color,#fff)}
h1,h2,h3,.hero-copy strong{font-family:var(--heading-font,Georgia,serif)}
.site-header{min-height:var(--header-h,84px);background:var(--header-bg,#061525);border-bottom-color:var(--header-border,#d4af37)}
.site-header a{color:var(--text-color,#fff)}
.brand{display:flex;align-items:center;flex-shrink:0;padding:4px 8px}
.brand-symbol,.brand-name-image{height:auto;object-fit:contain;display:block;max-height:72px}
.brand-center{margin-left:auto;margin-right:auto}.brand-right{margin-left:auto}
.cart-link,.btn-gold,.eyebrow{color:var(--accent-color,#d4af37)}
@media(max-width:850px){.brand-symbol{max-width:52px!important}.brand-name-image{max-width:125px!important}.site-header{height:auto}.main-nav{order:3;width:100%;justify-content:center}}

/* SUPERADMIN VİZUAL REDAKTOR */
.visual-editor-enabled .visual-editable{position:relative;cursor:move;outline:1px dashed transparent;transition:outline-color .2s,box-shadow .2s;touch-action:none;user-select:none}
.visual-editor-enabled .visual-editable:hover{outline-color:rgba(212,175,55,.9);box-shadow:0 0 0 4px rgba(212,175,55,.10)}
.visual-editor-enabled [data-visual-type="text"]{display:table}
.visual-editor-enabled [data-visual-type="image"]{cursor:context-menu}
.visual-editor-help{position:fixed;z-index:9999;right:16px;bottom:16px;padding:10px 14px;border:1px solid rgba(212,175,55,.55);border-radius:12px;background:rgba(2,12,22,.94);color:#f2d978;font-size:13px;font-weight:700;box-shadow:0 10px 30px rgba(0,0,0,.35)}
@media(max-width:700px){.visual-editor-help{left:10px;right:10px;bottom:10px;text-align:center;font-size:12px}}

/* ===== Nuray Parfum: admin idarəli düymə rəngləri ===== */
.btn-gold,
button.btn-gold,
a.btn-gold {
  background: var(--button-bg, var(--accent-color, #d4af37));
  color: var(--button-text, #111111) !important;
  border-color: var(--button-border, var(--accent-color, #d4af37));
  border-radius: var(--button-radius, 999px);
  font-size: var(--button-font-size, 15px);
  font-weight: 800;
}
.btn-gold:hover,
button.btn-gold:hover,
a.btn-gold:hover {
  background: var(--button-hover-bg, #f2cf65);
  color: var(--button-hover-text, #000000) !important;
}
.payment-options { display:grid; gap:14px; margin:18px 0; }
.payment-option { display:block; padding:16px; border:1px solid rgba(212,175,55,.4); border-radius:14px; background:rgba(255,255,255,.025); }
.payment-option input { margin-right:10px; }
.security-note,.bank-details,.gateway-notice { padding:18px; border:1px solid rgba(212,175,55,.35); border-radius:16px; background:rgba(5,20,34,.75); margin:18px 0; }
.security-note strong,.bank-details strong { color:var(--accent-color,#d4af37); }
.status-badge { display:inline-block; padding:6px 10px; border-radius:999px; background:rgba(212,175,55,.15); border:1px solid rgba(212,175,55,.4); }
.admin-table-wrap { overflow-x:auto; }
.admin-table { width:100%; border-collapse:collapse; }
.admin-table th,.admin-table td { padding:10px; border-bottom:1px solid rgba(255,255,255,.12); text-align:left; vertical-align:top; }
.code-box { padding:12px; border:1px dashed rgba(212,175,55,.5); border-radius:10px; overflow-wrap:anywhere; background:#071626; }


/* ===== TAM ADMIN NƏZARƏTİ — DƏYƏRLƏR BÜTÜN SAYTA TƏTBİQ OLUNUR ===== */
body{
  font-family:var(--site-font,Arial,sans-serif)!important;
  font-size:var(--body-font-size,16px);
  color:var(--text-color,#fff);
}
h1,h2,h3,h4,h5,h6{font-family:var(--heading-font,Georgia,serif)}
p,.muted,.product-content p,.detail-copy p,.benefits p,.contact-cards p{color:var(--muted-color,#a9b7c8)}
.site-header{
  min-height:var(--header-h,84px)!important;
  background:var(--header-bg,#061525)!important;
  border-bottom-color:var(--header-border,#d4af37)!important;
}
.brand-symbol,.brand-name-image{
  max-width:none!important;
  max-height:none!important;
  flex:none!important;
  object-fit:contain!important;
}
.main-nav a{
  color:var(--menu-color,#fff)!important;
  font-size:var(--menu-font-size,14px)!important;
}
.main-nav a:hover{color:var(--menu-hover-color,#f5dc83)!important}
.eyebrow,.page-hero>span,.section-title span,.cta span{
  color:var(--hero-eyebrow-color,#f5dc83)!important;
  font-size:var(--hero-eyebrow-size,12px)!important;
}
.hero h1{
  color:var(--hero-title-color,#fff)!important;
  font-size:clamp(32px,7vw,var(--hero-title-size,72px))!important;
}
.hero-copy p{
  color:var(--hero-text-color,#a9b7c8)!important;
  font-size:var(--hero-text-size,20px)!important;
}
.product-content h2,.product-content h3,.product-card h2,.product-card h3{
  color:var(--product-title-color,#fff)!important;
  font-size:var(--product-title-size,18px)!important;
}
.product-content strong,.product-price,.detail-price{
  color:var(--product-price-color,#f5dc83)!important;
  font-size:var(--product-price-size,18px)!important;
}
.cart-link,.btn-gold,button.btn-gold,a.btn-gold{
  background:var(--button-bg,#e6c34f)!important;
  color:var(--button-text,#111)!important;
  border:1px solid var(--button-border,#d4af37)!important;
  border-radius:var(--button-radius,999px)!important;
  font-size:var(--button-font-size,15px)!important;
}
.cart-link:hover,.btn-gold:hover,button.btn-gold:hover,a.btn-gold:hover{
  background:var(--button-hover-bg,#f2cf65)!important;
  color:var(--button-hover-text,#000)!important;
}
@media(max-width:850px){
  .brand-symbol,.brand-name-image{max-width:none!important;max-height:none!important}
}


/* ===== 2026 Mobil menyu, kateqoriya açılan menyu və rahat redaktor ===== */
.site-header{position:sticky;top:0;z-index:1000;padding-left:max(5%,env(safe-area-inset-left));padding-right:max(5%,env(safe-area-inset-right));backdrop-filter:blur(14px)}
.nav-dropdown{position:relative;display:flex;align-items:center}.nav-home{display:flex;gap:5px;align-items:center}.dropdown-arrow{font-size:13px;transition:transform .2s}.category-dropdown{position:absolute;top:calc(100% + 18px);left:0;width:260px;padding:14px;background:#071a2c;border:1px solid rgba(212,175,55,.5);border-radius:14px;box-shadow:0 18px 45px rgba(0,0,0,.45);display:grid;gap:4px;opacity:0;visibility:hidden;transform:translateY(-8px);transition:.2s;z-index:1100}.category-dropdown:before{content:"";position:absolute;top:-20px;left:0;right:0;height:20px}.category-dropdown strong{padding:8px 10px;color:var(--accent-color);font-family:var(--heading-font)}.category-dropdown a{padding:10px;border-radius:9px}.category-dropdown a:hover{background:rgba(212,175,55,.12)}.category-dropdown .all-products-link{border-top:1px solid rgba(255,255,255,.09);margin-top:5px;color:var(--accent-color)}.nav-dropdown:hover .category-dropdown,.nav-dropdown:focus-within .category-dropdown,.nav-dropdown.open .category-dropdown{opacity:1;visibility:visible;transform:none}.nav-dropdown:hover .dropdown-arrow,.nav-dropdown.open .dropdown-arrow{transform:rotate(180deg)}
.mobile-menu-toggle{display:none;background:transparent;border:1px solid rgba(212,175,55,.45);color:#fff;border-radius:10px;font-size:24px;padding:7px 11px}.brand-symbol,.brand-name-image{max-width:none;flex:none;transition:filter .2s,transform .2s}.visual-editor-enabled .brand-symbol:hover,.visual-editor-enabled .brand-name-image:hover{filter:drop-shadow(0 0 10px rgba(245,220,131,.9));transform:scale(1.03)}
.visual-editor-help{position:fixed;left:50%;bottom:18px;transform:translateX(-50%);z-index:5000;max-width:90%;padding:10px 16px;border-radius:999px;background:#111;color:#fff;border:1px solid #d4af37;box-shadow:0 8px 30px rgba(0,0,0,.5);font-size:13px}.visual-size-panel{position:fixed;right:20px;top:110px;z-index:5100;width:270px;padding:16px;background:#071a2c;border:1px solid #d4af37;border-radius:14px;box-shadow:0 18px 45px rgba(0,0,0,.5)}.visual-size-panel label{display:grid;gap:5px;margin-top:10px}.visual-size-panel input{width:100%;padding:9px;border-radius:8px}.visual-size-panel div{display:flex;gap:8px;margin-top:12px}.visual-size-panel button{padding:8px 12px;border-radius:8px;border:1px solid #d4af37;cursor:pointer}.visual-editable{outline:1px dashed transparent;cursor:move}.visual-editable:hover{outline-color:#f5dc83}
.admin-guide{padding:14px 16px;margin-bottom:18px;background:rgba(212,175,55,.09);border:1px solid rgba(212,175,55,.35);border-radius:12px}.admin-form label small{display:block;margin-top:3px;color:#9db0c4;font-weight:400}.admin-form h2{margin-top:28px;padding-bottom:10px;border-bottom:1px solid rgba(212,175,55,.25)}
.perfume-info-section{padding:70px 5%}.perfume-info-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;max-width:1200px;margin:28px auto 0}.perfume-info-grid article{padding:22px;background:linear-gradient(145deg,rgba(9,31,51,.96),rgba(5,20,35,.96));border:1px solid rgba(212,175,55,.24);border-radius:16px;min-height:145px}.perfume-info-grid h3{margin:0 0 12px;color:var(--accent-color);font-family:var(--heading-font)}.perfume-info-grid p{margin:0;color:var(--muted-color);line-height:1.7}
@media(max-width:900px){.site-header{min-height:72px;height:auto;flex-wrap:wrap;padding-top:8px;padding-bottom:8px;gap:10px}.brand{max-width:calc(100% - 105px)}.brand-symbol{width:min(58px,var(--logo-mobile-width,58px))!important;height:min(58px,var(--logo-mobile-height,58px))!important}.brand-name-image{width:min(150px,var(--name-mobile-width,150px))!important;height:auto!important}.mobile-menu-toggle{display:block;margin-left:auto}.main-nav{display:none;order:10;width:100%;padding:12px 0;flex-direction:column;align-items:stretch;gap:2px}.main-nav.is-open{display:flex}.main-nav>a,.nav-home{padding:11px 12px;border-radius:9px}.nav-dropdown{display:block}.category-dropdown{position:static;width:auto;margin:0 10px;box-shadow:none;display:none;opacity:1;visibility:visible;transform:none}.nav-dropdown.open .category-dropdown{display:grid}.cart-link{margin-left:5px}.hero{min-height:auto;padding-top:48px}.hero h1{font-size:clamp(38px,12vw,58px)!important;line-height:1.05}.hero p{font-size:17px!important}.perfume-info-grid{grid-template-columns:1fr}.visual-editor-help{bottom:8px;border-radius:12px;width:calc(100% - 24px);text-align:center}.visual-size-panel{left:12px;right:12px;top:auto;bottom:76px;width:auto}}
@supports(padding:max(0px)){body{padding-bottom:env(safe-area-inset-bottom)}}


/* Footer əlaqə və sosial şəbəkələr */
.site-footer{display:grid;grid-template-columns:1.25fr 1fr 1fr;gap:32px;align-items:start;padding:44px 5%;background:#061525;border-top:1px solid var(--header-border,#d4af37)}
.site-footer h3{margin:0 0 14px;color:var(--accent-color,#d4af37);font-size:16px}
.site-footer p{color:var(--muted-color,#a9b7c8);margin:10px 0 0}
.footer-links,.footer-contact{display:flex;flex-direction:column;gap:10px}
.site-footer a{width:max-content;max-width:100%;color:var(--text-color,#fff);transition:.2s ease}
.site-footer a:hover{color:var(--menu-hover-color,#f5dc83);transform:translateX(3px)}
@media(max-width:760px){.site-footer{grid-template-columns:1fr;gap:26px;padding:34px 20px}.site-footer a{width:auto}}

.visual-editor-grid{display:grid;grid-template-columns:repeat(2,minmax(120px,1fr));gap:10px}.visual-size-panel textarea{min-height:70px}.visual-editable{outline:1px dashed transparent;cursor:move}.visual-editable:hover{outline-color:#f0c94d}.floating-whatsapp{position:fixed;right:20px;bottom:20px;width:58px;height:58px;border-radius:50%;display:grid;place-items:center;background:#25d366;color:white;font-size:28px;z-index:9999;box-shadow:0 8px 28px #0008;text-decoration:none}.loyalty-card{margin-top:24px;padding:24px;border:1px solid var(--accent-color);border-radius:20px;background:linear-gradient(135deg,#0a2138,#061525)}
@media(max-width:900px){.site-header{min-height:auto;padding:12px 16px;flex-wrap:wrap}.brand{max-width:70%}.brand-symbol{max-width:70px;height:auto!important}.brand-name-image{max-width:150px;height:auto!important}.main-nav{width:100%;max-height:0;overflow:hidden;display:flex;flex-direction:column;align-items:stretch;gap:0;transition:max-height .3s ease}.main-nav.is-open{max-height:520px}.main-nav>a,.nav-dropdown>.nav-home{padding:13px 8px;border-bottom:1px solid #ffffff18}.hero{grid-template-columns:1fr;padding:70px 20px 40px;min-height:auto}.hero h1{font-size:clamp(36px,11vw,64px)!important;line-height:1.04}.hero-card{max-width:100%}.product-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.visual-size-panel{left:12px!important;right:12px!important;bottom:12px!important;max-width:none!important}.visual-editor-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.brand-name-image{max-width:120px}.product-grid{grid-template-columns:1fr}.benefits{grid-template-columns:1fr 1fr}.section,.checkout-wrap{padding-left:14px;padding-right:14px}.hero-actions{flex-direction:column}.btn{width:100%;justify-content:center}.footer-contact,.footer-links,.footer-brand{min-width:100%}}

/* FINAL V3 — işlək vizual redaktor */
.visual-editor-help{position:fixed;left:14px;bottom:14px;z-index:99990;background:#061525;color:#f5dc83;border:1px solid #d4af37;border-radius:12px;padding:10px 14px;max-width:540px;font-size:13px;box-shadow:0 12px 35px rgba(0,0,0,.45)}
.visual-editable{outline:1px dashed transparent;outline-offset:5px;cursor:context-menu;transition:outline-color .2s,background .2s}
.visual-editable:hover{outline-color:#f5dc83;background:rgba(212,175,55,.08)}
.visual-size-panel{position:fixed;top:18px;right:18px;z-index:100000;width:min(390px,calc(100vw - 36px));max-height:calc(100vh - 36px);overflow:auto;background:#071827;color:#fff;border:1px solid #d4af37;border-radius:18px;padding:16px;box-shadow:0 20px 60px rgba(0,0,0,.65)}
.visual-size-panel[hidden]{display:none!important}.visual-panel-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}.visual-panel-head strong{font-size:20px;color:#f5dc83}.visual-panel-head button{border:0;background:transparent;color:#fff;font-size:30px;cursor:pointer}.visual-size-panel label{display:grid;gap:6px;font-size:12px;color:#c7d0da}.visual-size-panel input,.visual-size-panel select,.visual-size-panel textarea{width:100%;box-sizing:border-box;background:#0c2438;color:#fff;border:1px solid #34506a;border-radius:9px;padding:10px;font:inherit}.visual-size-panel textarea{resize:vertical}.visual-editor-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:12px 0}.visual-panel-actions,#visual-image-actions{display:flex;gap:10px;margin-top:12px}.visual-panel-actions button,#visual-image-actions button{flex:1;border:1px solid #d4af37;background:#102a40;color:#fff;padding:11px;border-radius:10px;cursor:pointer}.visual-panel-actions .primary{background:#d4af37;color:#071827;font-weight:800}#visual-status{min-height:22px;margin-top:10px;font-size:13px}#visual-status.ok{color:#70e0a1}#visual-status.error{color:#ff8a8a}
@media(max-width:700px){.visual-editor-help{left:8px;right:8px;bottom:8px;max-width:none}.visual-size-panel{top:8px;right:8px;width:calc(100vw - 16px);max-height:calc(100vh - 16px)}.visual-editor-grid{grid-template-columns:1fr 1fr}}

/* V6: yalnız loqolar üçün sadə və rahat redaktor */
.logo-editor-help{position:fixed;left:14px;bottom:14px;z-index:99990;padding:8px 12px;border:1px solid #d4af37;border-radius:10px;background:#061525;color:#f5dc83;font-size:12px;font-weight:800;box-shadow:0 8px 24px #0008}
[data-logo-editor="1"]{position:relative;transform-origin:center;cursor:move;touch-action:none}
[data-logo-editor="1"]:hover,[data-logo-editor="1"].logo-selected{outline:2px dashed #f5dc83;outline-offset:4px;filter:drop-shadow(0 0 8px rgba(245,220,131,.65))}
.logo-editor-panel{position:fixed;right:18px;bottom:18px;z-index:100000;width:320px;max-width:calc(100vw - 36px);max-height:calc(100vh - 36px);overflow:auto;box-sizing:border-box;padding:14px;border:1px solid #d4af37;border-radius:14px;background:#071827;color:#fff;box-shadow:0 18px 55px #000b}
.logo-editor-panel[hidden]{display:none!important}.logo-editor-head{display:flex;align-items:center;justify-content:space-between;gap:10px}.logo-editor-head strong{color:#f5dc83;font-size:17px}.logo-editor-head button{border:0;background:transparent;color:#fff;font-size:26px;cursor:pointer}.logo-editor-note{margin:8px 0 10px;color:#c8d2dc;font-size:12px;line-height:1.35}.logo-editor-lock{display:flex!important;grid-template-columns:auto 1fr!important;align-items:center;gap:7px!important;margin:5px 0 10px!important}.logo-editor-lock input{width:auto!important}.logo-editor-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}.logo-editor-panel label{display:grid;gap:4px;margin-top:8px;color:#c8d2dc;font-size:11px}.logo-editor-panel input{width:100%;box-sizing:border-box;padding:8px;border:1px solid #35506a;border-radius:8px;background:#0c2438;color:#fff}.logo-editor-panel input[type="range"]{padding:0;accent-color:#d4af37}.logo-editor-panel output{float:right;color:#f5dc83}.logo-editor-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:12px}.logo-editor-actions button{padding:9px;border:1px solid #d4af37;border-radius:9px;background:#102a40;color:#fff;cursor:pointer}.logo-editor-actions button:first-child{grid-column:1/-1}.logo-editor-actions .primary{background:#d4af37;color:#071827;font-weight:800}#logo-editor-status{min-height:18px;margin-top:8px;font-size:12px}#logo-editor-status.ok{color:#75dfa4}#logo-editor-status.error{color:#ff9292}
@media(max-width:700px){.logo-editor-help{left:8px;right:8px;bottom:8px;text-align:center}.logo-editor-panel{left:8px;right:8px;bottom:8px;width:auto;max-width:none;max-height:75vh}}

/* V8: axtarış, sürətli kateqoriya, slayd və video */
.site-search-form,.admin-product-search{display:flex;gap:10px;max-width:850px;margin:22px auto;align-items:center}.site-search-form input,.admin-product-search input{flex:1;min-width:0;padding:15px 18px;border-radius:14px;border:1px solid #496079;background:#071a2d;color:#fff;font-size:16px}.category-context-menu{position:absolute;z-index:99999;width:220px;background:#071a2d;border:1px solid #d4af37;border-radius:12px;padding:8px;box-shadow:0 18px 50px #0008}.category-context-menu button{width:100%;padding:11px;text-align:left;background:transparent;color:#fff;border:0;border-radius:8px;cursor:pointer}.category-context-menu button:hover{background:#12304d}.category-quick-modal{position:fixed;inset:0;z-index:100000;background:#0009;display:grid;place-items:center}.category-quick-modal[hidden],.category-context-menu[hidden]{display:none}.category-quick-modal form{width:min(440px,92vw);background:#071a2d;border:1px solid #d4af37;border-radius:18px;padding:24px}.category-quick-modal input{width:100%;box-sizing:border-box;padding:14px;margin:12px 0 18px;background:#0b2239;border:1px solid #496079;border-radius:10px;color:#fff}.category-quick-modal form>div{display:flex;justify-content:flex-end;gap:10px}.home-slides{max-width:1200px;margin:30px auto;padding:0 5%}.home-slider{position:relative;aspect-ratio:16/6;overflow:hidden;border-radius:24px;border:1px solid #304963}.home-slide{position:absolute;inset:0;opacity:0;transition:opacity .7s}.home-slide.active{opacity:1}.home-slide img{width:100%;height:100%;object-fit:cover}.home-slide-title{position:absolute;left:30px;bottom:25px;background:#061525dd;color:#f5dc83;padding:12px 18px;border-radius:12px;font-size:24px}.video-grid,.media-admin-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}.video-grid video,.media-admin-grid video,.media-admin-grid img{width:100%;max-height:460px;object-fit:contain;border-radius:16px;background:#020b14}.media-admin-grid article{padding:15px;border:1px solid #304963;border-radius:16px}.media-admin-grid{margin-top:25px}@media(max-width:900px){.site-search-form,.admin-product-search{flex-wrap:wrap}.site-search-form .btn,.admin-product-search .btn{flex:1}.home-slider{aspect-ratio:4/3}.home-slide-title{font-size:18px;left:15px;bottom:15px}.header-search-link{display:block}}

/* V9: ana səhifədə məhsul kartının yerində slayd/video */
.hero-media-card{padding:16px!important;overflow:hidden}.hero-media-stage{position:relative;width:100%;aspect-ratio:4/3;overflow:hidden;border-radius:18px;background:#020b14}.hero-media-item{position:absolute;inset:0;opacity:0;pointer-events:none;transition:opacity .55s ease}.hero-media-item.active{opacity:1;pointer-events:auto}.hero-media-item img,.hero-media-item video{width:100%;height:100%;display:block;object-fit:contain;background:#020b14}.hero-media-caption{position:absolute;left:14px;right:14px;bottom:14px;padding:10px 14px;border-radius:10px;background:#061525d9;color:#f5dc83;font-weight:700}.admin-editable-text{cursor:context-menu}.admin-editable-text:hover{outline:1px dashed #f5dc83;outline-offset:4px}

#text-editor-panel textarea,#text-editor-panel select{width:100%;box-sizing:border-box;padding:9px;border:1px solid #35506a;border-radius:8px;background:#0c2438;color:#fff}#text-editor-status{min-height:18px;margin-top:8px;font-size:12px}
/* V10: only safer logo control + visible media admin entry */
.admin-media-nav{background:#d4af37!important;color:#061525!important;border-radius:999px;padding:8px 13px!important;font-weight:900!important}
.admin-media-callout{border:2px solid #d4af37!important;box-shadow:0 0 0 3px rgba(212,175,55,.08)}
.logo-quick-actions{display:grid!important;grid-template-columns:repeat(3,1fr);gap:7px!important;margin:10px 0!important}
.logo-quick-actions button{padding:9px 7px!important;border:1px solid #d4af37!important;background:#0c2438!important;color:#fff!important;border-radius:8px!important;cursor:pointer!important}
[data-logo-editor="1"].logo-selected{outline:2px solid #f5dc83!important;outline-offset:3px!important;cursor:grab!important}
[data-logo-editor="1"].logo-selected:active{cursor:grabbing!important}
.logo-editor-panel{max-width:360px!important}

/* V11 - rahat başlıq və kateqoriya idarəsi */
.visual-editor-enabled .admin-editable-text{cursor:context-menu;position:relative;transition:outline .12s ease,box-shadow .12s ease}
.visual-editor-enabled .admin-editable-text.is-selected{outline:2px dashed #f0c63c;outline-offset:5px;cursor:move}
.heading-admin-list{display:grid;gap:12px;margin-top:20px}.heading-admin-row{border:1px solid rgba(240,198,60,.28);border-radius:14px;padding:14px;display:grid;gap:10px}.heading-admin-row>div{display:flex;justify-content:space-between;gap:15px;align-items:center}.heading-admin-row small{color:#f0c63c}.heading-inline-form{display:grid;grid-template-columns:minmax(240px,1fr) auto auto;gap:8px;align-items:center}.heading-inline-form input,.category-super-quick input{width:100%;min-height:44px;border:1px solid rgba(255,255,255,.18);border-radius:10px;background:#07192b;color:#fff;padding:0 12px}.category-super-quick{display:grid;grid-template-columns:minmax(250px,1fr) auto;gap:10px;margin:20px 0}.btn-mini{display:inline-block;padding:8px 11px;border:1px solid rgba(240,198,60,.5);border-radius:8px;margin-right:6px}.alert.success{border-color:#2bb673;color:#d9ffe9}
@media(max-width:780px){.heading-inline-form,.category-super-quick{grid-template-columns:1fr}.heading-admin-row>div{align-items:flex-start;flex-direction:column}}
/* V12: alt kateqoriyalar və dil seçimi */
.category-tree-item{display:block}.category-children{padding-left:14px;border-left:1px solid rgba(212,175,55,.35);margin:2px 0 6px}.category-children a{font-size:.92em;opacity:.92}.language-picker select{background:#07192c;color:#fff;border:1px solid #d4af37;border-radius:10px;padding:7px 9px;max-width:120px}.admin-table-wrap{overflow:auto}.admin-table{width:100%;border-collapse:collapse}.admin-table th,.admin-table td{padding:10px;border-bottom:1px solid rgba(255,255,255,.12);text-align:left}

/* V13 universal admin visual editor */
.visual-editor-enabled .any-selected{outline:2px dashed #f5dc83!important;outline-offset:3px!important;cursor:move!important;position:relative;z-index:9998}
.any-editor-panel textarea,.any-editor-panel select{width:100%;box-sizing:border-box;padding:8px;border:1px solid #35506a;border-radius:8px;background:#0c2438;color:#fff}
.any-editor-panel #any-image-row{margin-top:10px}.any-editor-panel #any-category-row{margin-top:10px;padding-top:8px;border-top:1px solid #35506a}
.main-nav>a,.main-nav .nav-home,.language-picker select{font-size:var(--menu-font-size,15px)!important}

/* =========================================================
   V20 — ANDROID + iOS MOBIL SABITLIK
   Yalnız mobil uyğunluq düzəlişləri
   ========================================================= */
html{-webkit-text-size-adjust:100%;text-size-adjust:100%;overflow-x:hidden}
body{overflow-x:hidden;min-width:0;-webkit-tap-highlight-color:transparent}
img,video,svg,canvas{max-width:100%;height:auto}
input,select,textarea,button{font-size:16px;max-width:100%}
button,a,select,input{touch-action:manipulation}

@supports (padding:max(0px)){
  .site-header{
    padding-left:max(16px,env(safe-area-inset-left))!important;
    padding-right:max(16px,env(safe-area-inset-right))!important;
  }
  .site-footer{
    padding-bottom:max(34px,env(safe-area-inset-bottom))!important;
  }
  .floating-whatsapp{
    right:max(16px,env(safe-area-inset-right))!important;
    bottom:max(16px,env(safe-area-inset-bottom))!important;
  }
}

@media(max-width:900px){
  .site-header{
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto auto;
    align-items:center!important;
    gap:8px!important;
    min-height:68px!important;
    padding-top:8px!important;
    padding-bottom:8px!important;
  }
  .brand{min-width:0!important;max-width:none!important;width:auto!important;overflow:visible}
  .brand-symbol{width:48px!important;height:48px!important;max-width:48px!important;object-fit:contain!important}
  .brand-name-image{width:132px!important;height:auto!important;max-width:132px!important;object-fit:contain!important}
  .mobile-menu-toggle{display:block!important;margin:0!important;min-width:44px;min-height:44px;position:relative;z-index:1003}
  .cart-link{margin:0!important;min-width:52px;min-height:44px;justify-content:center;position:relative;z-index:1003}
  .main-nav{
    grid-column:1/-1;
    order:initial!important;
    width:100%!important;
    max-height:0!important;
    overflow:hidden!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:stretch!important;
    gap:0!important;
    padding:0!important;
    opacity:0;
    visibility:hidden;
    transition:max-height .25s ease,opacity .2s ease,padding .2s ease;
  }
  .main-nav.is-open{
    max-height:78vh!important;
    overflow-y:auto!important;
    -webkit-overflow-scrolling:touch;
    opacity:1;
    visibility:visible;
    padding:8px 0 12px!important;
  }
  .main-nav>a,.main-nav .nav-home{display:flex!important;align-items:center;min-height:46px;padding:12px 10px!important;font-size:16px!important;border-bottom:1px solid rgba(255,255,255,.08)}
  .nav-dropdown{display:block!important;width:100%}
  .category-dropdown{position:static!important;width:100%!important;max-width:none!important;margin:0!important;border-radius:10px!important;box-shadow:none!important;display:none!important;opacity:1!important;visibility:visible!important;transform:none!important}
  .nav-dropdown.open .category-dropdown{display:grid!important}
  .language-picker{padding:10px 8px;width:100%;box-sizing:border-box}
  .language-picker select{width:100%!important;max-width:none!important;min-height:44px;font-size:16px!important}
  .hero{grid-template-columns:1fr!important;padding:42px 18px 30px!important;gap:28px!important;text-align:center}
  .hero-copy,.hero-card,.hero-media-card{min-width:0;width:100%;max-width:100%;box-sizing:border-box}
  .hero h1{font-size:clamp(34px,10vw,54px)!important;overflow-wrap:anywhere}
  .hero-copy p{font-size:16px!important}
  .hero-actions{justify-content:center;flex-wrap:wrap}
  .hero-card img{width:100%;height:auto!important;max-height:520px;object-fit:contain}
  .hero-media-stage{aspect-ratio:4/3!important}
  .benefits{grid-template-columns:repeat(2,minmax(0,1fr))!important;padding-left:14px;padding-right:14px}
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important}
  .product-card,.product-content{min-width:0}
  .product-card img{width:100%;height:auto;aspect-ratio:1/1;object-fit:contain}
  .section,.page-hero,.checkout-wrap,.cart-wrap,.detail-wrap{max-width:100%;box-sizing:border-box}
  .admin-table-wrap{max-width:100%;overflow-x:auto;-webkit-overflow-scrolling:touch}
}

@media(max-width:560px){
  .site-header{grid-template-columns:minmax(0,1fr) auto auto!important}
  .brand-symbol{width:40px!important;height:40px!important;max-width:40px!important}
  .brand-name-image{width:105px!important;max-width:105px!important}
  .mobile-menu-toggle,.cart-link{min-width:42px;min-height:42px}
  .hero{padding:34px 14px 24px!important}
  .hero h1{font-size:clamp(32px,11vw,46px)!important}
  .hero-actions{flex-direction:column!important;align-items:stretch!important}
  .hero-actions .btn,.hero-actions a{width:100%!important;box-sizing:border-box;justify-content:center}
  .benefits{grid-template-columns:1fr!important}
  .product-grid{grid-template-columns:1fr!important}
  .section{padding-left:14px!important;padding-right:14px!important}
  .page-hero{padding-left:14px!important;padding-right:14px!important}
  .site-search-form,.admin-product-search{display:grid!important;grid-template-columns:1fr!important;width:100%!important}
  .site-search-form .btn,.admin-product-search .btn{width:100%!important}
  .home-slider{aspect-ratio:4/3!important;border-radius:16px!important}
  .hero-media-stage{aspect-ratio:1/1!important}
  .logo-editor-panel,.any-editor-panel{left:6px!important;right:6px!important;bottom:max(6px,env(safe-area-inset-bottom))!important;width:auto!important;max-height:82vh!important;overflow:auto!important;-webkit-overflow-scrolling:touch}
}


/* =========================================================
   V22 — ANDROID + iOS YEKUN MOBIL UYĞUNLUQ
   Məhsul məlumatlarına və bazaya toxunmur.
   ========================================================= */
:root{--nuray-safe-bottom:env(safe-area-inset-bottom,0px)}
html,body{width:100%;max-width:100%}
body{-webkit-overflow-scrolling:touch}
a,button,input,select,textarea{-webkit-tap-highlight-color:rgba(0,0,0,0)}
video{playsinline:true}

@supports(height:100dvh){
  .main-nav.is-open{max-height:min(78dvh,700px)!important}
  .category-quick-modal{min-height:100dvh}
}

@media(max-width:900px){
  .site-header{top:0!important}
  .main-nav.is-open{overscroll-behavior:contain}
  .product-card .btn,.cart-link,.mobile-menu-toggle{touch-action:manipulation}
  .checkout-wrap input,.checkout-wrap select,.checkout-wrap textarea,
  .contact-form-section input,.contact-form-section textarea,
  .admin-form input,.admin-form select,.admin-form textarea{font-size:16px!important}
  table{max-width:100%}
  .admin-table-wrap{scrollbar-width:thin}
}

@media(max-width:430px){
  .site-header{padding-left:max(10px,env(safe-area-inset-left))!important;padding-right:max(10px,env(safe-area-inset-right))!important}
  .brand-name-image{width:96px!important;max-width:96px!important}
  .brand-symbol{width:38px!important;height:38px!important;max-width:38px!important}
  .mobile-menu-toggle,.cart-link{min-width:40px!important;min-height:40px!important}
  .product-grid{grid-template-columns:1fr!important}
}

@media(orientation:landscape) and (max-height:500px) and (max-width:950px){
  .main-nav.is-open{max-height:68dvh!important}
  .site-header{padding-top:5px!important;padding-bottom:5px!important}
}


/* V24 FINAL multimedia, 360, returns */
.v24-gallery #v24-main-image{width:100%;max-height:620px;object-fit:contain;cursor:zoom-in}.v24-gallery #v24-main-image:hover{transform:scale(1.45);transition:.25s;position:relative;z-index:5}.v24-thumbs{display:flex;gap:8px;overflow:auto;margin-top:12px}.v24-thumbs button{width:70px;height:70px;padding:2px;border:1px solid #d4af37;background:#071728;border-radius:10px;flex:0 0 auto}.v24-thumbs img{width:100%;height:100%;object-fit:cover;border-radius:7px}.v24-360-section,.v24-product-media{padding:45px max(20px,5vw)}.v24-360{max-width:720px;margin:auto;text-align:center;background:#071728;border:1px solid rgba(212,175,55,.45);padding:20px;border-radius:20px;touch-action:pan-y}.v24-360 img{width:100%;height:520px;object-fit:contain;user-select:none}.v24-360 input{width:100%}.v24-media-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}.v24-media-grid video,.v24-media-grid audio{width:100%;border-radius:14px}.media-admin-grid audio{width:100%;margin:8px 0}.return-admin-card{padding:18px;margin:16px 0;border:1px solid rgba(212,175,55,.3);border-radius:16px;background:#071728}.terms-check{display:flex!important;align-items:flex-start;gap:10px;padding:14px;border:1px solid rgba(212,175,55,.45);border-radius:12px}.footer-returns{text-align:center;padding:12px}.footer-returns a{color:#f1d36b}@media(max-width:700px){.v24-360 img{height:340px}.v24-gallery #v24-main-image:hover{transform:none}}

.hero-sound-enable{position:absolute;right:12px;bottom:12px;z-index:20;border:1px solid #d4af37;background:rgba(6,21,37,.88);color:#fff;border-radius:999px;padding:10px 14px;cursor:pointer}.hero-media-card{position:relative}

/* V25 — premium kateqoriyalar, Excel importu və mağazalar */
.nav-category-dropdown{position:relative}.mega-category-menu{min-width:min(760px,92vw);padding:22px;left:50%;transform:translateX(-30%);border:1px solid rgba(212,175,55,.35);box-shadow:0 22px 55px rgba(0,0,0,.42);background:rgba(5,20,35,.98)}
.mega-category-head{display:flex;justify-content:space-between;gap:20px;align-items:center;border-bottom:1px solid rgba(212,175,55,.25);padding-bottom:12px;margin-bottom:16px}.mega-category-head strong{color:#f3d879;font-size:18px}.mega-category-head a{color:#fff;font-size:13px}.mega-category-grid{display:grid;grid-template-columns:repeat(3,minmax(150px,1fr));gap:22px}.mega-category-column{display:flex;flex-direction:column;gap:8px}.mega-category-column>a{display:block;color:#dfe7ef;text-decoration:none}.mega-category-column>a:hover{color:#f3d879}.mega-category-title{font-weight:800!important;color:#fff!important;margin-bottom:4px}
.admin-two-cols{display:grid;grid-template-columns:1fr 1fr;gap:16px}.import-note{margin-top:22px;padding:18px;border:1px solid rgba(212,175,55,.35);border-radius:14px;background:#071728}
.store-section{max-width:1200px;margin:auto}.store-actions-top{display:flex;align-items:center;gap:16px;flex-wrap:wrap;margin-bottom:24px}.store-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px}.store-card{border:1px solid rgba(212,175,55,.3);border-radius:20px;padding:20px;background:linear-gradient(145deg,#071728,#0b2035);transition:.25s}.store-card.nearest{outline:3px solid #d4af37;transform:translateY(-4px)}.store-card>img{width:100%;height:210px;object-fit:cover;border-radius:14px;margin-bottom:14px}.store-card h2{color:#f3d879}.store-card p{color:#dfe7ef}.store-card-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}
@media(max-width:900px){.main-nav .nav-category-dropdown{width:100%}.mega-category-menu{position:static!important;transform:none!important;min-width:0!important;width:100%!important;box-shadow:none!important;margin-top:6px}.mega-category-grid{grid-template-columns:1fr 1fr}.admin-two-cols{grid-template-columns:1fr}}
@media(max-width:560px){.mega-category-grid{grid-template-columns:1fr}.mega-category-head{align-items:flex-start;flex-direction:column}.store-card-actions .btn{width:100%;justify-content:center}}

/* V26 — iri loqo və daha oxunaqlı yazılar */
@media (min-width: 901px){
  .site-header{min-height:175px!important;height:auto!important;padding-top:10px!important;padding-bottom:10px!important}
  .brand-symbol{width:151px!important;height:151px!important;max-width:none!important;max-height:none!important}
  .brand-name-image{width:300px!important;height:105px!important;max-width:none!important;max-height:none!important}
  .main-nav a,.nav-home,.nav-dropdown>a{font-size:18px!important;font-weight:700!important}
  .category-dropdown a{font-size:17px!important}
}
body{font-size:17px}
button,.btn,.btn-primary,.btn-secondary,input,select,textarea{font-size:16px}
.product-title,.product-card h3{font-size:21px!important}
.product-price,.price{font-size:21px!important}
@media (max-width:900px){
  .brand-symbol{width:72px!important;height:72px!important;max-width:none!important}
  .brand-name-image{width:170px!important;height:auto!important;max-width:none!important}
  .main-nav a,.nav-home,.nav-dropdown>a{font-size:17px!important}
}

/* ===== V28 FINAL: premium header, single categories menu, Samsung-style languages ===== */
.site-header{min-height:96px;height:auto!important;padding:12px clamp(18px,3vw,44px);display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:24px;position:sticky;top:0;z-index:1000;background:linear-gradient(180deg,rgba(5,18,31,.98),rgba(5,18,31,.94));backdrop-filter:blur(16px);border-bottom:1px solid rgba(212,175,55,.42);box-shadow:0 12px 32px rgba(0,0,0,.28)}
.site-header .brand{display:flex;align-items:center;min-width:245px;gap:12px!important;transform:none!important}
.site-header .brand-symbol{width:78px!important;height:78px!important;object-fit:contain;transform:none!important}
.site-header .brand-name-image{width:190px!important;height:64px!important;object-fit:contain;transform:none!important}
.main-nav{display:flex;justify-content:center;align-items:center;gap:clamp(12px,1.55vw,27px);min-width:0}
.main-nav>a,.categories-trigger,.language-trigger{font:700 14px/1.2 var(--site-font);letter-spacing:.02em;color:#fff;background:none;border:0;text-decoration:none;padding:13px 0;cursor:pointer;white-space:nowrap;transition:.2s ease}
.main-nav>a:hover,.categories-trigger:hover,.language-trigger:hover{color:#f5dc83}
.nav-dropdown{position:relative}
.categories-trigger span,.language-trigger span{font-size:9px;color:#d4af37;margin-left:5px}
.master-mega-menu{position:fixed!important;left:50%!important;top:96px!important;transform:translateX(-50%) translateY(10px)!important;width:min(1180px,calc(100vw - 36px))!important;max-height:calc(100vh - 125px);overflow:auto;display:block!important;visibility:hidden;opacity:0;pointer-events:none;background:linear-gradient(145deg,#071b2e,#0b263d);border:1px solid rgba(212,175,55,.55);border-radius:20px;padding:22px;box-shadow:0 28px 70px rgba(0,0,0,.55);transition:.2s ease}
.categories-master:hover .master-mega-menu,.categories-master.open .master-mega-menu{visibility:visible;opacity:1;pointer-events:auto;transform:translateX(-50%) translateY(0)!important}
.mega-category-head{display:flex;align-items:center;justify-content:space-between;padding:2px 4px 18px;border-bottom:1px solid rgba(212,175,55,.22);margin-bottom:18px}.mega-category-head strong{font:700 24px/1 var(--heading-font);color:#f5dc83}.mega-category-head a{color:#fff;text-decoration:none}
.mega-category-grid{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px!important}.mega-category-column{background:rgba(255,255,255,.035);border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:16px;min-height:150px}.mega-category-title{display:block;color:#f5dc83!important;font-weight:800;font-size:16px;text-decoration:none;margin-bottom:11px}.mega-category-links{display:grid;gap:8px}.mega-category-links a{color:#dbe5ee;text-decoration:none;font-size:14px}.mega-category-links a:hover{color:#fff;padding-left:4px}.empty-category-note{font-size:12px;color:#8ca0b3}
.samsung-language-menu{position:relative}.language-panel{position:absolute;right:0;top:calc(100% + 12px);width:240px;max-height:390px;overflow:auto;padding:10px;background:#fff;border-radius:18px;box-shadow:0 22px 55px rgba(0,0,0,.42);visibility:hidden;opacity:0;transform:translateY(8px);transition:.18s;z-index:1100}.samsung-language-menu.open .language-panel{visibility:visible;opacity:1;transform:none}.language-panel a{display:block;padding:12px 14px;border-radius:11px;color:#172331;text-decoration:none;font-weight:650}.language-panel a:hover,.language-panel a.active{background:#eef3f7;color:#8a6500}.language-panel .language-manage{border-top:1px solid #e5e8eb;margin-top:7px;color:#765800}
.cart-link{justify-self:end;display:inline-flex;align-items:center;gap:7px;color:#fff;text-decoration:none;border:1px solid rgba(212,175,55,.48);border-radius:999px;padding:10px 14px}.cart-link span{background:#d4af37;color:#071525;border-radius:50%;min-width:22px;height:22px;display:grid;place-items:center;font-weight:800}
@media(max-width:1180px){.site-header{grid-template-columns:auto auto 1fr auto}.site-header .brand-name-image{display:none}.site-header .brand{min-width:auto}.main-nav{gap:14px}.main-nav>a,.categories-trigger,.language-trigger{font-size:13px}.mega-category-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:900px){.site-header{grid-template-columns:auto 1fr auto;min-height:82px}.site-header .brand-symbol{width:58px!important;height:58px!important}.mobile-menu-toggle{display:block;justify-self:end}.main-nav{position:fixed;inset:82px 12px auto 12px;display:none!important;align-items:stretch;background:#071b2e;border:1px solid rgba(212,175,55,.45);border-radius:18px;padding:14px;box-shadow:0 24px 60px rgba(0,0,0,.55)}.main-nav.is-open{display:flex!important;flex-direction:column}.main-nav>a,.categories-trigger,.language-trigger{width:100%;text-align:left;padding:12px}.cart-link{grid-column:3}.master-mega-menu{position:static!important;transform:none!important;width:100%!important;max-height:55vh;margin-top:4px;padding:12px;border-radius:12px;display:none!important;visibility:visible;opacity:1}.categories-master.open .master-mega-menu{display:block!important;transform:none!important}.mega-category-grid{grid-template-columns:1fr}.language-panel{position:static;width:100%;display:none;visibility:visible;opacity:1;transform:none;max-height:240px}.samsung-language-menu.open .language-panel{display:block}}

/* V29 AI kampaniya və pulsuz çatdırılma */
.shipping-progress,.cart-campaign{display:grid;gap:7px;padding:14px;margin:12px 0;border:1px solid rgba(212,175,55,.38);border-radius:14px;background:rgba(212,175,55,.07)}
.shipping-progress progress{width:100%;height:9px;accent-color:#d4af37}.shipping-progress small,.cart-campaign small{color:var(--muted,#a9b7c8)}
.admin-table{width:100%;border-collapse:collapse}.admin-table th,.admin-table td{padding:12px;border-bottom:1px solid rgba(255,255,255,.1);text-align:left;vertical-align:top}.table-wrap{overflow:auto}

/* ===== V30 FRONTEND — yalnız loqo yerləşimi və menyu ölçüsü =====
   DƏYİŞDİRMƏK ÜÇÜN:
   1) NP loqosu: --v30-np-logo-size
   2) Menyu yazıları: --v30-menu-font-size
   3) Hero Nuray Parfum loqosu: --v30-hero-name-width
*/
:root{
  --v30-np-logo-size:151px; /* təxminən 4 x 4 sm */
  --v30-menu-font-size:14px;
  --v30-hero-name-width:300px;
}
@media (min-width:901px){
  .site-header{
    min-height:175px!important;
    grid-template-columns:var(--v30-np-logo-size) 1fr auto!important;
    align-items:center!important;
  }
  .site-header .brand{
    width:var(--v30-np-logo-size)!important;
    min-width:var(--v30-np-logo-size)!important;
    height:var(--v30-np-logo-size)!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:0!important;
    transform:none!important;
  }
  .site-header .brand-symbol{
    width:var(--v30-np-logo-size)!important;
    height:var(--v30-np-logo-size)!important;
    object-fit:contain!important;
    display:block!important;
    margin:0!important;
    transform:none!important;
  }
  .site-header .brand-name-image{display:none!important}
  .main-nav>a,
  .main-nav .categories-trigger,
  .main-nav .language-trigger,
  .main-nav .header-search-link{
    font-size:var(--v30-menu-font-size)!important;
  }
}
.hero-brand-name-image{
  display:block;
  width:min(var(--v30-hero-name-width),100%)!important;
  height:auto!important;
  object-fit:contain;
  object-position:left center;
  margin:0 0 10px 0;
  max-width:100%;
}
@media(max-width:900px){
  :root{--v30-np-logo-size:72px;--v30-hero-name-width:220px}
  .site-header .brand-name-image{display:none!important}
  .site-header .brand{
    width:var(--v30-np-logo-size)!important;
    min-width:var(--v30-np-logo-size)!important;
    height:var(--v30-np-logo-size)!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
  }
  .site-header .brand-symbol{
    width:var(--v30-np-logo-size)!important;
    height:var(--v30-np-logo-size)!important;
  }
  .main-nav>a,
  .main-nav .categories-trigger,
  .main-nav .language-trigger,
  .main-nav .header-search-link{font-size:var(--v30-menu-font-size)!important}
}

/* =========================================================
   V30.1 — SƏLİQƏLİ KATEQORİYA AĞACI
   Düymələr saxlanılıb, kateqoriyalar əsas/alt qruplara ayrılıb.
   ========================================================= */
.category-tree-menu{
    display:block;
    max-width:980px;
    padding:0 20px 38px;
}
.category-tree-all{
    margin-bottom:14px;
}
.category-tree-list{
    display:grid;
    gap:10px;
    padding:18px 20px;
    border:1px solid rgba(212,175,55,.25);
    border-radius:20px;
    background:rgba(255,255,255,.018);
}
.category-tree-row{
    position:relative;
}
.category-tree-row.level-0{
    padding:8px 0;
    border-bottom:1px solid rgba(255,255,255,.07);
}
.category-tree-row.level-0:last-child{
    border-bottom:0;
}
.category-tree-children{
    position:relative;
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin:10px 0 2px 32px;
    padding-left:22px;
}
.category-tree-children::before{
    content:"";
    position:absolute;
    left:5px;
    top:0;
    bottom:10px;
    width:1px;
    background:rgba(212,175,55,.32);
}
.category-tree-children>.category-tree-row::before{
    content:"";
    position:absolute;
    left:-17px;
    top:18px;
    width:13px;
    height:1px;
    background:rgba(212,175,55,.32);
}
.category-tree-row.level-0>.category-pill{
    min-width:180px;
    justify-content:flex-start;
    font-size:15px;
}
.category-pill{
    display:inline-flex!important;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:10px 16px!important;
    border-radius:22px!important;
    line-height:1.15;
    white-space:normal;
}
.category-chevron{
    font-size:22px;
    line-height:12px;
    opacity:.75;
}
.category-tree-row.level-1 .category-pill,
.category-tree-row.level-2 .category-pill{
    font-size:13px;
    padding:9px 14px!important;
}
.category-tree-row.level-1 .category-tree-children{
    width:100%;
    margin-top:8px;
}
@media(max-width:700px){
    .category-tree-menu{padding-left:12px;padding-right:12px}
    .category-tree-list{padding:12px}
    .category-tree-children{margin-left:14px;padding-left:18px;gap:7px}
    .category-tree-row.level-0>.category-pill{min-width:0;width:auto}
    .category-pill{font-size:13px!important;padding:9px 12px!important}
}
/* V33 - canlı axtarış pəncərəsi */
.header-search-button{background:none;border:0;font:inherit;cursor:pointer;padding:0}
body.search-modal-open{overflow:hidden}.site-search-modal[hidden]{display:none}.site-search-modal{position:fixed;inset:0;z-index:100000}.site-search-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.72);backdrop-filter:blur(6px)}.site-search-panel{position:relative;width:min(760px,calc(100% - 28px));max-height:82vh;overflow:auto;margin:8vh auto 0;padding:28px;border:1px solid rgba(212,175,55,.55);border-radius:24px;background:#071a2b;box-shadow:0 24px 90px rgba(0,0,0,.55)}.site-search-panel h2{margin:0 45px 6px 0;color:#fff}.site-search-panel p{margin:0 0 18px;color:#a9b7c8}.site-search-close{position:absolute;right:18px;top:14px;border:0;background:transparent;color:#fff;font-size:34px;cursor:pointer}.site-search-form{display:grid;grid-template-columns:1fr auto;gap:10px}.site-search-form input{min-width:0;padding:15px 17px;border:1px solid rgba(212,175,55,.45);border-radius:14px;background:#0c263c;color:#fff;font-size:16px;outline:none}.site-search-form input:focus{border-color:#d4af37}.site-search-results{display:grid;gap:8px;margin-top:16px}.site-search-item{display:grid;grid-template-columns:58px 1fr auto;gap:12px;align-items:center;padding:10px;border:1px solid rgba(255,255,255,.09);border-radius:14px;background:rgba(255,255,255,.035);text-decoration:none;color:#fff}.site-search-item:hover{border-color:#d4af37}.site-search-item img{width:58px;height:58px;object-fit:cover;border-radius:10px;background:#fff}.site-search-item span{display:grid;gap:3px}.site-search-item small{color:#a9b7c8}.site-search-item b{color:#f5dc83;white-space:nowrap}.site-search-hint{padding:18px;text-align:center;color:#a9b7c8;border:1px dashed rgba(255,255,255,.14);border-radius:12px}@media(max-width:640px){.site-search-panel{margin-top:3vh;padding:22px 14px}.site-search-form{grid-template-columns:1fr}.site-search-item{grid-template-columns:50px 1fr}.site-search-item img{width:50px;height:50px}.site-search-item b{grid-column:2}}
/* V33 - seçilən əsas kateqoriyanı tək göstər */
.category-tree-menu.filtered-root .category-tree-row.is-hidden-root{display:none}.category-tree-master-title{display:flex;align-items:center;justify-content:space-between;gap:12px;width:100%;padding:14px 18px;margin-bottom:12px;border:1px solid rgba(212,175,55,.45);border-radius:14px;background:#0b2236;color:#f5dc83;font-weight:700;cursor:pointer}.category-tree-master-title small{color:#a9b7c8;font-weight:400}
.return-policy-box{margin:16px 0;padding:16px;border:1px solid rgba(212,175,55,.42);border-radius:14px;background:rgba(212,175,55,.07);color:#dce5ee;line-height:1.65}.return-policy-box strong{color:#f5dc83}

/* V34: bütün yazı/şəkil redaktəsi və 10 şəkil idarəsi */
.product-extra-images-admin{display:grid;grid-template-columns:repeat(auto-fill,minmax(130px,1fr));gap:14px;margin:14px 0 24px}.product-extra-image-item{display:grid!important;gap:8px;padding:10px;border:1px solid #ffffff26;border-radius:12px;background:#0b2237}.product-extra-image-item img{width:100%;height:120px;object-fit:cover;border-radius:9px}.product-extra-image-item span{font-size:13px;color:#fff}.visual-editor-enabled img,.visual-editor-enabled h1,.visual-editor-enabled h2,.visual-editor-enabled h3,.visual-editor-enabled p,.visual-editor-enabled a,.visual-editor-enabled span,.visual-editor-enabled button,.visual-editor-enabled strong,.visual-editor-enabled small{transition:outline-color .15s,box-shadow .15s}.visual-editor-enabled img:hover,.visual-editor-enabled h1:hover,.visual-editor-enabled h2:hover,.visual-editor-enabled h3:hover,.visual-editor-enabled p:hover,.visual-editor-enabled a:hover,.visual-editor-enabled span:hover,.visual-editor-enabled button:hover,.visual-editor-enabled strong:hover,.visual-editor-enabled small:hover{outline:1px dashed rgba(245,220,131,.65);outline-offset:2px}
/* V35: WhatsApp razılığı və sayt daxili xüsusi endirim */
.marketing-consent-box{margin:18px 0;padding:18px;border:1px solid rgba(212,175,55,.45);border-radius:14px;background:rgba(212,175,55,.08)}
.marketing-consent-box p{margin:8px 0 12px}.marketing-consent-box label{display:block;margin:10px 0}.marketing-consent-box small{display:block;opacity:.82;line-height:1.5}

/* V36 - işlək vizual redaktə paneli */
.visual-editor-toolbar{position:fixed;left:18px;bottom:18px;z-index:10020;display:flex;align-items:center;gap:10px;flex-wrap:wrap;max-width:min(760px,calc(100vw - 36px));padding:11px 14px;border:1px solid #d4af37;border-radius:14px;background:rgba(8,8,10,.96);box-shadow:0 12px 34px rgba(0,0,0,.45);color:#fff;font-size:13px}
.visual-editor-toolbar strong{color:#f3d36b}.visual-editor-toolbar a,.visual-editor-toolbar button{border:1px solid rgba(212,175,55,.55);border-radius:9px;padding:8px 10px;background:#171719;color:#f7df91;text-decoration:none;cursor:pointer}.visual-editor-toolbar.is-paused{opacity:.75}.visual-click-edit-mode img,.visual-click-edit-mode h1,.visual-click-edit-mode h2,.visual-click-edit-mode h3,.visual-click-edit-mode p,.visual-click-edit-mode span,.visual-click-edit-mode a,.visual-click-edit-mode button{cursor:crosshair}.any-selected{outline:3px dashed #ffd75e!important;outline-offset:4px!important}.any-editor-panel{z-index:10030!important}
@media(max-width:700px){.visual-editor-toolbar{left:8px;right:8px;bottom:8px;max-width:none}.visual-editor-toolbar span{display:none}}
/* V37 tam işlək vizual redaktor */
.visual-floating-item{position:absolute;object-fit:contain;display:block;max-width:none!important;cursor:move;transform-origin:center;user-select:none;-webkit-user-drag:none}
.visual-click-edit-mode .visual-floating-item,.visual-click-edit-mode .any-selected{outline:2px dashed #f0c63c!important;outline-offset:4px}
.visual-editor-toolbar button{border:1px solid #d4af37;background:#0a2138;color:#f5dc83;border-radius:8px;padding:8px 11px;cursor:pointer}
#any-editor-status.ok{color:#78e08f;font-weight:700}#any-editor-status.error{color:#ff8b8b;font-weight:700}
/* V38 vahid və işlək vizual redaktor */
.visual-click-edit-mode main img,.visual-click-edit-mode main h1,.visual-click-edit-mode main h2,.visual-click-edit-mode main h3,.visual-click-edit-mode main h4,.visual-click-edit-mode main p,.visual-click-edit-mode main span,.visual-click-edit-mode main a,.visual-click-edit-mode main button,.visual-click-edit-mode header img,.visual-click-edit-mode header a,.visual-click-edit-mode header span,.visual-click-edit-mode footer *{cursor:crosshair!important}
.any-selected{outline:3px dashed #f1c644!important;outline-offset:4px!important;position:relative}
.visual-floating-item{position:absolute!important;object-fit:contain;cursor:move!important;pointer-events:auto!important}
#any-editor-status.ok{color:#91ff9d!important}#any-editor-status.error{color:#ff8c8c!important}

/* V39 tam vizual redaktor */
.visual-click-edit-mode .hero-media-item.active img,.visual-click-edit-mode .hero-media-item.active video{cursor:move;max-width:none;max-height:none;transform-origin:center center}
.visual-click-edit-mode [data-ve-key],.visual-click-edit-mode [data-visual-key]{touch-action:none}
.any-editor-panel{max-height:calc(100vh - 24px);overflow:auto}
@media(max-width:700px){.any-editor-panel{max-height:calc(100vh - 16px)}}

/* V40 — redaktor əmrləri bütün köhnə !important qaydalarından üstündür */
.visual-editor-enabled .any-selected{outline:3px solid #f5dc83!important;outline-offset:4px!important;cursor:move!important;position:relative!important;z-index:1200!important}
.visual-editor-enabled img.any-selected,.visual-editor-enabled video.any-selected{max-width:none!important;max-height:none!important;object-fit:contain!important}
.visual-editor-enabled [data-visual-key="header_logo"]{pointer-events:auto!important;cursor:pointer!important}
.visual-editor-enabled .hero-media-item.active{pointer-events:auto!important}
.visual-editor-enabled .hero-media-item.active img,.visual-editor-enabled .hero-media-item.active video{pointer-events:auto!important;cursor:move!important}

/* V41 təhlükəsiz vizual redaktor: seçim saytın düzülüşünü pozmur */
.visual-editor-enabled .any-selected,.any-selected{outline:3px dashed #f1c644!important;outline-offset:3px!important;cursor:move!important;z-index:auto!important;position:static!important}
.visual-editor-enabled img.any-selected,.visual-editor-enabled video.any-selected{position:relative!important}
.visual-click-edit-mode [data-ve-key],.visual-click-edit-mode [data-visual-key]{touch-action:none}

/* V46 — bütün desktop brauzerlərdə eyni ölçü və təhlükəsiz public rejim */
html{font-size:16px!important;-webkit-text-size-adjust:100%!important;text-size-adjust:100%!important}
body{zoom:1!important}
body:not(.visual-editor-enabled) .visual-editor-toolbar,
body:not(.visual-editor-enabled) .visual-editor-help,
body:not(.visual-editor-enabled) .logo-editor-help,
body:not(.visual-editor-enabled) #logo-editor-panel,
body:not(.visual-editor-enabled) #text-editor-panel,
body:not(.visual-editor-enabled) #visual-editor-toolbar,
body:not(.visual-editor-enabled) #any-editor-panel{display:none!important;pointer-events:none!important}
body:not(.visual-editor-enabled) [data-ve-key],
body:not(.visual-editor-enabled) [data-visual-key]{outline:none!important;cursor:auto!important}
.visual-floating-item{pointer-events:none!important}
.visual-editor-enabled .visual-floating-item{pointer-events:auto!important}
.site-header,.main-nav,.main-nav a,.main-nav button,.cart-link{position:relative;z-index:50;pointer-events:auto}
.category-dropdown,.master-mega-menu,.language-panel{z-index:10050!important}

@media (min-width:901px){
  .site-header{
    width:100%!important;min-height:104px!important;height:104px!important;
    padding:10px max(24px,calc((100vw - 1180px)/2))!important;
    display:grid!important;grid-template-columns:230px minmax(0,1fr) 82px!important;
    gap:20px!important;align-items:center!important;box-sizing:border-box!important
  }
  .site-header .brand{width:230px!important;min-width:230px!important;height:84px!important;display:flex!important;align-items:center!important;gap:8px!important;transform:none!important}
  .site-header .brand-symbol{width:82px!important;height:82px!important;max-width:82px!important;max-height:82px!important;object-fit:contain!important;transform:none!important}
  .site-header .brand-name-image{width:136px!important;height:70px!important;max-width:136px!important;max-height:70px!important;object-fit:contain!important;transform:none!important}
  .main-nav{display:flex!important;align-items:center!important;justify-content:center!important;gap:18px!important;min-width:0!important;white-space:nowrap!important}
  .main-nav>a,.categories-trigger,.language-trigger,.header-search-button{font-size:14px!important;line-height:1.2!important}
  .cart-link{width:64px!important;height:42px!important;justify-self:end!important}
  .hero{
    width:min(1180px,calc(100% - 48px))!important;margin:0 auto!important;
    min-height:520px!important;padding:48px 0!important;box-sizing:border-box!important;
    display:grid!important;grid-template-columns:500px 520px!important;justify-content:space-between!important;align-items:center!important;gap:60px!important
  }
  .hero-copy{width:500px!important;max-width:500px!important;min-width:0!important}
  .hero h1{font-size:64px!important;line-height:1.04!important;letter-spacing:0!important;margin:0 0 24px!important;max-width:500px!important}
  .hero-copy p,.hero p{font-size:18px!important;line-height:1.55!important;max-width:500px!important}
  .hero-card,.hero-media-card{width:520px!important;max-width:520px!important;height:346px!important;box-sizing:border-box!important}
  .hero-card img,.hero-media-card img,.hero-card video,.hero-media-card video{max-width:100%!important;max-height:100%!important;object-fit:contain!important}
  .benefits-grid,.features-grid{width:min(960px,calc(100% - 48px))!important;margin-left:auto!important;margin-right:auto!important}
}

@media (max-width:900px){
  .site-header{height:auto!important;min-height:78px!important}
  .hero{width:100%!important;grid-template-columns:1fr!important;padding-left:18px!important;padding-right:18px!important}
  .hero-copy,.hero-card,.hero-media-card{width:100%!important;max-width:100%!important}
  .hero h1{font-size:clamp(38px,11vw,58px)!important}
}

/* =========================================================
   V47 SON DƏQİQ DÜZƏLİŞ — yalnız istifadəçinin istədiyi 4 maddə
   1) 100% brauzer zoomunda əvvəlki 67% görünüş
   2) Üst menyu görünən ölçüdə 18px
   3) NP loqosu görünən ölçüdə 4cm x 4cm
   4) Dil siyahısındakı bütün yazılar qara
   Başqa heç bir hissəyə toxunulmur.
   ========================================================= */
:root{--nuray-site-scale:.67}

/* Brauzerin 100%-ində saytı əvvəlki 67% ölçüdə göstərir. */
body{
  zoom:var(--nuray-site-scale)!important;
}

/* Firefox-un zoom dəstəyi olmayan köhnə versiyaları üçün ehtiyat. */
@supports not (zoom:1){
  body{
    transform:scale(var(--nuray-site-scale));
    transform-origin:top left;
    width:calc(100% / var(--nuray-site-scale));
  }
}

/* 0.67 miqyasdan sonra ekranda real 4cm x 4cm görünməsi üçün. */
@media (min-width:901px){
  .site-header .brand{
    width:225.6px!important;
    min-width:225.6px!important;
    height:225.6px!important;
  }
  .site-header .brand-symbol{
    width:225.6px!important;
    min-width:225.6px!important;
    max-width:225.6px!important;
    height:225.6px!important;
    min-height:225.6px!important;
    max-height:225.6px!important;
    object-fit:contain!important;
  }
  .site-header{
    grid-template-columns:225.6px minmax(0,1fr) 82px!important;
    min-height:245px!important;
    height:245px!important;
  }

  /* 0.67 miqyasdan sonra ekranda təxminən 18px görünür. */
  .main-nav>a,
  .main-nav .categories-trigger,
  .main-nav .language-trigger,
  .main-nav .header-search-button,
  .main-nav button{
    font-size:27px!important;
    line-height:1.2!important;
  }
}

/* Dil menyusunun içindəki bütün mətnlər aydın qara rəngdə. */
.language-panel,
.language-panel a,
.language-panel span,
.language-panel strong,
.language-panel small,
.language-panel button,
.language-panel option,
.language-panel label{
  color:#111!important;
}
.language-panel a:hover,
.language-panel a.active{
  color:#111!important;
}
