﻿*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --gold: #B8960C;
    --gold-dark: #9a7d0a;
    --dark: #1e1e1e;
    --text: #333333;
    --text-light: #aaaaaa;
    --white: #ffffff;
    --topbar-bg: #2b2b2b;
    --topbar-text: #cccccc;
    --header-bg: #ffffff;
    --header-h: 70px;
    --topbar-h: 38px;
    --font: 'Inter', sans-serif
}

html {
    margin: 0;
    background: #f8f5f0;
    padding-bottom: 0
}

body {
    font-family: var(--font);
    color: var(--text);
    padding-top: 108px;
    background: #f8f5f0;
    margin: 0
}

.admin-bar .topbar {
    top: 32px
}

.admin-bar .site-header {
    top: calc(32px + var(--topbar-h))
}

.admin-bar body {
    padding-top: calc(32px + var(--topbar-h) + var(--header-h))
}

@media screen and (max-width:782px) {
    .admin-bar .topbar {
        top: 46px
    }

    .admin-bar .site-header {
        top: calc(46px + var(--topbar-h))
    }

    .admin-bar body {
        padding-top: calc(46px + var(--topbar-h) + var(--header-h))
    }
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--topbar-h);
    background: var(--topbar-bg);
    z-index: 1001
}

.topbar__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--topbar-text)
}

.topbar__left i {
    color: var(--gold);
    font-size: 12px
}

.topbar__center {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--topbar-text)
}

.topbar__center i {
    color: #4CAF50;
    font-size: 14px
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 20px
}

.topbar__right>a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    color: var(--topbar-text);
    text-decoration: none;
    transition: color .2s
}

.topbar__right>a:hover {
    color: var(--gold)
}

.topbar__right>a i {
    font-size: 14px
}

.topbar__social {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 16px;
    margin-left: 4px;
    border-left: 1px solid #444
}

.topbar__social a {
    color: var(--topbar-text);
    font-size: 13px;
    text-decoration: none;
    transition: color .2s
}

.topbar__social a:hover {
    color: var(--gold)
}

.site-header {
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--header-bg);
    border-bottom: 1px solid #e8e8e8;
    z-index: 1000;
    transition: box-shadow .3s
}

.site-header.scrolled {
    box-shadow: 0 3px 20px rgba(0, 0, 0, .1)
}

.site-header__inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0
}

.site-header__logo {
    flex-shrink: 0
}

.site-header__logo a {
    text-decoration: none;
    display: block
}

.logo-svg-wrap {
    display: flex;
    align-items: center
}

.logo-svg-wrap .site-logo-svg,
.site-logo-svg,
.site-logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain
}

.site-nav {
    flex-shrink: 0
}

.site-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px
}

.site-nav__list li {
    position: relative
}

.site-nav__list>li>a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .5px;
    white-space: nowrap;
    transition: color .2s
}

.site-nav__list>li>a:hover,
.site-nav__list>li.current-menu-item>a,
.site-nav__list>li.current-menu-ancestor>a {
    color: var(--gold)
}

.site-nav__list>li.nav-disabled>span {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    cursor: default;
    user-select: none
}

.site-nav__list>li.nav-disabled:hover>span {
    color: var(--text)
}

.site-nav__list .menu-item-has-children>a::after,
.site-nav__list .menu-item-has-children>span::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 8px;
    margin-left: 5px;
    vertical-align: middle;
    opacity: .7;
    transition: transform .25s ease;
    display: inline-block
}

.site-nav__list .menu-item-has-children:hover>a::after,
.site-nav__list .menu-item-has-children:hover>span::after {
    transform: rotate(180deg);
    opacity: 1
}

.site-nav__list .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    min-width: 240px;
    background: var(--white);
    border: 1px solid #e8e8e8;
    border-top: 2px solid var(--gold);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
    list-style: none;
    z-index: 200;
    padding: 6px 0
}

.site-nav__list .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent
}

.site-nav__list .menu-item-has-children:hover>.sub-menu {
    display: block
}

.site-nav__list .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: background .15s, color .15s;
    white-space: nowrap
}

.site-nav__list .sub-menu li a:hover {
    background: #fdf8ee;
    color: var(--gold)
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0
}

.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(184, 150, 12, 0.12);
    border-radius: 6px;
    text-decoration: none;
    transition: all .2s
}

.header-cart i {
    font-size: 18px;
    color: var(--gold)
}

.header-cart:hover {
    background: rgba(184, 150, 12, 0.25);
    transform: translateY(-1px)
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: 700;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.4)
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 9px
}

.header-phone>i {
    font-size: 17px;
    color: var(--gold)
}

.header-phone__text {
    display: flex;
    flex-direction: column;
    line-height: 1.25
}

.header-phone__number {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark)
}

.header-phone__label {
    font-size: 11px;
    color: #999
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--gold);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    white-space: nowrap;
    transition: background .2s, transform .15s;
    letter-spacing: .2px
}

.btn-whatsapp i {
    font-size: 16px
}

.btn-whatsapp:hover {
    background: var(--gold-dark);
    color: var(--white);
    transform: translateY(-1px)
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px
}

.mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

@media (max-width:1200px) {
    .site-header__inner {
        padding: 0 32px
    }

    .topbar__inner {
        padding: 0 32px
    }

    .site-header__logo {
        margin-right: 24px
    }

    .header-phone {
        display: none
    }

    .site-nav__list>li>a {
        padding: 8px 10px;
        font-size: 12px
    }
}

@media (max-width:900px) {
    .topbar__center {
        display: none
    }
}

@media (max-width:768px) {
    :root {
        --header-h: 60px;
        --topbar-h: 36px
    }

    .mobile-toggle {
        display: flex
    }

    .site-nav {
        display: none;
        position: fixed;
        top: calc(var(--topbar-h) + var(--header-h));
        left: 0;
        right: 0;
        background: var(--white);
        border-top: 2px solid var(--gold);
        box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
        z-index: 999;
        max-height: calc(100vh - var(--topbar-h) - var(--header-h));
        overflow-y: auto
    }

    .site-nav.open {
        display: block
    }

    .site-nav__list {
        flex-direction: column;
        gap: 0
    }

    .site-nav__list>li>a {
        padding: 14px 24px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px
    }

    .site-nav__list .sub-menu {
        display: none;
        position: static;
        border: none;
        box-shadow: none;
        background: #fdf8ee;
        padding: 0
    }

    .site-nav__list .menu-item-has-children.open>.sub-menu {
        display: block
    }

    .site-nav__list .sub-menu li a {
        padding: 12px 36px
    }

    .btn-whatsapp span {
        display: none
    }

    .btn-whatsapp {
        padding: 10px 14px
    }
}

@media (max-width:480px) {
    .topbar__left {
        display: none
    }

    .topbar__right>a {
        display: none
    }

    .topbar__social {
        border-left: none;
        padding-left: 0;
        margin-left: 0
    }
}

@media (max-width: 768px) {

    .site-logo-svg,
    .site-logo-img {
        height: 44px !important;
        width: auto !important;
        object-fit: contain !important;
    }
}

.site-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.3fr;
    gap: 32px;
    padding: 40px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08)
}

.footer-brand {
    max-width: 380px
}

.footer-logo-svg {
    display: inline-block;
    margin-bottom: 24px;
    text-decoration: none;
    transition: opacity 0.25s ease
}

.footer-logo-svg:hover {
    opacity: 0.85
}

.footer-logo-svg svg {
    height: 64px;
    width: auto;
    display: block
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 28px
}

.footer-social {
    display: flex;
    gap: 10px
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(184, 150, 12, 0.08);
    border: 1px solid rgba(184, 150, 12, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.footer-social a:hover {
    background: #B8960C;
    border-color: #B8960C;
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(184, 150, 12, 0.3)
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
    position: relative;
    padding-bottom: 14px
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #B8960C, transparent);
    border-radius: 2px
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer-links li {
    margin-bottom: 12px
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.footer-links a i {
    font-size: 11px;
    color: #B8960C
}

.footer-links a:hover {
    color: #B8960C;
    transform: translateX(4px)
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px
}

.footer-contact i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(184, 150, 12, 0.1);
    border: 1px solid rgba(184, 150, 12, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    font-size: 14px;
    flex-shrink: 0
}

.footer-contact strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px
}

.footer-contact span,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: color 0.2s ease
}

.footer-contact a:hover {
    color: #B8960C
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 28px 0;
    gap: 24px
}

.footer-bottom>p:first-child {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: left
}

.footer-bottom strong {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center
}

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease
}

.footer-legal a:hover {
    color: #B8960C
}

.footer-designer {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-align: right
}

.footer-designer a {
    color: #B8960C;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease
}

.footer-designer a:hover {
    color: #d4af37
}

.scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B8960C 0%, #d4af37 100%);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(184, 150, 12, 0.4);
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.scroll-top:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 32px rgba(184, 150, 12, 0.5)
}

@media (max-width:1200px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px
    }

    .footer-contact {
        grid-column: 1 / -1;
        max-width: 100%
    }

    .footer-contact ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }
}

@media (max-width:900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
        padding: 60px 0 40px
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%
    }

    .footer-contact ul {
        grid-template-columns: 1fr
    }
}

@media (max-width:640px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0 32px
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 0;
        gap: 16px
    }

    .footer-bottom>p:first-child {
        text-align: center
    }

    .footer-designer {
        text-align: center
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 16px
    }
}

.hero {
    width: 100%;
    min-height: 540px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    padding-bottom: 0;
    background-color: #f8f5f0
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 35%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0.0) 100%);
    z-index: 1
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: transparent;
    z-index: 2
}

.hero-container {
    max-width: 1650px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 15px 40px;
    position: relative;
    z-index: 3
}

.hero-left {
    width: 50%
}

.hero-badge {
    display: inline-block;
    background: rgba(184, 150, 12, 0.12);
    color: #B8960C;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(184, 150, 12, 0.3);
    margin-bottom: 20px
}

.hero-left h1 {
    font-size: 50px;
    font-weight: 800;
    line-height: 1.18;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: -.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08)
}

.hero-left p {
    font-size: 16px;
    color: #444;
    max-width: 460px;
    margin-bottom: 36px;
    line-height: 1.7
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn {
    padding: 13px 22px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: all .25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.btn.gold {
    background: #B8960C;
    color: #fff;
    box-shadow: 0 4px 15px rgba(184, 150, 12, 0.35)
}

.btn.gold:hover {
    background: #9a7d0a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 150, 12, 0.45)
}

.btn.outline {
    border: 2px solid #B8960C;
    color: #B8960C;
    background: transparent
}

.btn.outline:hover {
    background: #B8960C;
    color: #fff;
    transform: translateY(-2px)
}

.btn.whatsapp {
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3)
}

.btn.whatsapp:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4)
}

.hero-right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0px;
    position: relative
}

.hero-img-wrap {
    flex-shrink: 0;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 14px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0
}

.hero-img-logo {
    display: none;
}

.hero-img-logo .logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px
}

.hero-img-logo .logo-text__main {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .3px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3)
}

.hero-img-logo .logo-text__sub {
    font-size: 8px;
    font-weight: 600;
    color: #C9A84C;
    letter-spacing: 2px;
    text-transform: uppercase
}

.hero-right img {
    width: 550px;
    max-width: 550px;
    display: block;
    border-radius: 14px;
    transition: transform .4s ease;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0.95
}

.hero-right img:hover {
    transform: translateY(-6px)
}

.hero-categories {
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 5;
    flex-shrink: 0;
    position: absolute;
    left: 76%;
    top: 50%;
    transform: translateY(-50%)
}

.cat {
    background: rgba(20, 16, 10, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 10px 16px 10px 10px;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(184, 150, 12, 0.25);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    white-space: nowrap;
    min-width: 180px
}

.cat-img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12)
}

.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 !important;
    box-shadow: none !important;
    max-width: none !important;
    margin: 0 !important;
    transition: transform .3s
}

.cat span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2
}

.cat-text {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.cat-text small {
    font-size: 11px;
    font-weight: 500;
    color: rgba(184, 150, 12, 0.9);
    letter-spacing: 0.3px
}

.cat:hover {
    transform: translateX(-6px) scale(1.02);
    background: rgba(20, 16, 10, 0.75);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 4px 12px rgba(184, 150, 12, 0.2);
    border-color: rgba(184, 150, 12, 0.5)
}

.cat:hover span {
    color: #B8960C
}

.cat:hover .cat-img img {
    transform: scale(1.1)
}

.features-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    width: calc(100% - 40px);
    max-width: 1650px;
    margin: -100px auto 0;
    padding: 0;
    position: relative;
    z-index: 10;
    background-color: #fff
}

.features-bar__inner {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    width: 100%;
    border-radius: 12px;
    overflow: hidden
}

.features-bar__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 22px 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    transition: background .2s;
    background: transparent
}

.features-bar__item:last-child {
    border-right: none
}

.features-bar__item:hover {
    background: rgba(184, 150, 12, 0.05)
}

.features-bar__icon {
    font-size: 20px;
    color: #B8960C;
    flex-shrink: 0
}

.features-bar__text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3
}

.features-bar__text span {
    font-size: 11px;
    color: #888;
    line-height: 1.4
}

@media (max-width:1100px) {
    .hero-container {
        padding: 60px 40px
    }

    .hero-left h1 {
        font-size: 38px
    }

    .hero-categories {
        right: -5px
    }
}

@media (max-width:900px) {
    .hero {
        min-height: auto
    }

    .hero-container {
        flex-direction: column;
        padding: 60px 24px;
        gap: 48px
    }

    .hero-left,
    .hero-right {
        width: 100%
    }

    .hero-left h1 {
        font-size: 32px
    }

    .hero-right {
        justify-content: center
    }

    .hero-categories {
        position: static;
        transform: none;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px
    }

    .features-bar__inner {
        grid-template-columns: repeat(3, 1fr)
    }

    .features-bar__item:nth-child(3) {
        border-right: none
    }

    .features-bar__item:nth-child(n+4) {
        border-top: 1px solid #ebebeb
    }
}

@media (max-width:560px) {
    .hero-left h1 {
        font-size: 26px
    }

    .hero-buttons {
        flex-direction: column
    }

    .btn {
        justify-content: center
    }

    .features-bar__inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .features-bar__item:nth-child(2) {
        border-right: none
    }

    .features-bar__item:nth-child(n+3) {
        border-top: 1px solid #ebebeb
    }

    .features-bar__item:nth-child(4) {
        border-right: none
    }

    .features-bar__item:nth-child(6) {
        border-right: none
    }
}

.categories-section {
    padding: 80px 0 60px;
    background: #fff
}

.container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 20px
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px
}

.section-title::before {
    content: 'KATEGORİLER';
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8960C;
    text-transform: uppercase;
    margin-bottom: 8px
}

.category-icons {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    margin-top: 50px
}

.cat-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform .3s;
    background: rgba(255, 255, 255, 0.7);
    padding: 24px 16px 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(184, 150, 12, 0.1)
}

.cat-icon:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    background: #fff
}

.cat-icon__img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f0ebe0;
    margin-bottom: 16px;
    transition: transform .3s;
    border: 1px solid rgba(184, 150, 12, 0.15);
    position: relative
}

.cat-icon__img figcaption,
.cat-icon__img .wp-caption-text,
.cat-icon__img p,
.cat-icon__img+p,
.cat-icon figure,
.cat-icon figcaption {
    display: none !important
}

.cat-icon:hover .cat-icon__img {
    transform: scale(1.05)
}

.cat-icon__img img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    object-position: center top;
    display: block;
    margin-top: -5%
}

.cat-icon span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.4;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center
}

.cat-icon:hover span {
    color: #B8960C
}

.products-section {
    padding: 50px 0 30px;
    background: #fff
}

.products-section--alt {
    background: #fff
}

.ps-container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 60px
}

.ps-left {
    width: 260px;
    flex-shrink: 0
}

.ps-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #B8960C;
    text-transform: uppercase;
    margin-bottom: 12px
}

.ps-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.2
}

.ps-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 28px
}

.ps-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1.5px solid #1a1a1a;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all .25s
}

.ps-btn:hover {
    background: #1a1a1a;
    color: #fff
}

.ps-right {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px
}

.ps-slider {
    overflow: hidden;
    border-radius: 8px;
    flex: 1;
    min-width: 0;
    padding-bottom: 8px;
    margin-bottom: -8px
}

.ps-track {
    display: flex;
    gap: 20px;
    transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ps-card {
    flex: 0 0 calc(25% - 15px);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all .3s;
    position: relative
}

.ps-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px)
}

.ps-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #B8960C;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px
}

.ps-card__img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f8f8f8;
    position: relative
}

.ps-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform .4s, opacity .2s;
    margin-top: 0
}

.ps-card:hover .ps-card__img img {
    transform: scale(1.05)
}

.ps-card__body {
    padding: 16px
}

.ps-card__colors {
    display: flex;
    gap: 6px;
    margin-bottom: 10px
}

.ps-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform .2s
}

.ps-dot:hover {
    transform: scale(1.2)
}

.ps-card__title {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
    line-height: 1.4;
    min-height: 40px
}

.ps-card__actions {
    display: flex;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0
}

.ps-card__btn {
    flex: 1;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all .25s;
    white-space: nowrap
}

.ps-card__btn--outline {
    border: 1px solid #ddd;
    background: #fff;
    color: #555
}

.ps-card__btn--outline:hover {
    border-color: #B8960C;
    color: #B8960C
}

.ps-card__btn--wa {
    border: 1px solid #1a1a1a;
    background: #1a1a1a;
    color: #fff
}

.ps-card__btn--wa:hover {
    background: #333;
    border-color: #333;
    color: #fff
}

.ps-arrows {
    display: none
}

.ps-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #ddd;
    background: #fff;
    color: #555;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
    z-index: 5
}

.ps-arrow:hover {
    background: #B8960C;
    border-color: #B8960C;
    color: #fff
}

.ps-arrow:disabled,
.ps-arrow[style*="opacity:0.4"] {
    cursor: not-allowed
}

@media (max-width:1200px) {
    .ps-card {
        flex: 0 0 calc(33.333% - 14px)
    }
}

@media (max-width:900px) {
    .ps-container {
        flex-direction: column;
        gap: 30px
    }

    .ps-left {
        width: 100%
    }

    .ps-right {
        width: 100%
    }

    .ps-arrows {
        flex-direction: row
    }

    .ps-card {
        flex: 0 0 calc(50% - 10px)
    }
}

@media (max-width:480px) {
    .ps-card {
        flex: 0 0 calc(100%)
    }
}

@media (max-width:1200px) {
    .category-icons {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .products-slider {
        padding: 0 45px
    }
}

@media (max-width:768px) {
    .category-icons {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px
    }

    .cat-icon {
        padding: 18px 12px 16px
    }

    .cat-icon span {
        font-size: 11px;
        min-height: 30px
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px
    }

    .products-slider {
        padding: 0 40px
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 12px
    }

    .btn-product {
        font-size: 11px;
        padding: 9px 12px
    }
}

@media (max-width:480px) {
    .category-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .cat-icon {
        padding: 16px 10px 14px
    }

    .cat-icon span {
        font-size: 10px
    }

    .products-grid {
        grid-template-columns: 1fr
    }

    .products-slider {
        padding: 0 35px
    }

    .product-actions {
        flex-direction: column
    }

    .btn-product {
        width: 100%
    }
}

.reviews-section {
    background: #fff;
    padding: 56px 24px;
    position: relative;
    overflow: hidden
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.06) 0%, transparent 70%);
    pointer-events: none
}

.reviews-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.reviews-head {
    text-align: center;
    margin-bottom: 32px
}

.reviews-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8960C;
    margin-bottom: 8px
}

.reviews-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.2
}

.reviews-desc {
    font-size: 14px;
    color: #666;
    margin: 0 auto 20px;
    max-width: 560px;
    line-height: 1.55
}

.reviews-stats {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: #faf7f0;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid #f0ebe0
}

.reviews-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.reviews-stat-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a
}

.reviews-stat-stars {
    display: flex;
    gap: 2px;
    color: #B8960C;
    font-size: 12px
}

.reviews-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px
}

.reviews-stat-divider {
    width: 1px;
    height: 36px;
    background: #e5dec8
}

.reviews-slider-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 -24px;
    padding: 8px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%)
}

.reviews-slider {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: reviewsScroll 40s linear infinite
}

.reviews-slider-wrap:hover .reviews-slider {
    animation-play-state: paused
}

@keyframes reviewsScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.reviews-arrow {
    display: none !important
}

.review-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px 20px;
    border: 1px solid #f0ebe0;
    position: relative;
    transition: all .3s ease;
    display: flex;
    flex-direction: column
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #B8960C, #d4af37);
    transition: height .35s ease;
    border-radius: 12px 0 0 12px
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    border-color: #e5dec8
}

.review-card:hover::before {
    height: 100%
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px
}

.review-card-stars {
    display: flex;
    gap: 2px;
    color: #B8960C;
    font-size: 12px
}

.review-card-quote {
    font-size: 22px;
    color: rgba(184, 150, 12, 0.18);
    line-height: 1
}

.review-card-text {
    font-size: 13px;
    line-height: 1.65;
    color: #555;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.review-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #f0ebe0
}

.review-card-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(184, 150, 12, 0.25)
}

.review-card-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1
}

.review-card-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.review-card-info {
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.review-card-info i {
    color: #B8960C;
    font-size: 9px
}

.review-card-dot {
    color: #ccc
}

.reviews-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5dec8;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .25s;
    font-size: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04)
}

.reviews-arrow:hover {
    background: #B8960C;
    border-color: #B8960C;
    color: #fff;
    transform: scale(1.06)
}

.reviews-google-note {
    margin-top: 28px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    color: #888
}

.reviews-google-note i {
    color: #4285F4;
    font-size: 14px
}

.faq-section {
    background: #fff;
    padding: 28px 24px 0;
    position: relative
}

.faq-inner {
    max-width: 1320px;
    margin: 0 auto
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
    align-items: start
}

.faq-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch
}

.faq-bottom>* {
    height: auto
}

.faq-intro-bar {
    background: #faf7f0;
    border: 1px solid #f0ebe0;
    border-left: 3px solid #B8960C;
    border-radius: 10px;
    padding: 14px 22px;
    text-align: left
}

.faq-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8960C;
    margin-bottom: 4px
}

.faq-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
    line-height: 1.3
}

.faq-desc {
    font-size: 12.5px;
    color: #666;
    line-height: 1.55;
    margin: 0
}

.faq-item {
    background: #fff;
    border: 1px solid #f0ebe0;
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease;
    align-self: start
}

.faq-item:hover {
    border-color: #e5dec8;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04)
}

.faq-item.is-open {
    border-color: #B8960C;
    box-shadow: 0 8px 30px rgba(184, 150, 12, 0.12)
}

.faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all .25s
}

.faq-q-text {
    font-size: 13.5px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.45
}

.faq-q-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #faf7f0;
    border: 1px solid #e5dec8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s ease;
    color: #B8960C;
    font-size: 10px;
    margin-top: 1px
}

.faq-item.is-open .faq-q-icon {
    background: #B8960C;
    border-color: #B8960C;
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-item.is-open .faq-a {
    max-height: 500px
}

.faq-a p {
    margin: 0;
    padding: 0 18px 16px;
    font-size: 13px;
    line-height: 1.65;
    color: #555
}

.faq-help {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.faq-help::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.18) 0%, transparent 70%);
    pointer-events: none
}

.faq-help-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 1
}

.faq-help-text {
    flex: 1;
    position: relative;
    z-index: 1
}

.faq-help-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px
}

.faq-help-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5
}

.faq-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    border: 2px solid #fff
}

.faq-help-btn:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3)
}

@media (max-width:1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .faq-bottom {
        grid-template-columns: 1fr
    }
}

@media (max-width:768px) {
    $128px 20px 0
}

.reviews-title {
    font-size: 24px
}

.faq-title {
    font-size: 22px
}

.reviews-stats {
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 20px
}

.reviews-stat-divider {
    display: none
}

.reviews-stat-value {
    font-size: 18px
}

.review-card {
    flex: 0 0 280px
}

.faq-grid {
    grid-template-columns: 1fr
}

.faq-q {
    padding: 14px 16px
}

.faq-q-text {
    font-size: 14px
}

.faq-a p {
    padding: 0 16px 16px
}

.faq-help {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 22px 20px
}

.faq-help-btn {
    width: 100%;
    justify-content: center
}
}

.bl-wrap {
    background: #fff;
    min-height: 100vh
}

.bl-header {
    background: #fff;
    border-bottom: 1px solid #ece8e0;
    padding: 48px 24px 32px;
    text-align: center
}

.bl-header__inner {
    max-width: 860px;
    margin: 0 auto
}

.bl-header__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #B8960C;
    margin-bottom: 10px
}

.bl-header__title {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px;
    letter-spacing: -0.5px
}

.bl-header__desc {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    margin: 0 0 28px
}

.bl-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap
}

.bl-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e0dbd0;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    transition: all .2s
}

.bl-filter span {
    font-size: 11px;
    background: #f0ebe0;
    color: #999;
    padding: 1px 7px;
    border-radius: 10px
}

.bl-filter:hover,
.bl-filter.is-active {
    border-color: #B8960C;
    color: #B8960C;
    background: rgba(184, 150, 12, 0.06)
}

.bl-filter.is-active span {
    background: rgba(184, 150, 12, 0.15);
    color: #B8960C
}

.bl-body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start
}

.bl-body__inner {
    min-width: 0
}

.bl-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(184, 150, 12, 0.92);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px
}

.bl-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ece8e0;
    text-decoration: none;
    color: inherit;
    margin-bottom: 32px;
    transition: all .3s ease
}

.bl-featured:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px)
}

.bl-featured__img {
    position: relative;
    aspect-ratio: 4/3;
    background: #f5f0e8;
    overflow: hidden
}

.bl-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.bl-featured:hover .bl-featured__img img {
    transform: scale(1.04)
}

.bl-featured__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ccc;
    font-size: 48px
}

.bl-featured__body {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    background: #fff
}

.bl-featured__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: #aaa;
    flex-wrap: wrap
}

.bl-featured__meta i {
    color: #B8960C;
    margin-right: 3px
}

.bl-featured__title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.3
}

.bl-featured__excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0
}

.bl-featured__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #B8960C;
    margin-top: 4px;
    transition: gap .2s
}

.bl-featured:hover .bl-featured__cta {
    gap: 10px
}

.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px
}

.bl-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ece8e0;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    background: #fff
}

.bl-card:hover {
    border-color: rgba(184, 150, 12, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px)
}

.bl-card__img {
    position: relative;
    aspect-ratio: 16/10;
    background: #f5f0e8;
    overflow: hidden
}

.bl-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.bl-card:hover .bl-card__img img {
    transform: scale(1.05)
}

.bl-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ccc;
    font-size: 32px
}

.bl-card__body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.bl-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    color: #aaa
}

.bl-card__meta i {
    color: #B8960C
}

.bl-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.4
}

.bl-card__excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0;
    flex: 1
}

.bl-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 700;
    color: #B8960C;
    margin-top: 4px;
    transition: gap .2s
}

.bl-card:hover .bl-card__cta {
    gap: 8px
}

.bl-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px
}

.bl-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e0dbd0;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: all .2s
}

.bl-pagination .page-numbers:hover {
    border-color: #B8960C;
    color: #B8960C
}

.bl-pagination .page-numbers.current {
    background: #B8960C;
    border-color: #B8960C;
    color: #fff
}

.bl-empty {
    text-align: center;
    padding: 80px 24px;
    color: #ccc
}

.bl-empty i {
    font-size: 48px;
    display: block;
    margin-bottom: 16px
}

.bl-empty h3 {
    font-size: 18px;
    color: #888;
    margin: 0 0 8px
}

.bl-empty p {
    font-size: 14px;
    color: #aaa;
    margin: 0
}

.bl-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.bl-sidebar__box {
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: 14px;
    padding: 20px
}

.bl-sidebar__title {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    margin: 0 0 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase
}

.bl-search {
    display: flex;
    gap: 8px
}

.bl-search__input {
    flex: 1;
    padding: 9px 14px;
    border: 1px solid #e0dbd0;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    transition: border-color .2s
}

.bl-search__input:focus {
    border-color: #B8960C
}

.bl-search__btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #B8960C;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background .2s;
    flex-shrink: 0
}

.bl-search__btn:hover {
    background: #9a7d0a
}

.bl-sidebar__cats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.bl-sidebar__cats li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all .2s
}

.bl-sidebar__cats li a em {
    font-style: normal;
    font-size: 11px;
    background: #f0ebe0;
    color: #999;
    padding: 1px 7px;
    border-radius: 10px
}

.bl-sidebar__cats li a:hover,
.bl-sidebar__cats li a.is-active {
    background: rgba(184, 150, 12, 0.08);
    color: #B8960C
}

.bl-sidebar__recent {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f0e8;
    text-decoration: none;
    color: inherit;
    transition: all .2s
}

.bl-sidebar__recent:last-child {
    border-bottom: none
}

.bl-sidebar__recent:hover {
    color: #B8960C
}

.bl-sidebar__recent img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0
}

.bl-sidebar__recent-title {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin-bottom: 3px
}

.bl-sidebar__recent-date {
    font-size: 11px;
    color: #aaa
}

.bl-sidebar__wa {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 14px;
    padding: 20px;
    color: #fff;
    text-align: center
}

.bl-sidebar__wa>i {
    font-size: 28px;
    color: #25D366;
    display: block;
    margin-bottom: 10px
}

.bl-sidebar__wa h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px
}

.bl-sidebar__wa p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 14px;
    line-height: 1.5
}

.bl-sidebar__wa a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    width: 100%;
    justify-content: center
}

.bl-sidebar__wa a:hover {
    background: #1ebd5a;
    color: #fff
}

@media (max-width:1100px) {
    .bl-body {
        grid-template-columns: 1fr 260px;
        gap: 28px
    }

    .bl-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:860px) {
    .bl-body {
        grid-template-columns: 1fr
    }

    .bl-sidebar {
        position: static
    }

    .bl-featured {
        grid-template-columns: 1fr
    }

    .bl-featured__img {
        aspect-ratio: 16/9
    }
}

@media (max-width:640px) {
    .bl-header__title {
        font-size: 28px
    }

    .bl-grid {
        grid-template-columns: 1fr
    }
}

.pg-layout {
    display: block;
    min-height: calc(100vh - 80px);
    background: #fff
}

.pg-sidebar {
    background: #fff;
    border-right: 1px solid #ece8e0;
    padding: 28px 0 40px;
    position: fixed;
    top: 80px;
    left: 0;
    width: 260px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 100
}

.pg-sidebar::-webkit-scrollbar {
    width: 4px
}

.pg-sidebar::-webkit-scrollbar-track {
    background: transparent
}

.pg-sidebar::-webkit-scrollbar-thumb {
    background: #e0dbd0;
    border-radius: 4px
}

.pg-sidebar__head {
    padding: 0 20px 20px;
    border-bottom: 1px solid #f0ebe0;
    margin-bottom: 8px
}

.pg-sidebar__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8960C
}

.pg-sidebar__nav {
    flex: 1;
    padding: 4px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.pg-sidebar__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s;
    gap: 8px
}

.pg-sidebar__item:hover {
    background: #faf7f0;
    color: #111
}

.pg-sidebar__item.is-active {
    background: rgba(184, 150, 12, 0.08);
    color: #B8960C;
    font-weight: 700;
    border-left: 3px solid #B8960C;
    padding-left: 9px
}

.pg-sidebar__item-name {
    flex: 1;
    line-height: 1.3
}

.pg-sidebar__item-count {
    font-size: 11px;
    font-weight: 600;
    background: #f0ebe0;
    color: #999;
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0
}

.pg-sidebar__item.is-active .pg-sidebar__item-count {
    background: rgba(184, 150, 12, 0.15);
    color: #B8960C
}

.pg-sidebar__wa {
    margin: 16px 12px 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff
}

.pg-sidebar__wa>i {
    font-size: 22px;
    color: #25D366;
    flex-shrink: 0
}

.pg-sidebar__wa>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.pg-sidebar__wa strong {
    font-size: 12.5px;
    font-weight: 700;
    color: #fff
}

.pg-sidebar__wa span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55)
}

.pg-sidebar__wa>a {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    background: #25D366;
    color: #fff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s;
    flex-shrink: 0
}

.pg-sidebar__wa>a:hover {
    background: #1ebd5a;
    color: #fff
}

.pg-main {
    padding: 28px 32px 60px;
    background: #fff;
    margin-left: 260px
}

.pg-main__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0ebe0;
    gap: 16px;
    flex-wrap: wrap
}

.pg-main__header-left {
    display: flex;
    align-items: baseline;
    gap: 12px
}

.pg-main__header-right {
    text-align: right
}

.pg-filter {
    display: flex;
    gap: 10px
}

.pg-filter__select {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s
}

.pg-filter__select:hover {
    border-color: #d4af37
}

.pg-grid--list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.pg-grid--list .pg-card {
    display: flex;
    align-items: center;
    gap: 16px
}

.pg-grid--list .pg-card__img {
    width: 120px;
    height: 120px
}

@media (max-width:768px) {
    .pg-grid--list .pg-card {
        flex-direction: column
    }

    .pg-filter {
        flex-direction: column
    }

    .pg-filter__select {
        width: 100%
    }
}

.pg-main__title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -0.2px
}

.pg-main__count {
    font-size: 13px;
    font-weight: 600;
    color: #B8960C;
    background: rgba(184, 150, 12, 0.08);
    border: 1px solid rgba(184, 150, 12, 0.18);
    padding: 3px 10px;
    border-radius: 20px
}

