/* ================= GLOBAL ================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background: #fffdfd;
    color: #4c2130;
    font-family: inherit;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

select,
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e8d5dc;
    border-radius: 14px;
    font: inherit;
    background: #fff;
}

/* ================= COMMON ================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #d63f68, #aa244a);
    box-shadow: 0 14px 26px rgba(214, 63, 104, 0.22);
}

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

.btn-secondary {
    color: #4c2130;
    background: #fff;
    border: 1px solid #2f1a22;
    box-shadow: none;
}

.btn-secondary:hover {
    background: #fff7fa;
}

.btn-block {
    width: 100%;
    margin-top: 12px;
}

.empty-box {
    background: #fff;
    border: 1px solid #f1dfe5;
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    color: #7d5a66;
}

.alert-box {
    background: #fff4f7;
    border: 1px solid #f0ccd7;
    color: #a22d51;
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.link-btn {
    border: none;
    background: none;
    color: #a22d51;
    cursor: pointer;
    font-weight: 700;
    padding: 0;
    font: inherit;
}

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

.site-header {
    background: #fff;
    border-bottom: 1px solid #f0d9e1;
    position: sticky;
    top: 0;
    z-index: 50;
}

.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 72px;
}

.logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    white-space: nowrap;
}

.logo img {
    height: auto;
    max-height: 70px;
    width: auto;
    display: block;
}
@media (max-width: 640px) {
    .logo img {
        max-height: 50px;
    }
}

.main-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #4c2130;
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    flex: 0 0 auto;
}

.cart-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #4c2130;
    font-weight: 700;
    white-space: nowrap;
}

.cart-icon {
    font-size: 20px;
    line-height: 1;
}

.cart-count {
    font-size: 16px;
    line-height: 1;
}

.mobile-toggle {
    display: none;
    border: none;
    background: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #4c2130;
    padding: 0;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid #f0d9e1;
}

.mobile-menu a {
    display: block;
    padding: 14px 20px;
    text-decoration: none;
    color: #4c2130;
    border-bottom: 1px solid #f4e6eb;
    font-weight: 600;
    transition: 0.2s ease;
}

.mobile-menu a:hover {
    background: #fff7fa;
}

.mobile-menu__langs {
    display: flex;
    gap: 14px;
    padding: 14px 20px;
}

.mobile-menu__langs a {
    border: none;
    padding: 0;
}

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

.site-footer {
    margin-top: 50px;
    padding: 38px 0 20px;
    background: #fff;
    border-top: 1px solid #f0d9e1;
    color: #7d5a66;
}

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

.footer-title {
    margin: 12px 0 10px;
    font-size: 26px;
    color: #4c2130;
}

.footer-subtitle {
    margin: 0 0 12px;
    font-size: 18px;
    color: #4c2130;
}

.footer-text {
    margin: 0;
    color: #7d5a66;
    line-height: 1.7;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    text-decoration: none;
    color: #7d5a66;
    transition: 0.2s ease;
}

.footer-menu a:hover {
    color: #a22d51;
}

.footer-bottom {
    padding-top: 18px;
    border-top: 1px solid #f4e6eb;
    text-align: center;
    color: #8e707b;
    font-size: 14px;
}

/* ================= PAGE HERO ================= */

.page-hero {
    padding: 60px 0 30px;
}

.page-hero--small {
    padding: 50px 0 20px;
}

.page-hero__content {
    max-width: 760px;
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.05;
    color: #4c2130;
}

.page-hero p {
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #7d5a66;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: #a22d51;
    text-decoration: none;
    font-weight: 700;
}

.back-link:hover {
    text-decoration: underline;
}

/* ================= PRODUCTS ================= */

.products-section {
    padding: 20px 0 70px;
}

.products-categories {
    margin-bottom: 28px;
}

.products-categories h2 {
    margin: 0 0 14px;
    font-size: 22px;
    color: #4c2130;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #f0d9e1;
    color: #a22d51;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

.category-pill:hover {
    background: #fff7fa;
    transform: translateY(-1px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #f1dfe5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(93, 31, 52, 0.06);
}

.product-card__image-wrap {
    display: block;
    aspect-ratio: 1 / 1;
    background: #fff7fa;
    overflow: hidden;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.04);
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 18px 18px 20px;
}

.product-card__category a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #b05b74;
}

.product-card__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
}

.product-card__title a {
    display: block;
    color: #4c2130;
    text-decoration: none;
}

.product-card__desc {
    flex: 1;
    margin: 0;
    color: #7d5a66;
    line-height: 1.65;
    font-size: 14px;
}

.product-card__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
}

.product-card__old-price {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    color: #ab8994;
    text-decoration: line-through;
}

.product-card__price {
    color: #4c2130;
    font-size: 15px;
}

.product-card__price-label {
    color: #9e7d87;
    margin-right: 4px;
}

.product-card__btn {
    white-space: nowrap;
}

/* ================= PRODUCT DETAIL ================= */