.pg-main__hint {
    font-size: 12px;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 6px
}

.pg-main__hint i {
    color: #d4af37
}

.pg-empty {
    text-align: center;
    padding: 80px 24px;
    color: #ccc
}

.pg-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block
}

.pg-empty p {
    font-size: 14px;
    color: #aaa;
    margin: 0
}

.pg-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.pg-card {
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column
}

.pg-card:hover {
    border-color: rgba(184, 150, 12, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px)
}

.pg-card__img {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f8f6f2;
    overflow: hidden
}

.pg-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.pg-card:hover .pg-card__img img {
    transform: scale(1.06)
}

.pg-card__hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease
}

.pg-card:hover .pg-card__hover {
    opacity: 1
}

.pg-card__zoom {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(6px);
    transition: transform .25s ease
}

.pg-card:hover .pg-card__zoom {
    transform: translateY(0)
}

.pg-card__zoom i {
    font-size: 12px
}

.pg-card__foot {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid #f5f0e8
}

.pg-card__num {
    font-size: 11.5px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.3px
}

.pg-card__wa {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: #25D366;
    color: #fff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap
}

.pg-card__wa:hover {
    background: #1ebd5a;
    color: #fff;
    transform: translateY(-1px)
}

.pg-card__wa i {
    font-size: 13px
}

.pg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease
}

.pg-lightbox.is-open {
    opacity: 1;
    pointer-events: all
}

.pg-lightbox__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(6px)
}

.pg-lightbox__wrap {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    width: calc(100% - 40px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.93) translateY(14px);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1)
}

.pg-lightbox.is-open .pg-lightbox__wrap {
    transform: scale(1) translateY(0)
}

.pg-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all .2s;
    backdrop-filter: blur(4px)
}

.pg-lightbox__close:hover {
    background: #B8960C;
    transform: scale(1.08)
}

.pg-lightbox__img-area {
    flex: 1;
    overflow: hidden;
    background: #f8f6f2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    max-height: calc(92vh - 72px)
}

.pg-lightbox__img-area img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block
}

.pg-lightbox__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid #ece8e0;
    gap: 16px;
    flex-wrap: wrap;
    background: #fff
}

.pg-lightbox__bar span {
    font-size: 14px;
    font-weight: 700;
    color: #111
}

.pg-lightbox__wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    white-space: nowrap
}

.pg-lightbox__wa:hover {
    background: #1ebd5a;
    transform: translateY(-1px);
    color: #fff
}

.pg-parent {
    background: #fff
}

.pg-tabs {
    border-bottom: 1px solid #ece8e0;
    background: #fff;
    position: sticky;
    top: 80px;
    z-index: 10
}

.pg-tabs__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0
}

.pg-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all .2s
}

.pg-tab i {
    font-size: 13px
}

.pg-tab:hover {
    color: #111
}

.pg-tab.is-active {
    color: #B8960C;
    border-bottom-color: #B8960C
}

.pg-parent__body {
    padding: 40px 24px 60px
}

.pg-parent__inner {
    max-width: 1320px;
    margin: 0 auto
}

.pg-parent__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.pg-cat-card {
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
    display: flex;
    flex-direction: column
}

.pg-cat-card:hover {
    border-color: rgba(184, 150, 12, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08)
}

.pg-cat-card__img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f8f6f2;
    overflow: hidden
}

.pg-cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.pg-cat-card:hover .pg-cat-card__img img {
    transform: scale(1.06)
}

.pg-cat-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ccc;
    font-size: 40px
}

.pg-cat-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(184, 150, 12, 0.92);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px
}

.pg-cat-card__body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.pg-cat-card__body h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111
}

.pg-cat-card__cta {
    font-size: 13px;
    font-weight: 600;
    color: #B8960C;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s
}

.pg-cat-card:hover .pg-cat-card__cta {
    gap: 10px
}

.pg-cta {
    padding: 40px 24px;
    background: #fff;
    border-top: 1px solid #ece8e0
}

.pg-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.pg-cta__inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.18), transparent 70%);
    pointer-events: none
}

.pg-cta__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    position: relative;
    z-index: 1
}

.pg-cta__text {
    flex: 1;
    position: relative;
    z-index: 1
}

.pg-cta__text h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700
}

.pg-cta__text p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5
}

.pg-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: all .25s;
    position: relative;
    z-index: 1;
    white-space: nowrap
}

.pg-cta__btn:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-2px)
}

@media (max-width:1200px) {
    .pg-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (max-width:1024px) {
    .pg-sidebar {
        width: 220px
    }

    .pg-main {
        margin-left: 220px
    }

    .pg-parent__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pg-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:860px) {
    .pg-layout {
        display: block
    }

    .pg-sidebar {
        position: static;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #ece8e0;
        padding: 16px 0
    }

    .pg-sidebar__nav {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 4px 16px
    }

    .pg-sidebar__item {
        padding: 7px 12px;
        font-size: 12.5px
    }

    .pg-main {
        padding: 20px 16px 40px;
        margin-left: 0
    }

    .pg-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px
    }
}

@media (max-width:640px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .pg-parent__grid {
        grid-template-columns: 1fr
    }

    .pg-cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px
    }

    .pg-cta__btn {
        width: 100%;
        justify-content: center
    }

    .pg-lightbox__bar {
        flex-direction: column;
        align-items: flex-start
    }

    .pg-lightbox__wa {
        width: 100%;
        justify-content: center
    }
}

.pg-card__edit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: #f5f0e8;
    color: #B8960C;
    border: 1px solid rgba(184, 150, 12, 0.25);
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap
}

.pg-card__edit:hover {
    background: #B8960C;
    color: #fff;
    border-color: #B8960C;
    transform: translateY(-1px)
}

.pg-card__edit i {
    font-size: 11px
}

.pg-edit-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease
}

.pg-edit-modal.is-open {
    opacity: 1;
    pointer-events: all
}

.pg-edit-modal__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px)
}

.pg-edit-modal__box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    width: calc(100% - 40px);
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
    transform: scale(0.94) translateY(12px);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column
}

.pg-edit-modal.is-open .pg-edit-modal__box {
    transform: scale(1) translateY(0)
}

.pg-edit-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #ece8e0;
    gap: 12px
}

.pg-edit-modal__head-left {
    display: flex;
    align-items: center;
    gap: 10px
}

.pg-edit-modal__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #B8960C;
    background: rgba(184, 150, 12, 0.1);
    border: 1px solid rgba(184, 150, 12, 0.2);
    padding: 4px 10px;
    border-radius: 20px
}

.pg-edit-modal__head h3 {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin: 0
}

.pg-edit-modal__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f0e8;
    color: #888;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .2s;
    flex-shrink: 0
}

.pg-edit-modal__close:hover {
    background: #B8960C;
    color: #fff
}

.pg-edit-modal__body {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 24px;
    flex: 1
}

.pg-edit-modal__preview {
    border-radius: 10px;
    overflow: hidden;
    background: #f8f6f2;
    aspect-ratio: 1 / 1;
    align-self: start
}

.pg-edit-modal__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.pg-edit-modal__fields {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.pg-edit-field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.pg-edit-field label {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.3px
}

.pg-edit-field input,
.pg-edit-field textarea {
    padding: 10px 14px;
    border: 1px solid #e0dbd0;
    border-radius: 8px;
    font-size: 13.5px;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color .2s;
    font-family: inherit;
    resize: vertical
}

.pg-edit-field input:focus,
.pg-edit-field textarea:focus {
    border-color: #B8960C;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.1)
}

.pg-edit-modal__foot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid #ece8e0
}

.pg-edit-modal__cancel {
    padding: 10px 20px;
    background: #f5f0e8;
    color: #888;
    border: none;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s
}

.pg-edit-modal__cancel:hover {
    background: #e8e0d0;
    color: #555
}

.pg-edit-modal__save {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: #B8960C;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s
}

.pg-edit-modal__save:hover {
    background: #9a7d0a;
    transform: translateY(-1px)
}

.pg-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999999;
    background: #111;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s ease
}

.pg-toast.show {
    opacity: 1;
    transform: translateY(0)
}

.pg-toast i {
    color: #4ade80;
    font-size: 15px
}

@media (max-width:600px) {
    .pg-edit-modal__body {
        grid-template-columns: 1fr
    }

    .pg-edit-modal__preview {
        aspect-ratio: 16/9
    }
}

.pg-card__img {
    position: relative
}

.pg-card__urun-no {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15)
}

.pg-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px
}

.pg-card__stok {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #16a34a
}

.pg-card__stok-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: stokPulse 1.4s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6)
}

@keyframes stokPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7)
    }

    70% {
        box-shadow: 0 0 0 7px rgba(34, 197, 94, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0)
    }
}

.pg-card__siparis {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap
}

.pg-card__siparis:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: #fff
}

.pg-card__siparis i {
    font-size: 12px
}

.hk-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B8960C;
    margin-bottom: 14px
}

.hk-story {
    background: #fff;
    padding: 100px 0
}

.hk-story__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center
}

.hk-story__title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin: 0 0 24px;
    letter-spacing: -0.5px
}

.hk-story__title span {
    color: #B8960C
}

.hk-story__text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 16px
}

.hk-story__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 30px;
    background: #B8960C;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(184, 150, 12, 0.3)
}

.hk-story__btn:hover {
    background: #9a7d0a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 150, 12, 0.4);
    color: #fff
}

.hk-story__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 200px;
    gap: 12px
}

.hk-story__mosaic-img {
    border-radius: 14px;
    overflow: hidden;
    position: relative
}

.hk-story__mosaic-img--wide {
    grid-column: 1 / -1;
    grid-row: 1
}

.hk-story__mosaic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease
}

.hk-story__mosaic-img:hover img {
    transform: scale(1.05)
}

.hk-stats {
    background: #fff;
    padding: 40px 24px;
    border-top: 1px solid #ece8e0;
    border-bottom: 1px solid #ece8e0
}

.hk-stats__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1
}

.hk-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #f8f5f0;
    border-radius: 12px;
    border: 1px solid #ece8e0;
    transition: all 0.25s ease
}

.hk-stat:hover {
    border-color: #B8960C;
    background: #fff;
    box-shadow: 0 4px 20px rgba(184, 150, 12, 0.1);
    transform: translateY(-2px)
}

.hk-stat__icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(184, 150, 12, 0.1);
    border: 1px solid rgba(184, 150, 12, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    font-size: 15px;
    flex-shrink: 0
}

.hk-stat__info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.hk-stat__num {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    line-height: 1
}

.hk-stat__label {
    font-size: 11px;
    color: #888;
    font-weight: 500;
    white-space: nowrap
}

.hk-vizyon {
    background: #fff;
    padding: 60px 0
}

.hk-vizyon__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.hk-vizyon__head {
    text-align: center;
    margin-bottom: 36px
}

.hk-vizyon__head h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -0.3px
}

.hk-vizyon__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.hk-vizyon-card {
    background: #fff;
    border-radius: 14px;
    padding: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #ece8e0;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: stretch;
    min-height: 220px
}

.hk-vizyon-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px)
}

.hk-vizyon-card__img {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.hk-vizyon-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    margin: 0;
    transition: transform 0.4s ease
}

.hk-vizyon-card:hover .hk-vizyon-card__img img {
    transform: scale(1.05)
}

.hk-vizyon-card__body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-left: 3px solid #B8960C
}

.hk-vizyon-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(184, 150, 12, 0.25)
}

.hk-vizyon-card__tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8960C;
    margin-bottom: 6px
}

.hk-vizyon-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px;
    letter-spacing: -0.2px;
    line-height: 1.3
}

.hk-vizyon-card p {
    font-size: 12.5px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 12px
}

.hk-vizyon-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.hk-vizyon-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555
}

.hk-vizyon-card ul li i {
    color: #B8960C;
    font-size: 10px;
    flex-shrink: 0
}

.hk-teslimat {
    background: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden
}

.hk-teslimat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.05) 0%, transparent 70%);
    pointer-events: none
}

.hk-teslimat__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

.hk-teslimat__head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.hk-teslimat__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(184, 150, 12, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(184, 150, 12, 0.25);
    color: #B8960C;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 18px
}

.hk-teslimat__eyebrow i {
    font-size: 11px
}

.hk-teslimat .hk-gold {
    background: linear-gradient(135deg, #B8960C, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hk-teslimat__head h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px;
    letter-spacing: -0.3px
}

.hk-teslimat__head p {
    font-size: 16px;
    color: #666;
    margin: 0
}

.hk-teslimat__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 56px;
    position: relative
}

.hk-teslimat__grid::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 12%;
    right: 12%;
    height: 2px;
    background-image: linear-gradient(90deg, rgba(184, 150, 12, 0.4) 50%, transparent 50%);
    background-size: 16px 2px;
    background-repeat: repeat-x;
    z-index: 0
}

.hk-teslimat-card {
    border-radius: 18px;
    padding: 32px 26px 24px;
    text-align: center;
    position: relative;
    overflow: visible;
    border: 1px solid #ece8e0;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    z-index: 1
}

.hk-teslimat-card:hover {
    border-color: rgba(184, 150, 12, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px)
}

.hk-teslimat-card__icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 0 0 20px
}

.hk-teslimat-card__icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(184, 150, 12, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    font-size: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 0 0 8px #fff, 0 4px 18px rgba(0, 0, 0, 0.04)
}

.hk-teslimat-card__icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px dashed rgba(184, 150, 12, 0.35);
    animation: hkRingRotate 12s linear infinite;
    transition: inset 0.4s ease, border-color 0.4s ease
}

@keyframes hkRingRotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.hk-teslimat-card__icon>i {
    display: inline-block;
    animation: hkFloat 3.5s ease-in-out infinite
}

.hk-teslimat-card:nth-child(1) .hk-teslimat-card__icon>i {
    animation-delay: 0s
}

.hk-teslimat-card:nth-child(2) .hk-teslimat-card__icon>i {
    animation: hkSwing 2.5s ease-in-out infinite;
    transform-origin: 50% 80%
}

.hk-teslimat-card:nth-child(3) .hk-teslimat-card__icon>i {
    animation: hkSlide 2.8s ease-in-out infinite
}

.hk-teslimat-card:nth-child(4) .hk-teslimat-card__icon>i {
    animation: hkWiggle 3s ease-in-out infinite;
    transform-origin: 50% 50%
}

@keyframes hkFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }
}

@keyframes hkSwing {

    0%,
    100% {
        transform: rotate(-12deg)
    }

    50% {
        transform: rotate(12deg)
    }
}

@keyframes hkSlide {

    0%,
    100% {
        transform: translateX(-3px)
    }

    50% {
        transform: translateX(3px)
    }
}

@keyframes hkWiggle {

    0%,
    100% {
        transform: rotate(-8deg)
    }

    25% {
        transform: rotate(8deg)
    }

    50% {
        transform: rotate(-4deg)
    }

    75% {
        transform: rotate(4deg)
    }
}

.hk-teslimat-card:hover .hk-teslimat-card__icon {
    background: linear-gradient(135deg, #B8960C, #d4af37);
    border-color: transparent;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 0 0 8px #fff, 0 12px 32px rgba(184, 150, 12, 0.4)
}

.hk-teslimat-card:hover .hk-teslimat-card__icon::before {
    inset: -16px;
    border-color: rgba(184, 150, 12, 0.55);
    animation-duration: 6s
}

.hk-teslimat-card__step {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8960C;
    background: rgba(184, 150, 12, 0.08);
    border: 1px solid rgba(184, 150, 12, 0.18);
    padding: 5px 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0
}

.hk-teslimat-card:hover .hk-teslimat-card__step {
    background: rgba(184, 150, 12, 0.15);
    border-color: rgba(184, 150, 12, 0.35)
}

.hk-teslimat-card__title {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px;
    letter-spacing: -0.2px
}

.hk-teslimat-card__desc {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 18px;
    flex: 1
}

.hk-teslimat-card__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #B8960C;
    padding: 10px 14px;
    background: rgba(184, 150, 12, 0.06);
    border-radius: 8px;
    transition: all 0.3s ease
}

.hk-teslimat-card:hover .hk-teslimat-card__check {
    background: rgba(184, 150, 12, 0.12)
}

.hk-teslimat-card__check i {
    font-size: 13px
}

.hk-teslimat-card--featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-color: transparent;
    color: #fff;
    overflow: visible
}

.hk-teslimat-card--featured::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -20%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.18) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 50%
}

.hk-teslimat-card--featured:hover {
    border-color: transparent;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3)
}

.hk-teslimat-card--featured>* {
    position: relative;
    z-index: 1
}

.hk-teslimat-card--featured .hk-teslimat-card__icon {
    background: linear-gradient(135deg, #B8960C, #d4af37);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 0 8px #1f1f1f, 0 8px 24px rgba(184, 150, 12, 0.4)
}

.hk-teslimat-card--featured .hk-teslimat-card__icon::before {
    border-color: rgba(212, 175, 55, 0.4)
}

.hk-teslimat-card--featured:hover .hk-teslimat-card__icon {
    transform: scale(1.08);
    box-shadow: 0 0 0 8px #1f1f1f, 0 12px 32px rgba(184, 150, 12, 0.6)
}

.hk-teslimat-card--featured .hk-teslimat-card__step {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.3)
}

.hk-teslimat-card--featured .hk-teslimat-card__title {
    color: #fff
}

.hk-teslimat-card--featured .hk-teslimat-card__desc {
    color: rgba(255, 255, 255, 0.7)
}

.hk-teslimat-card--featured .hk-teslimat-card__check {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.12)
}

.hk-teslimat-card__flag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: 0 6px 18px rgba(184, 150, 12, 0.5);
    white-space: nowrap
}

.hk-teslimat-card__flag i {
    font-size: 10px
}

.hk-teslimat__note {
    background: linear-gradient(135deg, #fff 0%, #faf7f0 100%);
    border-radius: 18px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
    border: 1px solid #ece8e0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04)
}

.hk-teslimat__note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #B8960C, #d4af37)
}

.hk-teslimat__note-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(184, 150, 12, 0.3)
}

.hk-teslimat__note-body {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.hk-teslimat__note-body h4 {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -0.2px;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.hk-teslimat__note-body h4::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(184, 150, 12, 0.3), transparent);
    margin-left: 4px
}

.hk-teslimat__note-body p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.7
}

.hk-teslimat__note-body strong {
    color: #1a1a1a;
    font-weight: 700;
    background: linear-gradient(transparent 70%, rgba(184, 150, 12, 0.18) 30%);
    padding: 0 2px
}

.hk-teslimat__note-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 6px;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3)
}

.hk-teslimat__note-btn:hover {
    background: #1ebd5a;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
    color: #fff
}

.hk-teslimat__note-btn i {
    font-size: 16px
}

.hk-neden {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #ece8e0
}

.hk-neden__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.hk-neden__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 24px;
    flex-wrap: wrap
}

.hk-neden__head-left h2 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0 0 4px;
    letter-spacing: -0.3px
}

.hk-neden__head-left p {
    font-size: 13px;
    color: #888;
    margin: 0
}

.hk-neden__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.hk-neden-card {
    background: #f8f5f0;
    border-radius: 12px;
    padding: 20px 16px;
    border: 1px solid #ece8e0;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden
}

.hk-neden-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #B8960C, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease
}

.hk-neden-card:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(184, 150, 12, 0.1);
    transform: translateY(-3px);
    border-color: rgba(184, 150, 12, 0.25)
}

.hk-neden-card:hover::after {
    transform: scaleX(1)
}

.hk-neden-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(184, 150, 12, 0.08);
    border: 1px solid rgba(184, 150, 12, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    font-size: 17px;
    margin-bottom: 12px;
    transition: all 0.25s ease
}

.hk-neden-card:hover .hk-neden-card__icon {
    background: #B8960C;
    color: #fff;
    border-color: #B8960C
}

.hk-neden-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px
}

.hk-neden-card p {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    margin: 0
}

.hk-sertifika {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #ece8e0
}

.hk-sertifika__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.hk-sertifika__head {
    text-align: center;
    margin-bottom: 40px
}

.hk-sertifika__head h2 {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px;
    letter-spacing: -0.3px
}

.hk-sertifika__head p {
    font-size: 14px;
    color: #777;
    margin: 0
}

.hk-sertifika__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px
}

.hk-sertifika-card {
    background: #f8f5f0;
    border-radius: 12px;
    padding: 24px 18px;
    border: 1px solid #ece8e0;
    text-align: center;
    transition: all 0.25s ease
}

.hk-sertifika-card:hover {
    background: #fff;
    border-color: #B8960C;
    box-shadow: 0 6px 20px rgba(184, 150, 12, 0.1);
    transform: translateY(-3px)
}

.hk-sertifika-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin: 0 auto 14px;
    box-shadow: 0 4px 12px rgba(184, 150, 12, 0.25)
}

.hk-sertifika-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px
}

.hk-sertifika-card p {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    margin: 0
}

.hk-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(184, 150, 12, 0.1) 0%, transparent 70%);
    pointer-events: none
}

.hk-cta__inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.hk-cta h2 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.3px
}

.hk-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 36px;
    line-height: 1.7
}

.hk-cta__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.hk-cta__btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3)
}

.hk-cta__btn-wa:hover {
    background: #1ebd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
    color: #fff
}

.hk-cta__btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.25s ease
}

.hk-cta__btn-outline:hover {
    border-color: #B8960C;
    background: rgba(184, 150, 12, 0.1);
    color: #B8960C;
    transform: translateY(-2px)
}

@media (max-width:1100px) {
    .hk-teslimat__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hk-neden__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hk-teslimat__note {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 14px;
        padding: 24px 22px
    }

    .hk-teslimat__note-icon {
        margin: 0 auto
    }

    .hk-teslimat__note-body h4 {
        justify-content: center
    }

    .hk-teslimat__note-body h4::after {
        display: none
    }

    .hk-teslimat__note-btn {
        align-self: center
    }
}

@media (max-width:900px) {
    .hk-story__inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .hk-stats__inner {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px
    }

    .hk-stat {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 32px
    }

    .hk-vizyon__grid {
        grid-template-columns: 1fr
    }

    .hk-story__title,
    .hk-vizyon__head h2,
    .hk-teslimat__head h2,
    .hk-neden__head h2,
    .hk-cta h2 {
        font-size: 30px
    }
}

@media (max-width:640px) {

    .hk-story,
    .hk-vizyon,
    .hk-teslimat,
    .hk-neden {
        padding: 60px 0
    }

    .hk-stats__inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .hk-teslimat__grid {
        grid-template-columns: 1fr
    }

    .hk-neden__grid {
        grid-template-columns: 1fr
    }

    .hk-cta h2 {
        font-size: 26px
    }
}

.hk-atolye {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.hk-atolye::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.06) 0%, transparent 70%);
    pointer-events: none
}

.hk-atolye__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

.hk-atolye__head {
    text-align: center;
    margin-bottom: 44px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.hk-atolye__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(184, 150, 12, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(184, 150, 12, 0.25);
    color: #B8960C;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 18px
}

.hk-atolye__head h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px;
    letter-spacing: -0.3px
}

.hk-atolye__head .hk-gold {
    background: linear-gradient(135deg, #B8960C, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hk-atolye__head p {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.6
}

.hk-atolye__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    height: 480px
}

.hk-atolye-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1)
}

.hk-atolye-item--lg {
    grid-row: span 2
}

.hk-atolye-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease
}

.hk-atolye-item:hover {
    transform: translateY(-4px)
}

.hk-atolye-item:hover img {
    transform: scale(1.08)
}

.hk-atolye-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 75%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 18px;
    color: #fff;
    transition: background 0.3s ease
}

.hk-atolye-item__overlay i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 10px;
    box-shadow: 0 4px 14px rgba(184, 150, 12, 0.4);
    transition: transform 0.3s ease
}

.hk-atolye-item:hover .hk-atolye-item__overlay i {
    transform: scale(1.1) rotate(-5deg)
}

.hk-atolye-item__overlay span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3)
}

.hk-atolye-item--lg .hk-atolye-item__overlay i {
    width: 48px;
    height: 48px;
    font-size: 19px
}

.hk-atolye-item--lg .hk-atolye-item__overlay span {
    font-size: 17px
}

@media (max-width:900px) {
    .hk-atolye__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto
    }

    .hk-atolye-item {
        aspect-ratio: 4 / 3
    }

    .hk-atolye-item--lg {
        grid-column: span 2;
        grid-row: auto;
        aspect-ratio: 16 / 9
    }
}

@media (max-width:540px) {
    .hk-atolye {
        padding: 56px 0
    }

    .hk-atolye__head h2 {
        font-size: 26px
    }

    .hk-atolye__grid {
        grid-template-columns: 1fr
    }

    .hk-atolye-item--lg {
        grid-column: auto
    }
}

:root {
    --iw-paper: #ffffff;
    --iw-soft: #faf9f6;
    --iw-line: #ece8e0;
    --iw-line-soft: #f4f0e8;
    --iw-text: #1a1a1a;
    --iw-text-soft: #5b5b5b;
    --iw-mute: #999999;
    --iw-gold: #B8960C;
    --iw-gold-soft: #d4af37;
    --iw-green: #25D366
}

.iw-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--iw-gold), var(--iw-gold-soft));
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(184, 150, 12, 0.28)
}

.iw-form-block__head,
.iw-info__head,
.iw-map__head,
.iw-faq__head {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--iw-line-soft)
}

.iw-form-block__head h2,
.iw-info__head h2,
.iw-map__head h2,
.iw-faq__head h2 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 800;
    color: var(--iw-text);
    letter-spacing: -0.3px;
    line-height: 1.25
}

.iw-form-block__head p,
.iw-info__head p,
.iw-map__head p,
.iw-faq__head p {
    margin: 0;
    font-size: 13px;
    color: var(--iw-text-soft);
    line-height: 1.5
}

.iw-faq__head--row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 18px
}

.iw-faq__head--row h2 {
    margin: 0;
    flex: 0 0 auto
}

.iw-faq__head--row p {
    margin: 0;
    flex: 1 1 auto;
    text-align: right;
    min-width: 220px
}

@media (max-width:600px) {
    .iw-faq__head--row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px
    }

    .iw-faq__head--row p {
        text-align: left
    }
}

.iw-hero {
    background: var(--iw-paper);
    padding: 56px 24px 40px;
    text-align: center;
    border-bottom: 1px solid var(--iw-line-soft)
}

.iw-hero__inner {
    max-width: 780px;
    margin: 0 auto
}

.iw-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #1a7a3e;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px 6px 10px;
    border-radius: 50px;
    margin-bottom: 20px
}

.iw-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--iw-green);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: iwBlink 1.6s ease-in-out infinite
}

@keyframes iwBlink {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0)
    }
}

.iw-hero__title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 400;
    color: var(--iw-text);
    margin: 0 0 16px;
    letter-spacing: -0.8px;
    line-height: 1.15
}

.iw-hero__title em {
    font-style: italic;
    color: var(--iw-gold);
    font-weight: 400
}

.iw-hero__lead {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--iw-text-soft);
    max-width: 560px;
    margin: 0 auto 28px
}

.iw-hero__metrics {
    display: inline-grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--iw-soft);
    border: 1px solid var(--iw-line);
    border-radius: 16px;
    padding: 4px;
    overflow: hidden
}

.iw-hero__metrics>div {
    padding: 12px 22px;
    border-right: 1px solid var(--iw-line);
    text-align: center
}

.iw-hero__metrics>div:last-child {
    border-right: 0
}

.iw-hero__metrics strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--iw-gold);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.3px
}

.iw-hero__metrics span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--iw-mute);
    text-transform: uppercase
}

.iw-workspace {
    background: var(--iw-paper);
    padding: 56px 24px 64px
}

.iw-workspace__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: start
}

.iw-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important
}

.iw-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 11px;
    margin-bottom: 18px;
    font-size: 13.5px;
    line-height: 1.5;
    border: 1px solid
}

.iw-alert i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px
}

.iw-alert strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px
}

.iw-alert span {
    color: var(--iw-text-soft)
}

.iw-alert--ok {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.3);
    color: #1a7a3e
}

.iw-alert--ok strong {
    color: #1a7a3e
}

.iw-alert--ok i {
    color: #25D366
}

.iw-alert--err {
    background: rgba(220, 38, 38, 0.06);
    border-color: rgba(220, 38, 38, 0.25);
    color: #b91c1c
}

.iw-alert--err strong {
    color: #b91c1c
}

.iw-alert--err i {
    color: #dc2626
}

.iw-form-block {
    background: var(--iw-paper);
    border: 1px solid var(--iw-line);
    border-radius: 16px;
    padding: 32px 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03)
}

.iw-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.iw-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.iw-field {
    position: relative
}

.iw-field input,
.iw-field select,
.iw-field textarea {
    width: 100%;
    padding: 18px 14px 9px;
    border: 1.5px solid var(--iw-line);
    border-radius: 10px;
    background: var(--iw-paper);
    font-size: 14px;
    font-family: inherit;
    color: var(--iw-text);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
    -webkit-appearance: none
}

.iw-field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.55;
    padding-top: 22px
}

.iw-field label {
    position: absolute;
    left: 14px;
    top: 14px;
    font-size: 13px;
    color: var(--iw-mute);
    pointer-events: none;
    transition: all 0.25s ease;
    background: var(--iw-paper);
    padding: 0 4px
}

.iw-field label small {
    font-size: 11px;
    color: var(--iw-mute);
    margin-left: 4px;
    font-weight: 400
}

.iw-field input:focus,
.iw-field select:focus,
.iw-field textarea:focus {
    border-color: var(--iw-gold);
    box-shadow: 0 0 0 4px rgba(184, 150, 12, 0.1)
}

.iw-field input:focus+label,
.iw-field input:not(:placeholder-shown)+label,
.iw-field textarea:focus+label,
.iw-field textarea:not(:placeholder-shown)+label,
.iw-field select:focus+label,
.iw-field select:valid+label {
    top: -7px;
    font-size: 10.5px;
    color: var(--iw-gold);
    font-weight: 600;
    letter-spacing: 0.3px
}

.iw-field--select {
    position: relative
}

.iw-field--select select {
    cursor: pointer
}

.iw-field--select i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--iw-mute);
    font-size: 12px;
    pointer-events: none
}

.iw-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--iw-mute);
    line-height: 1.5
}

.iw-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    margin-top: 2px;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--iw-text-soft)
}

.iw-check input {
    display: none
}

.iw-check__box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid var(--iw-line);
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--iw-paper);
    transition: all 0.2s ease;
    color: transparent;
    font-size: 11px
}

.iw-check input:checked+.iw-check__box {
    background: linear-gradient(135deg, var(--iw-gold), var(--iw-gold-soft));
    border-color: var(--iw-gold);
    color: #fff
}

.iw-check__text a {
    color: var(--iw-gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px
}

.iw-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    background: var(--iw-text);
    color: #fff;
    border: 0;
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    margin-top: 2px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.13);
    align-self: flex-start;
    position: relative;
    overflow: hidden
}

.iw-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 150, 12, 0.25), transparent);
    transition: left 0.6s ease
}

.iw-submit:hover {
    background: var(--iw-gold);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(184, 150, 12, 0.35)
}

.iw-submit:hover::before {
    left: 100%
}

.iw-submit i {
    transition: transform 0.3s ease
}

.iw-submit:hover i {
    transform: translateX(4px)
}

.iw-form__safe {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 0;
    font-size: 12.5px;
    color: var(--iw-mute);
    line-height: 1.5
}

.iw-form__safe i {
    color: var(--iw-gold);
    font-size: 13px
}

.iw-info {
    position: relative
}

.iw-info__sticky {
    position: sticky;
    top: 100px;
    background: var(--iw-soft);
    border: 1px solid var(--iw-line);
    border-radius: 16px;
    padding: 26px 24px;
    overflow: hidden
}

.iw-info__primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    background: linear-gradient(135deg, var(--iw-green), #128C7E);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 22px;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.iw-info__primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45);
    color: #fff
}

.iw-info__primary-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.iw-info__primary-text {
    flex: 1;
    line-height: 1.2
}

.iw-info__primary-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px
}

.iw-info__primary-text strong {
    font-size: 14px;
    font-weight: 700
}

.iw-info__primary-arrow {
    font-size: 14px;
    transition: transform 0.3s ease
}

.iw-info__primary:hover .iw-info__primary-arrow {
    transform: translateX(4px)
}

.iw-block {
    margin-bottom: 22px
}

.iw-block__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--iw-gold);
    text-transform: uppercase;
    margin-bottom: 10px
}

.iw-block__label i {
    font-size: 11px
}

.iw-block__label--green {
    color: #128C7E
}

.iw-line {
    background: var(--iw-paper);
    border: 1px solid var(--iw-line);
    border-radius: 11px;
    padding: 12px 14px;
    margin-bottom: 8px;
    transition: all 0.2s ease
}

.iw-line:hover {
    border-color: rgba(184, 150, 12, 0.35);
    box-shadow: 0 4px 14px rgba(184, 150, 12, 0.08)
}

.iw-line__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px
}

.iw-line__tag {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--iw-text-soft);
    letter-spacing: 0.4px;
    text-transform: uppercase
}

.iw-line__num {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--iw-text);
    text-decoration: none;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 4px;
    transition: color 0.2s ease
}

.iw-line__num:hover {
    color: var(--iw-gold)
}

.iw-line__hours {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--iw-mute);
    font-weight: 500
}

.iw-line__hours i {
    font-size: 10px;
    color: var(--iw-gold)
}

.iw-line__actions {
    display: flex;
    gap: 6px;
    margin-top: 8px
}

.iw-mini-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 7px;
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease
}

.iw-mini-btn i {
    font-size: 10px
}

.iw-mini-btn--dark {
    background: var(--iw-text);
    color: #fff
}

.iw-mini-btn--dark:hover {
    background: var(--iw-gold);
    color: #fff;
    transform: translateY(-1px)
}

.iw-walist {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.iw-waitem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--iw-paper);
    border: 1px solid var(--iw-line);
    border-radius: 10px;
    text-decoration: none;
    color: var(--iw-text);
    transition: all 0.2s ease
}

.iw-waitem>i:first-child {
    color: #25D366;
    font-size: 18px;
    flex-shrink: 0
}

.iw-waitem>span {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.2px
}

.iw-waitem em {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    color: var(--iw-mute);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease
}

.iw-waitem em i {
    font-size: 9px;
    transition: transform 0.25s ease
}

.iw-waitem:hover {
    border-color: rgba(37, 211, 102, 0.45);
    background: rgba(37, 211, 102, 0.05);
    transform: translateX(2px)
}

.iw-waitem:hover em {
    color: #128C7E
}

.iw-waitem:hover em i {
    transform: translateX(3px)
}

.iw-contact {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column
}

.iw-contact li {
    padding: 12px 0;
    border-bottom: 1px solid var(--iw-line);
    display: flex;
    flex-direction: column;
    gap: 3px
}

.iw-contact li:last-child {
    border-bottom: 0
}

.iw-contact__label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--iw-gold)
}

.iw-contact a,
.iw-contact p {
    margin: 0;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--iw-text);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s ease;
    word-break: break-word
}

.iw-contact p {
    font-weight: 500
}

.iw-contact p small {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--iw-mute);
    margin-top: 2px
}

.iw-contact a:hover {
    color: var(--iw-gold)
}

.iw-social {
    display: flex;
    gap: 8px;
    padding-top: 4px
}

.iw-social a {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--iw-paper);
    border: 1px solid var(--iw-line);
    color: var(--iw-text);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease
}

.iw-social a:hover {
    background: var(--iw-gold);
    border-color: var(--iw-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 150, 12, 0.3)
}

.iw-map {
    background: var(--iw-paper);
    padding: 40px 24px 56px;
    border-top: 1px solid var(--iw-line-soft)
}

.iw-map__inner {
    max-width: 1180px;
    margin: 0 auto
}

.iw-map__frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--iw-line);
    height: 380px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05)
}

.iw-map__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3)
}

.iw-map__card {
    position: absolute;
    top: 22px;
    left: 22px;
    background: var(--iw-paper);
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    max-width: 280px;
    border-left: 3px solid var(--iw-gold)
}

.iw-map__card h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 800;
    color: var(--iw-text);
    letter-spacing: -0.2px
}

.iw-map__card p {
    margin: 0 0 12px;
    font-size: 12.5px;
    color: var(--iw-text-soft);
    line-height: 1.5
}

.iw-map__buttons {
    display: flex;
    gap: 8px
}

.iw-map__btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
    letter-spacing: 0.3px
}

.iw-map__btn--solid {
    background: var(--iw-text);
    color: #fff
}

.iw-map__btn--solid:hover {
    background: var(--iw-gold);
    color: #fff
}

.iw-map__btn--ghost {
    background: var(--iw-paper);
    color: var(--iw-text);
    border: 1.5px solid var(--iw-line)
}

.iw-map__btn--ghost:hover {
    border-color: var(--iw-gold);
    color: var(--iw-gold)
}

.iw-faq {
    background: var(--iw-paper);
    padding: 40px 24px 80px
}

.iw-faq__inner {
    max-width: 1180px;
    margin: 0 auto
}

.iw-faq__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start
}

@media (max-width:760px) {
    .iw-faq__list {
        grid-template-columns: 1fr
    }
}

.iw-faq__item {
    background: var(--iw-soft);
    border: 1px solid var(--iw-line);
    border-radius: 11px;
    overflow: hidden;
    transition: all 0.3s ease
}

.iw-faq__item:hover {
    border-color: rgba(184, 150, 12, 0.3)
}

.iw-faq__item[open] {
    background: var(--iw-paper);
    border-color: var(--iw-gold);
    box-shadow: 0 8px 26px rgba(184, 150, 12, 0.1)
}

.iw-faq__item summary {
    padding: 15px 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--iw-text);
    transition: color 0.2s ease
}

.iw-faq__item summary::-webkit-details-marker {
    display: none
}

.iw-faq__item summary i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--iw-paper);
    border: 1px solid var(--iw-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--iw-gold);
    font-size: 9.5px;
    flex-shrink: 0;
    transition: all 0.3s ease
}

.iw-faq__item[open] summary i {
    background: linear-gradient(135deg, var(--iw-gold), var(--iw-gold-soft));
    border-color: transparent;
    color: #fff;
    transform: rotate(180deg)
}

.iw-faq__item p {
    margin: 0;
    padding: 0 20px 18px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--iw-text-soft)
}

.iw-faq__item p strong {
    color: var(--iw-text)
}

@media (max-width:1024px) {
    .iw-workspace__inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .iw-info__sticky {
        position: static
    }
}

@media (max-width:768px) {
    .iw-hero {
        padding: 56px 20px 40px
    }

    .iw-hero__metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 0
    }

    .iw-hero__metrics>div:nth-child(2) {
        border-right: 0
    }

    .iw-hero__metrics>div:nth-child(1),
    .iw-hero__metrics>div:nth-child(2) {
        border-bottom: 1px solid var(--iw-line)
    }

    .iw-workspace {
        padding: 56px 20px
    }

    .iw-form-block {
        padding: 28px 22px
    }

    .iw-row {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .iw-info__sticky {
        padding: 28px 22px
    }

    .iw-map {
        padding: 40px 20px 60px
    }

    .iw-map__frame {
        height: 400px
    }

    .iw-map__card {
        position: static;
        max-width: none;
        margin: -60px 20px 0;
        z-index: 2
    }

    .iw-faq {
        padding: 40px 20px 80px
    }

    .iw-form-block__head h2,
    .iw-info__head h2,
    .iw-map__head h2,
    .iw-faq__head h2 {
        font-size: 19px
    }
}

.mi-wrap {
    background: #fff;
    min-height: 100vh
}

.mi-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #ece8e0;
    padding: 14px 24px
}

.mi-breadcrumb__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #aaa;
    flex-wrap: wrap
}

.mi-breadcrumb__inner a {
    color: #888;
    text-decoration: none;
    transition: color .2s
}

.mi-breadcrumb__inner a:hover {
    color: #B8960C
}

.mi-breadcrumb__inner i {
    font-size: 9px;
    color: #ccc
}

.mi-breadcrumb__inner strong {
    color: #B8960C;
    font-weight: 700
}

.mi-body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 36px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.mi-gallery {
    position: sticky;
    top: 0
}

.mi-gallery__main {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    background: #f8f6f2;
    aspect-ratio: 1 / 1;
    margin-bottom: 12px
}

.mi-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease
}

.mi-gallery__main:hover img {
    transform: scale(1.03)
}

.mi-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    z-index: 2
}

.mi-gallery__nav--prev {
    left: 14px
}

.mi-gallery__nav--next {
    right: 14px
}

.mi-gallery__nav:hover {
    background: #B8960C;
    color: #fff
}

.mi-gallery__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .2s;
    backdrop-filter: blur(4px);
    z-index: 2
}

.mi-gallery__zoom:hover {
    background: #B8960C;
    color: #fff
}

.mi-gallery__badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 2
}

.mi-gallery__thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px
}

.mi-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e0dbd0;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: all .2s;
    flex-shrink: 0
}

.mi-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.mi-thumb:hover {
    border-color: #B8960C
}

.mi-thumb.is-active {
    border-color: #B8960C;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.2)
}

.mi-gallery__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #B8960C;
    text-decoration: none;
    transition: gap .2s
}

.mi-gallery__all:hover {
    gap: 12px
}

.mi-config {
    display: flex;
    flex-direction: column;
    gap: 0
}

.mi-config__head {
    margin-bottom: 16px
}

.mi-config__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8960C;
    margin-bottom: 8px
}

.mi-config__title {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
    line-height: 1.2
}

.mi-config__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.mi-config__model {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    background: #f5f0e8;
    padding: 4px 12px;
    border-radius: 20px
}

.mi-config__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: #16a34a
}

.mi-config__badge i {
    font-size: 12px
}

.mi-config__price-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(184, 150, 12, 0.06);
    border: 1px solid rgba(184, 150, 12, 0.18);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #B8960C;
    font-weight: 600
}

.mi-config__price-note i {
    font-size: 15px;
    flex-shrink: 0
}

.mi-form {
    display: flex;
    flex-direction: column;
    gap: 22px
}

.mi-form__group {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mi-form__group--row {
    flex-direction: row;
    gap: 14px
}

.mi-form__half {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.mi-form__label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 7px
}

.mi-form__label i {
    color: #B8960C;
    font-size: 13px
}

.mi-form__optional {
    font-size: 11px;
    font-weight: 500;
    color: #aaa;
    margin-left: 4px
}

.mi-radio-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.mi-custom-color-row {
    margin-bottom: 10px
}

.mi-custom-color-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #e0dbd0;
    background: #fff;
    cursor: pointer;
    transition: all .2s;
    font-size: 13px;
    color: #555;
    position: relative
}

.mi-custom-color-btn:hover {
    border-color: #B8960C;
    color: #B8960C
}

.mi-custom-color-input {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer;
    z-index: 2;
    border: none;
    padding: 0
}

.mi-custom-color-preview {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, #ff0080, #ff8c00, #ffd700, #00ff7f, #00bfff, #8a2be2, #ff0080);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #e0dbd0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 9px;
    transition: all 0.25s;
    flex-shrink: 0
}

.mi-custom-color-preview.is-set {
    background: var(--custom-color, #1a1a1a);
    border: 2px solid #B8960C;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.3)
}

.mi-custom-color-preview.is-set i {
    display: none
}

.mi-radio {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid #e0dbd0;
    background: #fff;
    transition: all .2s;
    font-size: 13px;
    color: #444
}

.mi-radio input {
    display: none
}

.mi-radio__dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: box-shadow .2s
}

.mi-radio:has(input:checked) {
    border-color: #B8960C;
    background: rgba(184, 150, 12, 0.06);
    color: #B8960C;
    font-weight: 700
}

.mi-radio:has(input:checked) .mi-radio__dot {
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.3)
}

.mi-radio--custom {
    position: relative
}

.mi-radio__color-input {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer;
    z-index: 2;
    border: none;
    padding: 0
}

.mi-radio__dot--rainbow {
    background: conic-gradient(from 180deg, #ff0080, #ff8c00, #ffd700, #00ff7f, #00bfff, #8a2be2, #ff0080) !important;
    border: 2px solid #fff !important;
    box-shadow: 0 0 0 1px #e0dbd0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 9px;
    transition: all 0.25s
}

.mi-radio--custom:hover .mi-radio__dot--rainbow {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px #B8960C, 0 4px 10px rgba(184, 150, 12, 0.3)
}

.mi-radio__dot--rainbow.is-set i {
    display: none
}

.mi-radio__dot--rainbow.is-set {
    background: var(--custom-color, #1a1a1a) !important;
    border: 2px solid #B8960C !important;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.3)
}

.mi-select-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.mi-select-btn {
    cursor: pointer
}

.mi-select-btn input {
    display: none
}

.mi-select-btn span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #e0dbd0;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    transition: all .2s;
    cursor: pointer
}

.mi-select-btn:has(input:checked) span {
    border-color: #B8960C;
    background: rgba(184, 150, 12, 0.08);
    color: #B8960C;
    font-weight: 700
}

.mi-select-btn span:hover {
    border-color: #B8960C;
    color: #B8960C
}

.mi-color-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.mi-color {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer
}

.mi-color input {
    display: none
}

.mi-color__swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid transparent;
    transition: all .2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15)
}

.mi-color:has(input:checked) .mi-color__swatch {
    border-color: #B8960C;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.25);
    transform: scale(1.12)
}

.mi-color__name {
    font-size: 10.5px;
    color: #888;
    text-align: center;
    max-width: 60px;
    line-height: 1.2
}

.mi-color:has(input:checked) .mi-color__name {
    color: #B8960C;
    font-weight: 700
}

.mi-upload-group {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mi-upload-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #faf7f0;
    border-radius: 10px;
    border: 1px solid #ece8e0
}

.mi-upload-row__label {
    font-size: 12.5px;
    font-weight: 600;
    color: #555;
    min-width: 110px;
    flex-shrink: 0
}

.mi-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #fff;
    border: 1px solid #e0dbd0;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0
}

.mi-upload-btn:hover {
    border-color: #B8960C;
    color: #B8960C
}

.mi-upload-btn input {
    display: none
}

.mi-upload-row__filename {
    font-size: 12px;
    color: #aaa;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.mi-textarea,
.mi-input {
    padding: 11px 14px;
    border: 1px solid #e0dbd0;
    border-radius: 10px;
    font-size: 13.5px;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    resize: vertical
}

.mi-textarea:focus,
.mi-input:focus {
    border-color: #B8960C;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.1)
}

.mi-form__actions {
    display: flex;
    gap: 12px;
    padding-top: 4px
}

.mi-btn-wa {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    font-family: inherit
}

.mi-btn-wa:hover {
    background: #1ebd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4)
}

.mi-btn-wa i {
    font-size: 20px
}

.mi-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background: #fff;
    color: #555;
    border: 1.5px solid #e0dbd0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    font-family: inherit;
    white-space: nowrap
}

.mi-btn-secondary:hover {
    border-color: #B8960C;
    color: #B8960C
}

.mi-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 16px;
    background: #faf7f0;
    border-radius: 12px;
    border: 1px solid #ece8e0
}

.mi-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center
}

.mi-trust__item i {
    color: #B8960C;
    font-size: 18px
}

.mi-trust__item span {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    line-height: 1.3
}

.mi-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s
}

.mi-lightbox.is-open {
    opacity: 1;
    pointer-events: all
}

.mi-lightbox__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px)
}

.mi-lightbox__wrap {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh
}

.mi-lightbox__wrap img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    display: block
}

.mi-lightbox__close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2)
}

.mi-lightbox__close:hover {
    background: #B8960C;
    color: #fff
}

.mi-related {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 40px
}

.mi-related__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.mi-related__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px;
    text-align: center
}

.mi-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px
}

.mi-related__item {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s
}

.mi-related__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12)
}

.mi-related__item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block
}

.mi-related__item span {
    display: block;
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff
}

@media (max-width:1024px) {
    .mi-body {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .mi-gallery {
        position: static
    }

    .mi-trust {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:640px) {
    .mi-body {
        padding: 20px 16px 60px
    }

    .mi-config__title {
        font-size: 22px
    }

    .mi-form__group--row {
        flex-direction: column
    }

    .mi-form__actions {
        flex-direction: column
    }

    .mi-btn-wa,
    .mi-btn-secondary {
        width: 100%
    }

    .mi-trust {
        grid-template-columns: repeat(2, 1fr)
    }
}

.mi-upload-single__btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 2px dashed #e0dbd0;
    border-radius: 12px;
    background: #faf7f0;
    cursor: pointer;
    transition: all .2s;
    width: 100%;
    box-sizing: border-box
}

.mi-upload-single__btn:hover {
    border-color: #B8960C;
    background: rgba(184, 150, 12, 0.04)
}

.mi-upload-single__btn input {
    display: none
}

.mi-upload-single__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(184, 150, 12, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    font-size: 20px;
    flex-shrink: 0
}

.mi-upload-single__text {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.mi-upload-single__text strong {
    font-size: 14px;
    font-weight: 700;
    color: #111
}

.mi-upload-single__text span {
    font-size: 12px;
    color: #aaa
}

.mi-upload-single__preview {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border: 1px solid #ece8e0;
    border-radius: 12px;
    background: #fff
}

.mi-upload-single__preview img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ece8e0
}

.mi-upload-single__remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0dbd0;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all .2s
}

.mi-upload-single__remove:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444
}

.mi-form__hint {
    font-size: 11.5px;
    color: #aaa;
    margin-top: -4px
}

.mi-gallery__main.is-portrait {
    aspect-ratio: 4 / 3;
    background: #f0ede8
}

.mi-gallery__main.is-portrait img.img-portrait {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f0ede8
}

#miCanvas {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px
}

.mi-gallery__main.is-portrait #miCanvas {
    object-fit: contain
}

.mi-gallery__main {
    aspect-ratio: 4 / 3
}

.mi-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.mi-gallery__main.is-portrait img {
    object-fit: contain;
    background: #f0ede8
}

.mi-yazi-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 10
}

.mi-yazi-badge--yazi {
    bottom: 14px;
    right: 14px
}

.mi-yazi-badge--tas {
    bottom: 14px;
    left: 14px
}

.mi-yazi-badge__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4)
}

.turkey-service-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden
}

.turkey-service-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.05) 0%, transparent 70%);
    border-radius: 50%
}

.turkey-service-container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1
}

.turkey-service-header {
    text-align: center;
    margin-bottom: 60px
}

.turkey-service-badge {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.3);
    margin-bottom: 16px
}

.turkey-service-title {
    font-size: 38px;
    font-weight: 800;
    color: #1B3A6B;
    margin-bottom: 16px;
    letter-spacing: -0.5px
}

.turkey-service-desc {
    font-size: 16px;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7
}

.turkey-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

.turkey-service-steps {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.service-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.3s ease
}

.service-step:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.3)
}

.service-step-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #4A90E2, #3A7BC8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3)
}

.service-step-icon i {
    font-size: 20px;
    color: #fff
}

.service-step-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.5;
    margin: 0
}

.turkey-service-right {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.turkey-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.turkey-stat {
    background: linear-gradient(135deg, #1B3A6B, #2B4A7B);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(27, 58, 107, 0.2);
    position: relative;
    overflow: hidden
}

.turkey-stat::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.2) 0%, transparent 70%)
}

.turkey-stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1
}

.turkey-stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1
}

.turkey-cities {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.1)
}

.turkey-cities-title {
    font-size: 18px;
    font-weight: 700;
    color: #1B3A6B;
    margin-bottom: 20px;
    text-align: center
}

.turkey-cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-height: 320px;
    overflow-y: auto;
    padding-right: 8px
}

.turkey-cities-grid::-webkit-scrollbar {
    width: 6px
}

.turkey-cities-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px
}

.turkey-cities-grid::-webkit-scrollbar-thumb {
    background: #4A90E2;
    border-radius: 10px
}

.turkey-cities-grid::-webkit-scrollbar-thumb:hover {
    background: #3A7BC8
}

.city-tag {
    display: inline-block;
    padding: 8px 14px;
    background: rgba(74, 144, 226, 0.08);
    color: #1B3A6B;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(74, 144, 226, 0.15);
    transition: all 0.2s ease;
    cursor: default
}

.city-tag:hover {
    background: rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.3);
    transform: translateY(-2px)
}

@media (max-width:1024px) {
    .turkey-service-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .turkey-stats {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:768px) {
    .turkey-service-section {
        padding: 60px 0
    }

    .turkey-service-title {
        font-size: 28px
    }

    .turkey-service-header {
        margin-bottom: 40px
    }

    .turkey-stats {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .turkey-stat {
        padding: 24px 20px
    }

    .turkey-stat-number {
        font-size: 36px
    }

    .service-step {
        padding: 16px
    }

    .service-step-icon {
        width: 42px;
        height: 42px
    }

    .service-step-icon i {
        font-size: 18px
    }

    .turkey-cities {
        padding: 24px
    }

    .turkey-cities-grid {
        max-height: 250px
    }
}

@media (max-width:480px) {
    .turkey-service-title {
        font-size: 24px
    }

    .turkey-service-desc {
        font-size: 14px
    }

    .city-tag {
        font-size: 12px;
        padding: 6px 12px
    }
}

.how-to-order-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1B3A6B 0%, #2B4A7B 100%);
    position: relative;
    overflow: hidden
}

.how-to-order-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%
}

.how-to-order-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.1) 0%, transparent 70%);
    border-radius: 50%
}

.how-to-order-container {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1
}

.how-to-order-header {
    text-align: center;
    margin-bottom: 60px
}

.how-to-order-title {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 1px
}

.how-to-order-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600
}

.order-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 50px;
    position: relative
}

.order-steps-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(74, 144, 226, 0.3) 10%, rgba(74, 144, 226, 0.3) 90%, transparent 100%);
    z-index: 0
}

.order-step {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 24px 32px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1
}

.order-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    background: #fff
}

.order-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #4A90E2, #3A7BC8);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.4);
    border: 4px solid #1B3A6B
}

.order-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(74, 144, 226, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(74, 144, 226, 0.2);
    transition: all 0.3s ease
}

.order-step:hover .order-step-icon {
    background: linear-gradient(135deg, #4A90E2, #3A7BC8);
    border-color: #4A90E2;
    transform: scale(1.1)
}

.order-step-icon i {
    font-size: 32px;
    color: #4A90E2;
    transition: color 0.3s ease
}

.order-step:hover .order-step-icon i {
    color: #fff
}

.order-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1B3A6B;
    margin-bottom: 12px;
    line-height: 1.3
}

.order-step-desc {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin: 0
}

.order-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

.order-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15)
}

.order-cta-btn i {
    font-size: 20px
}

.order-cta-btn--primary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff
}

.order-cta-btn--primary:hover {
    background: linear-gradient(135deg, #128C7E, #0d6b5c);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4)
}

.order-cta-btn--secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #1B3A6B;
    border: 2px solid rgba(255, 255, 255, 0.3)
}

.order-cta-btn--secondary:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3)
}

@media (max-width:1024px) {
    .order-steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px
    }

    .order-steps-grid::before {
        display: none
    }
}

@media (max-width:768px) {
    .how-to-order-section {
        padding: 60px 0
    }

    .how-to-order-title {
        font-size: 28px
    }

    .how-to-order-subtitle {
        font-size: 16px
    }

    .how-to-order-header {
        margin-bottom: 40px
    }

    .order-steps-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .order-step {
        padding: 36px 20px 28px
    }

    .order-step-icon {
        width: 70px;
        height: 70px
    }

    .order-step-icon i {
        font-size: 28px
    }

    .order-cta {
        flex-direction: column;
        align-items: stretch
    }

    .order-cta-btn {
        justify-content: center
    }
}

@media (max-width:480px) {
    .how-to-order-title {
        font-size: 24px
    }

    .order-step-title {
        font-size: 16px
    }

    .order-step-desc {
        font-size: 13px
    }

    .order-cta-btn {
        padding: 14px 24px;
        font-size: 15px
    }
}

.turkey-service-section {
    padding: 0;
    background: #fff;
    overflow: hidden
}

.turkey-service-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 700px
}

.turkey-left {
    background: linear-gradient(135deg, #0a1929 0%, #1B3A6B 50%, #0a0a0a 100%);
    padding: 80px 60px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.turkey-left::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%
}

.turkey-badge {
    display: inline-block;
    background: rgba(74, 144, 226, 0.2);
    color: #4A90E2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(74, 144, 226, 0.4);
    margin-bottom: 20px
}

.turkey-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px
}

.turkey-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px
}

.turkey-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px
}

.turkey-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #4A90E2;
    transition: all 0.3s ease
}

.turkey-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px)
}

.turkey-feature i {
    font-size: 20px;
    color: #4A90E2;
    flex-shrink: 0
}

.turkey-feature span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5
}

.turkey-feature strong {
    color: #fff;
    font-weight: 700
}

.turkey-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.turkey-stat-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(74, 144, 226, 0.2)
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #4A90E2;
    margin-bottom: 8px
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px
}

.turkey-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #4A90E2;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(74, 144, 226, 0.3)
}

.turkey-btn:hover {
    background: #3A7BC8;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(74, 144, 226, 0.4)
}

.turkey-right {
    background: linear-gradient(135deg, #E30A17 0%, #C70914 100%);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.turkey-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%
}

.cities-box {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1
}

.cities-header {
    background: linear-gradient(135deg, #1B3A6B, #0a1929);
    padding: 24px 32px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff
}

.cities-header i {
    font-size: 24px;
    color: #4A90E2
}

.cities-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #fff
}

.cities-header strong {
    color: #4A90E2
}

.cities-list {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-height: 450px;
    overflow-y: auto;
    background: #f8f9fa
}

.cities-list::-webkit-scrollbar {
    width: 8px
}

.cities-list::-webkit-scrollbar-track {
    background: #e9ecef;
    border-radius: 10px
}

.cities-list::-webkit-scrollbar-thumb {
    background: #E30A17;
    border-radius: 10px
}

.cities-list::-webkit-scrollbar-thumb:hover {
    background: #C70914
}

.city-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    cursor: default
}

.city-item:hover {
    background: #E30A17;
    color: #fff;
    border-color: #E30A17;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 10, 23, 0.2)
}

.city-item i {
    font-size: 11px;
    color: #E30A17;
    transition: color 0.2s ease
}

.city-item:hover i {
    color: #fff
}

.cities-footer {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 16px 32px;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6B7280;
    font-size: 13px;
    font-weight: 600
}

.cities-footer i {
    color: #4A90E2;
    font-size: 14px
}

@media (max-width:1200px) {
    .turkey-service-wrapper {
        grid-template-columns: 1fr
    }

    .turkey-left,
    .turkey-right {
        padding: 60px 40px
    }

    .cities-list {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {

    .turkey-left,
    .turkey-right {
        padding: 50px 24px
    }

    .turkey-title {
        font-size: 32px
    }

    .turkey-stats-row {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .cities-list {
        grid-template-columns: 1fr;
        max-height: 350px
    }

    .cities-header {
        padding: 20px 24px
    }

    .cities-header h4 {
        font-size: 18px
    }
}

@media (max-width:480px) {
    .turkey-title {
        font-size: 26px
    }

    .turkey-desc {
        font-size: 14px
    }

    .turkey-feature {
        padding: 12px 14px
    }

    .turkey-feature span {
        font-size: 13px
    }

    .stat-number {
        font-size: 28px
    }
}

.turkey-service-section {
    padding: 0;
    background: #fff;
    overflow: hidden
}

.turkey-service-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 700px
}

.turkey-left {
    background: linear-gradient(135deg, #2a2416 0%, #4a3a1a 30%, #1a1410 100%);
    padding: 80px 60px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.turkey-left::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.15) 0%, transparent 70%);
    border-radius: 50%
}

.turkey-badge {
    display: inline-block;
    background: rgba(184, 150, 12, 0.2);
    color: #d4af37;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(184, 150, 12, 0.4);
    margin-bottom: 20px
}

.turkey-title {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.5px
}

.turkey-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px
}

.turkey-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px
}

.turkey-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border-left: 3px solid #B8960C;
    transition: all 0.3s ease
}

.turkey-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px)
}

.turkey-feature i {
    font-size: 20px;
    color: #d4af37;
    flex-shrink: 0
}

.turkey-feature span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5
}

.turkey-feature strong {
    color: #d4af37;
    font-weight: 700
}

.turkey-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.turkey-stat-item {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(184, 150, 12, 0.2)
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 8px
}

.stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px
}

.turkey-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(184, 150, 12, 0.3)
}

.turkey-btn:hover {
    background: linear-gradient(135deg, #9a7d0a, #B8960C);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(184, 150, 12, 0.4)
}

.turkey-right {
    background: linear-gradient(135deg, #f8f5f0 0%, #ede8df 100%);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.turkey-right::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.05) 0%, transparent 70%);
    border-radius: 50%
}

.cities-box {
    background: #fff;
    border-radius: 20px;
    padding: 0;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(184, 150, 12, 0.1)
}

.cities-header {
    background: linear-gradient(135deg, #2a2416, #4a3a1a);
    padding: 24px 32px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff
}

.cities-header i {
    font-size: 24px;
    color: #d4af37
}

.cities-header h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #fff
}

.cities-header strong {
    color: #d4af37
}

.cities-list {
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-height: 450px;
    overflow-y: auto;
    background: #fdfcfa
}

.cities-list::-webkit-scrollbar {
    width: 8px
}

.cities-list::-webkit-scrollbar-track {
    background: #f0ebe0;
    border-radius: 10px
}

.cities-list::-webkit-scrollbar-thumb {
    background: #B8960C;
    border-radius: 10px
}

.cities-list::-webkit-scrollbar-thumb:hover {
    background: #9a7d0a
}

.city-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    border: 1px solid #f0ebe0;
    transition: all 0.2s ease;
    cursor: default
}

.city-item:hover {
    background: linear-gradient(135deg, #B8960C, #d4af37);
    color: #fff;
    border-color: #B8960C;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 150, 12, 0.3)
}

.city-item i {
    font-size: 11px;
    color: #B8960C;
    transition: color 0.2s ease
}

.city-item:hover i {
    color: #fff
}

.cities-footer {
    background: linear-gradient(135deg, #f8f5f0, #ede8df);
    padding: 16px 32px;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6B7280;
    font-size: 13px;
    font-weight: 600
}

.cities-footer i {
    color: #B8960C;
    font-size: 14px
}

@media (max-width:1200px) {
    .turkey-service-wrapper {
        grid-template-columns: 1fr
    }

    .turkey-left,
    .turkey-right {
        padding: 60px 40px
    }

    .cities-list {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {

    .turkey-left,
    .turkey-right {
        padding: 50px 24px
    }

    .turkey-title {
        font-size: 32px
    }

    .turkey-stats-row {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .cities-list {
        grid-template-columns: 1fr;
        max-height: 350px
    }

    .cities-header {
        padding: 20px 24px
    }

    .cities-header h4 {
        font-size: 18px
    }
}

@media (max-width:480px) {
    .turkey-title {
        font-size: 26px
    }

    .turkey-desc {
        font-size: 14px
    }

    .turkey-feature {
        padding: 12px 14px
    }

    .turkey-feature span {
        font-size: 13px
    }

    .stat-number {
        font-size: 28px
    }
}

.map-section {
    padding: 80px 0 40px;
    background: #fff
}

.map-inner {
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 20px
}

.map-body {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: center
}

.map-left {
    display: flex;
    flex-direction: column
}

.map-eyebrow {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #B8960C;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block
}

.map-title {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 18px
}

.map-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    margin-bottom: 28px
}

.map-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.map-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #444
}

.map-list li i {
    width: 20px;
    height: 20px;
    background: rgba(184, 150, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    font-size: 9px;
    flex-shrink: 0
}

.map-numbers {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-top: 1px solid #f0ebe0;
    border-bottom: 1px solid #f0ebe0;
    margin-bottom: 32px
}

.map-num {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 3px
}

.map-num strong {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    line-height: 1
}

.map-num span {
    font-size: 11px;
    color: #B8960C;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px
}

.map-num-sep {
    width: 1px;
    height: 36px;
    background: #e8e0d0
}

.map-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #1a1a1a;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all .3s;
    align-self: flex-start
}

.map-cta i {
    transition: transform .3s;
    font-size: 11px
}

.map-cta:hover {
    background: #B8960C;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 150, 12, 0.3)
}

.map-cta:hover i {
    transform: translateX(4px)
}

.map-right {
    background: #f8f5f0;
    border-radius: 20px;
    padding: 28px;
    border: 1px solid #ede8df;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px
}

.iller-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #ede8df
}

.iller-title {
    font-size: 14px;
    color: #555;
    font-weight: 500
}

.iller-title strong {
    color: #1a1a1a;
    font-weight: 800
}

.iller-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(184, 150, 12, 0.1);
    color: #B8960C;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(184, 150, 12, 0.2)
}

.iller-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px
}

.il-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 10px;
    background: #fff;
    border: 1px solid #ede8df;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 600;
    color: #444;
    transition: all .2s;
    cursor: default;
    text-decoration: none
}

.il-item i {
    font-size: 8px;
    color: #B8960C;
    flex-shrink: 0
}

.il-item:hover {
    background: #B8960C;
    border-color: #B8960C;
    color: #fff;
    transform: scale(1.05)
}

.il-item:hover i {
    color: #fff
}

.il-item--link {
    cursor: pointer;
    border-color: rgba(184, 150, 12, 0.3);
    background: #fffdf5
}

.il-item--link:hover {
    background: #B8960C;
    border-color: #B8960C;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(184, 150, 12, 0.25)
}

.il-item--link:hover i {
    color: #fff
}

.iller-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #B8960C;
    padding-top: 12px;
    border-top: 1px solid #ede8df
}

.cta-banner {
    background: #141414;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #B8960C
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.08) 0%, transparent 70%);
    pointer-events: none
}

.cta-banner-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1
}

.cta-banner-left {
    display: flex;
    align-items: center;
    gap: 24px
}

.cta-banner-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(184, 150, 12, 0.3)
}

.cta-banner-icon i {
    font-size: 22px;
    color: #fff
}

.cta-banner-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
    line-height: 1.35
}

.cta-banner-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    max-width: 520px;
    line-height: 1.5
}

.cta-banner-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    align-items: center
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    white-space: nowrap;
    border: 2px solid transparent
}

.cta-btn--whatsapp {
    background: #B8960C;
    color: #fff;
    border-color: #B8960C
}

.cta-btn--whatsapp:hover {
    background: #d4af37;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(184, 150, 12, 0.4)
}

.cta-btn--outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.25)
}

.cta-btn--outline:hover {
    border-color: #B8960C;
    color: #B8960C;
    transform: translateY(-2px)
}

@media (max-width:1100px) {
    .map-body {
        grid-template-columns: 260px 1fr;
        gap: 50px
    }

    .map-title {
        font-size: 30px
    }
}