.product-detail {
    padding: 40px 0 70px;
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-detail__image-wrap {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.product-detail__image-wrap img {
    width: 100%;
    display: block;
}

.product-detail__info h1 {
    margin: 10px 0;
    font-size: 32px;
}

.product-detail__category a {
    font-size: 14px;
    color: #a22d51;
    text-decoration: none;
}

.product-detail__desc {
    margin: 10px 0 20px;
    color: #7d5a66;
}

.product-detail__price {
    margin: 15px 0;
    font-size: 20px;
}

.product-detail__price .old {
    margin-right: 10px;
    color: #999;
    text-decoration: line-through;
}

.product-detail__actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.product-detail__actions input {
    width: 70px;
    padding: 10px;
}

.product-detail__full {
    margin-top: 40px;
    line-height: 1.7;
}

/* ================= CART / CHECKOUT / STATUS ================= */

.cart-section,
.checkout-section,
.status-page {
    padding: 30px 0 70px;
}

.cart-layout,
.checkout-layout {
    display: grid;
    gap: 24px;
    align-items: start;
}

.cart-layout {
    grid-template-columns: minmax(0, 1.6fr) 420px;
}

.checkout-layout {
    grid-template-columns: minmax(0, 1.45fr) 380px;
}

.cart-main,
.cart-summary,
.checkout-main,
.checkout-summary {
    min-width: 0;
}

.cart-form,
.clear-cart-form {
    margin: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 120px 120px 80px;
    gap: 18px;
    align-items: center;
    margin-bottom: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid #f1dfe5;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.cart-item__content {
    min-width: 0;
}

.cart-item__qty {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item__qty input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #dcc3cc;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    background: #fff;
}

.cart-item__line-total {
    text-align: center;
    white-space: nowrap;
}

.cart-item__remove {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cart-item__remove .link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 700;
}

.cart-item__image {
    width: 110px;
}

.cart-item__image img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

.cart-item__content {
    min-width: 0;
}

.cart-item__content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    color: #4c2130;
    word-break: break-word;
}

.cart-item__price {
    color: #8a6470;
    font-size: 16px;
    font-weight: 600;
}

.cart-item__qty {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item__qty label {
    font-size: 14px;
    font-weight: 700;
    color: #4c2130;
}

.cart-item__qty input {
    width: 100%;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #dcc3cc;
    border-radius: 12px;
    text-align: center;
    font-weight: 700;
    background: #fff;
}

.cart-item__line-total {
    font-size: 16px;
    font-weight: 800;
    color: #4c2130;
    text-align: center;
    white-space: nowrap;
}



.cart-actions {
    margin-top: 8px;
}

.cart-actions .btn {
    min-width: 160px;
}

.cart-summary,
.checkout-summary {
    position: sticky;
    top: 96px;
}

.summary-box {
    padding: 24px;
    background: #fff;
    border: 1px solid #f1dfe5;
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(93, 31, 52, 0.06);
}

.summary-row,
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.summary-item span,
.summary-row span {
    min-width: 0;
}

.summary-item strong,
.summary-row strong {
    white-space: nowrap;
    flex-shrink: 0;
}

.summary-row--total {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid #f0d9e1;
    font-size: 18px;
}

.checkout-summary__title {
    margin: 0 0 18px;
    color: #4c2130;
    font-size: 22px;
}

.checkout-form {
    padding: 22px;
    background: #fff;
    border: 1px solid #f1dfe5;
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(93, 31, 52, 0.06);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    color: #4c2130;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-checkout-submit {
    width: 100%;
    margin-top: 18px;
    min-height: 54px;
    font-size: 16px;
    border-radius: 16px;
}

.summary-box .btn {
    min-height: 54px;
    font-size: 16px;
    border-radius: 16px;
}

.status-box {
    max-width: 680px;
    margin: 0 auto;
    padding: 40px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid #f1dfe5;
    border-radius: 26px;
}

.status-box--success {
    border-color: #cde9d6;
}

.status-box--failed {
    border-color: #f2d0d0;
}

/* ================= CONTENT PAGES ================= */

.content-section {
    padding: 20px 0 70px;
}

.info-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.info-card,
.content-card,
.legal-box,
.faq-item {
    padding: 22px;
    background: #fff;
    border: 1px solid #f1dfe5;
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(93, 31, 52, 0.06);
}

.info-card h3,
.content-card h3,
.faq-item h3 {
    margin: 0 0 10px;
    color: #4c2130;
}

.info-card p,
.content-card p,
.legal-box p,
.faq-item p {
    margin: 0;
    color: #7d5a66;
    line-height: 1.75;
}

.content-stack,
.faq-list,
.legal-box {
    display: flex;
    flex-direction: column;
}

.content-stack,
.legal-box {
    gap: 18px;
}

.faq-list {
    gap: 16px;
}

.info-card a {
    color: #a22d51;
    text-decoration: none;
}

.info-card a:hover {
    text-decoration: underline;
}

/* ================= HOME ================= */

.home-hero {
    padding: 50px 0 30px;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: center;
}

.home-hero__content h1 {
    margin: 14px 0;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.02;
    color: #4c2130;
}

.home-hero__content p {
    margin: 0;
    max-width: 640px;
    font-size: 18px;
    line-height: 1.75;
    color: #7d5a66;
}

.home-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid #f4d6df;
    border-radius: 999px;
    background: #fff0f5;
    color: #b0305b;
    font-size: 13px;
    font-weight: 700;
}

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.home-hero__visual {
    position: relative;
    min-height: 460px;
}

.hero-card {
    position: absolute;
    overflow: hidden;
    border: 1px solid #f1dfe5;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(93, 31, 52, 0.12);
}

.hero-card img,
.hero-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card--one {
    width: 72%;
    height: 430px;
    top: 0;
    left: 0;
}

.hero-card--two {
    width: 48%;
    height: 280px;
    right: 0;
    bottom: 0;
}

.hero-card--one::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.home-section {
    padding: 26px 0 20px;
}

.home-section--last {
    padding-bottom: 70px;
}

.section-head {
    margin-bottom: 18px;
}

.section-head h2 {
    margin: 0;
    font-size: 32px;
    color: #4c2130;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.category-box {
    display: block;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f1dfe5;
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(93, 31, 52, 0.06);
    text-decoration: none;
}

.category-box__image {
    aspect-ratio: 1 / 1;
    background: #fff7fa;
}

.category-box__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-box__body {
    padding: 16px;
}

.category-box__body h3 {
    margin: 0;
    font-size: 20px;
    color: #4c2130;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.why-card {
    padding: 24px;
    background: #fff;
    border: 1px solid #f1dfe5;
    border-radius: 24px;
    box-shadow: 0 14px 32px rgba(93, 31, 52, 0.06);
}

.why-card h3 {
    margin: 0 0 10px;
    color: #4c2130;
}

.why-card p {
    margin: 0;
    color: #7d5a66;
    line-height: 1.7;
}

.contact-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px;
    border: 1px solid #f1dfe5;
    border-radius: 28px;
    background: linear-gradient(135deg, #fff1f5, #fff8f1);
}

.contact-banner h2 {
    margin: 0 0 8px;
    color: #4c2130;
}

.contact-banner p {
    margin: 0;
    max-width: 760px;
    color: #7d5a66;
    line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .checkout-summary {
        position: static;
    }
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

    .home-hero__grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .info-grid,
    .contact-grid,
    .category-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-hero__visual {
        min-height: 360px;
    }

    .contact-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        gap: 20px;
        text-align: center;
    }

    .footer-col .logo {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .product-detail__grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 90px 1fr;
        gap: 14px;
    }

    .cart-item__image {
        width: 90px;
        align-self: start;
    }

    .cart-item__image img {
        width: 90px;
        height: 90px;
        border-radius: 16px;
    }

    .cart-item__content {
        grid-column: 2;
    }

    .cart-item__qty,
    .cart-item__line-total,
    .cart-item__remove {
        grid-column: 1 / -1;
    }

    .cart-item__qty {
        align-items: flex-start;
    }

    .cart-item__qty input {
        width: 120px;
    }

    .cart-item__line-total,
    .cart-item__remove {
        text-align: left;
    }

    .summary-box,
    .checkout-form {
        padding: 18px;
        border-radius: 20px;
    }

    .page-hero {
        padding-top: 42px;
    }
}

@media (max-width: 640px) {
    .products-grid,
    .info-grid,
    .contact-grid,
    .category-grid,
    .why-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .product-card__body {
        align-items: center;
        gap: 12px;
        padding: 16px;
        text-align: center;
    }

    .product-card__category,
    .product-card__title,
    .product-card__desc,
    .product-card__price-wrap,
    .product-card__bottom {
        width: 100%;
        text-align: center;
    }

    .product-card__title {
        font-size: 18px;
        line-height: 1.4;
    }

    .product-card__desc {
        margin: 0 auto;
        font-size: 14px;
        line-height: 1.6;
    }

    .product-card__category a {
        font-size: 12px;
    }

    .product-card__bottom {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .product-card__btn {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
        text-align: center;
    }

    .site-header__row {
        flex-wrap: nowrap;
        min-height: 64px;
        gap: 10px;
        padding: 10px 0;
    }

    .logo {
        max-width: 150px;
        overflow: hidden;
    }



    .header-actions {
        gap: 10px;
    }

    .cart-icon {
        font-size: 18px;
    }

    .cart-count {
        font-size: 15px;
    }

    .mobile-toggle {
        font-size: 22px;
    }

    .hero-card--one {
        position: relative;
        width: 100%;
        height: 250px;
    }

    .hero-card--two {
        display: none;
    }

    .home-hero__visual {
        min-height: auto;
    }

    .cart-section,
    .checkout-section,
    .status-page {
        padding: 20px 0 56px;
    }

    .cart-item {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 14px;
        text-align: center;
    }

    .cart-item__image,
    .cart-item__image img {
        width: 100%;
        height: auto;
    }

    .cart-item__image img {
        max-height: 220px;
        object-fit: cover;
        border-radius: 18px;
    }

    .cart-item__content,
    .cart-item__qty,
    .cart-item__line-total,
    .cart-item__remove {
        width: 100%;
        text-align: center;
    }

    .cart-item__qty {
        align-items: center;
    }

    .cart-item__qty input {
        width: 110px;
    }

    .cart-actions .btn,
    .summary-box .btn,
    .btn-checkout-submit {
        width: 100%;
    }

    .summary-box {
        margin-top: 4px;
    }

    .summary-item,
    .summary-row {
        font-size: 15px;
    }

    .summary-row--total {
        font-size: 17px;
    }

    .checkout-summary__title {
        font-size: 20px;
    }
}
/* ===== CHECKOUT TERMS CHECKBOX - FINAL WORKING VERSION ===== */

.checkout-consent-box {
    padding: 14px 16px;
    background: #fff8fa;
    border: 1px solid #f0d9e1;
    border-radius: 16px;
}

.checkout-consent-inline {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    cursor: pointer;
    font-weight: 500 !important;
    color: #4c2130;
    line-height: 1.6;
}

/* ümumi .form-group input stilini checkbox üçün söndürür */
.form-group input.checkout-checkbox {
    width: 20px !important;
    min-width: 20px;
    max-width: 20px;
    height: 20px !important;
    margin: 2px 0 0 0;
    padding: 0 !important;
    border: none !important;
    border-radius: 4px !important;
    background: transparent !important;
    box-shadow: none !important;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    accent-color: #d63f68;
    flex: 0 0 20px;
    cursor: pointer;
}

.checkout-consent-text {
    font-size: 14px;
    line-height: 1.6;
    color: #4c2130;
    font-weight: 500;
}

.checkout-consent-text a {
    color: #a22d51;
    font-weight: 700;
    text-decoration: none;
}

.checkout-consent-text a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .checkout-consent-box {
        padding: 12px 13px;
    }

    .checkout-consent-inline {
        gap: 10px;
    }

    .checkout-consent-text {
        font-size: 13px;
        line-height: 1.55;
    }
}
.contact-map-card {
    overflow: hidden;
}

.contact-map-embed {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #f1dfe5;
    background: #fff7fa;
}

.contact-map-embed iframe {
    display: block;
    width: 100%;
    min-height: 420px;
}
.footer-contact-list .footer-text {
    margin: 0 0 8px;
}

.footer-contact-list a,
.footer-bottom a {
    color: #a22d51;
    text-decoration: none;
}

.footer-contact-list a:hover,
.footer-bottom a:hover {
    text-decoration: underline;
}
/* ================= FOOTER FINAL CLEAN ================= */

.site-footer {
    margin-top: 56px;
    padding: 24px 0 18px;
    background:
        radial-gradient(circle at top left, #fff4f7 0%, transparent 28%),
        radial-gradient(circle at top right, #fff8f1 0%, transparent 22%),
        #ffffff;
    border-top: 1px solid #f0d9e1;
    color: #7d5a66;
}

.footer-topbar--cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f4e6eb;
}

.footer-badge-card {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 12px 14px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff1f6, #fffaf5);
    border: 1px solid #f1d8e1;
    box-shadow: 0 10px 22px rgba(162, 45, 81, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-badge-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(93, 31, 52, 0.10);
}

.footer-badge-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #f0d9e1;
    font-size: 16px;
    line-height: 1;
}

.footer-badge-card__text {
    color: #8f3d57;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.footer-grid--premium {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 22px;
}

.footer-col {
    min-width: 0;
}

.footer-col--brand {
    padding-right: 0;
}

.footer-logo {
    line-height: 0;
}

.site-footer .footer-logo img {
    display: block;
    width: auto;
    height: auto;
    max-height: 110px;
    object-fit: contain;
}

.footer-title {
    margin: 14px 0 8px;
    font-size: 24px;
    line-height: 1.15;
    color: #4c2130;
}

.footer-subtitle {
    margin: 0 0 12px;
    font-size: 18px;
    color: #4c2130;
}

.footer-subtitle--small {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-subtitle-spaced {
    margin-top: 20px;
}

.footer-text {
    margin: 0;
    color: #7d5a66;
    line-height: 1.7;
    font-size: 14px;
}

.footer-text--brand {
    max-width: 100%;
}

.footer-trust-row--grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.trust-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 10px;
    text-align: center;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #f0d9e1;
    color: #8f3d57;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(93, 31, 52, 0.08);
}

.footer-payment-box {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid #f1dfe5;
    border-radius: 20px;
    background: linear-gradient(135deg, #fffdfd, #fff7fa);
    box-shadow: 0 14px 28px rgba(93, 31, 52, 0.05);
    overflow: hidden;
}

.footer-payment-box .footer-subtitle {
    text-align: center;
    margin-bottom: 14px;
}

.payment-icons--svg {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.payment-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 62px;
    padding: 8px 10px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #ecd5dd;
    box-shadow: 0 8px 18px rgba(93, 31, 52, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    overflow: hidden;
}

.payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(93, 31, 52, 0.10);
    border-color: #e2bcc8;
}

.payment-card svg {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 30px;
}

.payment-card--p24 svg {
    height: 24px;
}

.payment-card--visa svg {
    height: 28px;
}

.payment-card--mc svg {
    height: 28px;
}

.footer-info-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.footer-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1px solid #f2e2e8;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(93, 31, 52, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-info-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(93, 31, 52, 0.08);
}

.footer-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #b0677f;
}

.footer-value {
    color: #4c2130;
    line-height: 1.55;
    word-break: break-word;
    font-size: 14px;
}