@media (max-width:900px) {
    .map-body {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .iller-grid {
        grid-template-columns: repeat(5, 1fr)
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .steps-grid::before {
        display: none
    }

    .step-arrow {
        display: none
    }

    .steps-head {
        flex-direction: column;
        gap: 6px
    }

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        gap: 28px
    }

    .cta-banner-left {
        flex-direction: column;
        gap: 16px
    }

    .cta-banner-buttons {
        flex-direction: column;
        width: 100%
    }

    .cta-btn {
        justify-content: center;
        width: 100%
    }
}

@media (max-width:480px) {
    .iller-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .steps-grid {
        grid-template-columns: 1fr
    }

    .map-title {
        font-size: 26px
    }
}

.hk-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #B8960C;
    margin-bottom: 14px
}

.hk-story {
    background: #fff;
    padding: 100px 0
}

.hk-story__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center
}

.hk-story__title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    line-height: 1.15;
    margin: 0 0 24px;
    letter-spacing: -0.5px
}

.hk-story__title span {
    color: #B8960C
}

.hk-story__text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 16px
}

.hk-story__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 30px;
    background: #B8960C;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(184, 150, 12, 0.3)
}

.hk-story__btn:hover {
    background: #9a7d0a;
    transform: translateY(-2px);
    color: #fff
}

.hk-story__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 200px;
    gap: 12px
}

.hk-story__mosaic-img {
    border-radius: 14px;
    overflow: hidden
}

.hk-story__mosaic-img--wide {
    grid-column: 1/-1;
    grid-row: 1
}

.hk-story__mosaic-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s
}

.hk-story__mosaic-img:hover img {
    transform: scale(1.05)
}

.hk-stats {
    background: #fff;
    padding: 40px 24px;
    border-top: 1px solid #ece8e0;
    border-bottom: 1px solid #ece8e0
}

.hk-stats__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px
}

.hk-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #f8f5f0;
    border-radius: 12px;
    border: 1px solid #ece8e0;
    transition: all 0.25s
}

.hk-stat:hover {
    border-color: #B8960C;
    background: #fff;
    box-shadow: 0 4px 20px rgba(184, 150, 12, 0.1);
    transform: translateY(-2px)
}

.hk-stat__icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(184, 150, 12, 0.1);
    border: 1px solid rgba(184, 150, 12, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    font-size: 15px;
    flex-shrink: 0
}

.hk-stat__num {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    line-height: 1
}

.hk-stat__label {
    font-size: 11px;
    color: #888;
    font-weight: 500
}

.hk-vizyon {
    background: #fff;
    padding: 60px 0
}

.hk-vizyon__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.hk-vizyon__head {
    text-align: center;
    margin-bottom: 36px
}

.hk-vizyon__head h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin: 0
}

.hk-vizyon__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.hk-vizyon-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid #ece8e0;
    transition: all 0.3s;
    display: grid;
    grid-template-columns: 220px 1fr;
    align-items: stretch;
    min-height: 220px;
    overflow: hidden
}

.hk-vizyon-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px)
}

.hk-vizyon-card__img {
    overflow: hidden;
    position: relative;
    height: 100%;
}

.hk-vizyon-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
    display: block;
    transition: transform 0.4s
}

.hk-vizyon-card:hover .hk-vizyon-card__img img {
    transform: scale(1.05)
}

.hk-vizyon-card__body {
    padding: 24px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid #B8960C
}

.hk-vizyon-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px
}

.hk-vizyon-card__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8960C;
    margin-bottom: 6px;
    display: block
}

.hk-vizyon-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px
}

.hk-vizyon-card p {
    font-size: 12.5px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 12px
}

.hk-vizyon-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.hk-vizyon-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555
}

.hk-vizyon-card ul li i {
    color: #B8960C;
    font-size: 10px
}

.hk-teslimat {
    background: #fff;
    padding: 90px 0;
    position: relative;
    overflow: hidden
}

.hk-teslimat__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.hk-teslimat__head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.hk-teslimat__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(184, 150, 12, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(184, 150, 12, 0.25);
    color: #B8960C;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 18px
}

.hk-gold {
    background: linear-gradient(135deg, #B8960C, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hk-teslimat__head h2 {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px
}

.hk-teslimat__head p {
    font-size: 16px;
    color: #666;
    margin: 0
}

.hk-teslimat__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 56px;
    position: relative
}

.hk-teslimat__grid::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 12%;
    right: 12%;
    height: 2px;
    background-image: linear-gradient(90deg, rgba(184, 150, 12, 0.4) 50%, transparent 50%);
    background-size: 16px 2px;
    background-repeat: repeat-x;
    z-index: 0
}

.hk-teslimat-card {
    border-radius: 18px;
    padding: 32px 26px 24px;
    text-align: center;
    position: relative;
    border: 1px solid #ece8e0;
    background: #fff;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    z-index: 1
}

.hk-teslimat-card:hover {
    border-color: rgba(184, 150, 12, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px)
}

.hk-teslimat-card__icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin: 0 0 20px
}

.hk-teslimat-card__icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(184, 150, 12, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    font-size: 28px;
    transition: all 0.4s;
    position: relative;
    box-shadow: 0 0 0 8px #fff, 0 4px 18px rgba(0, 0, 0, 0.04)
}

.hk-teslimat-card__icon::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px dashed rgba(184, 150, 12, 0.35);
    animation: hkRingRotate 12s linear infinite
}

@keyframes hkRingRotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.hk-teslimat-card__icon>i {
    display: inline-block;
    animation: hkFloat 3.5s ease-in-out infinite
}

@keyframes hkFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-4px)
    }
}

.hk-teslimat-card:hover .hk-teslimat-card__icon {
    background: linear-gradient(135deg, #B8960C, #d4af37);
    border-color: transparent;
    color: #fff;
    transform: scale(1.08)
}

.hk-teslimat-card__step {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8960C;
    background: rgba(184, 150, 12, 0.08);
    border: 1px solid rgba(184, 150, 12, 0.18);
    padding: 5px 12px;
    border-radius: 50px
}

.hk-teslimat-card__title {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px
}

.hk-teslimat-card__desc {
    font-size: 13.5px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 18px;
    flex: 1
}

.hk-teslimat-card__check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #B8960C;
    padding: 10px 14px;
    background: rgba(184, 150, 12, 0.06);
    border-radius: 8px
}

.hk-teslimat-card--featured {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-color: transparent
}

.hk-teslimat-card--featured .hk-teslimat-card__icon {
    background: linear-gradient(135deg, #B8960C, #d4af37);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 0 8px #1f1f1f, 0 8px 24px rgba(184, 150, 12, 0.4)
}

.hk-teslimat-card--featured .hk-teslimat-card__step {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.3)
}

.hk-teslimat-card--featured .hk-teslimat-card__title {
    color: #fff
}

.hk-teslimat-card--featured .hk-teslimat-card__desc {
    color: rgba(255, 255, 255, 0.7)
}

.hk-teslimat-card--featured .hk-teslimat-card__check {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.12)
}

.hk-teslimat-card__flag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 50px;
    z-index: 3;
    box-shadow: 0 6px 18px rgba(184, 150, 12, 0.5);
    white-space: nowrap
}

.hk-teslimat__note {
    background: linear-gradient(135deg, #fff 0%, #faf7f0 100%);
    border-radius: 18px;
    padding: 28px 32px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    align-items: center;
    border: 1px solid #ece8e0;
    position: relative;
    overflow: hidden
}

.hk-teslimat__note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #B8960C, #d4af37)
}

.hk-teslimat__note-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0
}

.hk-teslimat__note-body {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.hk-teslimat__note-body h4 {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin: 0
}

.hk-teslimat__note-body p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.7
}

.hk-teslimat__note-body strong {
    color: #1a1a1a;
    font-weight: 700
}

.hk-teslimat__note-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 6px;
    transition: all 0.25s
}

.hk-teslimat__note-btn:hover {
    background: #1ebd5a;
    transform: translateY(-2px);
    color: #fff
}

.hk-neden {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #ece8e0
}

.hk-neden__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.hk-neden__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 24px;
    flex-wrap: wrap
}

.hk-neden__head-left h2 {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0 0 4px
}

.hk-neden__head-left p {
    font-size: 13px;
    color: #888;
    margin: 0
}

.hk-neden__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.hk-neden-card {
    background: #f8f5f0;
    border-radius: 12px;
    padding: 20px 16px;
    border: 1px solid #ece8e0;
    transition: all 0.25s;
    position: relative;
    overflow: hidden
}

.hk-neden-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #B8960C, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s
}

.hk-neden-card:hover {
    background: #fff;
    box-shadow: 0 6px 20px rgba(184, 150, 12, 0.1);
    transform: translateY(-3px);
    border-color: rgba(184, 150, 12, 0.25)
}

.hk-neden-card:hover::after {
    transform: scaleX(1)
}

.hk-neden-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(184, 150, 12, 0.08);
    border: 1px solid rgba(184, 150, 12, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    font-size: 17px;
    margin-bottom: 12px;
    transition: all 0.25s
}

.hk-neden-card:hover .hk-neden-card__icon {
    background: #B8960C;
    color: #fff;
    border-color: #B8960C
}

.hk-neden-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px
}

.hk-neden-card p {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    margin: 0
}

.hk-atolye {
    background: #fff;
    padding: 80px 0
}

.hk-atolye__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.hk-atolye__head {
    text-align: center;
    margin-bottom: 44px
}

.hk-atolye__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(184, 150, 12, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(184, 150, 12, 0.25);
    color: #B8960C;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 18px
}

.hk-atolye__head h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px
}

.hk-atolye__head p {
    font-size: 15px;
    color: #666;
    margin: 0
}

.hk-atolye__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 14px;
    height: 480px
}

.hk-atolye-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    transition: transform 0.4s
}

.hk-atolye-item--lg {
    grid-row: span 2
}

.hk-atolye-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s
}

.hk-atolye-item:hover {
    transform: translateY(-4px)
}

.hk-atolye-item:hover img {
    transform: scale(1.08)
}

.hk-atolye-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 75%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 18px;
    color: #fff
}

.hk-atolye-item__overlay i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 10px
}

.hk-atolye-item__overlay span {
    font-size: 14px;
    font-weight: 700
}

.hk-sertifika {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #ece8e0
}

.hk-sertifika__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.hk-sertifika__head {
    text-align: center;
    margin-bottom: 40px
}

.hk-sertifika__head h2 {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px
}

.hk-sertifika__head p {
    font-size: 14px;
    color: #777;
    margin: 0
}

.hk-sertifika__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px
}

.hk-sertifika-card {
    background: #f8f5f0;
    border-radius: 12px;
    padding: 24px 18px;
    border: 1px solid #ece8e0;
    text-align: center;
    transition: all 0.25s
}

.hk-sertifika-card:hover {
    background: #fff;
    border-color: #B8960C;
    box-shadow: 0 6px 20px rgba(184, 150, 12, 0.1);
    transform: translateY(-3px)
}

.hk-sertifika-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin: 0 auto 14px
}

.hk-sertifika-card h4 {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px
}

.hk-sertifika-card p {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    margin: 0
}

@media (max-width:900px) {
    .hk-story__inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .hk-stats__inner {
        grid-template-columns: repeat(3, 1fr)
    }

    .hk-vizyon__grid {
        grid-template-columns: 1fr
    }

    .hk-teslimat__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hk-neden__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hk-sertifika__grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .hk-atolye__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto
    }

    .hk-atolye-item {
        aspect-ratio: 4/3
    }

    .hk-atolye-item--lg {
        grid-column: span 2;
        grid-row: auto;
        aspect-ratio: 16/9
    }
}

@media (max-width:640px) {
    .hk-stats__inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .hk-teslimat__grid {
        grid-template-columns: 1fr
    }

    .hk-neden__grid {
        grid-template-columns: 1fr
    }

    .hk-sertifika__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .hk-atolye__grid {
        grid-template-columns: 1fr
    }

    .hk-atolye-item--lg {
        grid-column: auto
    }

    .hk-teslimat__note {
        grid-template-columns: 1fr;
        text-align: center
    }

    .hk-teslimat__note-icon {
        margin: 0 auto
    }

    .hk-teslimat__note-btn {
        align-self: center
    }
}

:root {
    --iw-paper: #ffffff;
    --iw-soft: #faf9f6;
    --iw-line: #ece8e0;
    --iw-line-soft: #f4f0e8;
    --iw-text: #1a1a1a;
    --iw-text-soft: #5b5b5b;
    --iw-mute: #999999;
    --iw-gold: #B8960C;
    --iw-gold-soft: #d4af37;
    --iw-green: #25D366
}

.iw-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--iw-gold), var(--iw-gold-soft));
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(184, 150, 12, 0.28)
}

.iw-form-block__head,
.iw-info__head,
.iw-map__head,
.iw-faq__head {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--iw-line-soft)
}

.iw-form-block__head h2,
.iw-info__head h2,
.iw-map__head h2,
.iw-faq__head h2 {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 800;
    color: var(--iw-text);
    letter-spacing: -0.3px;
    line-height: 1.25
}

.iw-form-block__head p,
.iw-info__head p,
.iw-map__head p,
.iw-faq__head p {
    margin: 0;
    font-size: 13px;
    color: var(--iw-text-soft);
    line-height: 1.5
}

.iw-faq__head--row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 18px
}

.iw-faq__head--row h2 {
    margin: 0;
    flex: 0 0 auto
}

.iw-faq__head--row p {
    margin: 0;
    flex: 1 1 auto;
    text-align: right;
    min-width: 220px
}

@media (max-width:600px) {
    .iw-faq__head--row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px
    }

    .iw-faq__head--row p {
        text-align: left
    }
}

.iw-hero {
    background: var(--iw-paper);
    padding: 56px 24px 40px;
    text-align: center;
    border-bottom: 1px solid var(--iw-line-soft)
}

.iw-hero__inner {
    max-width: 780px;
    margin: 0 auto
}

.iw-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #1a7a3e;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px 6px 10px;
    border-radius: 50px;
    margin-bottom: 20px
}

.iw-pill__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--iw-green);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    animation: iwBlink 1.6s ease-in-out infinite
}

@keyframes iwBlink {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6)
    }

    50% {
        box-shadow: 0 0 0 8px rgba(37, 211, 102, 0)
    }
}

.iw-hero__title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(28px, 3.8vw, 42px);
    font-weight: 400;
    color: var(--iw-text);
    margin: 0 0 16px;
    letter-spacing: -0.8px;
    line-height: 1.15
}

.iw-hero__title em {
    font-style: italic;
    color: var(--iw-gold);
    font-weight: 400
}

.iw-hero__lead {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--iw-text-soft);
    max-width: 560px;
    margin: 0 auto 28px
}

.iw-hero__metrics {
    display: inline-grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--iw-soft);
    border: 1px solid var(--iw-line);
    border-radius: 16px;
    padding: 4px;
    overflow: hidden
}

.iw-hero__metrics>div {
    padding: 12px 22px;
    border-right: 1px solid var(--iw-line);
    text-align: center
}

.iw-hero__metrics>div:last-child {
    border-right: 0
}

.iw-hero__metrics strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    color: var(--iw-gold);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.3px
}

.iw-hero__metrics span {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--iw-mute);
    text-transform: uppercase
}

.iw-workspace {
    background: var(--iw-paper);
    padding: 56px 24px 64px
}

.iw-workspace__inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: start
}

.iw-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important
}

.iw-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 11px;
    margin-bottom: 18px;
    font-size: 13.5px;
    line-height: 1.5;
    border: 1px solid
}

.iw-alert i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px
}

.iw-alert strong {
    display: block;
    font-size: 14px;
    margin-bottom: 2px
}

.iw-alert span {
    color: var(--iw-text-soft)
}

.iw-alert--ok {
    background: rgba(37, 211, 102, 0.08);
    border-color: rgba(37, 211, 102, 0.3);
    color: #1a7a3e
}

.iw-alert--ok strong {
    color: #1a7a3e
}

.iw-alert--ok i {
    color: #25D366
}

.iw-alert--err {
    background: rgba(220, 38, 38, 0.06);
    border-color: rgba(220, 38, 38, 0.25);
    color: #b91c1c
}

.iw-alert--err strong {
    color: #b91c1c
}

.iw-alert--err i {
    color: #dc2626
}

.iw-form-block {
    background: var(--iw-paper);
    border: 1px solid var(--iw-line);
    border-radius: 16px;
    padding: 32px 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03)
}

.iw-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.iw-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.iw-field {
    position: relative
}

.iw-field input,
.iw-field select,
.iw-field textarea {
    width: 100%;
    padding: 18px 14px 9px;
    border: 1.5px solid var(--iw-line);
    border-radius: 10px;
    background: var(--iw-paper);
    font-size: 14px;
    font-family: inherit;
    color: var(--iw-text);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
    -webkit-appearance: none
}

.iw-field textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.55;
    padding-top: 22px
}

.iw-field label {
    position: absolute;
    left: 14px;
    top: 14px;
    font-size: 13px;
    color: var(--iw-mute);
    pointer-events: none;
    transition: all 0.25s ease;
    background: var(--iw-paper);
    padding: 0 4px
}

.iw-field label small {
    font-size: 11px;
    color: var(--iw-mute);
    margin-left: 4px;
    font-weight: 400
}

.iw-field input:focus,
.iw-field select:focus,
.iw-field textarea:focus {
    border-color: var(--iw-gold);
    box-shadow: 0 0 0 4px rgba(184, 150, 12, 0.1)
}

.iw-field input:focus+label,
.iw-field input:not(:placeholder-shown)+label,
.iw-field textarea:focus+label,
.iw-field textarea:not(:placeholder-shown)+label,
.iw-field select:focus+label,
.iw-field select:valid+label {
    top: -7px;
    font-size: 10.5px;
    color: var(--iw-gold);
    font-weight: 600;
    letter-spacing: 0.3px
}

.iw-field--select {
    position: relative
}

.iw-field--select select {
    cursor: pointer
}

.iw-field--select i {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--iw-mute);
    font-size: 12px;
    pointer-events: none
}

.iw-hint {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--iw-mute);
    line-height: 1.5
}

.iw-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    margin-top: 2px;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--iw-text-soft)
}

.iw-check input {
    display: none
}

.iw-check__box {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    border: 1.5px solid var(--iw-line);
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--iw-paper);
    transition: all 0.2s ease;
    color: transparent;
    font-size: 11px
}

.iw-check input:checked+.iw-check__box {
    background: linear-gradient(135deg, var(--iw-gold), var(--iw-gold-soft));
    border-color: var(--iw-gold);
    color: #fff
}

.iw-check__text a {
    color: var(--iw-gold);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px
}

.iw-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    background: var(--iw-text);
    color: #fff;
    border: 0;
    border-radius: 11px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    margin-top: 2px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.13);
    align-self: flex-start;
    position: relative;
    overflow: hidden
}

.iw-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 150, 12, 0.25), transparent);
    transition: left 0.6s ease
}

.iw-submit:hover {
    background: var(--iw-gold);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(184, 150, 12, 0.35)
}

.iw-submit:hover::before {
    left: 100%
}

.iw-submit i {
    transition: transform 0.3s ease
}

.iw-submit:hover i {
    transform: translateX(4px)
}

.iw-form__safe {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0 0;
    font-size: 12.5px;
    color: var(--iw-mute);
    line-height: 1.5
}

.iw-form__safe i {
    color: var(--iw-gold);
    font-size: 13px
}

.iw-info {
    position: relative
}

.iw-info__sticky {
    position: sticky;
    top: 100px;
    background: var(--iw-soft);
    border: 1px solid var(--iw-line);
    border-radius: 16px;
    padding: 26px 24px;
    overflow: hidden
}

.iw-info__primary {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    background: linear-gradient(135deg, var(--iw-green), #128C7E);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 22px;
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.28);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.iw-info__primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(37, 211, 102, 0.45);
    color: #fff
}

.iw-info__primary-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.iw-info__primary-text {
    flex: 1;
    line-height: 1.2
}

.iw-info__primary-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 4px
}

.iw-info__primary-text strong {
    font-size: 14px;
    font-weight: 700
}

.iw-info__primary-arrow {
    font-size: 14px;
    transition: transform 0.3s ease
}

.iw-info__primary:hover .iw-info__primary-arrow {
    transform: translateX(4px)
}

.iw-block {
    margin-bottom: 22px
}

.iw-block__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--iw-gold);
    text-transform: uppercase;
    margin-bottom: 10px
}

.iw-block__label i {
    font-size: 11px
}

.iw-block__label--green {
    color: #128C7E
}

.iw-line {
    background: var(--iw-paper);
    border: 1px solid var(--iw-line);
    border-radius: 11px;
    padding: 12px 14px;
    margin-bottom: 8px;
    transition: all 0.2s ease
}

.iw-line:hover {
    border-color: rgba(184, 150, 12, 0.35);
    box-shadow: 0 4px 14px rgba(184, 150, 12, 0.08)
}

.iw-line__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px
}

.iw-line__tag {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--iw-text-soft);
    letter-spacing: 0.4px;
    text-transform: uppercase
}

.iw-line__num {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--iw-text);
    text-decoration: none;
    letter-spacing: -0.3px;
    line-height: 1.2;
    margin-bottom: 4px;
    transition: color 0.2s ease
}

.iw-line__num:hover {
    color: var(--iw-gold)
}

.iw-line__hours {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--iw-mute);
    font-weight: 500
}

.iw-line__hours i {
    font-size: 10px;
    color: var(--iw-gold)
}

.iw-line__actions {
    display: flex;
    gap: 6px;
    margin-top: 8px
}

.iw-mini-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 7px;
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease
}

.iw-mini-btn i {
    font-size: 10px
}

.iw-mini-btn--dark {
    background: var(--iw-text);
    color: #fff
}

.iw-mini-btn--dark:hover {
    background: var(--iw-gold);
    color: #fff;
    transform: translateY(-1px)
}

.iw-walist {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.iw-waitem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--iw-paper);
    border: 1px solid var(--iw-line);
    border-radius: 10px;
    text-decoration: none;
    color: var(--iw-text);
    transition: all 0.2s ease
}

.iw-waitem>i:first-child {
    color: #25D366;
    font-size: 18px;
    flex-shrink: 0
}

.iw-waitem>span {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.2px
}

.iw-waitem em {
    font-style: normal;
    font-size: 11px;
    font-weight: 700;
    color: var(--iw-mute);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease
}

.iw-waitem em i {
    font-size: 9px;
    transition: transform 0.25s ease
}

.iw-waitem:hover {
    border-color: rgba(37, 211, 102, 0.45);
    background: rgba(37, 211, 102, 0.05);
    transform: translateX(2px)
}

.iw-waitem:hover em {
    color: #128C7E
}

.iw-waitem:hover em i {
    transform: translateX(3px)
}

.iw-contact {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column
}

.iw-contact li {
    padding: 12px 0;
    border-bottom: 1px solid var(--iw-line);
    display: flex;
    flex-direction: column;
    gap: 3px
}

.iw-contact li:last-child {
    border-bottom: 0
}

.iw-contact__label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--iw-gold)
}

.iw-contact a,
.iw-contact p {
    margin: 0;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--iw-text);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s ease;
    word-break: break-word
}

.iw-contact p {
    font-weight: 500
}

.iw-contact p small {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--iw-mute);
    margin-top: 2px
}

.iw-contact a:hover {
    color: var(--iw-gold)
}

.iw-social {
    display: flex;
    gap: 8px;
    padding-top: 4px
}

.iw-social a {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--iw-paper);
    border: 1px solid var(--iw-line);
    color: var(--iw-text);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.2s ease
}

.iw-social a:hover {
    background: var(--iw-gold);
    border-color: var(--iw-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(184, 150, 12, 0.3)
}

.iw-map {
    background: var(--iw-paper);
    padding: 40px 24px 56px;
    border-top: 1px solid var(--iw-line-soft)
}

.iw-map__inner {
    max-width: 1180px;
    margin: 0 auto
}

.iw-map__frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--iw-line);
    height: 380px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05)
}

.iw-map__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3)
}

.iw-map__card {
    position: absolute;
    top: 22px;
    left: 22px;
    background: var(--iw-paper);
    padding: 18px 22px;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    max-width: 280px;
    border-left: 3px solid var(--iw-gold)
}

.iw-map__card h3 {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 800;
    color: var(--iw-text);
    letter-spacing: -0.2px
}

.iw-map__card p {
    margin: 0 0 12px;
    font-size: 12.5px;
    color: var(--iw-text-soft);
    line-height: 1.5
}

.iw-map__buttons {
    display: flex;
    gap: 8px
}

.iw-map__btn {
    flex: 1;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
    letter-spacing: 0.3px
}

.iw-map__btn--solid {
    background: var(--iw-text);
    color: #fff
}

.iw-map__btn--solid:hover {
    background: var(--iw-gold);
    color: #fff
}

.iw-map__btn--ghost {
    background: var(--iw-paper);
    color: var(--iw-text);
    border: 1.5px solid var(--iw-line)
}

.iw-map__btn--ghost:hover {
    border-color: var(--iw-gold);
    color: var(--iw-gold)
}

.iw-faq {
    background: var(--iw-paper);
    padding: 40px 24px 80px
}

.iw-faq__inner {
    max-width: 1180px;
    margin: 0 auto
}

.iw-faq__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start
}

@media (max-width:760px) {
    .iw-faq__list {
        grid-template-columns: 1fr
    }
}

.iw-faq__item {
    background: var(--iw-soft);
    border: 1px solid var(--iw-line);
    border-radius: 11px;
    overflow: hidden;
    transition: all 0.3s ease
}

.iw-faq__item:hover {
    border-color: rgba(184, 150, 12, 0.3)
}

.iw-faq__item[open] {
    background: var(--iw-paper);
    border-color: var(--iw-gold);
    box-shadow: 0 8px 26px rgba(184, 150, 12, 0.1)
}

.iw-faq__item summary {
    padding: 15px 20px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--iw-text);
    transition: color 0.2s ease
}

.iw-faq__item summary::-webkit-details-marker {
    display: none
}

.iw-faq__item summary i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--iw-paper);
    border: 1px solid var(--iw-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--iw-gold);
    font-size: 9.5px;
    flex-shrink: 0;
    transition: all 0.3s ease
}

.iw-faq__item[open] summary i {
    background: linear-gradient(135deg, var(--iw-gold), var(--iw-gold-soft));
    border-color: transparent;
    color: #fff;
    transform: rotate(180deg)
}

.iw-faq__item p {
    margin: 0;
    padding: 0 20px 18px;
    font-size: 13px;
    line-height: 1.65;
    color: var(--iw-text-soft)
}

.iw-faq__item p strong {
    color: var(--iw-text)
}

@media (max-width:1024px) {
    .iw-workspace__inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .iw-info__sticky {
        position: static
    }
}

@media (max-width:768px) {
    .iw-hero {
        padding: 56px 20px 40px
    }

    .iw-hero__metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 0
    }

    .iw-hero__metrics>div:nth-child(2) {
        border-right: 0
    }

    .iw-hero__metrics>div:nth-child(1),
    .iw-hero__metrics>div:nth-child(2) {
        border-bottom: 1px solid var(--iw-line)
    }

    .iw-workspace {
        padding: 56px 20px
    }

    .iw-form-block {
        padding: 28px 22px
    }

    .iw-row {
        grid-template-columns: 1fr;
        gap: 22px
    }

    .iw-info__sticky {
        padding: 28px 22px
    }

    .iw-map {
        padding: 40px 20px 60px
    }

    .iw-map__frame {
        height: 400px
    }

    .iw-map__card {
        position: static;
        max-width: none;
        margin: -60px 20px 0;
        z-index: 2
    }

    .iw-faq {
        padding: 40px 20px 80px
    }

    .iw-form-block__head h2,
    .iw-info__head h2,
    .iw-map__head h2,
    .iw-faq__head h2 {
        font-size: 19px
    }
}

.bl-wrap {
    background: #fff;
    min-height: 100vh
}

.bl-header {
    background: #fff;
    border-bottom: 1px solid #ece8e0;
    padding: 48px 24px 32px;
    text-align: center
}

.bl-header__inner {
    max-width: 860px;
    margin: 0 auto
}

.bl-header__eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #B8960C;
    margin-bottom: 10px
}

.bl-header__title {
    font-size: 38px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px;
    letter-spacing: -0.5px
}

.bl-header__desc {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    margin: 0 0 28px
}

.bl-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap
}

.bl-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e0dbd0;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    transition: all .2s
}

.bl-filter span {
    font-size: 11px;
    background: #f0ebe0;
    color: #999;
    padding: 1px 7px;
    border-radius: 10px
}

.bl-filter:hover,
.bl-filter.is-active {
    border-color: #B8960C;
    color: #B8960C;
    background: rgba(184, 150, 12, 0.06)
}

.bl-filter.is-active span {
    background: rgba(184, 150, 12, 0.15);
    color: #B8960C
}

.bl-body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start
}

.bl-body__inner {
    min-width: 0
}

.bl-cat-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(184, 150, 12, 0.92);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.3px
}

.bl-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ece8e0;
    text-decoration: none;
    color: inherit;
    margin-bottom: 32px;
    transition: all .3s ease
}

.bl-featured:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px)
}

.bl-featured__img {
    position: relative;
    aspect-ratio: 4/3;
    background: #f5f0e8;
    overflow: hidden
}

.bl-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.bl-featured:hover .bl-featured__img img {
    transform: scale(1.04)
}

.bl-featured__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ccc;
    font-size: 48px
}

.bl-featured__body {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    background: #fff
}

.bl-featured__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    color: #aaa;
    flex-wrap: wrap
}

.bl-featured__meta i {
    color: #B8960C;
    margin-right: 3px
}

.bl-featured__title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -0.3px;
    line-height: 1.3
}

.bl-featured__excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0
}

.bl-featured__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #B8960C;
    margin-top: 4px;
    transition: gap .2s
}

.bl-featured:hover .bl-featured__cta {
    gap: 10px
}

.bl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px
}

.bl-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #ece8e0;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    background: #fff
}

.bl-card:hover {
    border-color: rgba(184, 150, 12, 0.35);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px)
}

.bl-card__img {
    position: relative;
    aspect-ratio: 16/10;
    background: #f5f0e8;
    overflow: hidden
}

.bl-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.bl-card:hover .bl-card__img img {
    transform: scale(1.05)
}

.bl-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ccc;
    font-size: 32px
}

.bl-card__body {
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.bl-card__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    color: #aaa
}

.bl-card__meta i {
    color: #B8960C
}

.bl-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin: 0;
    line-height: 1.4
}

.bl-card__excerpt {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 0;
    flex: 1
}

.bl-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 700;
    color: #B8960C;
    margin-top: 4px;
    transition: gap .2s
}

.bl-card:hover .bl-card__cta {
    gap: 8px
}

.bl-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 8px
}

.bl-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #e0dbd0;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: all .2s
}

.bl-pagination .page-numbers:hover {
    border-color: #B8960C;
    color: #B8960C
}

.bl-pagination .page-numbers.current {
    background: #B8960C;
    border-color: #B8960C;
    color: #fff
}

.bl-empty {
    text-align: center;
    padding: 80px 24px;
    color: #ccc
}

.bl-empty i {
    font-size: 48px;
    display: block;
    margin-bottom: 16px
}

.bl-empty h3 {
    font-size: 18px;
    color: #888;
    margin: 0 0 8px
}

.bl-empty p {
    font-size: 14px;
    color: #aaa;
    margin: 0
}

.bl-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.bl-sidebar__box {
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: 14px;
    padding: 20px
}

.bl-sidebar__title {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    margin: 0 0 14px;
    letter-spacing: 0.3px;
    text-transform: uppercase
}

.bl-search {
    display: flex;
    gap: 8px
}

.bl-search__input {
    flex: 1;
    padding: 9px 14px;
    border: 1px solid #e0dbd0;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    transition: border-color .2s
}

.bl-search__input:focus {
    border-color: #B8960C
}

.bl-search__btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: #B8960C;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: background .2s;
    flex-shrink: 0
}

.bl-search__btn:hover {
    background: #9a7d0a
}

.bl-sidebar__cats {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.bl-sidebar__cats li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    transition: all .2s
}

.bl-sidebar__cats li a em {
    font-style: normal;
    font-size: 11px;
    background: #f0ebe0;
    color: #999;
    padding: 1px 7px;
    border-radius: 10px
}

.bl-sidebar__cats li a:hover,
.bl-sidebar__cats li a.is-active {
    background: rgba(184, 150, 12, 0.08);
    color: #B8960C
}

.bl-sidebar__recent {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f5f0e8;
    text-decoration: none;
    color: inherit;
    transition: all .2s
}

.bl-sidebar__recent:last-child {
    border-bottom: none
}

.bl-sidebar__recent:hover {
    color: #B8960C
}

.bl-sidebar__recent img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0
}

.bl-sidebar__recent-title {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin-bottom: 3px
}

.bl-sidebar__recent-date {
    font-size: 11px;
    color: #aaa
}

.bl-sidebar__wa {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 14px;
    padding: 20px;
    color: #fff;
    text-align: center
}

.bl-sidebar__wa>i {
    font-size: 28px;
    color: #25D366;
    display: block;
    margin-bottom: 10px
}

.bl-sidebar__wa h4 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px
}

.bl-sidebar__wa p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 14px;
    line-height: 1.5
}

.bl-sidebar__wa a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    width: 100%;
    justify-content: center
}

.bl-sidebar__wa a:hover {
    background: #1ebd5a;
    color: #fff
}

@media (max-width:1100px) {
    .bl-body {
        grid-template-columns: 1fr 260px;
        gap: 28px
    }

    .bl-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:860px) {
    .bl-body {
        grid-template-columns: 1fr
    }

    .bl-sidebar {
        position: static
    }

    .bl-featured {
        grid-template-columns: 1fr
    }

    .bl-featured__img {
        aspect-ratio: 16/9
    }
}

@media (max-width:640px) {
    .bl-header__title {
        font-size: 28px
    }

    .bl-grid {
        grid-template-columns: 1fr
    }
}

.pg-layout {
    display: block;
    min-height: calc(100vh - 80px);
    background: #fff
}

.pg-sidebar {
    background: #fff;
    border-right: 1px solid #ece8e0;
    padding: 28px 0 40px;
    position: fixed;
    top: 80px;
    left: 0;
    width: 260px;
    height: calc(100vh - 80px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    z-index: 100
}

.pg-sidebar::-webkit-scrollbar {
    width: 4px
}

.pg-sidebar::-webkit-scrollbar-track {
    background: transparent
}

.pg-sidebar::-webkit-scrollbar-thumb {
    background: #e0dbd0;
    border-radius: 4px
}

.pg-sidebar__head {
    padding: 0 20px 20px;
    border-bottom: 1px solid #f0ebe0;
    margin-bottom: 8px
}

.pg-sidebar__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8960C
}

.pg-sidebar__nav {
    flex: 1;
    padding: 4px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.pg-sidebar__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    text-decoration: none;
    color: #555;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s;
    gap: 8px
}

.pg-sidebar__item:hover {
    background: #faf7f0;
    color: #111
}

.pg-sidebar__item.is-active {
    background: rgba(184, 150, 12, 0.08);
    color: #B8960C;
    font-weight: 700;
    border-left: 3px solid #B8960C;
    padding-left: 9px
}

.pg-sidebar__item-name {
    flex: 1;
    line-height: 1.3
}

.pg-sidebar__item-count {
    font-size: 11px;
    font-weight: 600;
    background: #f0ebe0;
    color: #999;
    padding: 2px 8px;
    border-radius: 20px;
    flex-shrink: 0
}

.pg-sidebar__item.is-active .pg-sidebar__item-count {
    background: rgba(184, 150, 12, 0.15);
    color: #B8960C
}

.pg-sidebar__wa {
    margin: 16px 12px 0;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff
}

.pg-sidebar__wa>i {
    font-size: 22px;
    color: #25D366;
    flex-shrink: 0
}

.pg-sidebar__wa>div {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px
}

.pg-sidebar__wa strong {
    font-size: 12.5px;
    font-weight: 700;
    color: #fff
}

.pg-sidebar__wa span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.55)
}

.pg-sidebar__wa>a {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    background: #25D366;
    color: #fff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s;
    flex-shrink: 0
}

.pg-sidebar__wa>a:hover {
    background: #1ebd5a;
    color: #fff
}

.pg-main {
    padding: 28px 32px 60px;
    background: #fff;
    margin-left: 260px
}

.pg-main__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0ebe0;
    gap: 16px;
    flex-wrap: wrap
}

.pg-main__header-left {
    display: flex;
    align-items: baseline;
    gap: 12px
}

.pg-main__header-right {
    text-align: right
}

.pg-filter {
    display: flex;
    gap: 10px
}

.pg-filter__select {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s
}

.pg-filter__select:hover {
    border-color: #d4af37
}

.pg-grid--list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.pg-grid--list .pg-card {
    display: flex;
    align-items: center;
    gap: 16px
}

.pg-grid--list .pg-card__img {
    width: 120px;
    height: 120px
}

@media (max-width:768px) {
    .pg-grid--list .pg-card {
        flex-direction: column
    }

    .pg-filter {
        flex-direction: column
    }

    .pg-filter__select {
        width: 100%
    }
}

.pg-main__title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0;
    letter-spacing: -0.2px
}

.pg-main__count {
    font-size: 13px;
    font-weight: 600;
    color: #B8960C;
    background: rgba(184, 150, 12, 0.08);
    border: 1px solid rgba(184, 150, 12, 0.18);
    padding: 3px 10px;
    border-radius: 20px
}

.pg-main__hint {
    font-size: 12px;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 6px
}

.pg-main__hint i {
    color: #d4af37
}

.pg-empty {
    text-align: center;
    padding: 80px 24px;
    color: #ccc
}

.pg-empty i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block
}

.pg-empty p {
    font-size: 14px;
    color: #aaa;
    margin: 0
}

.pg-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.pg-card {
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column
}

.pg-card:hover {
    border-color: rgba(184, 150, 12, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px)
}

.pg-card__img {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #f8f6f2;
    overflow: hidden
}

.pg-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.pg-card:hover .pg-card__img img {
    transform: scale(1.06)
}

.pg-card__hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s ease
}

.pg-card:hover .pg-card__hover {
    opacity: 1
}

.pg-card__zoom {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    color: #111;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(6px);
    transition: transform .25s ease
}

.pg-card:hover .pg-card__zoom {
    transform: translateY(0)
}

.pg-card__zoom i {
    font-size: 12px
}

.pg-card__foot {
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid #f5f0e8
}

.pg-card__num {
    font-size: 11.5px;
    font-weight: 700;
    color: #999;
    letter-spacing: 0.3px
}

.pg-card__wa {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: #25D366;
    color: #fff;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap
}

.pg-card__wa:hover {
    background: #1ebd5a;
    color: #fff;
    transform: translateY(-1px)
}

.pg-card__wa i {
    font-size: 13px
}

.pg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease
}

.pg-lightbox.is-open {
    opacity: 1;
    pointer-events: all
}

.pg-lightbox__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(6px)
}

.pg-lightbox__wrap {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    max-width: 900px;
    width: calc(100% - 40px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.93) translateY(14px);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1)
}

.pg-lightbox.is-open .pg-lightbox__wrap {
    transform: scale(1) translateY(0)
}

.pg-lightbox__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all .2s;
    backdrop-filter: blur(4px)
}

.pg-lightbox__close:hover {
    background: #B8960C;
    transform: scale(1.08)
}

.pg-lightbox__img-area {
    flex: 1;
    overflow: hidden;
    background: #f8f6f2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    max-height: calc(92vh - 72px)
}

.pg-lightbox__img-area img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block
}

.pg-lightbox__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid #ece8e0;
    gap: 16px;
    flex-wrap: wrap;
    background: #fff
}

.pg-lightbox__bar span {
    font-size: 14px;
    font-weight: 700;
    color: #111
}

.pg-lightbox__wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
    white-space: nowrap
}

.pg-lightbox__wa:hover {
    background: #1ebd5a;
    transform: translateY(-1px);
    color: #fff
}

.pg-parent {
    background: #fff
}

.pg-tabs {
    border-bottom: 1px solid #ece8e0;
    background: #fff;
    position: sticky;
    top: 80px;
    z-index: 10
}

.pg-tabs__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0
}

.pg-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all .2s
}

.pg-tab i {
    font-size: 13px
}

.pg-tab:hover {
    color: #111
}

.pg-tab.is-active {
    color: #B8960C;
    border-bottom-color: #B8960C
}

.pg-parent__body {
    padding: 40px 24px 60px
}

.pg-parent__inner {
    max-width: 1320px;
    margin: 0 auto
}

.pg-parent__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.pg-cat-card {
    background: #fff;
    border: 1px solid #ece8e0;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all .3s ease;
    display: flex;
    flex-direction: column
}

.pg-cat-card:hover {
    border-color: rgba(184, 150, 12, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08)
}

.pg-cat-card__img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f8f6f2;
    overflow: hidden
}

.pg-cat-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.pg-cat-card:hover .pg-cat-card__img img {
    transform: scale(1.06)
}

.pg-cat-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #ccc;
    font-size: 40px
}

.pg-cat-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(184, 150, 12, 0.92);
    color: #fff;
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px
}

.pg-cat-card__body {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.pg-cat-card__body h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #111
}

.pg-cat-card__cta {
    font-size: 13px;
    font-weight: 600;
    color: #B8960C;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s
}

.pg-cat-card:hover .pg-cat-card__cta {
    gap: 10px
}

.pg-cta {
    padding: 40px 24px;
    background: #fff;
    border-top: 1px solid #ece8e0
}

.pg-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.pg-cta__inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -8%;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.18), transparent 70%);
    pointer-events: none
}

.pg-cta__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    position: relative;
    z-index: 1
}

.pg-cta__text {
    flex: 1;
    position: relative;
    z-index: 1
}

.pg-cta__text h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700
}

.pg-cta__text p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5
}

.pg-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: all .25s;
    position: relative;
    z-index: 1;
    white-space: nowrap
}

.pg-cta__btn:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-2px)
}

@media (max-width:1200px) {
    .pg-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media (max-width:1024px) {
    .pg-sidebar {
        width: 220px
    }

    .pg-main {
        margin-left: 220px
    }

    .pg-parent__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pg-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width:860px) {
    .pg-layout {
        display: block
    }

    .pg-sidebar {
        position: static;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #ece8e0;
        padding: 16px 0
    }

    .pg-sidebar__nav {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 4px 16px
    }

    .pg-sidebar__item {
        padding: 7px 12px;
        font-size: 12.5px
    }

    .pg-main {
        padding: 20px 16px 40px;
        margin-left: 0
    }

    .pg-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px
    }
}

@media (max-width:640px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px
    }

    .pg-parent__grid {
        grid-template-columns: 1fr
    }

    .pg-cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px
    }

    .pg-cta__btn {
        width: 100%;
        justify-content: center
    }

    .pg-lightbox__bar {
        flex-direction: column;
        align-items: flex-start
    }

    .pg-lightbox__wa {
        width: 100%;
        justify-content: center
    }
}

.pg-card__edit {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    background: #f5f0e8;
    color: #B8960C;
    border: 1px solid rgba(184, 150, 12, 0.25);
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap
}

.pg-card__edit:hover {
    background: #B8960C;
    color: #fff;
    border-color: #B8960C;
    transform: translateY(-1px)
}

.pg-card__edit i {
    font-size: 11px
}

.pg-edit-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease
}

.pg-edit-modal.is-open {
    opacity: 1;
    pointer-events: all
}

.pg-edit-modal__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px)
}

.pg-edit-modal__box {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 16px;
    width: calc(100% - 40px);
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
    transform: scale(0.94) translateY(12px);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column
}

.pg-edit-modal.is-open .pg-edit-modal__box {
    transform: scale(1) translateY(0)
}

.pg-edit-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #ece8e0;
    gap: 12px
}

.pg-edit-modal__head-left {
    display: flex;
    align-items: center;
    gap: 10px
}

.pg-edit-modal__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #B8960C;
    background: rgba(184, 150, 12, 0.1);
    border: 1px solid rgba(184, 150, 12, 0.2);
    padding: 4px 10px;
    border-radius: 20px
}

.pg-edit-modal__head h3 {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin: 0
}

.pg-edit-modal__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f0e8;
    color: #888;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .2s;
    flex-shrink: 0
}

.pg-edit-modal__close:hover {
    background: #B8960C;
    color: #fff
}

.pg-edit-modal__body {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 24px;
    flex: 1
}

.pg-edit-modal__preview {
    border-radius: 10px;
    overflow: hidden;
    background: #f8f6f2;
    aspect-ratio: 1 / 1;
    align-self: start
}

.pg-edit-modal__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.pg-edit-modal__fields {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.pg-edit-field {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.pg-edit-field label {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    letter-spacing: 0.3px
}

.pg-edit-field input,
.pg-edit-field textarea {
    padding: 10px 14px;
    border: 1px solid #e0dbd0;
    border-radius: 8px;
    font-size: 13.5px;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color .2s;
    font-family: inherit;
    resize: vertical
}

.pg-edit-field input:focus,
.pg-edit-field textarea:focus {
    border-color: #B8960C;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.1)
}

.pg-edit-modal__foot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid #ece8e0
}

.pg-edit-modal__cancel {
    padding: 10px 20px;
    background: #f5f0e8;
    color: #888;
    border: none;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s
}

.pg-edit-modal__cancel:hover {
    background: #e8e0d0;
    color: #555
}

.pg-edit-modal__save {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    background: #B8960C;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s
}

.pg-edit-modal__save:hover {
    background: #9a7d0a;
    transform: translateY(-1px)
}

.pg-toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999999;
    background: #111;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateY(10px);
    transition: all .3s ease
}

.pg-toast.show {
    opacity: 1;
    transform: translateY(0)
}

.pg-toast i {
    color: #4ade80;
    font-size: 15px
}

@media (max-width:600px) {
    .pg-edit-modal__body {
        grid-template-columns: 1fr
    }

    .pg-edit-modal__preview {
        aspect-ratio: 16/9
    }
}

.pg-card__img {
    position: relative
}

.pg-card__urun-no {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15)
}

.pg-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 12px
}

.pg-card__stok {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #16a34a
}

.pg-card__stok-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    display: inline-block;
    animation: stokPulse 1.4s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6)
}

@keyframes stokPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7)
    }

    70% {
        box-shadow: 0 0 0 7px rgba(34, 197, 94, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0)
    }
}

.pg-card__siparis {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap
}

.pg-card__siparis:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    color: #fff
}

.pg-card__siparis i {
    font-size: 12px
}

.mi-wrap {
    background: #fff;
    min-height: 100vh
}

.mi-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #ece8e0;
    padding: 14px 24px
}

.mi-breadcrumb__inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #aaa;
    flex-wrap: wrap
}

.mi-breadcrumb__inner a {
    color: #888;
    text-decoration: none;
    transition: color .2s
}

.mi-breadcrumb__inner a:hover {
    color: #B8960C
}

.mi-breadcrumb__inner i {
    font-size: 9px;
    color: #ccc
}

.mi-breadcrumb__inner strong {
    color: #B8960C;
    font-weight: 700
}

.mi-body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 36px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.mi-gallery {
    position: sticky;
    top: 0
}

.mi-gallery__main {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    background: #f8f6f2;
    aspect-ratio: 1 / 1;
    margin-bottom: 12px
}

.mi-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease
}

.mi-gallery__main:hover img {
    transform: scale(1.03)
}

.mi-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    z-index: 2
}

.mi-gallery__nav--prev {
    left: 14px
}

.mi-gallery__nav--next {
    right: 14px
}

.mi-gallery__nav:hover {
    background: #B8960C;
    color: #fff
}

.mi-gallery__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all .2s;
    backdrop-filter: blur(4px);
    z-index: 2
}

.mi-gallery__zoom:hover {
    background: #B8960C;
    color: #fff
}

.mi-gallery__badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 2
}

.mi-gallery__thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px
}

.mi-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #e0dbd0;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: all .2s;
    flex-shrink: 0
}

.mi-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.mi-thumb:hover {
    border-color: #B8960C
}

.mi-thumb.is-active {
    border-color: #B8960C;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.2)
}

.mi-gallery__all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #B8960C;
    text-decoration: none;
    transition: gap .2s
}

.mi-gallery__all:hover {
    gap: 12px
}

.mi-config {
    display: flex;
    flex-direction: column;
    gap: 0
}

.mi-config__head {
    margin-bottom: 16px
}

.mi-config__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #B8960C;
    margin-bottom: 8px
}

.mi-config__title {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px;
    letter-spacing: -0.3px;
    line-height: 1.2
}

.mi-config__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.mi-config__model {
    font-size: 13px;
    font-weight: 700;
    color: #888;
    background: #f5f0e8;
    padding: 4px 12px;
    border-radius: 20px
}

.mi-config__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 600;
    color: #16a34a
}

.mi-config__badge i {
    font-size: 12px
}

.mi-config__price-note {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(184, 150, 12, 0.06);
    border: 1px solid rgba(184, 150, 12, 0.18);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #B8960C;
    font-weight: 600
}

.mi-config__price-note i {
    font-size: 15px;
    flex-shrink: 0
}

.mi-form {
    display: flex;
    flex-direction: column;
    gap: 22px
}

.mi-form__group {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mi-form__group--row {
    flex-direction: row;
    gap: 14px
}

.mi-form__half {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.mi-form__label {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 7px
}

.mi-form__label i {
    color: #B8960C;
    font-size: 13px
}

.mi-form__optional {
    font-size: 11px;
    font-weight: 500;
    color: #aaa;
    margin-left: 4px
}

.mi-radio-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.mi-custom-color-row {
    margin-bottom: 10px
}

.mi-custom-color-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid #e0dbd0;
    background: #fff;
    cursor: pointer;
    transition: all .2s;
    font-size: 13px;
    color: #555;
    position: relative
}

.mi-custom-color-btn:hover {
    border-color: #B8960C;
    color: #B8960C
}

.mi-custom-color-input {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer;
    z-index: 2;
    border: none;
    padding: 0
}

.mi-custom-color-preview {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, #ff0080, #ff8c00, #ffd700, #00ff7f, #00bfff, #8a2be2, #ff0080);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #e0dbd0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 9px;
    transition: all 0.25s;
    flex-shrink: 0
}

.mi-custom-color-preview.is-set {
    background: var(--custom-color, #1a1a1a);
    border: 2px solid #B8960C;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.3)
}

.mi-custom-color-preview.is-set i {
    display: none
}

.mi-radio {
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid #e0dbd0;
    background: #fff;
    transition: all .2s;
    font-size: 13px;
    color: #444
}

.mi-radio input {
    display: none
}

.mi-radio__dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: box-shadow .2s
}

.mi-radio:has(input:checked) {
    border-color: #B8960C;
    background: rgba(184, 150, 12, 0.06);
    color: #B8960C;
    font-weight: 700
}

.mi-radio:has(input:checked) .mi-radio__dot {
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.3)
}

.mi-radio--custom {
    position: relative
}

.mi-radio__color-input {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    cursor: pointer;
    z-index: 2;
    border: none;
    padding: 0
}

.mi-radio__dot--rainbow {
    background: conic-gradient(from 180deg, #ff0080, #ff8c00, #ffd700, #00ff7f, #00bfff, #8a2be2, #ff0080) !important;
    border: 2px solid #fff !important;
    box-shadow: 0 0 0 1px #e0dbd0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 9px;
    transition: all 0.25s
}

.mi-radio--custom:hover .mi-radio__dot--rainbow {
    transform: scale(1.1);
    box-shadow: 0 0 0 2px #B8960C, 0 4px 10px rgba(184, 150, 12, 0.3)
}

.mi-radio__dot--rainbow.is-set i {
    display: none
}

.mi-radio__dot--rainbow.is-set {
    background: var(--custom-color, #1a1a1a) !important;
    border: 2px solid #B8960C !important;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.3)
}

.mi-select-group {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.mi-select-btn {
    cursor: pointer
}

.mi-select-btn input {
    display: none
}

.mi-select-btn span {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #e0dbd0;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    transition: all .2s;
    cursor: pointer
}

.mi-select-btn:has(input:checked) span {
    border-color: #B8960C;
    background: rgba(184, 150, 12, 0.08);
    color: #B8960C;
    font-weight: 700
}

.mi-select-btn span:hover {
    border-color: #B8960C;
    color: #B8960C
}

.mi-color-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.mi-color {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer
}

.mi-color input {
    display: none
}

.mi-color__swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid transparent;
    transition: all .2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15)
}

.mi-color:has(input:checked) .mi-color__swatch {
    border-color: #B8960C;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.25);
    transform: scale(1.12)
}

.mi-color__name {
    font-size: 10.5px;
    color: #888;
    text-align: center;
    max-width: 60px;
    line-height: 1.2
}

.mi-color:has(input:checked) .mi-color__name {
    color: #B8960C;
    font-weight: 700
}

.mi-upload-group {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.mi-upload-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #faf7f0;
    border-radius: 10px;
    border: 1px solid #ece8e0
}

.mi-upload-row__label {
    font-size: 12.5px;
    font-weight: 600;
    color: #555;
    min-width: 110px;
    flex-shrink: 0
}

.mi-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: #fff;
    border: 1px solid #e0dbd0;
    border-radius: 7px;
    font-size: 12.5px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .2s;
    flex-shrink: 0
}

.mi-upload-btn:hover {
    border-color: #B8960C;
    color: #B8960C
}

.mi-upload-btn input {
    display: none
}

.mi-upload-row__filename {
    font-size: 12px;
    color: #aaa;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.mi-textarea,
.mi-input {
    padding: 11px 14px;
    border: 1px solid #e0dbd0;
    border-radius: 10px;
    font-size: 13.5px;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    resize: vertical
}

.mi-textarea:focus,
.mi-input:focus {
    border-color: #B8960C;
    box-shadow: 0 0 0 3px rgba(184, 150, 12, 0.1)
}

.mi-form__actions {
    display: flex;
    gap: 12px;
    padding-top: 4px
}

.mi-btn-wa {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    font-family: inherit
}

.mi-btn-wa:hover {
    background: #1ebd5a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4)
}

.mi-btn-wa i {
    font-size: 20px
}

.mi-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 20px;
    background: #fff;
    color: #555;
    border: 1.5px solid #e0dbd0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s;
    font-family: inherit;
    white-space: nowrap
}

.mi-btn-secondary:hover {
    border-color: #B8960C;
    color: #B8960C
}

.mi-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 16px;
    background: #faf7f0;
    border-radius: 12px;
    border: 1px solid #ece8e0
}

.mi-trust__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center
}

.mi-trust__item i {
    color: #B8960C;
    font-size: 18px
}

.mi-trust__item span {
    font-size: 11px;
    font-weight: 600;
    color: #666;
    line-height: 1.3
}

.mi-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s
}

.mi-lightbox.is-open {
    opacity: 1;
    pointer-events: all
}

.mi-lightbox__bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px)
}

.mi-lightbox__wrap {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh
}

.mi-lightbox__wrap img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    display: block
}

.mi-lightbox__close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2)
}

.mi-lightbox__close:hover {
    background: #B8960C;
    color: #fff
}

.mi-related {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 40px
}

.mi-related__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.mi-related__title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 24px;
    text-align: center
}

.mi-related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px
}

.mi-related__item {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s
}

.mi-related__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12)
}

.mi-related__item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block
}

.mi-related__item span {
    display: block;
    padding: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff
}

@media (max-width:1024px) {
    .mi-body {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .mi-gallery {
        position: static
    }

    .mi-trust {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:640px) {
    .mi-body {
        padding: 20px 16px 60px
    }

    .mi-config__title {
        font-size: 22px
    }

    .mi-form__group--row {
        flex-direction: column
    }

    .mi-form__actions {
        flex-direction: column
    }

    .mi-btn-wa,
    .mi-btn-secondary {
        width: 100%
    }

    .mi-trust {
        grid-template-columns: repeat(2, 1fr)
    }
}

.mi-upload-single__btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border: 2px dashed #e0dbd0;
    border-radius: 12px;
    background: #faf7f0;
    cursor: pointer;
    transition: all .2s;
    width: 100%;
    box-sizing: border-box
}

.mi-upload-single__btn:hover {
    border-color: #B8960C;
    background: rgba(184, 150, 12, 0.04)
}

.mi-upload-single__btn input {
    display: none
}

.mi-upload-single__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(184, 150, 12, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    font-size: 20px;
    flex-shrink: 0
}

.mi-upload-single__text {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.mi-upload-single__text strong {
    font-size: 14px;
    font-weight: 700;
    color: #111
}

.mi-upload-single__text span {
    font-size: 12px;
    color: #aaa
}

.mi-upload-single__preview {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border: 1px solid #ece8e0;
    border-radius: 12px;
    background: #fff
}

.mi-upload-single__preview img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ece8e0
}

.mi-upload-single__remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0dbd0;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all .2s
}

.mi-upload-single__remove:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444
}

.mi-form__hint {
    font-size: 11.5px;
    color: #aaa;
    margin-top: -4px
}

.mi-gallery__main.is-portrait {
    aspect-ratio: 4 / 3;
    background: #f0ede8
}

.mi-gallery__main.is-portrait img.img-portrait {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f0ede8
}

#miCanvas {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px
}

.mi-gallery__main.is-portrait #miCanvas {
    object-fit: contain
}

.mi-gallery__main {
    aspect-ratio: 4 / 3
}

.mi-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.mi-gallery__main.is-portrait img {
    object-fit: contain;
    background: #f0ede8
}

.mi-yazi-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 10
}

.mi-yazi-badge--yazi {
    bottom: 14px;
    right: 14px
}

.mi-yazi-badge--tas {
    bottom: 14px;
    left: 14px
}

.mi-yazi-badge__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4)
}

.reviews-section {
    background: #fff;
    padding: 56px 24px;
    position: relative;
    overflow: hidden
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.06) 0%, transparent 70%);
    pointer-events: none
}

.reviews-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.reviews-head {
    text-align: center;
    margin-bottom: 32px
}

.reviews-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8960C;
    margin-bottom: 8px
}

.reviews-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.2
}

.reviews-desc {
    font-size: 14px;
    color: #666;
    margin: 0 auto 20px;
    max-width: 560px;
    line-height: 1.55
}

.reviews-stats {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    background: #faf7f0;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid #f0ebe0
}

.reviews-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.reviews-stat-value {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a
}

.reviews-stat-stars {
    display: flex;
    gap: 2px;
    color: #B8960C;
    font-size: 12px
}

.reviews-stat-label {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px
}

.reviews-stat-divider {
    width: 1px;
    height: 36px;
    background: #e5dec8
}

.reviews-slider-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 -24px;
    padding: 8px 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%)
}

.reviews-slider {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: reviewsScroll 40s linear infinite
}

.reviews-slider-wrap:hover .reviews-slider {
    animation-play-state: paused
}

@keyframes reviewsScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.reviews-arrow {
    display: none !important
}

.review-card {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px 20px;
    border: 1px solid #f0ebe0;
    position: relative;
    transition: all .3s ease;
    display: flex;
    flex-direction: column
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(to bottom, #B8960C, #d4af37);
    transition: height .35s ease;
    border-radius: 12px 0 0 12px
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    border-color: #e5dec8
}

.review-card:hover::before {
    height: 100%
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px
}

.review-card-stars {
    display: flex;
    gap: 2px;
    color: #B8960C;
    font-size: 12px
}

.review-card-quote {
    font-size: 22px;
    color: rgba(184, 150, 12, 0.18);
    line-height: 1
}

.review-card-text {
    font-size: 13px;
    line-height: 1.65;
    color: #555;
    margin: 0 0 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.review-card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #f0ebe0
}

.review-card-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(184, 150, 12, 0.25)
}

.review-card-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1
}

.review-card-name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.review-card-info {
    font-size: 11px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.review-card-info i {
    color: #B8960C;
    font-size: 9px
}

.review-card-dot {
    color: #ccc
}

.reviews-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5dec8;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .25s;
    font-size: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04)
}

.reviews-arrow:hover {
    background: #B8960C;
    border-color: #B8960C;
    color: #fff;
    transform: scale(1.06)
}

.reviews-google-note {
    margin-top: 28px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    color: #888
}

.reviews-google-note i {
    color: #4285F4;
    font-size: 14px
}

.faq-section {
    background: #fff;
    padding: 28px 24px 0;
    position: relative
}

.faq-inner {
    max-width: 1320px;
    margin: 0 auto
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
    align-items: start
}

.faq-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch
}

.faq-bottom>* {
    height: auto
}

.faq-intro-bar {
    background: #faf7f0;
    border: 1px solid #f0ebe0;
    border-left: 3px solid #B8960C;
    border-radius: 10px;
    padding: 14px 22px;
    text-align: left
}

.faq-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #B8960C;
    margin-bottom: 4px
}

.faq-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
    line-height: 1.3
}

.faq-desc {
    font-size: 12.5px;
    color: #666;
    line-height: 1.55;
    margin: 0
}

.faq-item {
    background: #fff;
    border: 1px solid #f0ebe0;
    border-radius: 12px;
    overflow: hidden;
    transition: all .3s ease;
    align-self: start
}

.faq-item:hover {
    border-color: #e5dec8;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.04)
}

.faq-item.is-open {
    border-color: #B8960C;
    box-shadow: 0 8px 30px rgba(184, 150, 12, 0.12)
}

.faq-q {
    width: 100%;
    background: transparent;
    border: 0;
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all .25s
}

.faq-q-text {
    font-size: 13.5px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.45
}

.faq-q-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #faf7f0;
    border: 1px solid #e5dec8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .3s ease;
    color: #B8960C;
    font-size: 10px;
    margin-top: 1px
}

.faq-item.is-open .faq-q-icon {
    background: #B8960C;
    border-color: #B8960C;
    color: #fff;
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-item.is-open .faq-a {
    max-height: 500px
}

.faq-a p {
    margin: 0;
    padding: 0 18px 16px;
    font-size: 13px;
    line-height: 1.65;
    color: #555
}

.faq-help {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 16px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.faq-help::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(184, 150, 12, 0.18) 0%, transparent 70%);
    pointer-events: none
}

.faq-help-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 1
}

.faq-help-text {
    flex: 1;
    position: relative;
    z-index: 1
}

.faq-help-text strong {
    display: block;
    font-size: 16px;
    margin-bottom: 2px
}

.faq-help-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5
}

.faq-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #fff;
    color: #1a1a1a;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    border: 2px solid #fff
}

.faq-help-btn:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3)
}

@media (max-width:1024px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .faq-bottom {
        grid-template-columns: 1fr
    }
}

@media (max-width:768px) {
    $128px 20px 0
}

.reviews-title {
    font-size: 24px
}

.faq-title {
    font-size: 22px
}

.reviews-stats {
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 20px
}

.reviews-stat-divider {
    display: none
}

.reviews-stat-value {
    font-size: 18px
}

.review-card {
    flex: 0 0 280px
}

.faq-grid {
    grid-template-columns: 1fr
}

.faq-q {
    padding: 14px 16px
}

.faq-q-text {
    font-size: 14px
}

.faq-a p {
    padding: 0 16px 16px
}

.faq-help {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 22px 20px
}

.faq-help-btn {
    width: 100%;
    justify-content: center
}
}

.mi-gallery__main {
    overflow: visible !important
}

.mi-yazi-badge {
    position: absolute;
    display: flex !important;
    align-items: center;
    gap: 7px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    z-index: 10;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    white-space: nowrap
}

.mi-yazi-badge--yazi {
    bottom: 14px;
    right: 14px
}

.mi-yazi-badge--tas {
    bottom: 14px;
    left: 14px
}

.mi-yazi-badge__dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
    display: inline-block
}

.mi-btn-cart {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(184, 150, 12, 0.35);
    font-family: var(--font)
}

.mi-btn-cart:hover {
    background: linear-gradient(135deg, #9a7d0a, #B8960C);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 150, 12, 0.45)
}

.mi-btn-cart i {
    font-size: 18px
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease
}

.cart-overlay.is-open {
    opacity: 1;
    pointer-events: all
}

.cart-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1)
}

.cart-panel.is-open {
    transform: translateX(0)
}

.cart-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #f0ebe0;
    background: #fff;
    flex-shrink: 0
}

.cart-panel__head-left {
    display: flex;
    align-items: center;
    gap: 10px
}

.cart-panel__head-left i {
    font-size: 20px;
    color: #B8960C
}

.cart-panel__head-left h3 {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin: 0
}

.cart-count-badge {
    background: #B8960C;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
}

.cart-panel__close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f5f0e8;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #888;
    transition: all .2s
}

.cart-panel__close:hover {
    background: #B8960C;
    color: #fff
}

.cart-panel__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 200px;
    gap: 12px;
    color: #ccc;
    text-align: center
}

.cart-empty i {
    font-size: 48px
}

.cart-empty p {
    font-size: 16px;
    font-weight: 600;
    color: #888;
    margin: 0
}

.cart-empty span {
    font-size: 13px;
    color: #aaa
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: #faf7f0;
    border-radius: 12px;
    border: 1px solid #f0ebe0;
    margin-bottom: 10px;
    position: relative;
    transition: all .2s
}

.cart-item:hover {
    border-color: rgba(184, 150, 12, 0.3)
}

.cart-item__img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    background: #e8e0d0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8960C;
    font-size: 24px
}

.cart-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.cart-item__info {
    flex: 1;
    min-width: 0
}

.cart-item__title {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px
}

.cart-item__model {
    font-size: 11px;
    font-weight: 600;
    color: #B8960C;
    margin-bottom: 6px
}

.cart-item__details {
    display: flex;
    flex-wrap: wrap;
    gap: 4px
}

.cart-item__details span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #666;
    background: #fff;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid #e8e0d0
}

.cart-item__details i {
    color: #B8960C;
    font-size: 9px
}

.cart-item__remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0dbd0;
    color: #aaa;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all .2s
}

.cart-item__remove:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444
}

.cart-panel__foot {
    padding: 16px;
    border-top: 1px solid #f0ebe0;
    background: #fff;
    flex-shrink: 0
}

.cart-summary {
    margin-bottom: 14px
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px
}

.cart-summary__row strong {
    color: #111;
    font-weight: 700
}

.cart-summary__note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #aaa;
    margin: 0
}

.cart-summary__note i {
    color: #B8960C
}

.cart-wa-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: all .3s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3)
}

.cart-wa-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    color: #fff
}

.cart-wa-btn>i:first-child {
    font-size: 28px;
    flex-shrink: 0
}

.cart-wa-btn>div {
    flex: 1
}

.cart-wa-btn span {
    display: block;
    font-size: 15px;
    font-weight: 700
}

.cart-wa-btn small {
    font-size: 11px;
    opacity: 0.85
}

.cart-wa-btn>i:last-child {
    font-size: 14px;
    opacity: 0.8
}