.footer-value a,
.footer-menu a,
.footer-bottom a {
    color: #a22d51;
    text-decoration: none;
}

.footer-value a:hover,
.footer-menu a:hover,
.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 9px;
}

.footer-menu a {
    color: #7d5a66;
    transition: 0.2s ease;
    font-size: 14px;
}

.footer-menu a:hover {
    color: #a22d51;
}

.footer-bottom {
    padding-top: 16px;
    border-top: 1px solid #f4e6eb;
    text-align: center;
    color: #8e707b;
    font-size: 13px;
}

.footer-bottom p {
    margin: 6px 0;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .footer-topbar--cards {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-grid--premium {
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .footer-trust-row--grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .site-footer .footer-logo img {
        max-height: 120px;
    }

    .footer-title {
        font-size: 28px;
    }

    .footer-text,
    .footer-value,
    .footer-menu a {
        font-size: 15px;
    }

    .payment-card {
        height: 68px;
    }

   

    .payment-card--p24 svg {
        height: 26px;
    }

    .payment-card--visa svg,
    .payment-card--mc svg {
        height: 30px;
    }
}

@media (min-width: 1200px) {
    .footer-grid--premium {
        grid-template-columns: 1.35fr 1fr 1fr 0.9fr;
        gap: 26px;
    }
}

@media (max-width: 640px) {
    .site-footer .footer-logo img {
        max-height: 92px;
    }

    .payment-icons--svg {
        gap: 8px;
    }

    .payment-card {
        height: 58px;
        padding: 8px;
    }

    .payment-card svg {
        height: 26px;
    }

    .payment-card--p24 svg {
        height: 20px;
    }

    .payment-card--visa svg,
    .payment-card--mc svg {
        height: 24px;
    }
}
/* ===== PAYMENT FINAL BIG VERSION ===== */

.payment-icons--svg {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

/* CARD */
.payment-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    padding: 6px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ecd5dd;
    box-shadow: 0 10px 22px rgba(93, 31, 52, 0.06);
}

/* SVG FULL SIZE */
.payment-card svg {
    width: 100%;
    height: 100%;
    max-width: 100%;
}

/* HOVER */
.payment-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(93, 31, 52, 0.12);
}

/* ===== MOBILE ===== */
@media (max-width: 640px) {
    .payment-card {
        height: 60px;
    }

    .payment-icons--svg {
        gap: 8px;
    }
}

/* ===== DESKTOP ===== */
@media (min-width: 768px) {
    .payment-card {
        height: 82px;
    }
}
/* ===== PAYMENT LOGOS FINAL CLEAN ===== */

.payment-icons--logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-items: stretch;
}

.payment-card--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    height: 64px;
    padding: 10px 12px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #ecd5dd;
    box-shadow: 0 10px 22px rgba(93, 31, 52, 0.06);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.payment-card--logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(93, 31, 52, 0.10);
    border-color: #e2bcc8;
}

.payment-card--logo img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 30px;
    object-fit: contain;
}

/* BLIK adətən bir az hündür görünür */
.payment-card--logo[aria-label="BLIK"] img {
    max-height: 24px;
}

/* Desktop: 4-ü bir sırada */
@media (min-width: 768px) {
    .payment-icons--logos {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
    }

    .payment-card--logo {
        height: 72px;
        padding: 12px 14px;
    }

    .payment-card--logo img {
        max-height: 34px;
    }

    .payment-card--logo[aria-label="BLIK"] img {
        max-height: 28px;
    }
}

/* Kiçik mobil */
@media (max-width: 480px) {
    .payment-card--logo {
        height: 58px;
        padding: 8px 10px;
        border-radius: 14px;
    }

    .payment-card--logo img {
        max-height: 26px;
    }

    .payment-card--logo[aria-label="BLIK"] img {
        max-height: 22px;
    }
}
/* ================= CART PREMIUM FIX ================= */

.cart-item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) 120px 120px 90px;
    gap: 18px;
    align-items: center;
    margin-bottom: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid #f1dfe5;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(93, 31, 52, 0.05);
}

.cart-item__content {
    min-width: 0;
}

.cart-item__content h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.35;
    color: #4c2130;
    word-break: break-word;
}

.cart-item__qty {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: stretch;
}

.cart-item__qty label {
    font-size: 14px;
    font-weight: 700;
    color: #4c2130;
    text-align: center;
}

.cart-item__qty input {
    width: 100%;
    height: 46px;
    padding: 0 12px;
    border: 1px solid #dcc3cc;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    background: #fff;
}

.cart-item__line-total {
    font-size: 17px;
    font-weight: 800;
    color: #4c2130;
    text-align: center;
    white-space: nowrap;
}

.cart-item__remove {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cart-item__remove .link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 700;
    color: #b12d57;
    padding: 8px 10px;
    border-radius: 10px;
    background: #fff7fa;
    border: 1px solid #f0d9e1;
    transition: 0.2s ease;
}

.cart-item__remove .link-btn:hover {
    background: #fff0f5;
}

/* Summary premium */
.summary-box {
    padding: 24px;
    background: #fff;
    border: 1px solid #f1dfe5;
    border-radius: 26px;
    box-shadow: 0 14px 32px rgba(93, 31, 52, 0.06);
}

.summary-row,
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.summary-row--total {
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid #f0d9e1;
    font-size: 22px;
    font-weight: 800;
}

.summary-row--total strong {
    color: #a22d51;
}

/* ================= MOBILE CART PREMIUM ================= */

/* ================= CART PREMIUM ================= */

.cart-section,
.checkout-section,
.status-page {
    padding: 32px 0 72px;
}

.cart-layout,
.checkout-layout {
    display: grid;
    gap: 28px;
    align-items: start;
}

.cart-layout {
    grid-template-columns: minmax(0, 1.7fr) 400px;
}

.checkout-layout {
    grid-template-columns: minmax(0, 1.45fr) 380px;
}

.cart-main,
.cart-summary,
.checkout-main,
.checkout-summary {
    min-width: 0;
}

.cart-summary,
.checkout-summary {
    position: sticky;
    top: 96px;
}

.cart-form,
.clear-cart-form {
    margin: 0;
}

.cart-item {
    position: relative;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr) 170px 140px 110px;
    gap: 20px;
    align-items: center;
    margin-bottom: 18px;
    padding: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
    border: 1px solid #f1dfe5;
    border-radius: 26px;
    box-shadow: 0 14px 36px rgba(93, 31, 52, 0.08);
    transition: 0.2s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(93, 31, 52, 0.12);
}

.cart-item--loading {
    opacity: 0.65;
    pointer-events: none;
}

.cart-item__image {
    width: 118px;
}

.cart-item__image img {
    width: 118px;
    height: 118px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(93, 31, 52, 0.08);
}

.cart-item__content {
    min-width: 0;
}