.cart-clear-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid #e0dbd0;
    border-radius: 8px;
    color: #aaa;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .2s;
    font-family: var(--font)
}

.cart-clear-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.05)
}

@media (max-width:480px) {
    .cart-panel {
        width: 100vw
    }
}

.bl-article-page .bl-body {
    grid-template-columns: 1fr;
    max-width: 860px
}

.bl-article-page .bl-sidebar {
    display: none
}

.bl-breadcrumb {
    max-width: 860px;
    margin: 0 auto;
    padding: 20px 24px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #aaa;
    flex-wrap: wrap
}

.bl-breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color .2s
}

.bl-breadcrumb a:hover {
    color: #B8960C
}

.bl-breadcrumb i {
    font-size: 10px;
    color: #ccc
}

.bl-breadcrumb span {
    color: #555;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px
}

.bl-article {
    background: #fff;
    overflow: hidden
}

.bl-article__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px
}

.bl-article__meta .bl-cat-badge {
    position: static;
    display: inline-block;
    background: rgba(184, 150, 12, 0.1);
    color: #B8960C;
    border: 1px solid rgba(184, 150, 12, 0.3);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px
}

.bl-article__meta span {
    font-size: 13px;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 5px
}

.bl-article__meta span i {
    color: #B8960C;
    font-size: 12px
}

.bl-article__title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin: 0 0 28px
}

.bl-article__hero {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 36px;
    aspect-ratio: 16/7;
    background: #f5f0e8
}

.bl-article__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.bl-article__hero:hover img {
    transform: scale(1.02)
}

.bl-article__content {
    font-size: 16px;
    line-height: 1.85;
    color: #333;
    padding: 20px 0;
    max-width: 100%;
    word-wrap: break-word
}

.bl-article__content h1,
.bl-article__content h2,
.bl-article__content h3,
.bl-article__content h4 {
    color: #111;
    font-weight: 700;
    margin: 36px 0 14px;
    line-height: 1.3;
    letter-spacing: -0.3px
}

.bl-article__content h1 {
    font-size: 28px
}

.bl-article__content h2 {
    font-size: 22px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0ebe0
}

.bl-article__content h3 {
    font-size: 18px
}

.bl-article__content h4 {
    font-size: 16px;
    color: #444
}

.bl-article__content p {
    margin: 0 0 20px
}

.bl-article__content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 24px 0;
    display: block;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08)
}

.bl-article__content ul,
.bl-article__content ol {
    margin: 0 0 20px 24px;
    padding: 0
}

.bl-article__content li {
    margin-bottom: 8px;
    line-height: 1.7
}

.bl-article__content a {
    color: #B8960C;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s
}

.bl-article__content a:hover {
    color: #9a7d0a
}

.bl-article__content blockquote {
    border-left: 4px solid #B8960C;
    background: rgba(184, 150, 12, 0.05);
    padding: 16px 20px;
    margin: 24px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555
}

.bl-article__content strong {
    color: #111;
    font-weight: 700
}

.bl-article__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding: 11px 22px;
    border: 1.5px solid #e0dbd0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    text-decoration: none;
    transition: all .2s
}

.bl-article__back:hover {
    border-color: #B8960C;
    color: #B8960C;
    background: rgba(184, 150, 12, 0.05);
    transform: translateX(-3px)
}

.bl-article__cta {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 14px;
    padding: 28px 24px;
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.bl-article__cta-icon {
    font-size: 36px;
    color: #25D366;
    flex-shrink: 0
}

.bl-article__cta-text {
    flex: 1;
    min-width: 200px
}

.bl-article__cta-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px
}

.bl-article__cta-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.5
}

.bl-article__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    flex-shrink: 0
}

.bl-article__cta-btn:hover {
    background: #1ebd5a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3)
}

.bl-related {
    max-width: 860px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    border-top: 1px solid #f0ebe0
}

.bl-related__title {
    font-size: 18px;
    font-weight: 800;
    color: #111;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 10px
}

.bl-related__title::before {
    content: '';
    display: block;
    width: 4px;
    height: 20px;
    background: #B8960C;
    border-radius: 2px
}

.bl-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

@media (max-width:768px) {
    .bl-article__title {
        font-size: 24px
    }

    .bl-article__hero {
        aspect-ratio: 16/9;
        border-radius: 10px
    }

    .bl-article__content {
        font-size: 15px
    }

    .bl-article__content h2 {
        font-size: 19px
    }

    .bl-related__grid {
        grid-template-columns: 1fr
    }

    .bl-article__cta {
        flex-direction: column;
        text-align: center
    }

    .bl-article__cta-btn {
        width: 100%;
        justify-content: center
    }
}

@media (max-width:480px) {
    .bl-breadcrumb {
        padding: 14px 16px 0
    }

    .bl-article__title {
        font-size: 20px
    }

    .bl-related__grid {
        grid-template-columns: 1fr
    }
}

.wa-widget {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    align-items: center
}

.wa-widget__trigger {
    position: relative;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: none;
    border-radius: 0 12px 12px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 0 20px rgba(37, 211, 102, 0.45);
    transition: width .3s ease, box-shadow .3s ease;
    flex-shrink: 0;
    outline: none;
    z-index: 2
}

.wa-widget__trigger:hover {
    width: 62px;
    box-shadow: 6px 0 28px rgba(37, 211, 102, 0.55)
}

.wa-widget__icon {
    font-size: 26px;
    color: #fff;
    line-height: 1;
    transition: opacity .2s, transform .2s;
    position: absolute
}

.wa-widget__icon--close {
    opacity: 0;
    transform: rotate(-90deg) scale(0.7);
    font-size: 20px
}

.wa-widget.is-open .wa-widget__icon--open {
    opacity: 0;
    transform: rotate(90deg) scale(0.7)
}

.wa-widget.is-open .wa-widget__icon--close {
    opacity: 1;
    transform: rotate(0deg) scale(1)
}

.wa-widget__pulse {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: wa-pulse 2s ease-in-out infinite
}

.wa-widget.is-open .wa-widget__pulse {
    display: none
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.6);
        opacity: 0.4
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.wa-widget__panel {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(-12px);
    width: 320px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease, transform .3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1
}

.wa-widget.is-open .wa-widget__panel {
    opacity: 1;
    pointer-events: all;
    transform: translateY(-50%) translateX(0)
}

.wa-widget__head {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    padding: 16px 14px;
    display: flex;
    align-items: center;
    gap: 12px
}

.wa-widget__head-avatar {
    position: relative;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    flex-shrink: 0
}

.wa-widget__online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 11px;
    height: 11px;
    background: #25D366;
    border: 2px solid #075E54;
    border-radius: 50%
}

.wa-widget__head-info {
    flex: 1;
    min-width: 0
}

.wa-widget__head-info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3
}

.wa-widget__head-info span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4
}

.wa-widget__close-btn {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: background .2s;
    flex-shrink: 0
}

.wa-widget__close-btn:hover {
    background: rgba(255, 255, 255, 0.28)
}

.wa-widget__body {
    background: #ECE5DD;
    padding: 16px 14px;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c8bdb5' fill-opacity='0.25'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.wa-widget__bubble {
    background: #fff;
    border-radius: 0 12px 12px 12px;
    padding: 12px 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    position: relative;
    max-width: 90%
}

.wa-widget__bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    border-width: 0 8px 8px 0;
    border-style: solid;
    border-color: transparent #fff transparent transparent
}

.wa-widget__bubble p {
    font-size: 13.5px;
    color: #333;
    line-height: 1.55;
    margin: 0 0 6px
}

.wa-widget__bubble p:last-of-type {
    margin-bottom: 4px
}

.wa-widget__time {
    display: block;
    font-size: 10.5px;
    color: #aaa;
    text-align: right;
    margin-top: 4px
}

.wa-widget__quick {
    padding: 10px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px solid #f0f0f0;
    background: #fafafa
}

.wa-widget__quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 11px;
    background: #fff;
    border: 1.5px solid #25D366;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
    color: #075E54;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap
}

.wa-widget__quick-btn i {
    font-size: 11px;
    color: #25D366
}

.wa-widget__quick-btn:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff
}

.wa-widget__quick-btn:hover i {
    color: #fff
}

.wa-widget__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-top: 1px solid #f0f0f0;
    background: #fff
}

.wa-widget__input {
    flex: 1;
    padding: 9px 13px;
    border: 1.5px solid #e0e0e0;
    border-radius: 24px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
    background: #f9f9f9;
    color: #333
}

.wa-widget__input:focus {
    border-color: #25D366;
    background: #fff
}

.wa-widget__input::placeholder {
    color: #bbb
}

.wa-widget__send {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 14px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 24px;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
    flex-shrink: 0
}

.wa-widget__send i {
    font-size: 15px
}

.wa-widget__send:hover {
    background: linear-gradient(135deg, #1ebd5a, #0e7a6e);
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4)
}

@media (max-width:480px) {
    .wa-widget__panel {
        width: calc(100vw - 80px);
        left: 58px
    }

    .wa-widget__quick-btn span {
        display: none
    }
}

@media (max-height:500px) {
    .wa-widget {
        top: auto;
        bottom: 80px;
        transform: none
    }

    .wa-widget__panel {
        top: auto;
        bottom: 0;
        transform: translateX(-12px)
    }

    .wa-widget.is-open .wa-widget__panel {
        transform: translateX(0)
    }
}

.bl-iller-section {
    max-width: 1320px;
    margin: 0 auto;
    padding: 56px 24px 80px;
    border-top: 1px solid #f0ebe0
}

.bl-iller-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px
}

.bl-iller-head>i {
    font-size: 28px;
    color: #B8960C;
    margin-top: 4px;
    flex-shrink: 0
}

.bl-iller-head h2 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0 0 6px;
    letter-spacing: -0.3px
}

.bl-iller-head p {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.5
}

.bl-iller-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 8px
}

.bl-il-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 14px 8px 12px;
    border-radius: 10px;
    border: 1.5px solid #ece8e0;
    text-decoration: none;
    transition: all .2s ease;
    text-align: center;
    background: #fff
}

.bl-il-card i {
    font-size: 16px;
    transition: transform .2s
}

.bl-il-card span {
    font-size: 12.5px;
    font-weight: 700;
    color: #222;
    line-height: 1.3
}

.bl-il-card em {
    font-style: normal;
    font-size: 10.5px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 10px;
    line-height: 1
}

.bl-il-card--has-post {
    border-color: rgba(184, 150, 12, 0.25);
    background: #fffdf5
}

.bl-il-card--has-post i {
    color: #B8960C
}

.bl-il-card--has-post em {
    background: rgba(184, 150, 12, 0.12);
    color: #B8960C
}

.bl-il-card--has-post:hover {
    border-color: #B8960C;
    background: #fff;
    box-shadow: 0 4px 16px rgba(184, 150, 12, 0.15);
    transform: translateY(-3px)
}

.bl-il-card--has-post:hover i {
    transform: scale(1.15)
}

.bl-il-card--wa {
    border-color: rgba(37, 211, 102, 0.2);
    background: #f9fffe
}

.bl-il-card--wa i {
    color: #25D366
}

.bl-il-card--wa em {
    background: rgba(37, 211, 102, 0.12);
    color: #128C7E
}

.bl-il-card--wa:hover {
    border-color: #25D366;
    background: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.15);
    transform: translateY(-3px)
}

@media (max-width:768px) {
    .bl-iller-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 6px
    }

    .bl-il-card {
        padding: 11px 6px 10px
    }

    .bl-il-card span {
        font-size: 11.5px
    }

    .bl-iller-head {
        flex-direction: column;
        gap: 10px
    }
}

@media (max-width:480px) {
    .bl-iller-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.steps-section {
    background: #fff;
    padding: 80px 0
}

.steps-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.steps-head {
    text-align: center;
    margin-bottom: 56px
}

.steps-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #B8960C;
    text-transform: uppercase;
    margin-bottom: 10px
}

.steps-title {
    font-size: 32px;
    font-weight: 800;
    color: #111;
    letter-spacing: -0.5px;
    margin: 0
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 32px);
    right: calc(12.5% + 32px);
    height: 2px;
    background: linear-gradient(90deg, #B8960C 0%, rgba(184, 150, 12, .2) 100%);
    z-index: 0
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px 32px;
    position: relative;
    z-index: 1;
    cursor: default
}

.step-icon-wrap {
    position: relative;
    width: 96px;
    height: 96px;
    background: #fff;
    border: 2.5px solid #ece8e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: border-color .3s, box-shadow .3s, transform .3s;
    overflow: visible
}

.step-card:hover .step-icon-wrap {
    border-color: #B8960C;
    box-shadow: 0 8px 32px rgba(184, 150, 12, .2);
    transform: translateY(-6px)
}

.step-svg {
    width: 44px;
    height: 44px;
    color: #B8960C;
    transition: transform .4s ease
}

.step-card:hover .step-svg {
    transform: scale(1.1)
}

.step-svg-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    transition: stroke-dashoffset .8s ease
}

.step-card:hover .step-svg-line,
.step-card.is-visible .step-svg-line {
    stroke-dashoffset: 0
}

.step-svg-dot {
    transform-origin: center;
    animation: stepDotPulse 2.5s ease-in-out infinite;
    animation-play-state: paused
}

.step-card:hover .step-svg-dot {
    animation-play-state: running
}

@keyframes stepDotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.3);
        opacity: .7
    }
}

.step-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: #B8960C;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(184, 150, 12, .4)
}

.step-arrow {
    position: absolute;
    top: 36px;
    right: -12px;
    font-size: 20px;
    color: #B8960C;
    opacity: .5;
    z-index: 2;
    animation: stepArrowBounce 1.5s ease-in-out infinite
}

@keyframes stepArrowBounce {

    0%,
    100% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(5px)
    }
}

.step-card--last .step-arrow {
    display: none
}

.step-name {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin: 0 0 8px;
    letter-spacing: -0.2px
}

.step-desc {
    font-size: 13.5px;
    color: #777;
    line-height: 1.6;
    margin: 0
}

.step-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s ease, transform .6s ease
}

.step-card.is-visible {
    opacity: 1;
    transform: translateY(0)
}

.step-card[data-step="1"] {
    transition-delay: 0s
}

.step-card[data-step="2"] {
    transition-delay: .15s
}

.step-card[data-step="3"] {
    transition-delay: .30s
}

.step-card[data-step="4"] {
    transition-delay: .45s
}

@media (max-width:900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0
    }

    .steps-grid::before {
        display: none
    }

    .step-arrow {
        display: none
    }
}

@media (max-width:560px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .steps-title {
        font-size: 24px
    }
}

.ps-card__count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    letter-spacing: .3px
}

.bl-iller-grid--double {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px
}

.bl-il-pair {
    display: flex;
    gap: 6px
}

.bl-il-pair .bl-il-card {
    flex: 1;
    min-width: 0;
    padding: 12px 6px 10px
}

.bl-il-pair .bl-il-card span {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%
}

.bl-il-card--tezgah {
    border-color: rgba(59, 130, 246, 0.25);
    background: #f5f8ff
}

.bl-il-card--tezgah i {
    color: #3b82f6
}

.bl-il-card--tezgah em {
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb
}

.bl-il-card--tezgah:hover {
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
    transform: translateY(-3px)
}

@media (max-width:768px) {
    .bl-iller-grid--double {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 8px
    }
}

@media (max-width:480px) {
    .bl-iller-grid--double {
        grid-template-columns: repeat(2, 1fr)
    }

    .bl-il-pair {
        flex-direction: column;
        gap: 4px
    }
}

.auth-page {
    min-height: 80vh;
    background: #f8f5f0
}

.auth-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px 16px
}

.auth-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
    padding: 40px 36px;
    width: 100%;
    max-width: 420px
}

.auth-logo {
    text-align: center;
    margin-bottom: 28px
}

.auth-tabs {
    display: flex;
    background: #f5f0e8;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
    gap: 4px
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 9px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: #888;
    text-decoration: none;
    transition: all .2s
}

.auth-tab.is-active {
    background: #fff;
    color: #B8960C;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

.auth-alert {
    padding: 11px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.auth-alert--error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca
}

.auth-alert--success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.auth-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center
}

.auth-input-wrap i {
    position: absolute;
    left: 13px;
    color: #B8960C;
    font-size: 14px
}

.auth-input-wrap input {
    width: 100%;
    padding: 11px 13px 11px 38px;
    border: 1.5px solid #e5e0d8;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
    background: #fafaf8
}

.auth-input-wrap input:focus {
    border-color: #B8960C;
    background: #fff
}

.auth-btn {
    width: 100%;
    padding: 13px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 4px
}

.auth-btn:hover {
    opacity: .9;
    transform: translateY(-1px)
}

.auth-divider {
    text-align: center;
    margin: 16px 0;
    position: relative;
    color: #ccc;
    font-size: 12px
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: #e5e0d8
}

.auth-divider::before {
    left: 0
}

.auth-divider::after {
    right: 0
}

.auth-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s
}

.auth-wa-btn:hover {
    opacity: .9;
    color: #fff
}

.auth-dashboard {
    min-height: 80vh;
    background: #f8f5f0
}

.dash-topbar {
    background: #1a1a1a;
    padding: 0 24px
}

.dash-topbar__inner {
    max-width: 860px;
    margin: 0 auto;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.dash-welcome {
    display: flex;
    align-items: center;
    gap: 12px
}

.dash-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.dash-welcome strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.dash-welcome span {
    font-size: 12px;
    color: rgba(255, 255, 255, .5)
}

.dash-logout {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: 13px;
    transition: color .2s
}

.dash-logout:hover {
    color: #fff
}

.dash-body {
    max-width: 860px;
    margin: 0 auto;
    padding: 32px 24px 80px
}

.dash-cats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px
}

.dash-cat {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid #ece8e0;
    border-radius: 14px;
    padding: 16px;
    text-decoration: none;
    color: inherit;
    transition: all .2s
}

.dash-cat:hover {
    border-color: #B8960C;
    box-shadow: 0 4px 16px rgba(184, 150, 12, .12);
    transform: translateY(-2px)
}

.dash-cat__icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0
}

.dash-cat__info {
    flex: 1
}

.dash-cat__info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111
}

.dash-cat__info span {
    font-size: 12px;
    color: #888
}

.dash-cat__arrow {
    color: #ccc;
    font-size: 12px
}

.dash-section-title {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.dash-section-title i {
    color: #B8960C
}

.dash-order-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1.5px solid #ece8e0;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 8px
}

.dash-order-no {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #111
}

.dash-order-product {
    font-size: 12px;
    color: #888
}

.dash-order-status {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, .05)
}

.dash-order-date {
    font-size: 11px;
    color: #aaa;
    display: block;
    margin-top: 3px;
    text-align: right
}

.dash-all-orders {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #B8960C;
    text-decoration: none;
    margin-top: 8px
}

.dash-empty-orders {
    text-align: center;
    padding: 48px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1.5px dashed #e5e0d8
}

.dash-empty-orders i {
    font-size: 40px;
    color: #ddd;
    display: block;
    margin-bottom: 12px
}

.dash-empty-orders p {
    color: #888;
    margin: 0 0 16px
}

.dash-start-btn {
    display: inline-flex;
    padding: 10px 24px;
    background: #B8960C;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none
}

.st-page {
    min-height: 80vh;
    background: #f8f5f0
}

.st-header {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    padding: 40px 24px;
    text-align: center
}

.st-header__inner {
    max-width: 600px;
    margin: 0 auto
}

.st-header h1 {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.st-header h1 i {
    color: #B8960C
}

.st-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, .6);
    margin: 0
}

.st-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 32px 24px 80px
}

.st-search-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    margin-bottom: 20px
}

.st-form__row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: wrap
}

.st-form__field {
    flex: 1;
    min-width: 160px
}

.st-form__field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px
}

.st-form__field label i {
    color: #B8960C
}

.st-form__field input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e5e0d8;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s
}

.st-form__field input:focus {
    border-color: #B8960C
}

.st-search-btn {
    padding: 11px 22px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    transition: opacity .2s;
    height: 44px
}

.st-search-btn:hover {
    opacity: .9
}

.st-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px
}

.st-alert--error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca
}

.st-result {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    margin-bottom: 20px
}

.st-result__head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-left: 16px;
    margin-bottom: 24px
}

.st-result__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0
}

.st-result__no {
    display: block;
    font-size: 13px;
    color: #888
}

.st-result__status {
    display: block;
    font-size: 18px;
    font-weight: 800
}

.st-progress {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    overflow-x: auto;
    padding-bottom: 4px
}

.st-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0
}

.st-progress__dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e5e0d8;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    transition: all .3s
}

.st-progress__step.active .st-progress__dot {
    background: #B8960C;
    color: #fff;
    box-shadow: 0 0 0 4px rgba(184, 150, 12, .2)
}

.st-progress__step.done .st-progress__dot {
    background: #22c55e;
    color: #fff
}

.st-progress__step span {
    font-size: 10px;
    color: #aaa;
    white-space: nowrap
}

.st-progress__step.active span,
.st-progress__step.done span {
    color: #333;
    font-weight: 600
}

.st-progress__line {
    flex: 1;
    height: 2px;
    background: #e5e0d8;
    min-width: 24px;
    margin-bottom: 18px;
    transition: background .3s
}

.st-progress__line.done {
    background: #22c55e
}

.st-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px
}

.st-info-item {
    background: #f8f5f0;
    border-radius: 10px;
    padding: 12px 14px
}

.st-info-item--full {
    grid-column: 1 / -1
}

.st-info-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px
}

.st-info-label i {
    color: #B8960C
}

.st-info-value {
    font-size: 14px;
    font-weight: 600;
    color: #111
}

.st-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s
}

.st-wa-btn:hover {
    opacity: .9;
    color: #fff
}

.st-section-title {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px
}

.st-section-title i {
    color: #B8960C
}

.st-my-orders {
    margin-bottom: 20px
}

.st-order-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid #ece8e0;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 8px;
    text-decoration: none;
    color: inherit;
    transition: all .2s
}

.st-order-row:hover {
    border-color: #B8960C;
    transform: translateX(4px)
}

.st-order-row__icon {
    font-size: 20px;
    flex-shrink: 0
}

.st-order-row__info {
    flex: 1
}

.st-order-row__info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111
}

.st-order-row__info span {
    font-size: 12px;
    color: #888
}

.st-order-row__status {
    font-size: 12px;
    font-weight: 700
}

.st-order-row__arrow {
    color: #ccc;
    font-size: 12px
}

.st-login-hint {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1.5px solid #ece8e0;
    border-radius: 14px;
    padding: 20px;
    flex-wrap: wrap
}

.st-login-hint>i {
    font-size: 32px;
    color: #B8960C;
    flex-shrink: 0
}

.st-login-hint>div {
    flex: 1;
    min-width: 160px
}

.st-login-hint strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 3px
}

.st-login-hint span {
    font-size: 12px;
    color: #888
}

.st-login-btn {
    padding: 10px 20px;
    background: #B8960C;
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap
}

@media (max-width:600px) {
    .auth-card {
        padding: 28px 20px
    }

    .dash-cats {
        grid-template-columns: 1fr
    }

    .st-form__row {
        flex-direction: column
    }

    .st-search-btn {
        width: 100%;
        justify-content: center
    }

    .st-info-grid {
        grid-template-columns: 1fr
    }

    .st-progress {
        gap: 0
    }
}

.mym-page {
    min-height: 80vh;
    background: #f4f1eb
}

.mym-auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh
}

.mym-auth__left {
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px
}

.mym-auth__brand {
    margin-bottom: 8px
}

.mym-auth__left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.5px
}

.mym-auth__left p {
    font-size: 15px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.7
}

.mym-auth__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.mym-auth__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .7)
}

.mym-auth__features li i {
    color: #B8960C;
    width: 16px
}

.mym-auth__right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 32px;
    background: #f4f1eb
}

.mym-auth__card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .1);
    padding: 36px 32px;
    width: 100%;
    max-width: 460px
}

.mym-auth__tabs {
    display: flex;
    gap: 4px;
    background: #f4f1eb;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 28px
}

.mym-auth__tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 700;
    color: #888;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .2s
}

.mym-auth__tab.active {
    background: #fff;
    color: #B8960C;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

.mym-auth__sep {
    text-align: center;
    margin: 18px 0;
    color: #ccc;
    font-size: 12px;
    position: relative
}

.mym-auth__sep::before,
.mym-auth__sep::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 44%;
    height: 1px;
    background: #e5e0d8
}

.mym-auth__sep::before {
    left: 0
}

.mym-auth__sep::after {
    right: 0
}

.mym-dash {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 80vh
}

.mym-sidebar {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    padding: 0 0 32px;
    position: sticky;
    top: 108px;
    height: calc(100vh - 108px);
    overflow-y: auto
}

.mym-sidebar__profile {
    padding: 28px 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    gap: 12px
}

.mym-sidebar__avatar {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.mym-sidebar__info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.mym-sidebar__info span {
    font-size: 11px;
    color: rgba(255, 255, 255, .4)
}

.mym-sidebar__nav {
    padding: 12px 10px;
    flex: 1
}

.mym-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: all .2s;
    position: relative;
    margin-bottom: 2px
}

.mym-nav-item i {
    width: 18px;
    text-align: center;
    font-size: 14px
}

.mym-nav-item em {
    margin-left: auto;
    background: #B8960C;
    color: #fff;
    font-style: normal;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px
}

.mym-nav-item:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff
}

.mym-nav-item.active {
    background: rgba(184, 150, 12, .15);
    color: #B8960C
}

.mym-nav-item.active i {
    color: #B8960C
}

.mym-nav-item--logout {
    color: rgba(239, 68, 68, .7)
}

.mym-nav-item--logout:hover {
    background: rgba(239, 68, 68, .1);
    color: #ef4444
}

.mym-sidebar__sep {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 8px 14px
}

.mym-main {
    padding: 36px 40px 80px;
    min-width: 0
}

.mym-main__head {
    margin-bottom: 28px
}

.mym-main__head h1 {
    font-size: 26px;
    font-weight: 800;
    color: #111;
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 10px
}

.mym-main__head h1 i {
    color: #B8960C;
    font-size: 22px
}

.mym-main__head p {
    font-size: 14px;
    color: #888;
    margin: 0
}

.mym-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 32px
}

.mym-stat {
    background: #fff;
    border-radius: 14px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1.5px solid #ece8e0
}

.mym-stat__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.mym-stat strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #111;
    line-height: 1
}

.mym-stat span {
    font-size: 12px;
    color: #888
}

.mym-section-title {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0ebe0
}

.mym-quick {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 32px
}

.mym-quick-card {
    background: #fff;
    border: 1.5px solid #ece8e0;
    border-radius: 14px;
    padding: 20px 16px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all .2s
}

.mym-quick-card i {
    font-size: 24px
}

.mym-quick-card strong {
    font-size: 14px;
    font-weight: 700;
    color: #111
}

.mym-quick-card span {
    font-size: 12px;
    color: #888
}

.mym-quick-card:hover {
    border-color: #B8960C;
    box-shadow: 0 4px 16px rgba(184, 150, 12, .12);
    transform: translateY(-2px)
}

.mym-order-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.mym-order-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid #ece8e0;
    border-radius: 12px;
    padding: 14px 16px
}

.mym-order-row__icon {
    font-size: 20px;
    flex-shrink: 0
}

.mym-order-row__info {
    flex: 1
}

.mym-order-row__info strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #111
}

.mym-order-row__info span {
    font-size: 12px;
    color: #888
}

.mym-order-row__date {
    font-size: 12px;
    color: #aaa;
    white-space: nowrap
}

.mym-badge {
    font-size: 11.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.mym-order-list--full {
    gap: 14px
}

.mym-order-card {
    background: #fff;
    border: 1.5px solid #ece8e0;
    border-radius: 16px;
    overflow: hidden
}

.mym-order-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #f0ebe0;
    flex-wrap: wrap;
    gap: 8px
}

.mym-order-no {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin-right: 10px
}

.mym-order-date {
    font-size: 12px;
    color: #aaa
}

.mym-order-card__body {
    padding: 16px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
}

.mym-order-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #444
}

.mym-order-detail i {
    color: #B8960C;
    width: 14px
}

.mym-order-detail--note {
    grid-column: 1/-1
}

.mym-order-card__wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    border-top: 1px solid #dcfce7;
    transition: background .2s
}

.mym-order-card__wa:hover {
    background: #dcfce7;
    color: #15803d
}

.mym-profile-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 16px;
    padding: 28px 28px;
    margin-bottom: 28px
}

.mym-profile-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.mym-profile-info h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px
}

.mym-profile-info p {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    margin: 0 0 4px
}

.mym-profile-info span {
    font-size: 12px;
    color: rgba(255, 255, 255, .35)
}

.mym-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.mym-form--card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1.5px solid #ece8e0
}

.mym-form--narrow {
    max-width: 440px
}

.mym-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.mym-form__field label {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px
}

.mym-input {
    position: relative;
    display: flex;
    align-items: center
}

.mym-input i {
    position: absolute;
    left: 13px;
    color: #B8960C;
    font-size: 13px
}

.mym-input input {
    width: 100%;
    padding: 11px 13px 11px 38px;
    border: 1.5px solid #e5e0d8;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .2s;
    background: #fafaf8
}

.mym-input input:focus {
    border-color: #B8960C;
    background: #fff
}

.mym-input--disabled input {
    background: #f5f5f5;
    color: #aaa;
    cursor: not-allowed
}

.mym-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s
}

.mym-btn--gold {
    background: linear-gradient(135deg, #B8960C, #d4af37);
    color: #fff
}

.mym-btn--gold:hover {
    opacity: .9;
    transform: translateY(-1px);
    color: #fff
}

.mym-btn--wa {
    background: #25D366;
    color: #fff;
    width: 100%
}

.mym-btn--wa:hover {
    opacity: .9;
    color: #fff
}

.mym-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px
}

.mym-alert--err {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca
}

.mym-alert--ok {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0
}

.mym-empty {
    text-align: center;
    padding: 60px 24px
}

.mym-empty i {
    font-size: 48px;
    color: #ddd;
    display: block;
    margin-bottom: 16px
}

.mym-empty p {
    color: #888;
    margin: 0 0 20px
}

.mym-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #B8960C;
    text-decoration: none
}

@media (max-width:1024px) {
    .mym-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .mym-quick {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:768px) {
    .mym-auth {
        grid-template-columns: 1fr
    }

    .mym-auth__left {
        display: none
    }

    .mym-dash {
        grid-template-columns: 1fr
    }

    .mym-sidebar {
        position: static;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 12px
    }

    .mym-sidebar__profile {
        display: none
    }

    .mym-sidebar__nav {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding: 0
    }

    .mym-nav-item {
        padding: 8px 12px;
        font-size: 12px
    }

    .mym-main {
        padding: 24px 16px 60px
    }

    .mym-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .mym-quick {
        grid-template-columns: repeat(2, 1fr)
    }

    .mym-form__row {
        grid-template-columns: 1fr
    }

    .mym-order-card__body {
        grid-template-columns: 1fr
    }
}

@media (max-width:480px) {
    .mym-stats {
        grid-template-columns: 1fr 1fr
    }

    .mym-quick {
        grid-template-columns: 1fr 1fr
    }
}

.uy-auth {
    min-height: calc(100vh - 108px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f5f0;
    padding: 40px 16px
}

.uy-auth__box {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, .1);
    padding: 40px 36px;
    width: 100%;
    max-width: 560px
}

.uy-auth__head {
    text-align: center;
    margin-bottom: 28px
}

.uy-auth__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.uy-auth__logo-m {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff
}

.uy-auth__logo strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 2px
}

.uy-auth__logo small {
    font-size: 9px;
    font-weight: 700;
    color: #B8960C;
    letter-spacing: 4px
}

.uy-auth__head h1 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0 0 6px
}

.uy-auth__head p {
    font-size: 13.5px;
    color: #888;
    margin: 0
}

.uy-tabs {
    display: flex;
    background: #f4f1eb;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 24px;
    gap: 4px
}

.uy-tab {
    flex: 1;
    text-align: center;
    padding: 10px 8px;
    border-radius: 9px;
    font-size: 13.5px;
    font-weight: 700;
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .2s
}

.uy-tab--on {
    background: #fff;
    color: #B8960C;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08)
}

.uy-msg {
    padding: 11px 14px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px
}

.uy-msg--err {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca
}

.uy-msg--ok {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0
}

.uy-form {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.uy-form--card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1.5px solid #ece8e0
}

.uy-form--sm {
    max-width: 400px
}

.uy-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.uy-field label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 5px
}

.uy-field label em {
    color: #B8960C;
    font-style: normal
}

.uy-inp {
    position: relative;
    display: flex;
    align-items: center
}

.uy-inp i {
    position: absolute;
    left: 12px;
    color: #B8960C;
    font-size: 13px
}

.uy-inp input {
    width: 100%;
    padding: 10px 12px 10px 36px;
    border: 1.5px solid #e5e0d8;
    border-radius: 10px;
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    background: #fafaf8;
    transition: border-color .2s
}

.uy-inp input:focus {
    border-color: #B8960C;
    background: #fff
}

.uy-inp--off input {
    background: #f5f5f5;
    color: #aaa;
    cursor: not-allowed
}

.uy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s
}

.uy-btn:hover {
    opacity: .9;
    transform: translateY(-1px);
    color: #fff
}

.uy-or {
    text-align: center;
    margin: 16px 0;
    color: #ccc;
    font-size: 12px;
    position: relative
}

.uy-or::before,
.uy-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 44%;
    height: 1px;
    background: #e5e0d8
}

.uy-or::before {
    left: 0
}