.cart-item__content h3 {
    margin: 0 0 10px;
    font-size: 19px;
    line-height: 1.35;
    color: #4c2130;
    word-break: break-word;
}

.cart-item__unit-price,
.cart-item__line-total-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item__meta-label {
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a27a86;
}

.cart-item__price {
    color: #7b5060;
    font-size: 16px;
    font-weight: 700;
}

.cart-item__qty {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}

.cart-item__qty label {
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #4c2130;
}

.qty-stepper {
    display: grid;
    grid-template-columns: 46px 70px 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px;
    background: #fff;
    border: 1px solid #ecd6de;
    border-radius: 16px;
    width: max-content;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.qty-stepper__btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff3f7, #ffe8ef);
    color: #9c2b52;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.16s ease;
    box-shadow: 0 6px 14px rgba(162, 45, 81, 0.10);
}

.qty-stepper__btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ffeaf1, #ffdce7);
}

.qty-stepper__input {
    width: 70px;
    height: 46px;
    padding: 0 8px;
    border: none;
    border-radius: 12px;
    background: #fff8fb;
    text-align: center;
    font-size: 17px;
    font-weight: 800;
    color: #4c2130;
    outline: none;
    box-shadow: inset 0 0 0 1px #eed8e0;
}

.cart-item__line-total {
    font-size: 20px;
    font-weight: 900;
    color: #4c2130;
    white-space: nowrap;
    line-height: 1.1;
}

.cart-item__remove {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cart-item__remove .link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #f0d9e1;
    color: #a22d51;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: 0.2s ease;
}

.cart-item__remove .link-btn:hover {
    background: #fff3f7;
    border-color: #e6becb;
    transform: translateY(-1px);
}

.summary-box {
    padding: 26px;
    background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
    border: 1px solid #f1dfe5;
    border-radius: 26px;
    box-shadow: 0 18px 40px rgba(93, 31, 52, 0.08);
}

.summary-row,
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 15px;
    color: #6b4855;
}

.summary-row strong,
.summary-item strong {
    color: #4c2130;
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
}

.summary-row--total {
    margin-top: 10px;
    padding-top: 16px;
    border-top: 1px solid #efdbe2;
}

.summary-row--total span {
    color: #4c2130;
    font-size: 17px;
    font-weight: 800;
}

.summary-row--total strong {
    font-size: 22px;
    font-weight: 900;
}

.summary-box .btn {
    min-height: 54px;
    font-size: 16px;
    border-radius: 16px;
}

/* tablet */
@media (max-width: 1100px) {
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary,
    .checkout-summary {
        position: static;
    }
}

@media (max-width: 900px) {
    .cart-item {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 16px;
        padding: 18px;
    }

    .cart-item__image {
        width: 100px;
        align-self: start;
    }

    .cart-item__image img {
        width: 100px;
        height: 100px;
    }

    .cart-item__content,
    .cart-item__qty,
    .cart-item__line-total-wrap,
    .cart-item__remove {
        grid-column: 1 / -1;
    }

    .cart-item__content {
        padding-left: 116px;
        margin-top: -104px;
        min-height: 100px;
    }

    .cart-item__qty {
        padding-top: 6px;
    }

    .cart-item__remove {
        justify-content: flex-start;
    }
}

/* mobile */
@media (max-width: 640px) {
    .cart-section,
    .checkout-section,
    .status-page {
        padding: 20px 0 56px;
    }

    .container {
        width: min(100%, calc(100% - 20px));
    }

    .cart-item {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
        border-radius: 22px;
        margin-bottom: 14px;
    }

    .cart-item__image {
        width: 82px;
    }

    .cart-item__image img {
        width: 82px;
        height: 82px;
        border-radius: 16px;
    }

    .cart-item__content,
    .cart-item__qty,
    .cart-item__line-total-wrap,
    .cart-item__remove {
        grid-column: 1 / -1;
    }

    .cart-item__content {
        padding-left: 94px;
        margin-top: -86px;
        min-height: 82px;
    }

    .cart-item__content h3 {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .cart-item__price {
        font-size: 15px;
    }

    .cart-item__qty {
        gap: 8px;
        padding-top: 8px;
    }

    .qty-stepper {
        grid-template-columns: 44px 64px 44px;
        width: max-content;
        max-width: 100%;
    }

    .qty-stepper__btn {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .qty-stepper__input {
        width: 64px;
        height: 44px;
        font-size: 16px;
    }

    .cart-item__line-total {
        font-size: 19px;
    }

    .cart-item__remove {
        justify-content: flex-start;
    }

    .cart-item__remove .link-btn {
        min-height: 40px;
        padding: 0 12px;
        font-size: 13px;
    }

    .summary-box {
        padding: 18px;
        border-radius: 22px;
    }

    .summary-row {
        font-size: 14px;
    }

    .summary-row strong {
        font-size: 15px;
    }

    .summary-row--total span {
        font-size: 16px;
    }

    .summary-row--total strong {
        font-size: 20px;
    }
}
.cart-icon-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.cart-icon {
    font-size: 20px;
    line-height: 1;
}

.cart-count {
    line-height: 1;
    font-weight: 700;
}
.product-qty-modern{
display:flex;
align-items:center;
gap:8px;
margin-bottom:10px;
}

.product-qty-modern button{
width:40px;
height:40px;
border:none;
border-radius:10px;
background:#ffe4ec;
font-size:20px;
cursor:pointer;
}

.product-qty-modern input{
width:60px;
text-align:center;
border-radius:10px;
border:1px solid #eee;
height:40px;
font-weight:bold;
}

.go-cart-btn{
display:inline-block;
margin-top:10px;
padding:10px 14px;
border-radius:12px;
background:#fff;
border:1px solid #eee;
font-weight:600;
text-decoration:none;
color:#a22d51;
}

.go-cart-btn:hover{
background:#ffe4ec;
}

@media(max-width:600px){
.product-detail__actions{
flex-direction:column;
}
.product-qty-modern{
width:100%;
}
.product-qty-modern input{
width:100%;
}
}
.product-add-message {
    min-height: 0;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-add-message--show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.product-add-message--show .product-add-message__icon,
.product-add-message--show .product-add-message__text {
    display: inline-flex;
    align-items: center;
}

.product-add-message--show {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff1f5, #ffe6ee);
    border: 1px solid #f1ccd9;
    color: #a22d51;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(162, 45, 81, 0.10);
}

.product-add-message__icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #d63f68;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    flex: 0 0 auto;
}

.go-cart-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
    border: 1px solid #edd8df;
    text-decoration: none;
    color: #8f2348;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(93, 31, 52, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.go-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(93, 31, 52, 0.12);
    background: linear-gradient(180deg, #fff7fa 0%, #fff0f5 100%);
}

.go-cart-btn__icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff0f5;
    font-size: 16px;
    flex: 0 0 auto;
}

.go-cart-btn__text {
    line-height: 1.1;
}

.go-cart-btn__arrow {
    font-size: 16px;
    line-height: 1;
    opacity: 0.8;
}

@media (max-width: 640px) {
    .product-add-message--show {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
    }

    .go-cart-btn {
        width: 100%;
        justify-content: center;
    }
}
.product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.product-qty-modern {
    display: inline-grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 360px;
    padding: 6px;
    background: #fff;
    border: 1px solid #ead6dd;
    border-radius: 16px;
    box-shadow: 0 8px 18px rgba(93, 31, 52, 0.08);
}

.product-qty-modern button {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff3f7, #ffe7ef);
    color: #a22d51;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.18s ease;
}

.product-qty-modern button:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ffeaf1, #ffdce7);
}