.uy-or::after {
    right: 0
}

.uy-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s
}

.uy-wa-btn:hover {
    opacity: .9;
    color: #fff
}

.uy-panel {
    display: grid;
    grid-template-columns: 240px 1fr;
    min-height: calc(100vh - 108px)
}

.uy-side {
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 108px;
    height: calc(100vh - 108px);
    overflow-y: auto
}

.uy-side__user {
    padding: 24px 18px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    gap: 11px
}

.uy-side__av {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.uy-side__info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #fff
}

.uy-side__info span {
    font-size: 11px;
    color: rgba(255, 255, 255, .4)
}

.uy-nav {
    padding: 10px 10px;
    flex: 1
}

.uy-nav__item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: all .2s;
    margin-bottom: 2px;
    position: relative
}

.uy-nav__item i {
    width: 16px;
    text-align: center;
    font-size: 13px
}

.uy-nav__item:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff
}

.uy-nav__item.on {
    background: rgba(184, 150, 12, .15);
    color: #B8960C
}

.uy-nav__item.on i {
    color: #B8960C
}

.uy-nav__badge {
    margin-left: auto;
    background: #B8960C;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 10px
}

.uy-nav__item--out {
    color: rgba(239, 68, 68, .6)
}

.uy-nav__item--out:hover {
    background: rgba(239, 68, 68, .1);
    color: #ef4444
}

.uy-nav__sep {
    height: 1px;
    background: rgba(255, 255, 255, .07);
    margin: 6px 12px
}

.uy-content {
    padding: 32px 36px 80px;
    background: #f8f5f0;
    min-width: 0
}

.uy-page-head {
    margin-bottom: 24px
}

.uy-page-head h2 {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 10px
}

.uy-page-head h2 i {
    color: #B8960C;
    font-size: 18px
}

.uy-page-head p {
    font-size: 13.5px;
    color: #888;
    margin: 0
}

.uy-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 28px
}

.uy-stat {
    background: #fff;
    border-radius: 14px;
    padding: 18px 16px;
    border: 1.5px solid #ece8e0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.uy-stat i {
    font-size: 20px;
    color: var(--c)
}

.uy-stat strong {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    line-height: 1
}

.uy-stat span {
    font-size: 11.5px;
    color: #888
}

.uy-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 28px
}

.uy-sc {
    background: #fff;
    border: 1.5px solid #ece8e0;
    border-radius: 12px;
    padding: 16px 14px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: all .2s
}

.uy-sc i {
    font-size: 22px
}

.uy-sc strong {
    font-size: 13px;
    font-weight: 700;
    color: #111
}

.uy-sc:hover {
    border-color: #B8960C;
    box-shadow: 0 4px 16px rgba(184, 150, 12, .12);
    transform: translateY(-2px)
}

.uy-sub-title {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ece8e0
}

.uy-order-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid #ece8e0;
    border-radius: 12px;
    padding: 13px 16px;
    margin-bottom: 8px
}

.uy-order-row i {
    font-size: 18px;
    flex-shrink: 0
}

.uy-order-row__info {
    flex: 1
}

.uy-order-row__info strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #111
}

.uy-order-row__info span {
    font-size: 12px;
    color: #888
}

.uy-order-row__date {
    font-size: 11.5px;
    color: #aaa;
    white-space: nowrap
}

.uy-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    background: color-mix(in srgb, var(--bc) 15%, transparent);
    color: var(--bc);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px
}

.uy-more-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #B8960C;
    text-decoration: none;
    margin-top: 8px
}

.uy-order-card {
    background: #fff;
    border: 1.5px solid #ece8e0;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 14px
}

.uy-order-card__top {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 14px 18px;
    border-bottom: 1px solid #f0ebe0
}

.uy-order-no {
    font-size: 14px;
    font-weight: 800;
    color: #111
}

.uy-order-date {
    font-size: 12px;
    color: #aaa;
    margin-left: auto
}

.uy-order-card__body {
    padding: 14px 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px
}

.uy-order-card__body span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555
}

.uy-order-card__body i {
    color: #B8960C;
    font-size: 12px
}

.uy-order-card__note {
    padding: 0 18px 14px;
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px
}

.uy-order-card__note i {
    color: #B8960C
}

.uy-order-card__wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 16px;
    background: #f0fdf4;
    color: #16a34a;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: 1.5px solid #bbf7d0;
    transition: background .2s;
    flex: 1
}

.uy-order-card__wa:hover {
    background: #dcfce7;
    color: #15803d
}

.uy-order-card__track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 16px;
    background: #f8f5f0;
    color: #B8960C;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    border: 1.5px solid #e8d9a0;
    transition: background .2s;
    flex: 1
}

.uy-order-card__track:hover {
    background: #fef9e7;
    color: #9a7d0a
}

.uy-profile-hero {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px
}

.uy-profile-av {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.uy-profile-hero h3 {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 3px
}

.uy-profile-hero p {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
    margin: 0 0 3px
}

.uy-profile-hero small {
    font-size: 11px;
    color: rgba(255, 255, 255, .3)
}

.uy-empty {
    text-align: center;
    padding: 60px 24px
}

.uy-empty i {
    font-size: 44px;
    color: #ddd;
    display: block;
    margin-bottom: 14px
}

.uy-empty p {
    color: #888;
    margin: 0 0 18px
}

@media (max-width:900px) {
    .uy-panel {
        grid-template-columns: 1fr
    }

    .uy-side {
        position: static;
        height: auto;
        flex-direction: column;
        padding: 0
    }

    .uy-side__user {
        display: none
    }

    .uy-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 2px;
        padding: 8px
    }

    .uy-nav__item {
        padding: 7px 10px;
        font-size: 12px;
        margin-bottom: 0
    }

    .uy-nav__sep {
        display: none
    }

    .uy-content {
        padding: 20px 16px 60px
    }

    .uy-stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .uy-shortcuts {
        grid-template-columns: repeat(2, 1fr)
    }

    .uy-row {
        grid-template-columns: 1fr
    }
}

@media (max-width:480px) {
    .uy-auth__box {
        padding: 28px 18px
    }

    .uy-stats {
        grid-template-columns: 1fr 1fr
    }

    .uy-shortcuts {
        grid-template-columns: 1fr 1fr
    }
}

html {
    margin: 0;
    background: #f8f5f0;
    font-size: 16px
}

body {
    font-family: var(--font);
    color: var(--text);
    padding-top: 108px;
    background: #f8f5f0;
    margin: 0;
}

.faq-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.reviews-section {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.faq-inner {
    padding-bottom: 40px !important;
}

.site-footer {
    margin-top: -20px !important;
}

.hero {
    background-color: #f8f5f0 !important;
}

.features-bar,
.categories-section,
.products-section,
.products-section--alt,
.map-section,
.steps-section,
.reviews-section,
.faq-section,
.pg-layout,
.pg-parent,
.bl-wrap,
.mi-wrap,
.pg-cta {
    background-color: #fff;
}

.faq-section {
    background: #fff !important;
}

.faq-item {
    background: #fff !important;
    border: 1px solid #f0ebe0 !important;
}

.faq-q {
    background: transparent !important;
    color: #1a1a1a !important;
}

.faq-q-text {
    color: #1a1a1a !important;
}

.faq-a p {
    color: #555 !important;
}

.faq-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr !important;
    }
}

.ps-card__img {
    overflow: hidden;
    position: relative;
}

.ps-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
}

.ps-slider {
    overflow: hidden !important;
}

.hero-img-logo {
    display: none;
}

.hero-right {
    justify-content: flex-start;
}

.hero-img-wrap {
    margin-left: 0;
}

.features-bar {
    max-width: 1650px !important;
    width: calc(100% - 40px) !important;
}

/* ═══════════════════════════════════════════════
   GLOBAL FIX v8.0 — TEMİZ, ÇAKIŞMASIZ
   ═══════════════════════════════════════════════ */

/* Font */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: block
}

/* HTML/Body temel */
html {
    margin: 0;
    padding: 0;
    background: #f8f5f0;
    overflow-x: hidden
}

body {
    background: #f8f5f0;
    margin: 0;
    padding: 0;
    overflow-x: hidden
}

/* Body padding-top — header yüksekliğine göre (topbar 38 + header 70) */
body {
    padding-top: 108px
}

@media (max-width: 768px) {
    body {
        padding-top: 96px
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px
    }
}

/* Topbar & header sabit yükseklik */
.topbar {
    height: 38px;
    min-height: 38px
}

.site-header {
    height: 70px;
    min-height: 70px
}

@media (max-width: 768px) {
    .topbar {
        height: 36px;
        min-height: 36px
    }

    .site-header {
        height: 60px;
        min-height: 60px
    }
}

@media (max-width: 480px) {
    .topbar {
        display: none
    }

    .site-header {
        top: 0;
        height: 60px
    }
}

/* Overflow — sadece html/body, * değil */
html,
body {
    overflow-x: hidden;
    max-width: 100%
}

/* Section'lar taşmasın — * kullanmıyoruz, spesifik seçiciler */
.hero,
.features-bar,
.categories-section,
.products-section,
.map-section,
.steps-section,
.reviews-section,
.faq-section,
.pg-layout,
.pg-parent,
.bl-wrap,
.mi-wrap,
.pg-cta,
.bl-iller-section {
    max-width: 100%;
    box-sizing: border-box
}

/* Mobil padding fix */
@media (max-width: 768px) {
    .topbar__inner {
        padding: 0 16px
    }

    .site-header__inner {
        padding: 0 16px
    }

    .hero {
        overflow: hidden
    }

    .hero-container {
        padding: 40px 16px 20px
    }

    .features-bar {
        width: calc(100% - 20px);
        margin: -20px auto 0
    }

    .ps-slider,
    .ps-track,
    .ps-right {
        overflow: hidden;
        max-width: 100%
    }

    img {
        max-width: 100%;
        height: auto
    }

    .bl-body {
        grid-template-columns: 1fr
    }

    .bl-grid {
        grid-template-columns: 1fr
    }

    .map-inner {
        overflow: hidden
    }

    /* 81 il — 3 sütun */
    .iller-grid {
        grid-template-columns: repeat(3, 1fr);
        overflow: hidden
    }

    /* Footer — 1 büyük üstte, altında 2x2 */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .footer-brand {
        grid-column: 1 / -1
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    /* 4 adım — 2x2 */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px !important
    }

    .steps-grid::before {
        display: none !important
    }
}

@media (max-width: 480px) {

    /* 81 il — 3 sütun (480'de de koru) */
    .iller-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .category-icons {
        grid-template-columns: repeat(2, 1fr)
    }
}

/* Ürün grid */
.pg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    width: 100%;
    overflow: hidden
}

.pg-card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden
}

.pg-card__img {
    width: 100%;
    overflow: hidden
}

.pg-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.pg-card__foot {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden
}

@media (max-width: 768px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px
    }

    .pg-card__foot {
        flex-direction: column;
        gap: 5px;
        padding: 7px 8px
    }

    .pg-card__siparis {
        width: 100%;
        text-align: center;
        justify-content: center;
        white-space: normal;
        font-size: 11px
    }
}

@media (max-width: 480px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px
    }
}

/* Sidebar layout */
.pg-layout {
    display: flex;
    width: 100%;
    overflow: hidden
}

.pg-main {
    flex: 1;
    min-width: 0;
    overflow: hidden
}

/* Footer boşluk sıfır */
.faq-section {
    padding-bottom: 0;
    margin-bottom: 0
}

.faq-inner {
    padding-bottom: 0;
    margin-bottom: 0
}

.faq-bottom {
    margin-bottom: 0;
    padding-bottom: 0
}

.faq-help {
    margin-bottom: 0
}

.site-footer {
    margin-top: 0;
    padding-top: 0
}

/* Gizle */
.bl-mobile-cats {
    display: none !important
}

.wm-logo-badge {
    display: none !important
}


/* ═══════════════════════════════════════════════
   MOBİL BOŞLUK SIKIŞTIRILMASI + HERO RESİM — v8.3
   ═══════════════════════════════════════════════ */

/* Hero orta resim küçült */
@media (max-width: 900px) {
    .hero-right img {
        width: 100%;
        max-width: 320px
    }
}

@media (max-width: 768px) {
    .hero-right img {
        width: 100%;
        max-width: 260px
    }

    /* Section padding'leri sıkıştır */
    .categories-section {
        padding: 28px 0 20px
    }

    .products-section {
        padding: 24px 0 16px
    }

    .map-section {
        padding: 28px 0 20px
    }

    .steps-section {
        padding: 28px 0 20px
    }

    .reviews-section {
        padding: 28px 16px 0
    }

    .faq-section {
        padding: 24px 16px 0
    }

    .cta-banner {
        padding: 28px 16px
    }

    /* Section başlık boşlukları */
    .section-title {
        font-size: 22px;
        margin-bottom: 8px
    }

    .section-title::before {
        margin-bottom: 4px
    }

    /* Kategori ikonları */
    .category-icons {
        gap: 10px;
        margin-top: 20px
    }

    /* PS container */
    .ps-container {
        gap: 16px
    }

    .ps-left {
        padding: 0 16px
    }

    .ps-title {
        font-size: 22px;
        margin-bottom: 8px
    }

    .ps-desc {
        margin-bottom: 16px
    }

    /* Map section */
    .map-title {
        font-size: 22px
    }

    /* Steps */
    .steps-title {
        font-size: 22px
    }

    /* Reviews */
    .reviews-title {
        font-size: 22px
    }

    /* CTA */
    .cta-banner-title {
        font-size: 18px
    }
}

@media (max-width: 480px) {
    .hero-right img {
        max-width: 220px
    }

    .categories-section {
        padding: 20px 0 14px
    }

    .products-section {
        padding: 18px 0 12px
    }

    .map-section {
        padding: 20px 0 14px
    }

    .steps-section {
        padding: 20px 0 14px
    }

    .reviews-section {
        padding: 20px 12px 0
    }

    .faq-section {
        padding: 18px 12px 0
    }
}


/* Hero görsel — mobil ortala + büyüt */
@media (max-width: 900px) {
    .hero-right {
        justify-content: center
    }

    .hero-right img {
        width: 100%;
        max-width: 420px;
        margin: 0 auto
    }
}

@media (max-width: 768px) {
    .hero-right {
        justify-content: center
    }

    .hero-right img {
        max-width: 360px;
        margin: 0 auto
    }
}

@media (max-width: 480px) {
    .hero-right img {
        max-width: 300px;
        margin: 0 auto
    }
}


/* Slider mobil fix — ps-right tam genişlik, overflow hidden */
@media (max-width: 900px) {
    .ps-right {
        width: 100%;
        max-width: 100%;
        overflow: hidden
    }

    .ps-slider {
        width: 100%;
        overflow: hidden
    }

    .ps-track {
        will-change: transform
    }
}


/* Slider kart genişliği JS tarafından px olarak set ediliyor — % override'ları iptal */
.ps-card {
    min-width: 0;
    box-sizing: border-box
}

@media (max-width: 1200px) {
    .ps-card {
        flex: unset
    }
}

@media (max-width: 900px) {
    .ps-card {
        flex: unset
    }
}

@media (max-width: 480px) {
    .ps-card {
        flex: unset
    }
}


/* ── MOBİL SLIDER — native scroll-snap v8.8 ── */
@media (max-width: 900px) {
    .ps-slider {
        overflow: visible
    }

    .ps-track {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        transform: none !important
    }

    .ps-track::-webkit-scrollbar {
        display: none
    }

    .ps-card {
        scroll-snap-align: start;
        flex: 0 0 calc(50% - 10px) !important;
        width: calc(50% - 10px) !important
    }
}

@media (max-width: 480px) {
    .ps-card {
        flex: 0 0 80vw !important;
        width: 80vw !important
    }
}


/* Slider kart görseli — tam sığdır */
.ps-card__img img {
    object-fit: contain;
    object-position: center center;
    background: #f8f5f0
}

.ps-card__img {
    background: #f8f5f0
}


/* Slider kart boyutu — mobil düzelt v9.0 */
@media (max-width: 900px) {
    .ps-card {
        flex: 0 0 calc(50% - 8px) !important;
        width: calc(50% - 8px) !important
    }

    .ps-card__img {
        height: 160px
    }
}

@media (max-width: 480px) {
    .ps-card {
        flex: 0 0 calc(70% - 8px) !important;
        width: calc(70% - 8px) !important
    }

    .ps-card__img {
        height: 140px
    }
}


/* Slider — mobil tekli, nefes alan v9.1 */
@media (max-width: 900px) {
    .ps-track {
        padding: 0 16px;
        gap: 12px
    }

    .ps-card {
        flex: 0 0 85% !important;
        width: 85% !important
    }

    .ps-card__img {
        height: 200px
    }
}

@media (max-width: 480px) {
    .ps-card {
        flex: 0 0 88% !important;
        width: 88% !important
    }

    .ps-card__img {
        height: 180px
    }
}


/* Footer — Kurumsal + İletişim yan yana v9.2 */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    /* Brand — tam genişlik üstte */
    .footer-brand {
        grid-column: 1 / -1
    }

    /* Mezar + Tezgah — yan yana */
    /* Kurumsal + İletişim — yan yana (otomatik) */

    /* İletişim listesi — tek sütun */
    .footer-contact ul {
        grid-template-columns: 1fr !important;
        display: flex;
        flex-direction: column;
        gap: 12px
    }
}


/* Footer mobil — kesin düzen v9.3 */
@media (max-width: 900px) {
    .footer-top {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important
    }

    .footer-brand {
        grid-column: 1 / -1 !important
    }

    .footer-contact {
        grid-column: auto !important
    }

    .footer-contact ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important
    }
}


/* ── HAKKIMIZDA MOBİL — boşluk sıkıştır v9.4 ── */
@media (max-width: 768px) {

    /* Story */
    .hk-story {
        padding: 28px 0
    }

    .hk-story__inner {
        padding: 0 16px;
        flex-direction: column;
        gap: 20px
    }

    .hk-story__title {
        font-size: 24px
    }

    .hk-story__text {
        font-size: 14px;
        margin-bottom: 10px
    }

    .hk-story__mosaic {
        gap: 8px
    }

    .hk-story__mosaic-img {
        height: 140px
    }

    .hk-story__mosaic-img--wide {
        height: 180px
    }

    /* Stats */
    .hk-stats {
        padding: 20px 16px
    }

    .hk-stats__inner {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center
    }

    .hk-stat {
        min-width: 120px;
        padding: 14px 12px
    }

    .hk-stat__num {
        font-size: 22px
    }

    /* Vizyon */
    .hk-vizyon {
        padding: 24px 0
    }

    .hk-vizyon__inner {
        padding: 0 16px
    }

    .hk-vizyon__head {
        margin-bottom: 16px
    }

    .hk-vizyon__head h2 {
        font-size: 20px
    }

    .hk-vizyon__grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .hk-vizyon-card__img {
        height: 160px
    }

    .hk-vizyon-card__body {
        padding: 14px
    }

    /* Teslimat */
    .hk-teslimat {
        padding: 24px 0
    }

    .hk-teslimat__inner {
        padding: 0 16px
    }

    .hk-teslimat__head {
        margin-bottom: 20px
    }

    .hk-teslimat__head h2 {
        font-size: 20px
    }

    .hk-teslimat__head p {
        font-size: 13px
    }

    .hk-teslimat__grid {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .hk-teslimat__grid::before {
        display: none
    }

    .hk-teslimat-card {
        padding: 16px 14px
    }

    .hk-teslimat-card__icon {
        width: 48px;
        height: 48px
    }

    .hk-teslimat__note {
        flex-direction: column;
        gap: 10px;
        padding: 16px
    }

    /* Neden biz */
    .hk-neden {
        padding: 24px 0
    }

    .hk-neden__inner {
        padding: 0 16px
    }

    .hk-neden__head {
        margin-bottom: 16px
    }

    .hk-neden__head h2 {
        font-size: 20px
    }

    .hk-neden__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .hk-neden-card {
        padding: 14px 12px
    }

    .hk-neden-card__icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 8px
    }

    .hk-neden-card h4 {
        font-size: 13px;
        margin-bottom: 4px
    }

    .hk-neden-card p {
        font-size: 12px
    }

    /* Atölye */
    .hk-atolye {
        padding: 24px 0
    }

    .hk-atolye__inner {
        padding: 0 16px
    }

    .hk-atolye__head {
        margin-bottom: 14px
    }

    .hk-atolye__head h2 {
        font-size: 20px
    }

    .hk-atolye__grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }

    .hk-atolye-item--lg {
        grid-column: 1 / -1;
        height: 180px
    }

    .hk-atolye-item {
        height: 120px
    }

    /* Sertifika */
    .hk-sertifika {
        padding: 24px 0
    }

    .hk-sertifika__inner {
        padding: 0 16px
    }

    .hk-sertifika__head {
        margin-bottom: 14px
    }

    .hk-sertifika__head h2 {
        font-size: 20px
    }

    .hk-sertifika__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px
    }

    .hk-sertifika-card {
        padding: 14px 12px
    }

    .hk-sertifika-card__icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
        margin-bottom: 8px
    }

    .hk-sertifika-card h4 {
        font-size: 13px
    }

    .hk-sertifika-card p {
        font-size: 12px
    }

    /* Eyebrow */
    .hk-eyebrow {
        font-size: 10px;
        margin-bottom: 6px
    }
}


/* ── HAKKIMIZDA MOBİL DETAY FIX v9.5 ── */
@media (max-width: 768px) {

    /* Vizyon & Misyon — görsel + yazı alt alta, 1 sütun */
    .hk-vizyon__grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important
    }

    .hk-vizyon-card {
        display: flex !important;
        flex-direction: column !important
    }

    .hk-vizyon-card__img {
        height: 200px !important;
        width: 100% !important
    }

    .hk-vizyon-card__body {
        padding: 16px !important
    }

    /* Montaj kartları — 2li */
    .hk-teslimat__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important
    }

    .hk-teslimat__grid::before {
        display: none !important
    }

    .hk-teslimat-card {
        padding: 14px 12px !important
    }

    .hk-teslimat-card__icon {
        width: 44px !important;
        height: 44px !important
    }

    .hk-teslimat-card__icon>i {
        font-size: 18px !important
    }

    .hk-teslimat-card__title {
        font-size: 13px !important
    }

    .hk-teslimat-card__desc {
        font-size: 11.5px !important
    }

    /* Anlık görüntüler — 1 büyük üstte, 2x2 altta */
    .hk-atolye__grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto !important;
        gap: 8px !important
    }

    .hk-atolye-item--lg {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
        height: 200px !important
    }

    .hk-atolye-item:not(.hk-atolye-item--lg) {
        height: 130px !important
    }

    /* Story görselleri yakınlaştır */
    .hk-story__inner {
        gap: 16px !important
    }

    .hk-story__mosaic {
        gap: 6px !important
    }

    .hk-story__mosaic-img {
        height: 120px !important
    }

    .hk-story__mosaic-img--wide {
        height: 160px !important
    }
}


/* ── HAKKIMIZDA GÖRSEL FIX v9.6 ── */
@media (max-width: 768px) {

    /* Story mozaik — boşlukları kapat */
    .hk-story__mosaic {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important;
        margin-top: 0 !important
    }

    .hk-story__mosaic-img--wide {
        grid-column: 1 / -1 !important;
        height: 180px !important;
        margin-bottom: 0 !important
    }

    .hk-story__mosaic-img:not(.hk-story__mosaic-img--wide) {
        height: 120px !important
    }

    .hk-story__mosaic-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important
    }

    /* Anlık görüntüler — 1 büyük + 2x2 */
    .hk-atolye__grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 6px !important
    }

    .hk-atolye-item--lg {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
        height: 190px !important
    }

    .hk-atolye-item:not(.hk-atolye-item--lg) {
        height: 120px !important;
        grid-column: auto !important;
        grid-row: auto !important
    }

    .hk-atolye-item img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important
    }
}


/* Blog — mobilde kategoriler üste, içerik alta v9.7 */
@media (max-width: 860px) {
    .bl-body {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important
    }

    .bl-sidebar {
        order: -1 !important;
        position: static !important
    }

    .bl-body__inner {
        order: 1 !important
    }

    /* Sidebar kutuları yatay scroll ile */
    .bl-sidebar__box {
        margin-bottom: 12px
    }

    /* Kategori listesi yatay pill */
    .bl-sidebar__cats {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important
    }

    .bl-sidebar__cats li {
        margin: 0 !important
    }

    .bl-sidebar__cats a {
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        padding: 6px 12px !important;
        background: #f5f0e8 !important;
        border-radius: 20px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #333 !important;
        text-decoration: none !important;
        border: 1px solid #e5dec8 !important;
        white-space: nowrap !important
    }

    .bl-sidebar__cats a.is-active {
        background: #B8960C !important;
        color: #fff !important;
        border-color: #B8960C !important
    }

    .bl-sidebar__cats em {
        background: rgba(0, 0, 0, .1) !important;
        border-radius: 10px !important;
        padding: 1px 6px !important;
        font-style: normal !important;
        font-size: 10px !important
    }

    /* Son yazılar ve WA kutusu gizle — mobilde gereksiz */
    .bl-sidebar__box:not(:first-child),
    .bl-sidebar__wa {
        display: none !important
    }
}


/* ═══════════════════════════════════════════════
   BLOG MOBİL — TAM DÜZENLEME v9.8
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Featured (öne çıkan) kart — küçült */
    .bl-featured {
        grid-template-columns: 1fr !important;
        border-radius: 12px !important
    }

    .bl-featured__img {
        aspect-ratio: 16/9 !important;
        max-height: 200px !important
    }

    .bl-featured__body {
        padding: 14px !important;
        gap: 8px !important
    }

    .bl-featured__title {
        font-size: 16px !important;
        margin-bottom: 6px !important
    }

    .bl-featured__excerpt {
        font-size: 12px !important;
        -webkit-line-clamp: 2 !important;
        display: -webkit-box !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important
    }

    /* Blog grid — 2 sütun */
    .bl-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important
    }

    /* Blog kartları — küçült */
    .bl-card {
        border-radius: 10px !important
    }

    .bl-card__img {
        aspect-ratio: 4/3 !important
    }

    .bl-card__body {
        padding: 10px !important;
        gap: 5px !important
    }

    .bl-card__title {
        font-size: 12px !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important
    }

    .bl-card__excerpt {
        display: none !important
    }

    .bl-card__meta {
        font-size: 10px !important;
        gap: 6px !important
    }

    .bl-card__cta {
        font-size: 11px !important
    }

    /* Sayfalama — modern */
    .bl-pagination {
        gap: 4px !important;
        flex-wrap: wrap !important
    }

    .bl-pagination a,
    .bl-pagination .page-numbers {
        width: 32px !important;
        height: 32px !important;
        border-radius: 8px !important;
        font-size: 12px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1px solid #e5dec8 !important;
        color: #555 !important;
        text-decoration: none !important;
        background: #fff !important;
        font-weight: 600 !important
    }

    .bl-pagination a.is-active,
    .bl-pagination .page-numbers.current {
        background: #B8960C !important;
        border-color: #B8960C !important;
        color: #fff !important
    }

    .bl-pagination a:hover {
        border-color: #B8960C !important;
        color: #B8960C !important
    }

    /* Prev/Next butonları */
    .bl-page-btn--prev,
    .bl-page-btn--next {
        background: #1a1a1a !important;
        border-color: #1a1a1a !important;
        color: #fff !important
    }

    /* İller — 3 sütun */
    .bl-iller-grid--double {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important
    }

    .bl-il-pair {
        flex-direction: column !important;
        gap: 4px !important
    }

    .bl-il-card {
        padding: 6px 4px !important;
        font-size: 10px !important;
        border-radius: 6px !important
    }

    .bl-il-pair .bl-il-card span {
        font-size: 10px !important
    }

    .bl-il-pair .bl-il-card em {
        font-size: 9px !important
    }

    .bl-il-pair .bl-il-card i {
        font-size: 11px !important
    }
}


/* ═══════════════════════════════════════════════
   SİPARİŞ TAKİP — MOBİL TASARIM v9.9
   ═══════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* Sayfa arka plan */
    .st-page {
        background: #f8f5f0;
        min-height: 100vh
    }

    /* Header — kompakt */
    .st-header {
        padding: 20px 16px;
        text-align: center
    }

    .st-header h1 {
        font-size: 20px;
        margin-bottom: 4px
    }

    .st-header p {
        font-size: 12px
    }

    /* Body */
    .st-body {
        padding: 16px;
        max-width: 100%
    }

    /* Arama kartı */
    .st-search-card {
        padding: 16px;
        border-radius: 14px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .08)
    }

    .st-form__row {
        flex-direction: column;
        gap: 10px
    }

    .st-form__field label {
        font-size: 11px;
        margin-bottom: 4px
    }

    .st-form__field input {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 10px
    }

    .st-search-btn {
        width: 100%;
        justify-content: center;
        padding: 13px;
        border-radius: 10px;
        font-size: 14px;
        margin-top: 2px
    }

    /* Hata mesajı */
    .st-alert {
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 13px;
        margin-top: 12px
    }

    /* Sonuç kartı */
    .st-result {
        padding: 16px;
        border-radius: 14px;
        margin-top: 14px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, .08)
    }

    .st-result__head {
        gap: 12px;
        padding-bottom: 12px;
        margin-bottom: 12px
    }

    .st-result__icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        font-size: 18px
    }

    .st-result__no {
        font-size: 11px
    }

    .st-result__status {
        font-size: 16px
    }

    /* Progress bar — yatay, kompakt */
    .st-progress {
        gap: 0;
        padding: 12px 0;
        overflow-x: auto;
        scrollbar-width: none
    }

    .st-progress::-webkit-scrollbar {
        display: none
    }

    .st-progress__step {
        min-width: 52px;
        align-items: center
    }

    .st-progress__dot {
        width: 28px;
        height: 28px;
        font-size: 11px;
        border-radius: 50%
    }

    .st-progress__step span {
        font-size: 9px;
        text-align: center;
        margin-top: 4px
    }

    .st-progress__line {
        height: 2px;
        min-width: 16px
    }

    /* Bilgi grid */
    .st-info-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 12px
    }

    .st-info-item {
        padding: 10px 12px;
        border-radius: 10px;
        background: #f8f5f0
    }

    .st-info-label {
        font-size: 10px;
        margin-bottom: 3px
    }

    .st-info-value {
        font-size: 13px;
        font-weight: 600
    }

    .st-info-item--full {
        grid-column: 1 / -1
    }

    /* WA butonu */
    .st-wa-btn {
        width: 100%;
        justify-content: center;
        padding: 13px;
        border-radius: 10px;
        font-size: 14px;
        margin-top: 14px
    }

    /* Siparişlerim listesi */
    .st-my-orders {
        margin-top: 16px
    }

    .st-section-title {
        font-size: 15px;
        margin-bottom: 10px
    }

    .st-order-row {
        padding: 12px 14px;
        border-radius: 12px;
        margin-bottom: 8px;
        gap: 10px
    }

    .st-order-row__icon {
        font-size: 18px;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f5f0
    }

    .st-order-row__info strong {
        font-size: 13px
    }

    .st-order-row__info span {
        font-size: 11px
    }

    .st-order-row__status {
        font-size: 11px;
        font-weight: 700
    }

    /* Giriş yap hint */
    .st-login-hint {
        padding: 16px;
        border-radius: 14px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
        margin-top: 14px
    }

    .st-login-hint>i {
        font-size: 36px
    }

    .st-login-btn {
        width: 100%;
        text-align: center;
        padding: 12px;
        border-radius: 10px;
        font-size: 14px
    }
}


/* ═══════════════════════════════════════════════
   ÜYELİK PANELİ — MOBİL PROFESYONEL TASARIM v10.0
   ═══════════════════════════════════════════════ */
@media (max-width: 900px) {

    /* Panel — tek sütun */
    .uy-panel {
        grid-template-columns: 1fr !important;
        min-height: unset !important
    }

    /* Sidebar — siyah değil, açık bej/beyaz */
    .uy-side {
        background: #fff !important;
        border-bottom: 1px solid #ece8e0 !important;
        position: static !important;
        height: auto !important;
        flex-direction: column !important;
        padding: 0 !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .06) !important
    }

    /* Kullanıcı bilgisi — göster, kompakt */
    .uy-side__user {
        display: flex !important;
        padding: 14px 16px !important;
        border-bottom: 1px solid #f0ebe0 !important;
        gap: 10px !important;
        align-items: center !important
    }

    .uy-side__av {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important
    }

    .uy-side__info strong {
        color: #1a1a1a !important;
        font-size: 13px !important
    }

    .uy-side__info span {
        color: #888 !important;
        font-size: 11px !important
    }

    /* Nav — yatay pill butonlar */
    .uy-nav {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        padding: 10px 12px !important;
        flex: unset !important
    }

    .uy-nav__sep {
        display: none !important
    }

    /* Nav item — pill stil */
    .uy-nav__item {
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 7px 12px !important;
        border-radius: 20px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        color: #555 !important;
        background: #f5f0e8 !important;
        border: 1px solid #e5dec8 !important;
        text-decoration: none !important;
        transition: all .2s !important;
        margin-bottom: 0 !important
    }

    .uy-nav__item i {
        font-size: 12px !important;
        color: #B8960C !important;
        width: auto !important
    }

    .uy-nav__item:hover {
        background: #B8960C !important;
        color: #fff !important;
        border-color: #B8960C !important
    }

    .uy-nav__item:hover i {
        color: #fff !important
    }

    .uy-nav__item.on {
        background: #B8960C !important;
        color: #fff !important;
        border-color: #B8960C !important
    }

    .uy-nav__item.on i {
        color: #fff !important
    }

    .uy-nav__item--out {
        color: #ef4444 !important;
        background: #fef2f2 !important;
        border-color: #fecaca !important
    }

    .uy-nav__item--out i {
        color: #ef4444 !important
    }

    .uy-nav__item--out:hover {
        background: #ef4444 !important;
        color: #fff !important;
        border-color: #ef4444 !important
    }

    .uy-nav__badge {
        background: #B8960C !important;
        color: #fff !important;
        font-size: 9px !important;
        padding: 1px 5px !important
    }

    /* İçerik alanı */
    .uy-content {
        padding: 16px !important;
        background: #f8f5f0 !important
    }

    /* Sayfa başlığı */
    .uy-page-head h2 {
        font-size: 18px !important
    }

    /* Stats kartları */
    .uy-stats {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important
    }

    .uy-stat-card {
        padding: 14px !important;
        border-radius: 12px !important
    }

    /* Kısayollar */
    .uy-shortcuts {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important
    }

    .uy-sc {
        padding: 14px 12px !important;
        border-radius: 12px !important
    }

    .uy-sc i {
        font-size: 18px !important
    }

    .uy-sc strong {
        font-size: 12px !important
    }
}