.product-qty-modern input {
    width: 100%;
    height: 40px;
    text-align: center;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fff8fb;
    font-size: 16px;
    font-weight: 800;
    color: #4c2130;
    outline: none;
    -moz-appearance: textfield;
}

.product-qty-modern input::-webkit-outer-spin-button,
.product-qty-modern input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-add-message {
    min-height: 0;
    margin-top: 12px;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.product-add-message--show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff1f5, #ffe6ee);
    border: 1px solid #f1ccd9;
    color: #a22d51;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(162, 45, 81, 0.10);
}

.product-add-message__icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #d63f68;
    color: #fff;
    font-size: 13px;
    line-height: 1;
    flex: 0 0 auto;
}

.go-cart-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fff7fa 100%);
    border: 1px solid #edd8df;
    text-decoration: none;
    color: #8f2348;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(93, 31, 52, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.go-cart-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(93, 31, 52, 0.12);
    background: linear-gradient(180deg, #fff7fa 0%, #fff0f5 100%);
}

.go-cart-btn__icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff0f5;
    font-size: 16px;
    flex: 0 0 auto;
}

.go-cart-btn__text {
    line-height: 1.1;
}

.go-cart-btn__arrow {
    font-size: 16px;
    line-height: 1;
    opacity: 0.8;
}

@media (max-width: 640px) {
    .product-detail__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .product-qty-modern {
        max-width: 100%;
    }

    .product-add-message--show {
        width: 100%;
        justify-content: center;
        border-radius: 14px;
    }

    .go-cart-btn {
        width: 100%;
        justify-content: center;
    }

    .product-detail__actions .btn {
        width: 100%;
    }
}
.cart-section--premium {
    padding-bottom: 80px;
}

.cart-layout--premium {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) 420px;
    gap: 28px;
    align-items: start;
}

.cart-item--premium {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) 190px 170px 120px;
    gap: 22px;
    align-items: center;
    margin-bottom: 18px;
    padding: 22px 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, #fff 0%, #fff8fa 100%);
    border: 1px solid #f1dce3;
    box-shadow: 0 18px 40px rgba(93, 31, 52, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.cart-item--premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(93, 31, 52, 0.12);
}

.cart-item--loading {
    opacity: 0.65;
    pointer-events: none;
}

.cart-item--premium .cart-item__image {
    width: 120px;
}

.cart-item--premium .cart-item__image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(93, 31, 52, 0.08);
}

.cart-item--premium .cart-item__content {
    min-width: 0;
}

.cart-item--premium .cart-item__content h3 {
    margin: 0 0 10px;
    font-size: 20px;
    line-height: 1.35;
    color: #4c2130;
    word-break: break-word;
}

.cart-item__unit-price,
.cart-item__line-total-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item__meta-label {
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #a27a86;
}

.cart-item__price {
    color: #7b5060;
    font-size: 17px;
    font-weight: 700;
}

.cart-item__qty {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-item__qty label {
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #4c2130;
}

.qty-stepper--cart {
    display: inline-grid;
    grid-template-columns: 46px 74px 46px;
    align-items: center;
    gap: 8px;
    padding: 6px;
    background: #fff;
    border: 1px solid #ecd6de;
    border-radius: 16px;
    width: max-content;
    box-shadow: 0 8px 18px rgba(93, 31, 52, 0.08);
}

.qty-stepper--cart .qty-stepper__btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff3f7, #ffe7ef);
    color: #a22d51;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.18s ease;
}

.qty-stepper--cart .qty-stepper__btn:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, #ffeaf1, #ffdce7);
}

.qty-stepper--cart .qty-stepper__input {
    width: 74px;
    height: 46px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff8fb;
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    color: #4c2130;
    outline: none;
    -moz-appearance: textfield;
}

.qty-stepper--cart .qty-stepper__input::-webkit-outer-spin-button,
.qty-stepper--cart .qty-stepper__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item__line-total {
    font-size: 18px;
    font-weight: 900;
    color: #4c2130;
    white-space: nowrap;
}

.cart-remove-btn--premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #edd8df;
    color: #b0305b;
    font-weight: 800;
    transition: 0.18s ease;
}

.cart-remove-btn--premium:hover {
    background: #fff1f5;
    border-color: #e9c8d4;
    transform: translateY(-1px);
}

.cart-remove-btn__icon {
    font-size: 14px;
    line-height: 1;
}

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

.summary-box--premium {
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, #fff 0%, #fff8fa 100%);
    border: 1px solid #f1dce3;
    box-shadow: 0 18px 40px rgba(93, 31, 52, 0.08);
}

.summary-box--premium .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    color: #6b4855;
    font-size: 17px;
}

.summary-box--premium .summary-row strong {
    color: #4c2130;
    font-size: 17px;
    font-weight: 800;
    white-space: nowrap;
}

.summary-box--premium .summary-row--total {
    margin-top: 12px;
    padding-top: 18px;
    border-top: 1px solid #ecd8df;
}

.summary-box--premium .summary-row--total span {
    color: #4c2130;
    font-size: 18px;
    font-weight: 800;
}

.summary-box--premium .summary-row--total strong {
    font-size: 28px;
    font-weight: 900;
}

.summary-box--premium .btn {
    min-height: 58px;
    font-size: 18px;
    border-radius: 18px;
}

.cart-empty-box {
    max-width: 620px;
    margin: 0 auto;
    padding: 38px 24px;
    border-radius: 30px;
    background: linear-gradient(180deg, #fff 0%, #fff8fa 100%);
    border: 1px solid #f1dce3;
    box-shadow: 0 18px 40px rgba(93, 31, 52, 0.08);
}

.cart-empty-box__icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff1f5;
    font-size: 28px;
}

/* tablet */
@media (max-width: 1180px) {
    .cart-layout--premium {
        grid-template-columns: 1fr;
    }

    .cart-summary--premium {
        position: static;
    }
}