/* ═══════════════════════════════════════════════
   SİPARİŞ TAKİP — YENİ TASARIM v10.1
   ═══════════════════════════════════════════════ */

/* Sayfa */
.st-page {
    background: #f8f5f0 !important;
    min-height: 100vh
}

/* Header — açık, altın vurgulu */
.st-header {
    background: #fff !important;
    border-bottom: 2px solid #f0ebe0 !important;
    padding: 24px 20px !important
}

.st-header__inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px
}

.st-header__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0
}

.st-header h1 {
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin: 0 0 2px !important
}

.st-header p {
    font-size: 13px !important;
    color: #888 !important;
    margin: 0 !important
}

/* Body */
.st-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 20px 16px 40px
}

/* Arama kartı */
.st-search-card {
    background: #fff !important;
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06) !important;
    border: 1px solid #f0ebe0 !important;
    margin-bottom: 16px
}

.st-search-card__head {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #B8960C;
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0ebe0
}

.st-search-card__head i {
    font-size: 14px
}

.st-form__row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.st-form__field {
    flex: 1;
    min-width: 200px
}

.st-form__field label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px
}

.st-form__field label i {
    color: #B8960C;
    font-size: 11px
}

.st-form__field input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e5dec8;
    border-radius: 10px;
    font-size: 14px;
    background: #faf8f4;
    color: #1a1a1a;
    outline: none;
    transition: border-color .2s
}

.st-form__field input:focus {
    border-color: #B8960C;
    background: #fff
}

.st-search-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
    align-self: flex-end;
    white-space: nowrap
}

.st-search-btn:hover {
    opacity: .9
}

/* Hata */
.st-alert {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px
}

.st-alert--error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca
}

/* Sonuç kartı */
.st-result {
    background: #fff !important;
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06) !important;
    border: 1px solid #f0ebe0 !important;
    margin-bottom: 16px
}

.st-result__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid #f0ebe0
}

.st-result__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.st-result__info {
    flex: 1
}

.st-result__no {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 2px
}

.st-result__status {
    display: block;
    font-size: 17px;
    font-weight: 800
}

.st-result__badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap
}

/* Progress */
.st-progress {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px
}

.st-progress::-webkit-scrollbar {
    display: none
}

.st-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 56px
}

.st-progress__dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f0ebe0;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid #e5dec8;
    transition: all .3s
}

.st-progress__step.active .st-progress__dot {
    background: #B8960C;
    color: #fff;
    border-color: #B8960C;
    box-shadow: 0 4px 12px rgba(184, 150, 12, .3)
}

.st-progress__step.done .st-progress__dot {
    background: #22c55e;
    color: #fff;
    border-color: #22c55e
}

.st-progress__step span {
    font-size: 9px;
    color: #aaa;
    text-align: center;
    line-height: 1.2
}

.st-progress__step.active span,
.st-progress__step.done span {
    color: #333;
    font-weight: 600
}

.st-progress__line {
    flex: 1;
    height: 2px;
    background: #e5dec8;
    min-width: 12px;
    margin-bottom: 18px
}

.st-progress__line.done {
    background: #22c55e
}

/* Bilgi grid */
.st-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px
}

.st-info-item {
    background: #faf8f4;
    border: 1px solid #f0ebe0;
    border-radius: 10px;
    padding: 10px 12px
}

.st-info-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px
}

.st-info-label i {
    color: #B8960C
}

.st-info-value {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a
}

.st-info-item--full {
    grid-column: 1 / -1
}

/* WA butonu */
.st-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px;
    background: #25D366;
    color: #fff;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s
}

.st-wa-btn:hover {
    opacity: .9;
    color: #fff
}

/* Siparişlerim */
.st-my-orders {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    border: 1px solid #f0ebe0;
    margin-bottom: 16px
}

.st-section-title {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 7px
}

.st-section-title i {
    color: #B8960C
}

.st-order-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #f0ebe0;
    background: #faf8f4;
    text-decoration: none;
    color: #1a1a1a;
    margin-bottom: 8px;
    transition: all .2s
}

.st-order-row:hover {
    border-color: #B8960C;
    transform: translateX(3px)
}

.st-order-row__icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0
}

.st-order-row__info {
    flex: 1;
    min-width: 0
}

.st-order-row__info strong {
    display: block;
    font-size: 13px;
    font-weight: 700
}

.st-order-row__info span {
    font-size: 11px;
    color: #888
}

.st-order-row__status {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 12px;
    white-space: nowrap
}

.st-order-row__arrow {
    color: #ccc;
    font-size: 11px
}

/* Giriş hint */
.st-login-hint {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
    border: 1px solid #f0ebe0;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap
}

.st-login-hint__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0
}

.st-login-hint__text {
    flex: 1;
    min-width: 160px
}

.st-login-hint__text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 3px
}

.st-login-hint__text span {
    font-size: 12px;
    color: #888
}

.st-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #B8960C, #d4af37);
    color: #fff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s
}

.st-login-btn:hover {
    opacity: .9;
    color: #fff
}

/* Mobil */
@media (max-width: 600px) {
    .st-form__row {
        flex-direction: column
    }

    .st-form__field {
        min-width: unset
    }

    .st-search-btn {
        width: 100%;
        justify-content: center
    }

    .st-info-grid {
        grid-template-columns: 1fr 1fr
    }

    .st-login-hint {
        flex-direction: column;
        text-align: center
    }

    .st-login-hint__text {
        min-width: unset
    }

    .st-login-btn {
        width: 100%;
        justify-content: center
    }
}


/* ═══════════════════════════════════════════════
   KATEGORİ SAYFASI — TAM YENİ TASARIM v10.2
   ═══════════════════════════════════════════════ */

/* ── ANA KATEGORİ (mezar-modelleri / tezgah-modelleri) ── */

.pg-parent {
    background: #f8f5f0 !important;
    min-height: 80vh
}

/* Tab bar — header'a yapışık */
.pg-tabs {
    background: #fff !important;
    border-bottom: 2px solid #f0ebe0 !important;
    position: sticky !important;
    top: 108px !important;
    z-index: 100 !important;
    padding: 0 !important
}

.pg-tabs__inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    gap: 0
}

.pg-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 700;
    color: #888;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all .2s
}

.pg-tab i {
    font-size: 15px
}

.pg-tab:hover {
    color: #B8960C
}

.pg-tab.is-active {
    color: #B8960C;
    border-bottom-color: #B8960C
}

/* Ana kategori body */
.pg-parent__body {
    padding: 28px 24px 60px !important
}

.pg-parent__inner {
    max-width: 1320px;
    margin: 0 auto
}

/* Kategori kartları grid */
.pg-parent__grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important
}

/* Kategori kartı */
.pg-cat-card {
    background: #fff !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    border: 1px solid #ece8e0 !important;
    text-decoration: none !important;
    transition: all .3s !important;
    display: flex !important;
    flex-direction: column !important
}

.pg-cat-card:hover {
    border-color: rgba(184, 150, 12, .4) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .1) !important
}

.pg-cat-card__img {
    position: relative !important;
    aspect-ratio: 4/3 !important;
    overflow: hidden !important;
    background: #f0ebe0 !important
}

.pg-cat-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform .4s !important
}

.pg-cat-card:hover .pg-cat-card__img img {
    transform: scale(1.06) !important
}

.pg-cat-card__badge {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    background: rgba(0, 0, 0, .55) !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    backdrop-filter: blur(4px) !important
}

.pg-cat-card__body {
    padding: 16px 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex: 1 !important
}

.pg-cat-card__body h3 {
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important
}

.pg-cat-card__cta {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #B8960C !important;
    white-space: nowrap !important
}

/* ── ALT KATEGORİ LAYOUT ── */

.pg-layout {
    display: flex !important;
    align-items: flex-start !important;
    background: #f8f5f0 !important;
    min-height: 80vh !important
}

/* Sidebar */
.pg-sidebar {
    position: sticky !important;
    top: 108px !important;
    width: 220px !important;
    max-height: calc(100vh - 108px) !important;
    overflow-y: auto !important;
    flex-shrink: 0 !important;
    background: #fff !important;
    border-right: 1px solid #ece8e0 !important
}

.pg-sidebar__head {
    padding: 16px 16px 12px !important;
    border-bottom: 1px solid #f0ebe0 !important
}

.pg-sidebar__label {
    font-size: 10px !important;
    font-weight: 700 !important;
    color: #B8960C !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important
}

.pg-sidebar__nav {
    padding: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important
}

.pg-sidebar__item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 9px 12px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #555 !important;
    text-decoration: none !important;
    transition: all .15s !important;
    border: 1px solid transparent !important
}

.pg-sidebar__item:hover {
    background: #faf7f0 !important;
    color: #1a1a1a !important
}

.pg-sidebar__item.is-active {
    background: rgba(184, 150, 12, .08) !important;
    color: #B8960C !important;
    border-color: rgba(184, 150, 12, .2) !important;
    font-weight: 700 !important
}

.pg-sidebar__item-count {
    font-size: 10px !important;
    font-weight: 700 !important;
    background: #f0ebe0 !important;
    color: #888 !important;
    padding: 2px 6px !important;
    border-radius: 10px !important
}

.pg-sidebar__item.is-active .pg-sidebar__item-count {
    background: rgba(184, 150, 12, .15) !important;
    color: #B8960C !important
}

/* Ana içerik */
.pg-main {
    flex: 1 !important;
    min-width: 0 !important;
    padding: 20px 20px 60px !important
}

.pg-main__header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 16px !important;
    padding-bottom: 14px !important;
    border-bottom: 1px solid #ece8e0 !important
}

.pg-main__title {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    margin: 0 !important
}

.pg-main__count {
    font-size: 12px !important;
    color: #888 !important;
    margin-left: 8px !important
}

/* Ürün grid */
.pg-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 12px !important
}

.pg-card {
    background: #fff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid #ece8e0 !important;
    cursor: pointer !important;
    transition: all .25s !important
}

.pg-card:hover {
    border-color: rgba(184, 150, 12, .35) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08) !important;
    transform: translateY(-2px) !important
}

.pg-card__img {
    position: relative !important;
    aspect-ratio: 1/1 !important;
    overflow: hidden !important;
    background: #f8f5f0 !important
}

.pg-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    transition: transform .3s !important
}

.pg-card:hover .pg-card__img img {
    transform: scale(1.04) !important
}

.pg-card__urun-no {
    position: absolute !important;
    top: 6px !important;
    left: 6px !important;
    background: rgba(0, 0, 0, .5) !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 2px 7px !important;
    border-radius: 10px !important
}

.pg-card__hover {
    position: absolute !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, .35) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity .25s !important
}

.pg-card:hover .pg-card__hover {
    opacity: 1 !important
}

.pg-card__zoom {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 14px !important;
    background: #fff !important;
    border: none !important;
    border-radius: 20px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    cursor: pointer !important
}

.pg-card__foot {
    padding: 8px 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-top: 1px solid #f0ebe0 !important
}

.pg-card__stok {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-size: 11px !important;
    color: #22c55e !important;
    font-weight: 600 !important
}

.pg-card__stok-dot {
    width: 6px !important;
    height: 6px !important;
    background: #22c55e !important;
    border-radius: 50% !important
}

.pg-card__siparis {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 5px 10px !important;
    background: linear-gradient(135deg, #B8960C, #d4af37) !important;
    color: #fff !important;
    border-radius: 6px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: opacity .2s !important
}

.pg-card__siparis:hover {
    opacity: .9 !important;
    color: #fff !important
}

/* Masaüstü responsive */
@media (max-width: 1400px) {
    .pg-grid {
        grid-template-columns: repeat(4, 1fr) !important
    }
}

@media (max-width: 1200px) {
    .pg-grid {
        grid-template-columns: repeat(3, 1fr) !important
    }

    .pg-parent__grid {
        grid-template-columns: repeat(3, 1fr) !important
    }
}

@media (max-width: 1024px) {
    .pg-sidebar {
        width: 200px !important
    }

    .pg-grid {
        grid-template-columns: repeat(3, 1fr) !important
    }

    .pg-parent__grid {
        grid-template-columns: repeat(2, 1fr) !important
    }
}

/* Mobil */
@media (max-width: 768px) {
    .pg-tabs {
        top: 96px !important
    }

    .pg-tabs__inner {
        padding: 0 12px
    }

    .pg-tab {
        padding: 10px 14px;
        font-size: 13px
    }

    .pg-parent__body {
        padding: 16px 12px 40px !important
    }

    .pg-parent__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important
    }

    .pg-cat-card__body {
        padding: 12px !important
    }

    .pg-cat-card__body h3 {
        font-size: 13px !important
    }

    /* Alt kategori — sidebar üste */
    .pg-layout {
        flex-direction: column !important
    }

    .pg-sidebar {
        position: static !important;
        width: 100% !important;
        max-height: none !important;
        overflow-y: visible !important;
        border-right: none !important;
        border-bottom: 1px solid #ece8e0 !important;
        top: auto !important
    }

    .pg-sidebar__nav {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 5px !important;
        padding: 8px 10px !important
    }

    .pg-sidebar__item {
        padding: 5px 10px !important;
        border-radius: 20px !important;
        font-size: 11px !important;
        border: 1.5px solid #e0dbd0 !important;
        background: #faf8f4 !important;
        white-space: nowrap !important;
        justify-content: center !important
    }

    .pg-sidebar__item-count {
        font-size: 9px !important
    }

    .pg-main {
        padding: 12px 10px 40px !important
    }

    .pg-main__header {
        margin-bottom: 10px !important;
        padding-bottom: 10px !important
    }

    .pg-main__title {
        font-size: 15px !important
    }

    .pg-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important
    }

    .pg-card__foot {
        flex-direction: column !important;
        gap: 5px !important;
        padding: 7px 8px !important
    }

    .pg-card__siparis {
        width: 100% !important;
        justify-content: center !important
    }
}

@media (max-width: 480px) {
    .pg-parent__grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 8px !important
    }

    .pg-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important
    }
}


/* Sipariş takip — ortalama fix v10.3 */
.st-page {
    display: flex;
    flex-direction: column;
    align-items: stretch
}

.st-body {
    width: 100% !important;
    max-width: 680px !important;
    margin: 0 auto !important;
    padding: 24px 20px 60px !important;
    box-sizing: border-box !important
}

.st-header {
    width: 100% !important
}

.st-header__inner {
    max-width: 680px !important;
    margin: 0 auto !important;
    padding: 0 20px !important
}

@media (max-width: 768px) {
    .st-body {
        padding: 16px 14px 40px !important
    }

    .st-header__inner {
        padding: 0 14px !important
    }
}


/* Kategori sayfası — tab + body fix v10.4 */
.pg-tabs {
    top: 108px !important;
    z-index: 99 !important
}

.pg-parent__body {
    padding-top: 24px !important
}

/* Masaüstü — 3 sütun */
.pg-parent__grid {
    grid-template-columns: repeat(3, 1fr) !important
}

/* Kart görsel yüksekliği sabit */
.pg-cat-card__img {
    height: 220px !important;
    aspect-ratio: unset !important
}

/* Mobil */
@media (max-width: 768px) {
    .pg-tabs {
        top: 96px !important
    }

    .pg-parent__body {
        padding-top: 16px !important
    }

    .pg-parent__grid {
        grid-template-columns: 1fr 1fr !important
    }

    .pg-cat-card__img {
        height: 150px !important
    }
}


/* Sipariş takip form fix v10.5 */
.st-form__row {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important
}

.st-form__field {
    width: 100% !important;
    min-width: unset !important
}

.st-form__field input {
    width: 100% !important;
    box-sizing: border-box !important
}

.st-search-btn {
    width: 100% !important;
    justify-content: center !important
}

/* Header ortalama */
.st-header {
    padding: 20px 16px !important
}

.st-header__inner {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    max-width: 680px !important;
    margin: 0 auto !important
}

/* Giriş hint — yatay */
.st-login-hint {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    text-align: left !important
}

@media (max-width: 480px) {
    .st-login-hint {
        flex-direction: column !important;
        text-align: center !important
    }

    .st-login-btn {
        width: 100% !important;
        justify-content: center !important
    }
}


/* site-nav mobilde hiç açılmasın — mobile-menu kullanılıyor */
@media (max-width: 768px) {

    .site-nav,
    .site-nav.open {
        display: none !important
    }
}


/* pg-tabs kesin fix v10.7 */
.pg-tabs,
#pgTabsBar {
    position: sticky !important;
    top: 108px !important;
    z-index: 200 !important;
    background: #fff !important;
    border-bottom: 2px solid #f0ebe0 !important
}

@media (max-width: 768px) {

    .pg-tabs,
    #pgTabsBar {
        top: 96px !important
    }
}

@media (max-width: 480px) {

    .pg-tabs,
    #pgTabsBar {
        top: 60px !important
    }
}


/* pg-parent body — boşluk sıfırla v10.8 */
.pg-parent__body {
    padding-top: 12px !important
}


/* pg-parent — tüm boşlukları sıfırla v10.9 */
.pg-parent {
    margin: 0 !important;
    padding: 0 !important
}

.pg-parent__body {
    padding: 8px 12px 40px !important
}

#pgTabsBar,
.pg-tabs {
    margin: 0 !important
}

@media (max-width: 768px) {
    .pg-parent__body {
        padding: 8px 10px 40px !important
    }
}


/* pg-tabs yükseklik azalt v11.0 */
@media (max-width: 768px) {

    #pgTabsBar a,
    .pg-tabs a,
    .pg-tab {
        padding: 10px 14px !important;
        font-size: 13px !important
    }
}


/* pg-tabs sticky tamamen kaldır v11.1 */
.pg-tabs,
#pgTabsBar {
    position: static !important;
    top: auto !important
}


/* pg-card görsel — yarım kırpma fix v11.2 */
.pg-card__img {
    width: 100% !important;
    aspect-ratio: 4/3 !important;
    height: auto !important;
    overflow: hidden !important;
    position: relative !important
}

.pg-card__img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important
}

@media (max-width: 768px) {
    .pg-card__img {
        aspect-ratio: 4/3 !important;
        height: auto !important
    }
}


/* pg-layout sidebar fix — tüm override'ları geç v11.4 */
.pg-layout {
    display: flex !important;
    padding: 0 !important;
    margin: 0 !important
}

.pg-sidebar {
    flex-shrink: 0 !important;
    width: 200px !important;
    min-width: 200px !important;
    max-width: 200px !important;
    padding: 0 !important;
    margin: 0 !important
}

.pg-main {
    flex: 1 !important;
    min-width: 0 !important;
    padding: 16px !important
}

@media (max-width: 768px) {
    .pg-layout {
        flex-direction: column !important
    }

    .pg-sidebar {
        width: 100% !important;
        min-width: unset !important;
        max-width: unset !important;
        position: static !important
    }
}


/* ═══════════════════════════════════════════════
   MOBİL SIDEBAR + BLOG SAYFALAMA v11.5
   ═══════════════════════════════════════════════ */

/* Mobil sidebar — yatay scroll pill */
@media (max-width: 768px) {
    .pg-sidebar {
        width: 100% !important;
        min-width: unset !important;
        max-width: unset !important;
        position: static !important;
        top: auto !important;
        max-height: none !important;
        overflow-y: visible !important;
        border-right: none !important;
        border-bottom: 2px solid #f0ebe0 !important;
        background: #fff !important
    }

    .pg-sidebar__head {
        padding: 10px 12px 6px !important
    }

    .pg-sidebar__nav {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        gap: 6px !important;
        padding: 6px 10px 10px !important;
        scrollbar-width: none !important
    }

    .pg-sidebar__nav::-webkit-scrollbar {
        display: none
    }

    .pg-sidebar__item {
        display: inline-flex !important;
        align-items: center !important;
        gap: 4px !important;
        padding: 6px 12px !important;
        border-radius: 20px !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        border: 1.5px solid #e0dbd0 !important;
        background: #faf8f4 !important;
        color: #555 !important;
        text-decoration: none !important;
        justify-content: center !important
    }

    .pg-sidebar__item.is-active {
        background: #B8960C !important;
        border-color: #B8960C !important;
        color: #fff !important
    }

    .pg-sidebar__item.is-active .pg-sidebar__item-count {
        background: rgba(255, 255, 255, .25) !important;
        color: #fff !important
    }

    .pg-sidebar__item-count {
        font-size: 10px !important;
        background: rgba(0, 0, 0, .08) !important;
        padding: 1px 5px !important;
        border-radius: 8px !important
    }

    .pg-layout {
        flex-direction: column !important
    }

    .pg-main {
        width: 100% !important;
        padding: 10px 8px 40px !important
    }
}

/* Blog sayfalama — modern v11.5 */
.bl-pagination {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    flex-wrap: wrap !important;
    margin-top: 24px !important;
    padding: 0 !important
}

.bl-page-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #555 !important;
    background: #fff !important;
    border: 1.5px solid #e5dec8 !important;
    text-decoration: none !important;
    transition: all .2s !important
}

.bl-page-btn:hover {
    border-color: #B8960C !important;
    color: #B8960C !important
}

.bl-page-btn.is-active {
    background: #B8960C !important;
    border-color: #B8960C !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(184, 150, 12, .3) !important
}

.bl-page-btn--prev,
.bl-page-btn--next {
    background: #1a1a1a !important;
    border-color: #1a1a1a !important;
    color: #fff !important
}

.bl-page-btn--prev:hover,
.bl-page-btn--next:hover {
    background: #333 !important;
    border-color: #333 !important;
    color: #fff !important
}

/* Çok sayfa varsa — ... göster */
@media (max-width: 480px) {
    .bl-page-btn {
        width: 32px !important;
        height: 32px !important;
        font-size: 12px !important
    }
}


/* pg-grid tam sayfa — sidebar yok v11.8 */
.pg-grid {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 10px !important
}

@media (max-width: 1400px) {
    .pg-grid {
        grid-template-columns: repeat(5, 1fr) !important
    }
}

@media (max-width: 1100px) {
    .pg-grid {
        grid-template-columns: repeat(4, 1fr) !important
    }
}

@media (max-width: 768px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important
    }
}

@media (max-width: 480px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important
    }
}


/* ── KATEGORİ SAYFASI MOBİL v11.9 ── */
@media (max-width: 768px) {

    /* Kategori pill bar — yatay scroll */
    .pg-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important
    }

    /* Kart */
    .pg-card {
        border-radius: 10px !important
    }

    .pg-card__img {
        aspect-ratio: 4/3 !important
    }

    .pg-card__foot {
        flex-direction: column !important;
        gap: 5px !important;
        padding: 7px 8px !important;
        align-items: stretch !important
    }

    .pg-card__siparis {
        width: 100% !important;
        justify-content: center !important;
        font-size: 11px !important;
        padding: 7px 8px !important
    }

    .pg-card__stok {
        font-size: 11px !important
    }

    .pg-card__urun-no {
        font-size: 9px !important;
        padding: 2px 5px !important
    }

    /* Başlık + sıralama */
    .pg-main__header {
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        margin-bottom: 10px !important
    }

    .pg-main__title {
        font-size: 15px !important
    }

    /* Kategori pill bar mobil */
    .pg-cat-pills {
        overflow-x: auto !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important
    }

    .pg-cat-pills::-webkit-scrollbar {
        display: none
    }

    .pg-cat-pills-inner {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        padding: 8px 12px !important;
        width: max-content !important
    }
}

@media (max-width: 480px) {
    .pg-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important
    }
}


/* Kategori pill bar — wrap v12.0 */
@media (max-width: 768px) {

    .pg-cat-pills,
    .pg-cat-pills-inner {
        overflow-x: visible !important;
        white-space: normal !important;
        width: auto !important;
        flex-wrap: wrap !important
    }
}


/* Footer alt boşluk — v12.1 iptal */
html,
body {
    background: #f8f5f0
}


/* AI chat butonu — masaüstünde büyüt */
@media (min-width: 769px) {
    .aic-btn {
        width: 80px !important;
        height: 80px !important
    }

    .aic-btn-icon {
        width: 40px !important;
        height: 40px !important
    }

    .aic-btn-lbl {
        font-size: 9px !important
    }
}


/* AI butonu mobil büyüt + logo genişlet v12.4 */
@media (max-width: 768px) {
    .aic-btn {
        width: 68px !important;
        height: 68px !important
    }

    .aic-btn-icon {
        width: 36px !important;
        height: 36px !important
    }

    .aic-btn-lbl {
        font-size: 8px !important
    }

    /* Logo genişlet */
    .site-logo-svg,
    .site-logo-img {
        height: 52px !important;
        width: auto !important
    }
}


/* ── SAYFA GEÇİŞİ CLS FIX v12.5 ── */

/* Font yüklenene kadar fallback boyutu sabit tut */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: block;
    size-adjust: 100%
}

/* Tüm elementler — boyut değişmesin */
*,
*::before,
*::after {
    box-sizing: border-box
}

/* Body — font yüklenince layout kaymasın */
body {
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased
}

/* Görseller — aspect-ratio ile yer rezerve et */
img:not([width]):not([height]) {
    aspect-ratio: auto
}

/* Section'lar — görünmeden önce yer kaplasın */
.hero,
.features-bar,
.categories-section,
.products-section,
.map-section,
.steps-section,
.reviews-section,
.faq-section {
    contain: layout style
}


/* ═══════════════════════════════════════════════
   MOBİL KAPSAMLI FIX — FINAL v12.6
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {

    /* 1. Hero kategoriler — mobilde gizle */
    .hero-categories {
        display: none !important
    }

    /* 2. Hero container — daha kompakt */
    .hero-container {
        padding: 30px 16px 20px !important;
        gap: 20px !important
    }

    /* 3. 81 il grid — ortala, sağa kaymasın */
    .iller-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
        margin: 0 auto !important;
        overflow: hidden !important
    }

    .il-item {
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center !important;
        justify-content: center !important
    }

    .map-right {
        width: 100% !important;
        overflow: hidden !important;
        padding: 0 !important
    }

    .map-inner {
        overflow: hidden !important;
        padding: 0 16px !important
    }

    /* 4. Footer — eşit hizalı */
    .footer-top {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        padding: 32px 16px 24px !important
    }

    .footer-brand {
        grid-column: 1 / -1 !important
    }

    .footer-links,
    .footer-contact {
        width: 100% !important
    }

    .footer-contact ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important
    }

    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
        padding: 20px 16px !important
    }

    .footer-bottom>p:first-child,
    .footer-designer {
        text-align: center !important
    }

    .footer-legal {
        justify-content: center !important;
        flex-wrap: wrap !important
    }
}

/* ═══════════════════════════════════════════════
   SERİ F5 CLS — KÖK ÇÖZÜM v12.6
   ═══════════════════════════════════════════════ */

/* Font — block ile layout kayması yok */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: block;
    size-adjust: 100%
}

/* Body — font yüklenince boyut değişmesin */
html {
    font-size: 16px;
    background: #f8f5f0
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    background: #f8f5f0;
    padding-top: 108px;
    margin: 0
}

@media (max-width: 768px) {
    body {
        padding-top: 96px
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px
    }
}

/* Topbar + header — sabit yükseklik, kayma yok */
.topbar {
    position: fixed !important;
    top: 0 !important;
    height: 38px !important;
    min-height: 38px !important
}

.site-header {
    position: fixed !important;
    top: 38px !important;
    height: 70px !important;
    min-height: 70px !important
}

@media (max-width: 768px) {
    .topbar {
        height: 36px !important;
        min-height: 36px !important
    }

    .site-header {
        height: 60px !important;
        min-height: 60px !important;
        top: 36px !important
    }
}

@media (max-width: 480px) {
    .topbar {
        display: none !important
    }

    .site-header {
        top: 0 !important
    }
}


/* ── SAYFA GEÇİŞİ BEYAZ FLASH ÖNLE v12.7 ── */
html {
    background: #f8f5f0 !important
}

body {
    background: #f8f5f0 !important;
    opacity: 1 !important;
    visibility: visible !important
}

/* Sayfa yüklenirken içerik görünsün — flash yok */
body * {
    animation-play-state: running
}


/* ── HEADER ALTI BOŞLUK + F5 FIX v12.8 ── */

/* Body inline style ile aynı — CSS yüklenmeden önce de doğru */
body {
    background: #f8f5f0 !important;
    padding-top: 108px !important;
    margin: 0 !important
}

@media (max-width: 768px) {
    body {
        padding-top: 96px !important
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px !important
    }
}

/* Topbar + header — kesin sabit */
.topbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 38px !important;
    z-index: 1001 !important
}

.site-header {
    position: fixed !important;
    top: 38px !important;
    left: 0 !important;
    right: 0 !important;
    height: 70px !important;
    z-index: 1000 !important
}

@media (max-width: 768px) {
    .topbar {
        height: 36px !important
    }

    .site-header {
        top: 36px !important;
        height: 60px !important
    }
}

@media (max-width: 480px) {
    .topbar {
        display: none !important
    }

    .site-header {
        top: 0 !important
    }

    body {
        padding-top: 60px !important
    }
}

/* Features bar — header altına yapışık */
.features-bar {
    margin-top: 0 !important;
    position: relative !important;
    z-index: 10 !important
}

/* Hero — features bar ile arasında boşluk yok */
.hero {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important
}


/* ── FOOTER MOBİL DÜZELT v12.9 ── */
@media (max-width: 768px) {

    .footer-top {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 24px 16px !important;
        padding: 32px 16px 24px !important
    }

    /* Brand — tam genişlik üstte */
    .footer-brand {
        grid-column: 1 / -1 !important;
        max-width: 100% !important
    }

    /* Mezar + Tezgah yan yana — eşit genişlik */
    .footer-links {
        width: 100% !important;
        min-width: 0 !important
    }

    /* Link metinleri kırılmasın */
    .footer-links a {
        white-space: normal !important;
        word-break: break-word !important;
        font-size: 13px !important
    }

    .footer-links h4 {
        font-size: 14px !important
    }

    /* İletişim — tam genişlik */
    .footer-contact {
        grid-column: 1 / -1 !important;
        width: 100% !important
    }

    .footer-contact ul {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important
    }

    /* Footer bottom */
    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
        padding: 20px 16px !important
    }

    .footer-bottom>p,
    .footer-designer {
        text-align: center !important;
        font-size: 12px !important
    }

    .footer-legal {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 8px !important
    }

    /* Sosyal medya ikonları ortala */
    .footer-social {
        justify-content: flex-start !important
    }
}

@media (max-width: 480px) {

    /* Çok küçük ekranda iletişim tek sütun */
    .footer-contact ul {
        grid-template-columns: 1fr !important
    }
}


/* ── FOOTER 1x2x2 DÜZEN v13.0 ── */
@media (max-width: 900px) {

    .footer-top {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto auto !important;
        gap: 20px 16px !important;
        padding: 28px 16px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important
    }

    /* Satır 1: Brand — tam genişlik */
    .footer-brand {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
        max-width: 100% !important
    }

    /* Satır 2: Mezar + Tezgah — eşit */
    .footer-links:nth-of-type(1) {
        grid-column: 1 !important;
        grid-row: 2 !important
    }

    .footer-links:nth-of-type(2) {
        grid-column: 2 !important;
        grid-row: 2 !important
    }

    /* Satır 3: Kurumsal + İletişim — eşit */
    .footer-links:nth-of-type(3) {
        grid-column: 1 !important;
        grid-row: 3 !important
    }

    .footer-contact {
        grid-column: 2 !important;
        grid-row: 3 !important;
        max-width: 100% !important
    }

    /* Tüm sütunlar eşit genişlik */
    .footer-links,
    .footer-contact {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important
    }

    /* Link yazıları sığsın */
    .footer-links a,
    .footer-links li {
        font-size: 12.5px !important;
        white-space: normal !important;
        word-break: break-word !important
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 13px !important;
        margin-bottom: 12px !important
    }

    /* İletişim listesi dikey */
    .footer-contact ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important
    }

    .footer-contact li {
        gap: 8px !important
    }

    .footer-contact i {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
        flex-shrink: 0 !important
    }

    .footer-contact strong {
        font-size: 9px !important
    }

    .footer-contact span,
    .footer-contact a {
        font-size: 12px !important
    }

    /* Footer bottom */
    .footer-bottom {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
        padding: 16px !important
    }

    .footer-bottom>p,
    .footer-designer {
        text-align: center !important;
        font-size: 11px !important
    }

    .footer-legal {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 6px !important
    }
}