@media (max-width: 900px) {
    .cart-item--premium {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 16px;
        padding: 18px;
        border-radius: 24px;
    }

    .cart-item--premium .cart-item__image {
        width: 100px;
    }

    .cart-item--premium .cart-item__image img {
        width: 100px;
        height: 100px;
        border-radius: 18px;
    }

    .cart-item--premium .cart-item__content,
    .cart-item--premium .cart-item__qty,
    .cart-item--premium .cart-item__line-total-wrap,
    .cart-item--premium .cart-item__remove {
        grid-column: 1 / -1;
    }

    .cart-item--premium .cart-item__content {
        padding-left: 118px;
        margin-top: -104px;
        min-height: 100px;
    }

    .cart-item--premium .cart-item__remove {
        justify-content: flex-start;
    }
}

/* mobile */
@media (max-width: 640px) {
    .cart-section--premium {
        padding: 20px 0 56px;
    }

    .cart-item--premium {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 12px;
        padding: 16px 14px;
        border-radius: 22px;
        margin-bottom: 14px;
    }

    .cart-item--premium .cart-item__image {
        width: 82px;
    }

    .cart-item--premium .cart-item__image img {
        width: 82px;
        height: 82px;
        border-radius: 16px;
    }

    .cart-item--premium .cart-item__content,
    .cart-item--premium .cart-item__qty,
    .cart-item--premium .cart-item__line-total-wrap,
    .cart-item--premium .cart-item__remove {
        grid-column: 1 / -1;
    }

    .cart-item--premium .cart-item__content {
        padding-left: 94px;
        margin-top: -86px;
        min-height: 82px;
    }

    .cart-item--premium .cart-item__content h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .cart-item__price {
        font-size: 15px;
    }

    .cart-item__qty {
        padding-top: 8px;
    }

    .qty-stepper--cart {
        grid-template-columns: 44px 1fr 44px;
        width: 100%;
        max-width: 100%;
    }

    .qty-stepper--cart .qty-stepper__btn {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .qty-stepper--cart .qty-stepper__input {
        width: 100%;
        height: 44px;
        font-size: 16px;
    }

    .cart-item__line-total {
        font-size: 17px;
    }

    .cart-remove-btn--premium {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    .summary-box--premium {
        padding: 20px;
        border-radius: 24px;
    }

    .summary-box--premium .summary-row {
        font-size: 15px;
    }

    .summary-box--premium .summary-row strong {
        font-size: 16px;
    }

    .summary-box--premium .summary-row--total strong {
        font-size: 24px;
    }

    .summary-box--premium .btn {
        width: 100%;
        min-height: 54px;
        font-size: 16px;
        border-radius: 16px;
    }

    .cart-empty-box {
        padding: 28px 18px;
        border-radius: 24px;
    }
}
/* ================= CART DESKTOP BALANCE FIX ================= */
@media (min-width: 901px) {
    .cart-layout--premium {
        grid-template-columns: minmax(0, 1.8fr) 430px;
        gap: 32px;
        align-items: start;
    }

    .cart-item--premium {
        grid-template-columns: 130px minmax(260px, 1.2fr) 170px 170px 110px;
        gap: 20px;
        align-items: center;
        padding: 24px 26px;
    }

    .cart-item--premium .cart-item__content {
        min-width: 0;
        padding-left: 0;
        margin-top: 0;
    }

    .cart-item--premium .cart-item__content h3 {
        font-size: 21px;
        line-height: 1.35;
        margin: 0 0 12px;
        word-break: normal;
        overflow-wrap: break-word;
        max-width: 100%;
    }

    .cart-item--premium .cart-item__image {
        width: 130px;
    }

    .cart-item--premium .cart-item__image img {
        width: 130px;
        height: 130px;
        border-radius: 22px;
    }

    .cart-item__qty,
    .cart-item__line-total-wrap {
        align-self: center;
    }

    .cart-item__qty {
        min-width: 0;
    }

    .qty-stepper--cart {
        grid-template-columns: 44px 68px 44px;
        width: max-content;
    }

    .qty-stepper--cart .qty-stepper__btn {
        width: 44px;
        height: 44px;
    }

    .qty-stepper--cart .qty-stepper__input {
        width: 68px;
        height: 44px;
        font-size: 17px;
    }

    .cart-item__line-total {
        font-size: 17px;
        line-height: 1.2;
    }

    .cart-item__remove {
        justify-content: flex-end;
        align-self: center;
    }

    .cart-remove-btn--premium {
        width: auto;
        white-space: nowrap;
        padding: 12px 16px;
    }

    .summary-box--premium {
        padding: 30px;
    }
}
/* ==== CART DESKTOP FINAL POSITION FIX ==== */
@media (min-width: 901px) {
    .cart-item--premium {
        position: relative;
        grid-template-columns: 130px minmax(280px, 1fr) 260px;
        grid-template-areas:
            "image content controls";
        align-items: start;
        min-height: 190px;
    }

    .cart-item__image {
        grid-area: image;
    }

    .cart-item__content {
        grid-area: content;
        min-width: 0;
    }

    .cart-item__qty {
        grid-area: controls;
        align-self: start;
        margin-top: 2px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .cart-item__qty label {
        margin-bottom: 2px;
    }

    .qty-stepper--cart {
        margin-top: 0;
    }

    .cart-item__line-total-wrap {
        position: absolute;
        right: 26px;
        top: 108px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        margin: 0;
        padding: 0;
        border: none;
        width: 260px;
    }

    .cart-item__line-total {
        font-size: 20px;
        font-weight: 900;
        line-height: 1.2;
        white-space: nowrap;
    }

    .cart-item__remove {
        position: absolute;
        right: 26px;
        bottom: 22px;
        margin: 0;
        justify-content: flex-end;
    }

    .cart-remove-btn--premium {
        width: auto;
        white-space: nowrap;
        padding: 12px 16px;
    }
}
@media (min-width: 901px) {
    .cart-item__line-total-wrap {
        right: 194px;
        top: 112px;
    }

    .cart-item__remove {
        right: 27px;
    }
	.cart-item__unit-price {
        margin-left: -180px;
    }
}
/* ==== LABEL CENTER ALIGN FIX ==== */


.cart-item__qty,
.cart-item__unit-price,
.cart-item__line-total-wrap {
    align-items: center;
    text-align: center;
}
/* ================= HEADER PREMIUM ================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1dce3;
}

.site-header__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* LOGO */
.logo img {
    height: 48px;
}

/* DESKTOP MENU */
.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 600;
    color: #5b2a38;
    text-decoration: none;
    position: relative;
    transition: 0.2s;
}

.main-nav a:hover {
    color: #b63b55;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #b63b55;
    transition: 0.25s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* CART */
.cart-icon-link {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #5b2a38;
    font-weight: 700;
}

.cart-icon {
    font-size: 18px;
}

.cart-count {
    font-size: 14px;
}

/* MOBILE BUTTON */
.mobile-toggle {
    display: none;
    font-size: 22px;
    border: none;
    background: none;
    cursor: pointer;
}

/* ================= MOBILE ================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    padding: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 16px;
    font-weight: 600;
    color: #4c2130;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #f1dce3;
}

.mobile-menu__langs {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.mobile-menu__langs a {
    padding: 6px 12px;
    border-radius: 8px;
    background: #fff1f5;
    font-size: 13px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    .main-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }
}
/* ================= HEADER PREMIUM FINAL ================= */

.site-header--premium {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #f1dce3;
    transition: padding 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.site-header--premium.is-scrolled {
    box-shadow: 0 10px 30px rgba(93, 31, 52, 0.08);
}

.site-header__row {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 54px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    position: relative;
    font-size: 15px;
    font-weight: 700;
    color: #5b2a38;
    text-decoration: none;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #b63b55;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: #b63b55;
    transition: width 0.22s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cart-icon-link--premium {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    color: #5b2a38;
    font-weight: 800;
    padding: 8px 10px 8px 6px;
    border-radius: 14px;
    transition: background 0.18s ease, transform 0.18s ease;
    margin-left: -6px;
}

.cart-icon-link--premium:hover {
    background: #fff3f7;
    transform: translateY(-1px);
}

.cart-icon-link--premium .cart-icon {
    font-size: 18px;
    line-height: 1;
}

.cart-icon-link--premium .cart-count {
    font-size: 14px;
    line-height: 1;
}

.mobile-toggle--premium {
    display: none;
    position: relative;
    width: 46px;
    height: 46px;
    border: 1px solid #edd8df;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 8px 18px rgba(93, 31, 52, 0.06);
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.mobile-toggle--premium:hover {
    background: #fff6f9;
    border-color: #e7cad4;
    transform: translateY(-1px);
}

.mobile-toggle__line {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #5b2a38;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-toggle--premium.is-active .mobile-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle--premium.is-active .mobile-toggle__line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle--premium.is-active .mobile-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(44, 18, 28, 0.30);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 1090;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu--premium {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 360px);
    height: 100dvh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-left: 1px solid #f0d9e1;
    box-shadow: -20px 0 50px rgba(63, 20, 35, 0.12);
    padding: 18px 18px 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transform: translateX(105%);
    transition: transform 0.28s ease;
    z-index: 1100;
    overflow-y: auto;
}

.mobile-menu--premium.is-active {
    transform: translateX(0);
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1dce3;
}

.mobile-menu__brand img {
    height: 42px;
    width: auto;
    display: block;
}

.mobile-menu__close {
    width: 42px;
    height: 42px;
    border: 1px solid #edd8df;
    border-radius: 12px;
    background: #fff;
    color: #5b2a38;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.mobile-menu__close:hover {
    background: #fff3f7;
    transform: rotate(90deg);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 12px;
    border-radius: 14px;
    color: #4c2130;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mobile-menu__nav a:hover {
    background: #fff3f7;
    color: #b63b55;
    transform: translateX(2px);
}

.mobile-menu__cart-link {
    margin-top: 4px;
    background: linear-gradient(180deg, #fff8fa 0%, #fff1f5 100%);
    border: 1px solid #efdbe2;
}

.mobile-menu__langs--flags {
    margin-top: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 10px;
    border-top: 1px solid #f1dce3;
}

.flag-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff6f9;
    border: 1px solid #efdbe2;
    color: #5b2a38;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.flag-chip:hover {
    transform: translateY(-1px);
    background: #fff1f5;
    border-color: #e8cdd6;
}

.flag-chip.is-active {
    background: linear-gradient(180deg, #ffeef4 0%, #ffe3ec 100%);
    border-color: #e8c2d0;
}

.flag-chip__flag {
    font-size: 16px;
    line-height: 1;
}

.flag-chip__text {
    line-height: 1;
}

body.menu-open {
    overflow: hidden;
}

/* Desktop to mobile switch */
@media (max-width: 1080px) {
    .main-nav {
        display: none;
    }

    .mobile-toggle--premium {
        display: inline-flex;
    }
}

/* Better mobile spacing */
@media (max-width: 640px) {
    .site-header__row {
        min-height: 72px;
        gap: 12px;
    }

    .logo img {
        height: 44px;
    }

    .header-actions {
        gap: 8px;
    }

    .cart-icon-link--premium {
        padding: 8px 8px 8px 2px;
        margin-left: -10px;
    }

    .cart-icon-link--premium .cart-icon {
        font-size: 17px;
    }

    .cart-icon-link--premium .cart-count {
        font-size: 13px;
    }

    .mobile-toggle--premium {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .mobile-menu--premium {
        width: min(88vw, 360px);
        padding: 16px 16px 22px;
    }

    .mobile-menu__nav a {
        min-height: 46px;
        font-size: 15px;
    }
}
.mobile-toggle__bars,
.mobile-toggle__bars::before,
.mobile-toggle__bars::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: 0.22s ease;
    position: relative;
}

.mobile-toggle__bars::before {
    position: absolute;
    top: -6px;
    left: 0;
}

.mobile-toggle__bars::after {
    position: absolute;
    top: 6px;
    left: 0;
}
.site-header,
.site-header--premium {
    position: sticky;
    top: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1dce3;
}

.site-header__row {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.logo img {
    height: 50px;
    width: auto;
    transition: height 0.2s ease;
}
.mobile-toggle--premium {
    width: 46px;
    height: 46px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 14px;
    border: 1px solid #edd8df;
    background: linear-gradient(180deg, #fff 0%, #fff7fa 100%);
    color: #8f2348;
    box-shadow: 0 8px 18px rgba(93, 31, 52, 0.08);
    transition: 0.18s ease;
    cursor: pointer;
}

.mobile-toggle--premium:hover {
    transform: translateY(-1px);
    background: linear-gradient(180deg, #fff7fa 0%, #fff0f5 100%);
    color: #b63b55;
    box-shadow: 0 12px 24px rgba(93, 31, 52, 0.12);
}

.mobile-toggle__line {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.mobile-toggle--premium.is-active .mobile-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle--premium.is-active .mobile-toggle__line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle--premium.is-active .mobile-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
/* ===== HEADER ALWAYS STICKY / STABLE ===== */
.site-header,
.site-header--premium {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #f1dce3;
    box-shadow: 0 8px 22px rgba(93, 31, 52, 0.06);
}

.site-header__row {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header sabit qalanda body content aşağıdan başlamasın */
body {
    padding-top: 76px;
}

/* Logo */
.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* scroll zamanı sıçrama olmasın */
.site-header.is-scrolled,
.site-header--premium.is-scrolled {
    box-shadow: 0 10px 28px rgba(93, 31, 52, 0.08);
}

/* mobil */
@media (max-width: 1000px) {
    .site-header__row {
        min-height: 72px;
    }

    body {
        padding-top: 72px;
    }

    .logo img {
        height: 46px;
    }
}