:root {
    --gold: #ffb400;
    --gold-dark: #d99400;
    --ink: #070909;
    --panel: #101313;
    --line: #292c2c;
    --white: #fff;
    --muted: #aeb1b1;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: #f7f7f5; font-family: Inter, Arial, sans-serif; font-size: 15px; }
.shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
svg { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

/* top bar */
.service-strip { height: 44px; background: #fff; color: #111; }
.service-strip__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.service-strip__inner span { display: flex; align-items: center; gap: 8px; }
.service-strip__inner span:first-child { margin-right: auto; }
.service-strip__inner span:not(:first-child) { margin-left: 48px; }
.service-strip svg { width: 18px; height: 18px; }

/* header */
.site-header { position: relative; z-index: 10; background: rgba(6, 8, 8, .98); border-bottom: 1px solid #191b1b; }
.header-main { height: 112px; display: grid; grid-template-columns: 260px 1fr 320px; align-items: center; gap: 34px; }
.brand { display: block; }
.brand-logo-frame { position: relative; width: 230px; height: 58px; display: block; overflow: hidden; background: transparent; }
.brand-logo-frame img,
.brand-logo-frame::after { position: absolute; top: 50%; left: 53%; width: 100%; max-width: none; height: auto; display: block; transform: translate(-50%, -50%) scale(1.42); transform-origin: center; }
.brand-logo-frame img { filter: brightness(0) invert(1); }
.brand-logo-frame::after { content: ""; aspect-ratio: 2172 / 724; pointer-events: none; background: url('/images/brand-logo.png') center / 100% 100% no-repeat; clip-path: inset(0 36.8% 0 42.3%); }
.brand small { display: block; margin-top: 8px; color: #d2d3d3; font-size: 10.5px; letter-spacing: 2px; }
.search { height: 48px; display: flex; overflow: hidden; border: 1px solid #303333; border-radius: 8px; background: linear-gradient(110deg, #191b1b, #222); }
.search input { flex: 1; padding: 0 18px; border: 0; outline: 0; background: transparent; color: #fff; font-size: 14px; }
.search input::placeholder { color: #b6b7b7; font-size: 13.5px; }
.search button { width: 58px; border: 0; background: transparent; color: #fff; cursor: pointer; }
.search svg { width: 22px; height: 22px; }
.header-actions { display: flex; justify-content: flex-end; gap: 26px; }
.header-actions a { position: relative; display: flex; align-items: center; gap: 8px; white-space: nowrap; font-size: 14px; }
.header-actions svg { width: 23px; height: 23px; }
.cart-link b { position: absolute; top: -16px; right: -14px; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: #111; font-size: 12px; font-weight: 700; }
.menu-toggle { display: none; }
.main-nav { border-top: 1px solid #202222; }
.main-nav__inner { height: 58px; display: flex; align-items: stretch; justify-content: space-between; }
.main-nav a { position: relative; min-width: 145px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; }
.main-nav a.active { color: var(--gold); }
.main-nav a.active::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--gold); }
.main-nav a span { margin-left: 8px; }
.main-nav .nav-chevron { width: 10px; height: 10px; margin-left: 7px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.nav-dropdown { position: relative; min-width: 145px; }
.nav-dropdown summary { position: relative; height: 100%; display: flex; align-items: center; justify-content: center; cursor: pointer; list-style: none; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; }
.nav-dropdown summary::-webkit-details-marker { display: none; }
.nav-dropdown.active summary { color: var(--gold); }
.nav-dropdown.active summary::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 3px; background: var(--gold); }
.nav-dropdown[open] .nav-chevron { transform: rotate(180deg); }
.nav-dropdown__menu { position: absolute; z-index: 20; top: calc(100% - 1px); left: 0; min-width: 250px; padding: 8px; border: 1px solid #292c2c; border-radius: 0 0 8px 8px; background: #0b0d0d; box-shadow: 0 14px 30px rgba(0, 0, 0, .35); }
.main-nav .nav-dropdown__menu a { min-width: 0; height: 42px; padding: 0 14px; justify-content: flex-start; border-radius: 5px; font-size: 13px; font-weight: 600; white-space: nowrap; }
.main-nav .nav-dropdown__menu a:hover { background: #191c1c; color: var(--gold); }

@media (hover: hover) and (min-width: 701px) {
    .nav-dropdown:hover .nav-dropdown__menu { display: block; }
    .nav-dropdown:not([open]):not(:hover) .nav-dropdown__menu { display: none; }
}

/* hero */
.hero { overflow: hidden; border-bottom: 1px solid #252727; background: #090b0b; }
.hero picture, .hero img { display: block; width: 100%; }
.hero img { height: auto; }
.btn { height: 46px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; font-size: 13.5px; font-weight: 800; }
.btn--gold { background: linear-gradient(135deg, #ffc024, #f0a000); color: #171200; }
.btn--gold b { margin-left: 12px; font-size: 18px; }
.btn--outline { border: 1px solid #ad8324; background: rgba(18,20,20,.9); }
.btn--dark { height: 40px; background: #111414; color: var(--gold); font-size: 13px; }

/* white catalog surface */
.catalog-surface { background: #fff; color: #111; }
.catalog { padding: 32px 0 24px; }
.home-section { margin-bottom: 36px; }
.section-heading { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.section-heading h2 { position: relative; margin: 0; padding-bottom: 9px; font-size: 22px; font-weight: 800; }
.section-heading h2::after { content: ""; position: absolute; bottom: 0; left: 0; width: 46px; height: 2.5px; background: var(--gold); }
.section-heading a { color: #222; font-size: 13.5px; font-weight: 600; }
.section-heading a b { margin-left: 7px; color: var(--gold-dark); font-size: 18px; }

.category-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; }
.category-card { height: 245px; padding: 14px 14px 13px; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #202323; border-radius: 9px; background: linear-gradient(145deg, #121515, #080a0a); color: #fff; transition: transform .2s, box-shadow .2s; }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.category-cover { height: 90px; margin: -14px -14px 10px; border-bottom: 1px solid #282b2b; background-position: center; background-size: cover; }
.category-card h3 { min-height: 38px; margin: 0 0 7px; font-size: 13.5px; font-weight: 700; line-height: 1.35; text-transform: uppercase; }
.category-card p { flex: 1; margin: 0; color: #d0d2d2; font-size: 12px; line-height: 1.5; }
.category-card > b { color: var(--gold); font-size: 12.5px; margin-top: 4px; }

.product-grid { width: min(100%, 912px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: start; }
.product-card { width: 100%; max-width: 400px; min-height: 380px; container-type: inline-size; display: flex; flex-direction: column; overflow: hidden; border: 0; border-radius: 12px; background: linear-gradient(145deg, #171a1a, #090b0b); color: #fff; box-shadow: inset 0 0 0 1px #242828, 0 8px 22px rgba(0,0,0,.14); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px #242828, 0 13px 28px rgba(0,0,0,.2); }
.product-image { position: relative; flex: 0 0 auto; width: 100%; height: auto; aspect-ratio: 1 / 1; display: block; overflow: hidden; background-color: #eeeae2; background-position: center; background-repeat: no-repeat; background-size: cover; }
.product-card__body { min-height: 0; flex: 1; display: flex; flex-direction: column; padding: 5.5%; }
.product-card h3 { min-height: 0; margin: 0; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: #fff; font-size: clamp(17px, 6cqw, 24px); font-weight: 750; line-height: 1.22; }
.product-card small { margin-top: 4px; color: #aeb2b1; font-size: clamp(12px, 4cqw, 16px); line-height: 1.25; }
.product-bottom { margin-top: auto; padding-top: 4.5%; border-top: 1px solid #343838; display: flex; align-items: end; justify-content: space-between; gap: 12px; }
.product-bottom strong { color: #fff; font-size: clamp(23px, 8.5cqw, 36px); font-weight: 800; line-height: 1; white-space: nowrap; }
.product-favorite { position: absolute; z-index: 2; right: 10px; bottom: 10px; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid rgba(17,20,20,.12); border-radius: 50%; background: var(--gold); color: #171a00; box-shadow: 0 3px 8px rgba(0,0,0,.18); }
.product-favorite svg { width: 16px; height: 16px; stroke-width: 2; }
.add-cart { width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 6px; background: var(--gold); color: #111; cursor: pointer; transition: .2s; }
.add-cart svg { width: 20px; height: 20px; }
.add-cart.is-added { background: #58b851; transform: scale(1.1); }
.catalog-empty { grid-column: 1 / -1; min-height: 120px; display: grid; place-items: center; border: 1px dashed #bbb; border-radius: 6px; color: #777; font-size: 14px; }

/* wholesale */
.wholesale-banner { min-height: 210px; display: grid; grid-template-columns: 310px 335px 1fr; align-items: center; overflow: hidden; border: 1px solid #e0e0e0; border-radius: 12px; background: #fff; box-shadow: 0 5px 20px rgba(0,0,0,.05); }
.wholesale-copy { padding-left: 32px; }
.wholesale-copy h2 { margin: 0 0 9px; font-family: Oswald, sans-serif; font-size: 26px; line-height: 1.18; }
.wholesale-copy p { margin: 0 0 13px; font-size: 13.5px; line-height: 1.45; }
.wholesale-image { height: 100%; min-height: 210px; background: url('/images/wholesale-cleaning-cart.png') center / cover no-repeat; }
.wholesale-perks { display: grid; grid-template-columns: repeat(3, 1fr); }
.wholesale-perks > div { text-align: center; }
.wholesale-perks span { width: 46px; height: 46px; margin: 0 auto 8px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 8px; color: var(--gold-dark); font-size: 24px; }
.wholesale-perks p { margin: 0; font-size: 12.5px; font-weight: 600; line-height: 1.45; }

/* newsletter */
.newsletter-band { background: #0a0c0c; border-top: 1px solid #242626; border-bottom: 1px solid #272929; }
.newsletter { min-height: 98px; display: grid; grid-template-columns: 270px 320px 1fr; align-items: center; gap: 24px; }
.newsletter__title { display: flex; align-items: center; gap: 18px; }
.newsletter__title h3 { margin: 0; font-size: 14.5px; font-weight: 700; line-height: 1.5; }
.mail-icon { color: var(--gold); font-size: 38px; }
.newsletter form { height: 44px; display: flex; overflow: hidden; border-radius: 6px; background: #fff; }
.newsletter input { width: 100%; padding: 0 14px; border: 0; outline: 0; font-size: 13.5px; }
.newsletter button { min-width: 120px; border: 0; background: var(--gold); color: #15110a; font-size: 13px; font-weight: 800; cursor: pointer; }
.newsletter__perks { display: flex; justify-content: space-between; }
.newsletter__perks span { display: flex; align-items: center; gap: 8px; color: var(--gold); font-size: 24px; }
.newsletter__perks b { color: #fff; font-size: 12px; font-weight: 500; line-height: 1.45; }

/* footer */
.site-footer { padding: 36px 0 24px; border-top: 0; background: #080a0a; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .75fr 1fr .9fr 1.25fr; gap: 42px; }
.footer-grid h4 { margin: 0 0 17px; font-size: 14.5px; font-weight: 700; letter-spacing: 0.5px; color: #f2f3f3; }
.footer-grid > div > a, .footer-grid p { display: block; color: #b8baba; font-size: 13.5px; line-height: 2.1; transition: color 0.15s ease; }
.footer-grid > div > a:hover { color: var(--gold); }
.brand-logo-frame--footer { width: 190px; height: 46px; }
.socials { display: flex; gap: 9px; margin-top: 12px; }
.socials a { width: 28px; height: 28px; display: grid !important; place-items: center !important; border: 1px solid #727474; border-radius: 50%; color: #fff !important; font-size: 12px !important; line-height: 1 !important; }
.payments > div { height: 52px; padding: 0 12px; display: flex; align-items: center; justify-content: space-around; border: 1px solid #333636; border-radius: 6px; }
.payments b { font-size: 16px; }
.payments .master { color: #e9a200; letter-spacing: -5px; }
.copyright { margin-top: 20px; color: #888c8c; font-size: 13px; text-align: right; }

@media (max-width: 1000px) {
    .service-strip__inner span:first-child { display: none; }
    .service-strip__inner span:not(:first-child) { margin: 0; }
    .header-main { grid-template-columns: 210px 1fr 150px; }
    .header-actions { gap: 18px; }
    .header-actions a span { display: none; }
    .main-nav a { min-width: auto; }
    .category-grid { grid-template-columns: repeat(4, 1fr); }
    .category-card:last-child { display: none; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .wholesale-banner { grid-template-columns: 260px 300px 1fr; }
    .wholesale-perks > div:nth-child(3) { display: none; }
    .wholesale-perks { grid-template-columns: 1fr 1fr; }
    .newsletter { grid-template-columns: 1fr 1fr; padding: 18px 0; }
    .newsletter__perks { grid-column: 1 / -1; }
    .footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); }
    .payments { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    .shell { width: min(100% - 28px, 1180px); }
    .service-strip { height: 35px; }
    .service-strip__inner { justify-content: center; }
    .service-strip__inner span { display: none; }
    .service-strip__inner span:nth-child(2) { display: flex; }
    .header-main { height: 78px; display: flex; justify-content: space-between; gap: 12px; }
    .brand-logo-frame { width: 150px; height: 36px; }
    .brand small { font-size: 6px; letter-spacing: 1.6px; }
    .search { position: absolute; top: 86px; right: 14px; left: 14px; height: 42px; }
    .header-actions { margin-left: auto; }
    .header-actions a:not(.cart-link) { display: none; }
    .cart-link span { display: none; }
    .menu-toggle { width: 35px; height: 35px; padding: 6px; display: flex; flex-direction: column; justify-content: center; gap: 5px; border: 0; background: transparent; }
    .menu-toggle span { width: 100%; height: 2px; background: #fff; }
    .site-header { padding-bottom: 50px; }
    .main-nav { position: absolute; top: 128px; right: 0; left: 0; display: none; background: #0b0d0d; }
    .main-nav.is-open { display: block; }
    .main-nav__inner { height: auto; flex-direction: column; padding: 8px 14px; }
    .main-nav a { height: 43px; justify-content: flex-start; border-bottom: 1px solid #222; }
    .main-nav a.active::after { display: none; }
    .nav-dropdown { min-width: 0; }
    .nav-dropdown summary { height: 43px; justify-content: flex-start; border-bottom: 1px solid #222; }
    .nav-dropdown.active summary::after { display: none; }
    .nav-dropdown__menu { position: static; min-width: 0; padding: 4px 0 4px 14px; border: 0; border-radius: 0; box-shadow: none; }
    .main-nav .nav-dropdown__menu a { height: 39px; padding-left: 14px; color: #d3d5d5; }
    .category-grid { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
    .category-card { min-width: 155px; scroll-snap-align: start; }
    .product-grid { width: 100%; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
    .product-card { min-width: 0; min-height: 0; border-radius: 8px; }
    .product-card__body { padding: 10px; }
    .product-card h3 { font-size: 12px; line-height: 1.25; }
    .product-card small { margin-top: 3px; font-size: 10px; }
    .product-bottom { gap: 6px; padding-top: 8px; }
    .product-bottom strong { font-size: 15px; }
    .product-card .add-cart { width: 31px; border-radius: 6px; }
    .product-card .product-favorite { right: 7px; bottom: 7px; width: 24px; height: 24px; }
    .product-card .product-favorite svg { width: 13px; height: 13px; }
    .section-heading a { font-size: 0; }
    .section-heading a b { font-size: 18px; }
    .wholesale-banner { height: auto; grid-template-columns: 1fr; padding: 24px 18px; }
    .wholesale-copy { padding: 0; }
    .wholesale-image { height: 170px; min-height: 170px; background-size: contain; }
    .wholesale-perks { margin-top: 12px; }
    .newsletter { grid-template-columns: 1fr; padding: 20px 0; }
    .newsletter__title, .newsletter form { width: 100%; }
    .newsletter__perks { grid-column: auto; gap: 15px; overflow-x: auto; }
    .newsletter__perks span { min-width: 130px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-brand, .payments { grid-column: 1 / -1; }
    .footer-grid > div:nth-child(4) { display: none; }
    .copyright { text-align: left; }
}

/* Gallery admin */
.gallery-admin-layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: 22px; align-items: start; }
.gallery-admin-form, .gallery-admin-list { padding: 24px; border: 1px solid #deded8; border-radius: 12px; background: #fff; box-shadow: 0 8px 28px rgba(15,18,18,.06); }
.gallery-admin-form h2, .gallery-admin-list h2 { margin: 0 0 20px; font-family: Oswald, sans-serif; font-size: 23px; }
.gallery-admin-list h2 span { color: #ae7809; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.admin-form-grid label > span { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 800; }
.admin-form-grid input:not([type="checkbox"]), .admin-form-grid select, .admin-form-grid textarea { width: 100%; padding: 12px 13px; border: 1px solid #d8d8d2; border-radius: 5px; background: #fff; color: #181a19; font: inherit; font-size: 14px; }
.admin-form-grid input[type="file"] { background: #fffbf1; }
.admin-form-grid small { display: block; margin-top: 5px; color: #af1818; font-size: 12px; }
.admin-form-wide { grid-column: 1 / -1; }
.admin-check { display: flex; align-items: center; gap: 9px; }
.admin-check span { margin: 0 !important; }
.gallery-upload-note { margin-top: 18px; padding: 13px; display: grid; gap: 4px; border-left: 3px solid #d49a17; background: #fff8e8; font-size: 11px; }
.gallery-admin-cancel { margin-left: 14px; color: #595d5b; font-size: 12px; }
.gallery-admin-list > div { max-height: 720px; display: grid; gap: 9px; overflow-y: auto; }
.gallery-admin-list article { display: grid; grid-template-columns: 70px 1fr auto auto; gap: 10px; align-items: center; padding: 9px; border: 1px solid #e0e0da; border-radius: 7px; }
.gallery-admin-list img { width: 70px; height: 50px; object-fit: cover; border-radius: 4px; background: #111; }
.gallery-admin-list article div { min-width: 0; }
.gallery-admin-list article strong, .gallery-admin-list article span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.gallery-admin-list article strong { font-size: 12px; }
.gallery-admin-list article span { margin-top: 4px; color: #777; font-size: 9px; }
.gallery-admin-list article small { display: inline-block; margin-top: 5px; padding: 2px 5px; border-radius: 3px; background: #ddd; font-size: 8px; }
.gallery-admin-list article small.is-active { background: #dff3d8; color: #28621b; }
.gallery-admin-list article a, .gallery-admin-list article button { border: 0; background: none; color: #9b6b07; font-size: 10px; cursor: pointer; }
.gallery-admin-list article button { color: #ae2424; }

@media (max-width: 900px) {
    .gallery-admin-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .admin-form-grid { grid-template-columns: 1fr; }
    .admin-form-wide { grid-column: auto; }
    .gallery-admin-list article { grid-template-columns: 58px 1fr auto; }
    .gallery-admin-list img { width: 58px; }
    .gallery-admin-list article form { grid-column: 3; }
}

/* About admin */
.about-admin-form { display: grid; gap: 20px; }
.about-admin-card { padding: 24px; border: 1px solid #deded8; border-radius: 12px; background: #fff; box-shadow: 0 8px 28px rgba(15,18,18,.06); }
.about-admin-card h2 { margin: 0 0 20px; font-family: Oswald, sans-serif; font-size: 23px; }
.about-admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.about-admin-grid label span { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 800; }
.about-admin-card input, .about-admin-card textarea { width: 100%; padding: 10px 11px; border: 1px solid #d8d8d2; border-radius: 5px; background: #fff; color: #181a19; font: inherit; font-size: 12px; }
.about-admin-card textarea { min-height: 82px; resize: vertical; }
.about-admin-grid .wide { grid-column: 1 / -1; }
.about-admin-feature-grid, .about-admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; }
.about-admin-feature-grid fieldset { display: grid; gap: 9px; margin: 0; padding: 13px; border: 1px solid #dddcd6; border-radius: 7px; }
.about-admin-feature-grid legend { padding: 0 5px; color: #a36e00; font-size: 11px; font-weight: 800; }
.about-admin-stat-grid label { display: grid; gap: 8px; }
.about-admin-stat-grid input:first-child { color: #a66f00; font-family: Oswald, sans-serif; font-size: 22px; }
.about-admin-preview { min-height: 110px; overflow: hidden; border-radius: 7px; background: #111; }
.about-admin-preview img { width: 100%; height: 100%; max-height: 240px; display: block; object-fit: cover; }
.about-admin-actions { display: flex; align-items: center; justify-content: space-between; }
.about-admin-actions small { color: #666; }

@media (max-width: 850px) {
    .about-admin-feature-grid, .about-admin-stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .about-admin-grid, .about-admin-feature-grid, .about-admin-stat-grid { grid-template-columns: 1fr; }
    .about-admin-grid .wide { grid-column: auto; }
    .about-admin-actions { align-items: stretch; flex-direction: column; gap: 8px; }
}

/* Gallery */
.gallery-page { background: #090b0b; color: #f7f7f5; }
.gallery-shell { padding-top: 1px; padding-bottom: 28px; }
.gallery-hero { position: relative; min-height: 300px; padding: 34px 0; overflow: hidden; border-bottom: 1px solid #2b2e2d; background-image: linear-gradient(90deg, #090b0b 0%, rgba(9,11,11,.95) 32%, rgba(9,11,11,.23) 58%, rgba(9,11,11,.08)), url('/images/home-hero-products.png'); background-position: center 43%; background-size: cover; }
.gallery-breadcrumb { position: relative; z-index: 1; display: flex; gap: 10px; color: #a8acab; font-size: 13px; }
.gallery-breadcrumb a { color: var(--gold); }
.gallery-breadcrumb b { color: #6f7472; }
.gallery-hero__copy { position: relative; z-index: 1; margin-top: 27px; }
.gallery-hero h1 { margin: 0 0 13px; font-size: 38px; line-height: 1.15; }
.gallery-hero h1 strong { color: var(--gold); }
.gallery-hero p { margin: 0; color: #d2d5d3; font-size: 15px; line-height: 1.75; }
.gallery-toolbar { min-height: 69px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; }
.gallery-filters button, .gallery-toolbar select { height: 38px; padding: 0 18px; border: 1px solid #333736; border-radius: 6px; background: #101313; color: #e1e3e2; font-size: 13px; font-weight: 700; cursor: pointer; }
.gallery-filters button.active { border-color: var(--gold); background: var(--gold); color: #171300; }
.gallery-toolbar select { min-width: 155px; color-scheme: dark; }
.gallery-section { margin-bottom: 28px; }
.gallery-heading { height: 44px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #45370e; }
.gallery-heading svg { width: 24px; height: 24px; fill: none; stroke: var(--gold); stroke-width: 1.4; }
.gallery-heading h2 { margin: 0; font-size: 19px; font-weight: 600; }
.gallery-photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 14px; }
.gallery-photo-card { position: relative; height: 215px; overflow: hidden; border: 1px solid #2b2e2d; border-radius: 8px; background: #151817; }
.gallery-photo-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .25s ease; }
.gallery-photo-card:hover img { transform: scale(1.035); }
.gallery-photo-card::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.78)); }
.gallery-photo-card span { position: absolute; z-index: 2; bottom: 12px; left: 12px; padding: 6px 10px; border: 1px solid #9a7728; border-radius: 5px; background: rgba(8,10,10,.85); font-size: 12.5px; font-weight: 700; }
.gallery-video-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 14px; }
.gallery-video-thumb { position: relative; height: 150px; display: block; overflow: hidden; border-radius: 8px; background: #151817; }
.gallery-video-thumb img { width: 100%; height: 100%; display: block; object-fit: cover; }
.gallery-video-thumb::after { content: ""; position: absolute; inset: 0; background: rgba(3,5,5,.12); }
.gallery-video-thumb i { position: absolute; z-index: 2; top: 50%; left: 50%; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: #111; font-size: 14px; font-style: normal; transform: translate(-50%,-50%); }
.gallery-video-thumb small { position: absolute; z-index: 2; right: 6px; bottom: 6px; padding: 3px 6px; border-radius: 4px; background: rgba(0,0,0,.8); font-size: 11px; font-weight: 600; }
.gallery-video-card h3 { margin: 8px 0 4px; font-size: 13.5px; font-weight: 600; }
.gallery-video-card p { margin: 0; color: #9ea2a0; font-size: 12.5px; line-height: 1.4; }
.gallery-more { height: 38px; margin: 18px auto 0; padding: 0 20px; display: block; border: 1px solid #956d19; border-radius: 6px; background: #101313; color: var(--gold); font-size: 13px; font-weight: 700; cursor: pointer; }
.gallery-empty { padding: 25px 0; color: #8f9391; font-size: 14px; }
.gallery-section.is-filtered-empty { display: none; }
.gallery-promo { min-height: 185px; display: flex; align-items: center; margin-top: 12px; overflow: hidden; border: 1px solid #4b3a10; border-radius: 10px; background-image: linear-gradient(90deg, #0b0d0d 0%, rgba(11,13,13,.93) 34%, rgba(11,13,13,.23) 58%, rgba(11,13,13,.12)), url('/images/home-hero-products.png'); background-position: center 54%; background-size: cover; }
.gallery-promo > div { padding-left: 64px; }
.gallery-promo em { color: var(--gold); font-family: Georgia, serif; font-size: 14px; }
.gallery-promo h2 { margin: 5px 0 13px; font-size: 25px; font-weight: 600; line-height: 1.14; }
.gallery-promo a { height: 40px; padding: 0 18px; display: inline-flex; align-items: center; gap: 13px; border-radius: 6px; background: var(--gold); color: #171300; font-size: 13px; font-weight: 800; }
.gallery-perks { min-height: 72px; display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 16px; border: 1px solid #292d2b; border-radius: 10px; }
.gallery-perks span { display: grid; grid-template-columns: 34px 1fr; align-items: center; padding: 0 20px; color: #d4d7d5; font-size: 13px; line-height: 1.45; }
.gallery-perks svg { width: 28px; height: 28px; fill: none; stroke: var(--gold); stroke-width: 1.2; }

@media (max-width: 1000px) {
    .gallery-photo-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-video-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-perks { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
    .gallery-hero { min-height: 350px; padding: 24px 0; background-position: 62% center; }
    .gallery-hero h1 { max-width: 310px; font-size: 31px; }
    .gallery-toolbar { align-items: flex-start; flex-direction: column; padding: 16px 0; }
    .gallery-filters { width: 100%; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 5px; }
    .gallery-filters button { flex: 0 0 auto; }
    .gallery-toolbar select { align-self: flex-end; }
    .gallery-photo-grid { grid-template-columns: 1fr 1fr; }
    .gallery-photo-card { height: 150px; }
    .gallery-video-grid { display: flex; overflow-x: auto; }
    .gallery-video-card { min-width: 190px; }
    .gallery-promo { min-height: 220px; background-position: 67% center; }
    .gallery-promo > div { padding-left: 20px; }
    .gallery-promo h2 { font-size: 19px; }
    .gallery-perks { grid-template-columns: 1fr 1fr; }
    .gallery-perks span { min-height: 62px; }
}

/* Admin banner editor */
.admin-page { min-height: 720px; padding: 48px 0 70px; background: #f7f7f5; color: #111414; }
.admin-shell { max-width: 1180px; }
.admin-heading span, .size-label { color: #b77b00; font-size: 12px; font-weight: 800; letter-spacing: .8px; }
.admin-heading h1 { margin: 8px 0 7px; font-family: Oswald, sans-serif; font-size: 38px; }
.admin-heading p { margin: 0 0 30px; color: #626666; }
.admin-alert { margin-bottom: 20px; padding: 14px 18px; border-radius: 7px; }
.admin-alert--success { border: 1px solid #8ab777; background: #edf8e9; color: #276119; }
.admin-alert--error { border: 1px solid #d49b94; background: #fff0ee; color: #8e2820; }
.app-transient-alert {
    overflow: hidden;
    transition: opacity .3s ease, transform .3s ease, max-height .3s ease,
        margin .3s ease, padding .3s ease, border-width .3s ease;
}
.app-transient-alert.is-dismissing {
    max-height: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-top-width: 0 !important;
    border-bottom-width: 0 !important;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
}
@media (prefers-reduced-motion: reduce) {
    .app-transient-alert { transition-duration: .01ms; }
}
.admin-validation { margin-bottom: 16px; color: #a61b1b; }
.admin-validation:empty { display: none; }
.banner-form { display: grid; gap: 22px; }
.banner-editor-card, .banner-meta-card { border: 1px solid #deded8; border-radius: 12px; background: #fff; box-shadow: 0 8px 28px rgba(15,18,18,.06); }
.banner-editor-card { display: grid; grid-template-columns: 330px 1fr; gap: 28px; padding: 24px; }
.banner-editor-copy h2 { margin: 7px 0 8px; font-family: Oswald, sans-serif; font-size: 27px; }
.banner-editor-copy p { margin: 0 0 22px; color: #666; font-size: 14px; line-height: 1.55; }
.upload-label, .banner-meta-card label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 800; }
.upload-input { width: 100%; padding: 11px; border: 1px dashed #bd8c22; border-radius: 6px; background: #fffbf1; color: #272929; }
.banner-preview { display: flex; align-items: center; justify-content: center; overflow: hidden; min-height: 220px; border-radius: 8px; background: #0a0c0c; color: #aaa; }
.banner-preview img { display: block; width: 100%; height: 100%; object-fit: contain; }
.banner-preview--desktop { aspect-ratio: 1920 / 700; min-height: 0; }
.banner-preview--mobile { justify-self: start; width: min(100%, 270px); aspect-ratio: 768 / 900; }
.banner-editor-card--mobile { align-items: start; }
.banner-meta-card { padding: 24px; }
.banner-meta-card input { width: 100%; height: 46px; padding: 0 14px; border: 1px solid #d7d7d2; border-radius: 6px; }
.banner-meta-card small { display: block; margin-top: 10px; color: #747777; }
.field-validation { display: block; margin-top: 7px; color: #b11818; font-size: 12px; }
.admin-save-button { height: 46px; margin-top: 22px; padding: 0 22px; border: 0; border-radius: 6px; background: #D0920E; color: #ffffff; font-weight: 900; cursor: pointer; box-shadow: 0 2px 6px rgba(208, 146, 14, 0.25); transition: all .15s ease; }
.admin-save-button:hover { background: #B8800B; }
.admin-save-button b { margin-left: 10px; font-size: 17px; }

@media (max-width: 760px) {
    .admin-page { padding-top: 32px; }
    .banner-editor-card { grid-template-columns: 1fr; }
    .banner-preview--mobile { justify-self: center; }
}

/* About page */
.about-page { background: #090b0b; color: #f7f7f5; }
.about-shell { padding-top: 22px; padding-bottom: 26px; }
.about-breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 17px; color: #8f9492; font-size: 13px; }
.about-breadcrumb a { display: inline-flex; align-items: center; gap: 7px; color: #b9bcba; }
.about-breadcrumb a span { color: var(--gold); font-size: 18px; }
.about-breadcrumb b { color: #555957; font-size: 17px; }
.about-hero { position: relative; min-height: 430px; display: grid; grid-template-columns: 45% 55%; overflow: hidden; border-bottom: 1px solid #272a29; background-image: linear-gradient(90deg, #090b0b 0%, rgba(9,11,11,.94) 31%, rgba(9,11,11,.08) 59%, rgba(9,11,11,.15) 100%), var(--about-hero-image); background-position: center; background-size: cover; background-repeat: no-repeat; }
.about-hero::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 90px; background: linear-gradient(transparent, #090b0b); pointer-events: none; }
.about-hero__copy { position: relative; z-index: 2; align-self: center; padding: 10px 0 42px 5px; }
.about-eyebrow, .about-quality__copy > span { display: block; margin-bottom: 11px; color: var(--gold); font-size: 14px; font-weight: 800; }
.about-hero h1 { margin: 0 0 14px; font-family: Oswald, sans-serif; font-size: 44px; line-height: 1.12; letter-spacing: .2px; }
.about-hero h1 strong { color: var(--gold); font-weight: 700; }
.about-hero p { max-width: 460px; margin: 0 0 11px; color: #d5d8d6; font-size: 15px; line-height: 1.65; }
.about-outline-button { height: 44px; margin-top: 10px; padding: 0 20px; display: inline-flex; align-items: center; gap: 12px; border: 1px solid #b98313; border-radius: 6px; color: var(--gold); font-size: 13.5px; font-weight: 800; }
.about-hero__visual { min-height: 430px; }
.about-values { min-height: 126px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; margin-top: 16px; border: 1px solid #292c2b; border-radius: 10px; background: linear-gradient(135deg, rgba(22,24,24,.92), rgba(10,12,12,.94)); }
.about-values article { min-height: 80px; display: grid; grid-template-columns: 47px 1fr; gap: 13px; align-items: center; padding: 16px 22px; border-right: 1px solid #303332; }
.about-values article:last-child { border: 0; }
.about-values svg { width: 41px; height: 41px; fill: none; stroke: var(--gold); stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.about-values h2 { margin: 0 0 7px; font-size: 14.5px; font-weight: 700; }
.about-values p { margin: 0; color: #b9bcba; font-size: 13px; line-height: 1.55; }
.about-purpose { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; margin-top: 21px; }
.about-purpose article { min-height: 170px; display: flex; align-items: center; justify-content: space-between; padding: 24px 26px; overflow: hidden; border: 1px solid #292c2b; border-radius: 10px; background: linear-gradient(135deg, #151717, #101212); }
.about-purpose article > div { max-width: 76%; }
.about-purpose span { color: var(--gold); font-size: 14px; font-weight: 800; }
.about-purpose span::after, .about-quality__copy > span::after { content: ""; display: block; width: 58px; height: 1px; margin-top: 8px; background: linear-gradient(90deg, var(--gold), transparent); }
.about-purpose h2, .about-quality h2 { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.about-purpose p { margin: 17px 0 0; color: #c7cac8; font-size: 13.5px; line-height: 1.65; }
.about-purpose svg { width: 92px; height: 92px; flex: 0 0 auto; fill: none; stroke: #626663; stroke-width: 1; opacity: .72; }
.about-quality { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; align-items: stretch; margin-top: 21px; }
.about-quality__image { min-height: 255px; border-radius: 8px; background-color: #171919; background-image: var(--about-quality-image); background-position: center; background-size: cover; background-repeat: no-repeat; }
.about-quality__copy { align-self: center; padding: 18px 20px 18px 0; }
.about-quality__copy > span { font-size: 14.5px; font-weight: 700; }
.about-quality__copy p { margin: 17px 0 15px; color: #c7cac8; font-size: 13.5px; line-height: 1.7; }
.about-quality ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; color: #d6d8d7; font-size: 13.5px; }
.about-quality li::before { content: "✓"; width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; margin-right: 10px; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold); font-size: 11px; }
.about-newsletter { background: #fff; color: #151818; }
.about-newsletter__inner { min-height: 105px; display: grid; grid-template-columns: 265px 290px 1fr; gap: 26px; align-items: center; }
.about-newsletter__title { display: flex; align-items: center; gap: 17px; font-size: 14.5px; font-weight: 700; line-height: 1.4; }
.about-newsletter__title svg { width: 43px; height: 43px; fill: none; stroke: #171919; stroke-width: 1.3; }
.about-newsletter form { height: 44px; display: flex; overflow: hidden; border: 1px solid #e0e0dc; border-radius: 6px; }
.about-newsletter input { min-width: 0; flex: 1; padding: 0 14px; border: 0; outline: 0; font-size: 13.5px; }
.about-newsletter button { width: 115px; border: 0; background: #111414; color: var(--gold); font-size: 13px; font-weight: 800; cursor: pointer; }
.about-newsletter__perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.about-newsletter__perks span { display: grid; grid-template-columns: 27px 1fr; align-items: center; color: #333635; font-size: 12.5px; font-weight: 700; line-height: 1.45; }
.about-newsletter__perks svg { width: 23px; height: 23px; fill: none; stroke: #c68a0d; stroke-width: 1.2; }

@media (max-width: 1000px) {
    .about-hero { grid-template-columns: 54% 46%; }
    .about-values { grid-template-columns: 1fr 1fr; }
    .about-values article:nth-child(2) { border-right: 0; }
    .about-values article:nth-child(-n+2) { border-bottom: 1px solid #303332; }
    .about-newsletter__inner { grid-template-columns: 1fr 1fr; padding: 18px 0; }
    .about-newsletter__perks { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
    .about-shell { padding-top: 15px; }
    .about-hero { min-height: 690px; display: block; background-image: linear-gradient(180deg, rgba(9,11,11,.93) 0%, rgba(9,11,11,.62) 48%, rgba(9,11,11,.12) 100%), var(--about-hero-image); background-position: 62% bottom; background-size: auto 100%; }
    .about-hero__copy { padding: 15px 4px 0; }
    .about-hero__visual { display: none; }
    .about-hero h1 { font-size: 36px; }
    .about-values, .about-purpose, .about-quality { grid-template-columns: 1fr; }
    .about-values { margin-top: 14px; }
    .about-values article { border-right: 0; border-bottom: 1px solid #303332; }
    .about-values article:nth-child(3) { border-bottom: 1px solid #303332; }
    .about-purpose article > div { max-width: 72%; }
    .about-quality { gap: 10px; }
    .about-quality__copy { padding-right: 0; }
    .about-newsletter__inner { grid-template-columns: 1fr; padding: 22px 0; }
    .about-newsletter__perks { grid-column: auto; grid-template-columns: 1fr 1fr; }
}

/* Products page */
.products-hero { min-height: 335px; overflow: hidden; border-bottom: 1px solid #2a2d2c; background-color: #090b0b; background-image: linear-gradient(90deg, #090b0b 0%, rgba(9,11,11,.92) 31%, rgba(9,11,11,.15) 59%, rgba(9,11,11,.05)), url('/images/home-hero-products.png'); background-position: center 46%; background-size: cover; }
.products-hero__inner { position: relative; min-height: 335px; padding-top: 20px; }
.products-breadcrumb { display: flex; align-items: center; gap: 8px; color: #9da19f; font-size: 13px; }
.products-breadcrumb a:first-child { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid #443812; border-radius: 50%; color: var(--gold); font-size: 15px; }
.products-breadcrumb b { color: #525654; }
.products-hero__copy { padding-top: 43px; }
.products-hero__copy h1 { margin: 0 0 12px; font-family: Oswald, sans-serif; font-size: 42px; line-height: 1; }
.products-hero__copy p { max-width: 440px; margin: 0; color: #d7dad8; font-size: 14.5px; line-height: 1.6; }
.products-category-ribbon { position: absolute; right: 0; bottom: 20px; left: 0; display: grid; grid-template-columns: repeat(7, 1fr); gap: 10px; }
.products-category-ribbon a { min-height: 76px; display: grid; grid-template-columns: 49px 1fr; align-items: center; padding: 9px 10px; border: 1px solid #353837; border-radius: 8px; background: rgba(13,15,15,.9); color: #f2f3f2; font-size: 13px; font-weight: 600; line-height: 1.3; transition: border-color .2s, transform .2s; }
.products-category-ribbon a:hover, .products-category-ribbon a.is-active { border-color: #b88417; transform: translateY(-2px); }
.products-category-ribbon img { width: 44px; height: 44px; object-fit: contain; }
.products-category-ribbon small { color: #bfc2c0; font-size: 11.5px; font-weight: 400; }

.products-surface { min-height: 650px; background: #fff; color: #111414; }
.products-layout { display: grid; grid-template-columns: 250px 1fr; gap: 38px; padding-top: 30px; padding-bottom: 48px; }
.products-sidebar h2 { margin: 0 0 12px; font-size: 14px; font-weight: 800; letter-spacing: 0.3px; }
.products-category-list { border: 1px solid #e6e6e2; border-radius: 6px; overflow: hidden; }
.products-category-list a { min-height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; border-bottom: 1px solid #e6e6e2; font-size: 13.5px; font-weight: 500; transition: background 0.15s; }
.products-category-list a:hover { background: #fafafa; }
.products-category-list a:last-child { border: 0; }
.products-category-list a.is-active { border-left: 3px solid var(--gold); background: #fdfaf3; color: #bb7d00; font-weight: 700; }
.products-category-list b { color: #777; font-size: 16px; font-weight: 400; }
.products-category-list a span small { color: #979a98; font-size: 12px; }
.products-category-accordion { border-bottom: 1px solid #e6e6e2; }
.products-category-accordion:last-child { border-bottom: 0; }
.products-category-accordion summary { min-height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 13px; cursor: pointer; list-style: none; font-size: 13.5px; font-weight: 600; transition: background .15s, color .15s; }
.products-category-accordion summary::-webkit-details-marker { display: none; }
.products-category-accordion summary:hover { background: #fafafa; }
.products-category-accordion summary b { color: #777; font-size: 17px; font-weight: 500; transition: transform .2s ease; }
.products-category-accordion[open] summary b { transform: rotate(180deg); }
.products-category-accordion.is-active summary { border-left: 3px solid var(--gold); background: #fdfaf3; color: #bb7d00; font-weight: 700; }
.products-category-accordion summary small { color: #979a98; font-size: 12px; }
.products-subcategory-list { padding: 4px 0 6px 13px; border-top: 1px solid #ecece8; background: #fafaf8; }
.products-category-list .products-subcategory-list a { min-height: 34px; justify-content: flex-start; padding: 0 10px; border: 0; color: #616664; font-size: 12px; text-align: left; }
.products-category-list .products-subcategory-list a::before { content: "–"; margin-right: 7px; color: #b77d09; }
.products-category-list .products-subcategory-list a.is-active { border-left: 2px solid var(--gold); background: #fffaf0; color: #a96f00; }
.price-filter, .brand-filter { margin-top: 28px; }
.price-line { position: relative; height: 4px; margin: 18px 3px 10px; background: var(--gold); border-radius: 2px; }
.price-line i { position: absolute; top: 50%; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); transform: translateY(-50%); box-shadow: 0 2px 4px rgba(0,0,0,0.2); }
.price-line i:first-child { left: -3px; }
.price-line i:last-child { right: -3px; }
.price-labels { display: flex; justify-content: space-between; margin-bottom: 11px; font-size: 12px; font-weight: 600; color: #555; }
.price-inputs { display: grid; grid-template-columns: 1fr 12px 1fr; gap: 6px; align-items: center; }
.price-inputs input { min-width: 0; height: 38px; padding: 0 8px; border: 1px solid #d1d5db; border-radius: 6px; text-align: center; font-size: 13.5px; font-weight: 600; }
.price-inputs b { color: #9b9d9c; text-align: center; font-size: 14px; }
.price-filter > button { width: 100%; height: 38px; margin-top: 12px; border: 0; border-radius: 6px; background: #101313; color: #fff; font-size: 13px; font-weight: 800; cursor: pointer; transition: background 0.15s; }
.price-filter > button:hover { background: #1f2424; }
.brand-filter { display: grid; gap: 10px; }
.brand-filter h2 { margin-bottom: 4px; }
.brand-filter > a { display: flex; align-items: center; gap: 9px; color: #363938; font-size: 13.5px; font-weight: 500; }
.brand-filter > a i { width: 16px; height: 16px; border: 1.5px solid #cbd5e1; border-radius: 4px; }
.brand-filter > a.is-active i { border-color: var(--gold); background: var(--gold); box-shadow: inset 0 0 0 3px #fff; }
.brand-filter > a.brand-filter__clear { margin-top: 4px; color: #b57800; font-size: 12px; font-weight: 700; }
.products-wholesale-card { min-height: 165px; display: flex; flex-direction: column; margin-top: 25px; padding: 18px 16px; border-radius: 8px; background-image: linear-gradient(100deg, rgba(8,10,10,.99) 0%, rgba(8,10,10,.9) 62%, rgba(8,10,10,.18)), url('/images/wholesale-cleaning-cart.png'); background-position: center; background-size: cover; color: #fff; }
.products-wholesale-card strong { font-family: Oswald, sans-serif; font-size: 16px; line-height: 1.25; }
.products-wholesale-card span { max-width: 155px; margin-top: 8px; color: #d5d7d6; font-size: 12px; line-height: 1.5; }
.products-wholesale-card b { align-self: flex-start; margin-top: auto; padding: 7px 10px; border-radius: 4px; background: var(--gold); color: #171300; font-size: 12px; font-weight: 700; }

.products-toolbar { min-height: 48px; display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 600; color: #475569; margin-bottom: 16px; }
.products-toolbar__controls { display: flex; align-items: center; gap: 8px; }
.products-toolbar__controls form { display: flex; }
.products-toolbar select { height: 38px; min-width: 180px; padding: 0 32px 0 12px; border: 1px solid #cbd5e1; border-radius: 6px; background: #fff; color: #333635; font-size: 13.5px; font-weight: 500; }
.products-toolbar__controls button { width: 38px; height: 38px; border: 1px solid #cbd5e1; border-radius: 6px; background: #fff; color: #555; font-size: 18px; cursor: pointer; }
.products-toolbar__controls button.is-active { border-color: #161918; background: #111414; color: var(--gold); }
.products-page-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: start; }
.products-page-card { width: 100%; min-width: 0; min-height: 380px; container-type: inline-size; display: flex; flex-direction: column; overflow: hidden; border: 0; border-radius: 12px; background: linear-gradient(145deg, #171a1a, #090b0b); color: #fff; box-shadow: inset 0 0 0 1px #242828, 0 8px 22px rgba(0,0,0,.14); transition: transform .2s ease, box-shadow .2s ease; }
.products-page-card:hover { transform: translateY(-3px); box-shadow: inset 0 0 0 1px #242828, 0 13px 28px rgba(0,0,0,.2); }
.products-page-card__image { position: relative; flex: 0 0 auto; width: 100%; height: auto; aspect-ratio: 1 / 1; display: block; overflow: hidden; padding: 0; background: #eeeae2; }
.products-page-card__image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.products-page-card__body { min-height: 0; flex: 1; display: flex; flex-direction: column; padding: 5.5%; }
.products-page-card h3 { height: 2.44em; margin: 0; overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; color: #fff; font-size: clamp(17px, 6cqw, 24px); font-weight: 750; line-height: 1.22; }
.products-page-card small { margin-top: 4px; color: #aeb2b1; font-size: clamp(12px, 4cqw, 16px); line-height: 1.25; }
.products-page-card__bottom { display: flex; align-items: end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 4.5%; border-top: 1px solid #343838; }
.products-page-card__bottom strong { color: #fff; font-size: clamp(23px, 8.5cqw, 36px); font-weight: 800; line-height: 1; white-space: nowrap; }
.products-page-card .add-cart, .product-card .add-cart { width: clamp(40px, 16%, 64px); height: auto; aspect-ratio: 1; flex: 0 0 auto; border-radius: 9px; }
.products-page-card .add-cart svg, .product-card .add-cart svg { width: 48%; height: 48%; }
.products-page-empty { grid-column: 1 / -1; min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border: 1px dashed #d4d4cf; border-radius: 8px; color: #777; font-size: 14.5px; }
.products-page-empty strong { color: #222; font-size: 16px; }
.products-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 30px; }
.products-pagination a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #cbd5e1; border-radius: 6px; font-size: 14px; font-weight: 600; }
.products-pagination a.is-active { border-color: #111; background: #111; color: var(--gold); }

@media (max-width: 1000px) {
    .products-category-ribbon { grid-template-columns: repeat(4, 1fr); }
    .products-category-ribbon a:nth-child(n+5) { display: none; }
    .products-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
    .products-hero { min-height: 440px; background-position: 62% center; }
    .products-hero__inner { min-height: 440px; }
    .products-hero__copy { padding-top: 35px; }
    .products-hero__copy h1 { font-size: 32px; }
    .products-category-ribbon { display: flex; overflow-x: auto; }
    .products-category-ribbon a { min-width: 165px; }
    .products-category-ribbon a:nth-child(n+5) { display: grid; }
    .products-layout { grid-template-columns: 1fr; gap: 24px; }
    .products-sidebar { display: grid; grid-template-columns: 1fr; gap: 18px; }
    .price-filter, .brand-filter { margin-top: 0; }
    .products-wholesale-card { display: none; }
    .products-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); justify-content: stretch; gap: 9px; }
    .products-page-card { min-height: 0; border-radius: 8px; }
    .products-page-card__body { padding: 10px; }
    .products-page-card h3 { font-size: 12px; line-height: 1.25; }
    .products-page-card small { margin-top: 3px; font-size: 10px; }
    .products-page-card__bottom { gap: 6px; padding-top: 8px; }
    .products-page-card__bottom strong { font-size: 15px; }
    .products-page-card .add-cart, .product-card .add-cart { width: 31px; border-radius: 6px; }
    .products-page-card .product-favorite { right: 7px; bottom: 7px; width: 24px; height: 24px; }
    .products-page-card .product-favorite svg { width: 13px; height: 13px; }
    .products-toolbar { align-items: center; }
    .products-toolbar select { min-width: 145px; }
    .products-toolbar__controls button { display: none; }
}

/* Contact page */
.contact-page { background: #090b0b; color: #f5f6f5; }
.contact-hero { min-height: 355px; border-bottom: 1px solid #272a29; background-image: linear-gradient(90deg, #090b0b 0%, rgba(9,11,11,.94) 34%, rgba(9,11,11,.2) 62%, rgba(9,11,11,.08)), var(--contact-hero-image); background-position: center 49%; background-size: cover; }
.contact-hero__inner { min-height: 355px; padding-top: 20px; }
.contact-breadcrumb { display: flex; align-items: center; gap: 8px; color: #8f9492; font-size: 13px; }
.contact-breadcrumb a:first-child { width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid #443812; border-radius: 50%; color: var(--gold); font-size: 15px; }
.contact-breadcrumb b { color: #525654; }
.contact-hero__copy { max-width: 535px; padding-top: 54px; }
.contact-hero__copy > span, .contact-heading > span, .contact-form-card > span, .contact-location__copy > span { color: var(--gold); font-size: 13.5px; font-weight: 800; letter-spacing: .5px; }
.contact-hero__copy h1 { margin: 12px 0 15px; font-family: Oswald, sans-serif; font-size: 42px; line-height: 1.12; }
.contact-hero__copy h1 strong { color: var(--gold); }
.contact-hero__copy p { max-width: 440px; margin: 0; color: #d0d3d1; font-size: 14.5px; line-height: 1.7; }

.contact-main { display: grid; grid-template-columns: .9fr 1.25fr; gap: 27px; padding-top: 30px; padding-bottom: 25px; }
.contact-info-column, .contact-form-card { border: 1px solid #292d2b; border-radius: 10px; background: linear-gradient(145deg, #151818, #0d1010); }
.contact-info-column { padding: 27px; }
.contact-heading h2, .contact-form-card h2, .contact-location__copy h2 { margin: 8px 0 9px; font-size: 24px; font-weight: 700; }
.contact-heading p, .contact-form-card > p, .contact-location__copy p { margin: 0; color: #aeb2af; font-size: 13.5px; line-height: 1.65; }
.contact-cards { display: grid; gap: 10px; margin-top: 23px; }
.contact-cards article { min-height: 78px; display: grid; grid-template-columns: 43px 1fr; gap: 14px; align-items: center; padding: 14px 16px; border: 1px solid #282c2a; border-radius: 8px; background: #0d1010; }
.contact-cards svg, .contact-hours > svg { width: 34px; height: 34px; color: var(--gold); stroke-width: 1.35; }
.contact-cards article div { display: flex; flex-direction: column; gap: 4px; }
.contact-cards small { color: var(--gold); font-size: 11.5px; font-weight: 800; }
.contact-cards strong { font-size: 14.5px; }
.contact-cards span { color: #a0a5a3; font-size: 13px; }
.contact-hours { display: grid; grid-template-columns: 43px 1fr; gap: 14px; margin-top: 18px; padding: 18px 15px; border-top: 1px solid #323634; }
.contact-hours > div > strong { display: block; margin-bottom: 8px; font-size: 13.5px; font-weight: 700; }
.contact-hours p { display: flex; justify-content: space-between; margin: 6px 0 0; color: #aeb2af; font-size: 13px; }
.contact-hours p b { color: #e6e8e6; font-weight: 600; }

.contact-form-card { padding: 27px 30px; }
.contact-form-card > p { margin-bottom: 20px; }
.contact-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form-grid label { display: grid; gap: 7px; }
.contact-form-grid label > span { color: #d8dad9; font-size: 13px; font-weight: 700; }
.contact-form-grid input, .contact-form-grid select, .contact-form-grid textarea { width: 100%; border: 1px solid #353937; border-radius: 6px; outline: none; background: #0a0d0c; color: #f6f7f6; font: inherit; font-size: 13.5px; transition: border-color .2s; }
.contact-form-grid input, .contact-form-grid select { height: 42px; padding: 0 12px; }
.contact-form-grid textarea { resize: vertical; min-height: 112px; padding: 12px; }
.contact-form-grid input:focus, .contact-form-grid select:focus, .contact-form-grid textarea:focus { border-color: #a87917; }
.contact-form-grid input::placeholder, .contact-form-grid textarea::placeholder { color: #6e7370; }
.contact-form-message { grid-column: 1 / -1; }
.contact-consent { display: flex; align-items: center; gap: 8px; margin-top: 13px; color: #9da19f; font-size: 12.5px; }
.contact-consent input { width: 15px; height: 15px; accent-color: var(--gold); }
.contact-form-card form > button { height: 44px; margin-top: 16px; padding: 0 22px; border: 0; border-radius: 6px; background: linear-gradient(135deg, #ffc024, #efa000); color: #171300; font-size: 13.5px; font-weight: 900; cursor: pointer; }
.contact-form-card form > button b { margin-left: 12px; font-size: 16px; }
.contact-form-success { display: none; margin-top: 12px; padding: 12px; border: 1px solid #496d37; border-radius: 6px; background: #142010; color: #b9e6a4; font-size: 13.5px; }
.contact-form-card form.is-sent .contact-form-success { display: block; }

.contact-location { min-height: 205px; display: grid; grid-template-columns: 1.45fr .8fr; margin-bottom: 28px; overflow: hidden; border: 1px solid #292d2b; border-radius: 10px; background: #101313; }
.contact-location__map { position: relative; min-height: 205px; display: grid; place-items: center; background-color: #151817; background-image: linear-gradient(rgba(255,180,0,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,180,0,.04) 1px, transparent 1px), radial-gradient(circle at 50% 50%, #28281d, #101313 61%); background-size: 28px 28px, 28px 28px, auto; }
.contact-location__map::before, .contact-location__map::after { content: ""; position: absolute; border: 1px solid rgba(255,180,0,.16); border-radius: 50%; }
.contact-location__map::before { width: 145px; height: 145px; }
.contact-location__map::after { width: 88px; height: 88px; }
.contact-location__map div { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.contact-location__map svg { width: 37px; height: 37px; color: var(--gold); }
.contact-location__map strong { margin-top: 7px; color: var(--gold); font-size: 14px; }
.contact-location__map span { margin-top: 4px; color: #aeb2af; font-size: 12.5px; }
.contact-location__copy { align-self: center; padding: 25px 31px; border-left: 1px solid #292d2b; }
.contact-location__copy a { height: 38px; margin-top: 15px; padding: 0 16px; display: inline-flex; align-items: center; gap: 11px; border: 1px solid #956d19; border-radius: 6px; color: var(--gold); font-size: 13px; font-weight: 800; }
.contact-support-band { border-top: 1px solid #292d2b; background: #0e1110; }
.contact-support-band > div { min-height: 88px; display: grid; grid-template-columns: repeat(4, 1fr); }
.contact-support-band > div > div { display: flex; align-items: center; justify-content: center; gap: 13px; border-right: 1px solid #292d2b; }
.contact-support-band > div > div:last-child { border: 0; }
.contact-support-band svg { width: 29px; height: 29px; color: var(--gold); }
.contact-support-band span { display: flex; flex-direction: column; gap: 4px; color: #9fa3a1; font-size: 12.5px; }
.contact-support-band strong { color: #f4f5f4; font-size: 14px; }

@media (max-width: 800px) {
    .contact-main { grid-template-columns: 1fr; }
    .contact-location { grid-template-columns: 1fr; }
    .contact-location__copy { border-top: 1px solid #292d2b; border-left: 0; }
}

@media (max-width: 600px) {
    .contact-hero { min-height: 420px; background-position: 63% center; }
    .contact-hero__copy { max-width: 87%; }
    .contact-hero__copy h1 { font-size: 32px; }
    .contact-info-column, .contact-form-card { padding: 21px 17px; }
    .contact-form-grid { grid-template-columns: 1fr; }
    .contact-form-message { grid-column: auto; }
    .contact-support-band > div { grid-template-columns: 1fr 1fr; }
    .contact-support-band > div > div { min-height: 70px; }
    .contact-support-band > div > div:nth-child(2) { border-right: 0; }
    .contact-support-band > div > div:nth-child(-n+2) { border-bottom: 1px solid #292d2b; }
}

/* Customer and admin authentication */
.auth-body { min-height: 100vh; overflow-x: hidden; background: #090b0b; }
.customer-auth, .admin-auth { position: relative; min-height: 100vh; display: grid; }
.customer-auth { grid-template-columns: 1.08fr .92fr; background: #fff; color: #131615; }
.auth-brand { position: absolute; z-index: 3; top: 42px; left: 52px; color: #fff; }
.auth-brand small, .admin-auth__brand small { display: block; margin-top: 8px; font-size: 10px; letter-spacing: 2.2px; }
.customer-auth__visual { min-height: 100vh; display: flex; align-items: flex-end; padding: 0 52px 63px; background-image: linear-gradient(180deg, rgba(5,7,7,.1), rgba(5,7,7,.2) 48%, #070909 96%), linear-gradient(90deg, #070909 0%, rgba(7,9,9,.1)), url('/images/home-hero-products.png'); background-position: 59% center; background-size: cover; color: #fff; }
.customer-auth__copy { max-width: 510px; }
.customer-auth__copy > span, .auth-card-heading > span, .admin-auth__intro > span { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .9px; }
.customer-auth__copy h1 { margin: 11px 0 14px; font-family: Oswald, sans-serif; font-size: 42px; line-height: 1.08; }
.customer-auth__copy h1 strong { color: var(--gold); }
.customer-auth__copy p { max-width: 440px; margin: 0; color: #d2d5d3; font-size: 14px; line-height: 1.7; }
.customer-auth__perks { display: flex; gap: 18px; margin-top: 23px; color: #e5e7e5; font-size: 12px; }
.customer-auth__perks span::first-letter { color: var(--gold); }
.customer-auth__panel, .admin-auth__panel { display: flex; align-items: center; justify-content: center; padding: 55px; }
.customer-login-card { width: min(100%, 450px); }
.auth-card-heading h2 { margin: 9px 0 9px; font-size: 32px; }
.auth-card-heading p { margin: 0 0 27px; color: #777b79; font-size: 14px; line-height: 1.55; }
.auth-success { margin-bottom: 15px; padding: 12px 14px; border: 1px solid #8ab777; border-radius: 5px; background: #edf8e9; color: #276119; font-size: 13px; }
.auth-form { display: grid; gap: 16px; }
.auth-form > label { display: grid; gap: 7px; }
.auth-form > label > span { font-size: 13px; font-weight: 700; }
.auth-form > label > small { color: #b11818; font-size: 12px; }
.auth-input { height: 52px; display: flex; align-items: center; overflow: hidden; border: 1px solid #d9dad6; border-radius: 5px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.auth-input:focus-within { border-color: #c98b09; box-shadow: 0 0 0 3px rgba(255,180,0,.1); }
.auth-input i { width: 46px; color: #ae7600; text-align: center; font-size: 14px; font-style: normal; }
.auth-input input { min-width: 0; flex: 1; height: 100%; border: 0; outline: 0; background: transparent; color: #171918; font-size: 14px; }
.auth-input button { height: 100%; padding: 0 14px; border: 0; background: transparent; color: #a06d00; font-size: 12px; cursor: pointer; }
.auth-form-options { display: flex; align-items: center; justify-content: space-between; color: #676b69; font-size: 12px; }
.auth-form-options label { display: flex; align-items: center; gap: 6px; }
.auth-form-options input { accent-color: var(--gold); }
.auth-form-options a { color: #a66f00; font-weight: 700; }
.customer-login-button, .admin-login-button { height: 52px; border: 0; border-radius: 5px; font-size: 13px; font-weight: 900; cursor: pointer; }
.customer-login-button { background: linear-gradient(135deg, #ffc024, #efa000); color: #171300; }
.customer-login-button b, .admin-login-button b { margin-left: 12px; font-size: 15px; }
.auth-validation { padding: 0; color: #b11818; font-size: 12px; line-height: 1.5; }
.auth-validation:empty { display: none; }
.auth-validation ul { margin: 0; padding-left: 16px; }
.auth-divider { position: relative; margin: 22px 0 18px; border-top: 1px solid #e0e1dd; text-align: center; }
.auth-divider span { position: relative; top: -9px; padding: 0 11px; background: #fff; color: #a0a3a1; font-size: 12px; }
.auth-register-link { margin: 0; color: #666a68; text-align: center; font-size: 13px; }
.auth-register-link a { color: #a66f00; font-weight: 800; }
.auth-switch { margin-top: 26px; display: block; color: #7f8381; text-align: center; font-size: 12px; }
.auth-switch b { margin-left: 5px; color: var(--gold-dark); }

.admin-auth { grid-template-columns: 1fr 1fr; background: #080a0a; color: #f4f5f4; }
.admin-auth__identity { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 70px; overflow: hidden; border-right: 1px solid #2a2d2c; background-image: radial-gradient(circle at 55% 42%, rgba(255,180,0,.13), transparent 33%), linear-gradient(rgba(255,180,0,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,180,0,.025) 1px, transparent 1px); background-size: auto, 34px 34px, 34px 34px; }
.admin-auth__identity::after { content: ""; position: absolute; width: 430px; height: 430px; right: -150px; bottom: -180px; border: 1px solid rgba(255,180,0,.16); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,180,0,.025), 0 0 0 130px rgba(255,180,0,.018); }
.admin-auth__brand { position: absolute; top: 42px; left: 70px; }
.admin-auth__brand small { color: #8d9290; }
.admin-auth__intro { position: relative; z-index: 2; max-width: 500px; }
.admin-shield { width: 58px; height: 58px; margin-bottom: 25px; display: grid; place-items: center; border: 1px solid #9f7418; border-radius: 12px; background: rgba(255,180,0,.07); color: var(--gold); font-size: 24px; transform: rotate(45deg); }
.admin-shield::first-letter { display: block; transform: rotate(-45deg); }
.admin-auth__intro h1 { margin: 12px 0 17px; font-family: Oswald, sans-serif; font-size: 43px; line-height: 1.1; }
.admin-auth__intro p { max-width: 430px; margin: 0; color: #9ca19e; font-size: 14px; line-height: 1.75; }
.admin-auth__status { position: absolute; z-index: 2; bottom: 46px; left: 70px; display: grid; grid-template-columns: 9px auto; gap: 3px 9px; color: #d7dad8; font-size: 12px; }
.admin-auth__status i { width: 8px; height: 8px; margin-top: 2px; grid-row: 1 / 3; border-radius: 50%; background: #5bd15b; box-shadow: 0 0 10px #5bd15b; }
.admin-auth__status small { color: #6f7471; font-size: 10px; }
.admin-auth__panel { position: relative; background: linear-gradient(145deg, #121514, #090b0b); }
.admin-login-card { width: min(100%, 460px); padding: 38px; border: 1px solid #2d312f; border-radius: 10px; background: rgba(15,18,17,.9); box-shadow: 0 25px 70px rgba(0,0,0,.32); }
.admin-lock { width: 43px; height: 43px; margin-bottom: 20px; display: grid; place-items: center; border: 1px solid #9c7218; border-radius: 8px; color: var(--gold); font-size: 21px; }
.admin-auth-form .auth-input { border-color: #343836; background: #090b0b; }
.admin-auth-form .auth-input input { color: #f3f4f3; }
.admin-auth-form > label > span { color: #d6d9d7; }
.admin-login-button { background: var(--gold); color: #171300; }
.admin-security-note { display: grid; grid-template-columns: 27px 1fr; gap: 10px; margin-top: 20px; padding: 13px; border: 1px solid #292d2b; border-radius: 5px; background: #0a0d0c; color: #7f8481; }
.admin-security-note > span { color: var(--gold); font-size: 18px; }
.admin-security-note p { margin: 0; font-size: 11px; line-height: 1.55; }
.admin-security-note strong { display: block; margin-bottom: 3px; color: #c8cbc9; font-size: 12px; }
.admin-login-card .auth-switch { color: #777c79; }
.admin-auth__back { position: absolute; top: 36px; right: 45px; color: #8e9390; font-size: 12px; }
.admin-auth__copyright { position: absolute; right: 45px; bottom: 30px; color: #505552; font-size: 10px; }

@media (max-width: 850px) {
    .customer-auth, .admin-auth { grid-template-columns: 1fr; }
    .customer-auth__visual, .admin-auth__identity { min-height: 370px; }
    .customer-auth__visual { padding-bottom: 35px; }
    .customer-auth__panel, .admin-auth__panel { min-height: 610px; padding: 55px 28px; }
    .admin-auth__identity { padding: 120px 35px 65px; }
    .admin-auth__brand { left: 35px; }
    .admin-auth__status { display: none; }
}

@media (max-width: 520px) {
    .auth-brand { top: 28px; left: 25px; }
    .customer-auth__visual { min-height: 430px; padding: 0 25px 34px; }
    .customer-auth__copy h1, .admin-auth__intro h1 { font-size: 32px; }
    .customer-auth__perks { flex-direction: column; gap: 7px; }
    .customer-auth__panel, .admin-auth__panel { padding: 42px 20px; }
    .admin-login-card { padding: 25px 19px; }
    .admin-auth__back { top: 20px; right: 20px; }
    .admin-auth__copyright { right: 20px; bottom: 18px; }
}

/* Campaign products page */
.campaign-page{--campaign-gold:#D0920E;--campaign-ink:#111413;background:#f7f7f4;color:var(--campaign-ink)}.campaign-shell{width:min(1240px,calc(100% - 32px));margin-inline:auto}
.campaign-hero{padding:30px 0 80px;overflow:hidden;background:radial-gradient(circle at 82% 25%,rgba(208,146,14,.18),transparent 27%),#111413;color:#fff}.campaign-breadcrumb{display:flex;align-items:center;gap:10px;margin-bottom:58px;color:#929795;font-size:12px}.campaign-breadcrumb a{color:#c3c7c5}.campaign-breadcrumb strong{color:#fff}.campaign-hero__grid{display:grid;grid-template-columns:minmax(0,1fr) 310px;align-items:center;gap:90px}.campaign-hero__copy>span,.campaign-products__header>div>span{color:var(--campaign-gold);font-size:10px;font-weight:800;letter-spacing:1.8px}.campaign-hero__copy h1{margin:12px 0 22px;font:clamp(48px,6vw,80px)/.98 Oswald,sans-serif}.campaign-hero__copy h1 em{color:var(--campaign-gold);font-style:normal}.campaign-hero__copy p{max-width:600px;margin:0;color:#b8bdbb;font-size:15px;line-height:1.8}.campaign-hero__copy>a{display:inline-flex;align-items:center;gap:35px;margin-top:30px;padding:15px 18px;border-radius:6px;background:var(--campaign-gold);color:#fff;font-size:11px;font-weight:800}
.campaign-hero__badge{display:flex;align-items:center;flex-direction:column;padding:30px 25px;border:1px solid #3b3e3d;border-radius:16px;background:rgba(255,255,255,.055);text-align:center;box-shadow:0 25px 60px rgba(0,0,0,.23)}.campaign-hero__badge small{color:#a6aba8;font-size:9px;font-weight:800;letter-spacing:1.6px}.campaign-hero__badge>strong{margin:8px 0 0;color:var(--campaign-gold);font:83px/.95 Oswald,sans-serif}.campaign-hero__badge>span{font-size:11px;font-weight:800;letter-spacing:1.3px}.campaign-hero__badge p{margin:22px 0 0;padding-top:18px;border-top:1px solid #343837;color:#adb2af;font-size:11px}.campaign-hero__badge p b{color:#fff}
.campaign-products{min-height:540px;padding:65px 0 80px;background:#fff}.campaign-products__header{display:flex;align-items:flex-end;justify-content:space-between;gap:30px;margin-bottom:30px}.campaign-products__header h2{margin:7px 0 4px;font:34px Oswald,sans-serif}.campaign-products__header p{margin:0;color:#878c89;font-size:11px}.campaign-products__header form{display:flex;align-items:center;gap:10px}.campaign-products__header label{color:#777c79;font-size:10px;font-weight:700}.campaign-products__header select{height:40px;padding:0 35px 0 12px;border:1px solid #dedfda;border-radius:6px;background:#fff;color:#333;font-size:11px;outline:0}
.campaign-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:17px}.campaign-card{overflow:hidden;border:1px solid #e0e2dd;border-radius:11px;background:#fff;transition:transform .2s,box-shadow .2s}.campaign-card:hover{transform:translateY(-4px);box-shadow:0 15px 32px rgba(17,20,19,.1)}.campaign-card__image{height:220px;position:relative;display:flex;align-items:center;justify-content:center;padding:15px;background:#f8f8f5}.campaign-card__image>span{position:absolute;left:11px;top:11px;z-index:2;padding:7px 9px;border-radius:5px;background:#d62929;color:#fff;font-size:11px;font-weight:800}.campaign-card__image>b{position:absolute;right:11px;top:11px;z-index:2;padding:6px 8px;border-radius:5px;background:var(--campaign-gold);color:#fff;font-size:9px}.campaign-card__image img{width:100%;height:100%;object-fit:contain}.campaign-card__body{min-height:195px;display:flex;flex-direction:column;padding:15px}.campaign-card__body>small{color:var(--campaign-gold);font-size:9px;font-weight:800;text-transform:uppercase}.campaign-card h3{min-height:38px;margin:6px 0 7px;color:#151817;font-size:14px;line-height:1.35}.campaign-card__saving{align-self:flex-start;margin-top:10px;padding:5px 7px;border-radius:4px;background:#edf8ef;color:#27813f;font-size:9px;font-weight:700}.campaign-card__bottom{display:flex;align-items:flex-end;justify-content:space-between;margin-top:auto;padding-top:12px}.campaign-card__bottom del,.campaign-card__bottom strong{display:block}.campaign-card__bottom del{margin-bottom:2px;color:#999e9b;font-size:10px}.campaign-card__bottom strong{font-size:18px}.campaign-card .add-cart{width:37px;height:37px;border-radius:6px}
.campaign-empty{padding:75px 25px;border:1px dashed #d5d7d2;border-radius:12px;text-align:center}.campaign-empty>span{display:grid;place-items:center;width:62px;height:62px;margin:0 auto 18px;border:1px solid rgba(208,146,14,.45);border-radius:50%;color:var(--campaign-gold);font:27px Oswald,sans-serif}.campaign-empty h2{margin:0 0 9px;font:27px Oswald,sans-serif}.campaign-empty p{margin:0;color:#777d79;font-size:12px}.campaign-empty a{display:inline-flex;gap:30px;margin-top:22px;padding:13px 16px;border-radius:6px;background:var(--campaign-gold);color:#fff;font-size:10px;font-weight:800}.campaign-pagination{display:flex;justify-content:center;gap:7px;margin-top:35px}.campaign-pagination a{display:grid;place-items:center;width:36px;height:36px;border:1px solid #dddeda;border-radius:6px;color:#555;font-size:11px}.campaign-pagination a.is-active{border-color:var(--campaign-gold);background:var(--campaign-gold);color:#fff}
.campaign-assurance{padding:0 0 75px;background:#fff}.campaign-assurance>.campaign-shell{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid #e0e1dc;border-radius:11px;background:#f8f8f5}.campaign-assurance article{display:flex;align-items:center;gap:15px;padding:24px;border-right:1px solid #e1e2dd}.campaign-assurance article:last-child{border:0}.campaign-assurance article>span{display:grid;place-items:center;width:39px;height:39px;border-radius:50%;background:#fff;color:var(--campaign-gold);font-size:17px}.campaign-assurance b,.campaign-assurance small{display:block}.campaign-assurance b{margin-bottom:4px;font-size:12px}.campaign-assurance small{color:#848986;font-size:9px}
@media(max-width:980px){.campaign-grid{grid-template-columns:repeat(3,1fr)}.campaign-hero__grid{gap:45px}}
@media(max-width:760px){.campaign-hero__grid{grid-template-columns:1fr}.campaign-hero__badge{max-width:300px}.campaign-grid{grid-template-columns:1fr 1fr}.campaign-assurance>.campaign-shell{grid-template-columns:1fr}.campaign-assurance article{border-right:0;border-bottom:1px solid #e1e2dd}.campaign-products__header{align-items:flex-start;flex-direction:column}}
@media(max-width:480px){.campaign-hero{padding-bottom:55px}.campaign-breadcrumb{margin-bottom:42px}.campaign-hero__copy h1{font-size:47px}.campaign-grid{gap:9px}.campaign-card__image{height:155px;padding:9px}.campaign-card__body{min-height:190px;padding:11px}.campaign-card h3{font-size:12px}.campaign-card__bottom strong{font-size:14px}}

/* Shipping & delivery public page */
.shipping-page{--shipping-gold:#D0920E;--shipping-ink:#121514;background:#f7f7f4;color:var(--shipping-ink)}.shipping-shell{width:min(1240px,calc(100% - 32px));margin-inline:auto}
.shipping-hero{padding:30px 0 82px;overflow:hidden;background:radial-gradient(circle at 82% 30%,rgba(208,146,14,.15),transparent 29%),#111413;color:#fff}.shipping-breadcrumb{display:flex;align-items:center;gap:10px;margin-bottom:65px;color:#969b98;font-size:12px}.shipping-breadcrumb a{color:#c8ccca}.shipping-breadcrumb strong{color:#fff}
.shipping-hero__grid{display:grid;grid-template-columns:minmax(0,1fr) 440px;align-items:center;gap:70px}.shipping-hero__copy>span,.shipping-heading span,.shipping-details__title>span,.shipping-contact__card>div:first-child>span{color:var(--shipping-gold);font-size:10px;font-weight:800;letter-spacing:1.8px}.shipping-hero__copy h1{margin:12px 0 22px;font:clamp(50px,6vw,82px)/.98 Oswald,sans-serif}.shipping-hero__copy h1 em{color:var(--shipping-gold);font-style:normal}.shipping-hero__copy p{max-width:610px;margin:0;color:#b8bdbb;font-size:15px;line-height:1.8}.shipping-hero__copy>a{display:inline-flex;gap:35px;margin-top:30px;padding:15px 18px;border-radius:6px;background:var(--shipping-gold);color:#fff;font-size:11px;font-weight:800}
.shipping-visual{height:250px;position:relative;border:1px solid #373b39;border-radius:18px;background:linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025));box-shadow:0 25px 60px rgba(0,0,0,.22)}.shipping-visual__route{position:absolute;left:70px;right:70px;top:128px;border-top:2px dashed rgba(208,146,14,.65)}.shipping-visual>svg{width:77px;position:absolute;left:50%;top:88px;z-index:2;transform:translateX(-50%);fill:#171a19;stroke:var(--shipping-gold);stroke-width:1.3}.shipping-visual__pin{position:absolute;top:108px;z-index:2;text-align:center}.shipping-visual__pin--start{left:38px}.shipping-visual__pin--end{right:38px}.shipping-visual__pin i{display:block;width:16px;height:16px;margin:0 auto 15px;border:4px solid #242826;border-radius:50%;background:var(--shipping-gold);box-shadow:0 0 0 1px var(--shipping-gold)}.shipping-visual__pin small{color:#c0c5c2;font-size:9px;font-weight:700}
.shipping-stats{padding-top:32px}.shipping-stats__grid{display:grid;grid-template-columns:repeat(3,1fr);padding:0 24px;box-sizing:border-box;border:1px solid #dfdfda;border-radius:12px;background:#fff;box-shadow:0 14px 38px rgba(17,20,19,.09)}.shipping-stats article{display:flex;align-items:center;gap:18px;padding:24px;border-right:1px solid #e6e7e3}.shipping-stats article:last-child{border:0}.shipping-stats article>b{color:#d7d9d5;font:25px Oswald,sans-serif}.shipping-stats span,.shipping-stats strong{display:block}.shipping-stats span{margin-bottom:5px;color:#8c918e;font-size:9px;font-weight:800;letter-spacing:1px}.shipping-stats strong{font-size:15px}
.shipping-process{padding:75px 0}.shipping-heading{text-align:center}.shipping-heading h2{margin:8px 0 38px;font:34px Oswald,sans-serif}.shipping-steps{display:grid;grid-template-columns:repeat(4,1fr);position:relative}.shipping-steps:before{content:"";position:absolute;left:12.5%;right:12.5%;top:24px;border-top:1px dashed #c8cac6}.shipping-steps article{position:relative;z-index:1;padding:0 23px;text-align:center}.shipping-steps article>span{display:grid;place-items:center;width:48px;height:48px;margin:0 auto 18px;border:1px solid #d9dad5;border-radius:50%;background:#fff;color:var(--shipping-gold);font:17px Oswald,sans-serif}.shipping-steps article:nth-child(3)>span{border-color:var(--shipping-gold);background:var(--shipping-gold);color:#fff}.shipping-steps h3{margin:0 0 8px;font-size:14px}.shipping-steps p{margin:0;color:#777d79;font-size:11px;line-height:1.65}
.shipping-details{padding:75px 0;background:#fff}.shipping-details__grid{display:grid;grid-template-columns:300px minmax(0,1fr);align-items:start;gap:65px}.shipping-details__title{position:sticky;top:25px}.shipping-details__title h2{margin:9px 0 18px;font:38px/1.14 Oswald,sans-serif}.shipping-details__title p{color:#747a77;font-size:13px;line-height:1.8}.shipping-cards{display:grid;grid-template-columns:1fr 1fr;gap:14px}.shipping-card{padding:26px;border:1px solid #e0e1dd;border-radius:10px;background:#fafaf8}.shipping-card>b{color:var(--shipping-gold);font:17px Oswald,sans-serif}.shipping-card h3{margin:16px 0 10px;font:21px Oswald,sans-serif}.shipping-card p{margin:0;color:#666c69;font-size:12px;line-height:1.75;white-space:pre-line}.shipping-card--gold{border-color:rgba(208,146,14,.4);background:#fffaf0}.shipping-card--wide{grid-column:1/-1;display:grid;grid-template-columns:45px 220px 1fr;align-items:center;gap:18px;background:#171a19;color:#fff}.shipping-card--wide h3{margin:0}.shipping-card--wide p{color:#b6bbb8}
.shipping-contact{padding:65px 0 80px}.shipping-contact__card{display:flex;align-items:center;justify-content:space-between;gap:35px;padding:39px 45px;box-sizing:border-box;border-radius:14px;background:linear-gradient(110deg,#171a19,#222620);color:#fff}.shipping-contact__card h2{margin:8px 0 10px;font:31px Oswald,sans-serif}.shipping-contact__card p{max-width:650px;margin:0;color:#afb4b1;font-size:12px;line-height:1.7}.shipping-contact__card>div:last-child{display:flex;align-items:flex-end;flex-direction:column;gap:8px}.shipping-contact__card a{display:flex;gap:42px;padding:14px 18px;border-radius:6px;background:var(--shipping-gold);color:#fff;font-size:11px;font-weight:800}.shipping-contact__card small{color:#959a97;font-size:10px}
@media(max-width:920px){.shipping-hero__grid,.shipping-details__grid{grid-template-columns:1fr}.shipping-visual{max-width:500px}.shipping-stats__grid,.shipping-steps{grid-template-columns:1fr 1fr}.shipping-stats article:nth-child(2){border-right:0}.shipping-stats article:nth-child(-n+2){border-bottom:1px solid #e6e7e3}.shipping-stats article:last-child{grid-column:1/-1}.shipping-steps:before{display:none}.shipping-details__title{position:static}.shipping-contact__card{align-items:flex-start;flex-direction:column}.shipping-contact__card>div:last-child{align-items:flex-start}}
@media(max-width:600px){.shipping-hero{padding-bottom:58px}.shipping-breadcrumb{margin-bottom:45px}.shipping-hero__grid{gap:40px}.shipping-visual{height:210px}.shipping-visual__route{left:45px;right:45px;top:108px}.shipping-visual>svg{top:70px}.shipping-visual__pin{top:88px}.shipping-stats__grid,.shipping-steps,.shipping-cards{grid-template-columns:1fr}.shipping-stats article{border-right:0;border-bottom:1px solid #e6e7e3}.shipping-stats article:last-child{grid-column:auto}.shipping-steps article{padding:14px 18px 25px}.shipping-card--wide{grid-column:auto;display:block}.shipping-card--wide h3{margin:15px 0 10px}.shipping-contact__card{padding:30px 22px}}

/* Return & exchange public page */
.return-page{--return-gold:#D0920E;--return-ink:#121514;background:#f7f7f4;color:var(--return-ink)}
.return-shell{width:min(1240px,calc(100% - 32px));margin-inline:auto}
.return-hero{padding:30px 0 76px;background:radial-gradient(circle at 82% 25%,rgba(208,146,14,.16),transparent 27%),#111413;color:#fff}
.return-breadcrumb{display:flex;align-items:center;gap:10px;margin-bottom:70px;color:#969b98;font-size:12px}.return-breadcrumb a{color:#c8ccca}.return-breadcrumb strong{color:#fff}
.return-hero__grid{display:grid;grid-template-columns:minmax(0,1fr) 300px;align-items:center;gap:100px}
.return-eyebrow,.return-section-heading span,.return-details__intro>span,.return-contact__card>div>span{color:var(--return-gold);font-size:10px;font-weight:800;letter-spacing:1.8px}
.return-hero__copy h1{max-width:750px;margin:12px 0 22px;font:clamp(48px,6.3vw,84px)/.98 Oswald,sans-serif;letter-spacing:-1px}.return-hero__copy h1 em{display:block;color:var(--return-gold);font-style:normal}
.return-hero__copy p{max-width:600px;margin:0;color:#b8bdbb;font-size:15px;line-height:1.8}.return-hero__copy>a{display:inline-flex;align-items:center;gap:36px;margin-top:30px;padding:15px 18px;border-radius:6px;background:var(--return-gold);color:#fff;font-size:11px;font-weight:800}
.return-guarantee{display:flex;align-items:center;flex-direction:column;padding:34px 24px;border:1px solid #373b39;border-radius:16px;background:rgba(255,255,255,.055);box-shadow:0 24px 60px rgba(0,0,0,.24)}.return-guarantee svg{width:32px;fill:none;stroke:var(--return-gold);stroke-width:1.6}.return-guarantee strong{margin-top:8px;color:var(--return-gold);font:82px/.95 Oswald,sans-serif}.return-guarantee span{margin:4px 0 12px;color:#a5aaa8;font-size:9px;font-weight:800;letter-spacing:2px}.return-guarantee b{font-size:16px}
.return-process{padding:65px 0 75px}.return-section-heading{text-align:center}.return-section-heading h2{margin:8px 0 34px;font:34px Oswald,sans-serif}
.return-steps{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid #dfdfda;border-radius:12px;background:#fff;box-shadow:0 12px 35px rgba(17,20,19,.06)}.return-step{display:flex;gap:18px;padding:28px 24px;border-right:1px solid #e7e7e2}.return-step:last-child{border:0}.return-step>b{color:var(--return-gold);font:18px Oswald,sans-serif}.return-step h3{margin:1px 0 8px;font-size:14px}.return-step p{margin:0;color:#777d79;font-size:11px;line-height:1.65}
.return-details{padding:75px 0;background:#fff}.return-details__grid{display:grid;grid-template-columns:330px minmax(0,1fr);align-items:start;gap:80px}.return-details__intro{position:sticky;top:25px}.return-details__intro h2{margin:9px 0 20px;font:39px/1.12 Oswald,sans-serif}.return-details__intro p{color:#747a77;font-size:13px;line-height:1.8}.return-info-list{min-width:0}
.return-info{display:grid;grid-template-columns:46px 1fr;gap:20px;padding:25px 0;border-bottom:1px solid #e6e7e3}.return-info:first-child{padding-top:0}.return-info>span{display:grid;place-items:center;width:40px;height:40px;border-radius:50%;background:#f2f2ee;color:var(--return-gold);font:16px Oswald,sans-serif}.return-info h3{margin:0 0 10px;font:22px Oswald,sans-serif}.return-info p{margin:0;color:#656b68;font-size:13px;line-height:1.8;white-space:pre-line}
.return-info--featured{padding:24px;border:1px solid rgba(208,146,14,.35);border-radius:10px;background:#fffaf0}.return-info--warning{margin-top:20px;padding:24px;border:0;border-radius:10px;background:#171a19;color:#fff}.return-info--warning>span{background:var(--return-gold);color:#fff}.return-info--warning p{color:#b6bbb8}
.return-contact{padding:65px 0 80px}.return-contact__card{display:flex;align-items:center;justify-content:space-between;gap:40px;padding:40px 46px;box-sizing:border-box;border-radius:14px;background:#171a19;color:#fff}.return-contact__card h2{margin:8px 0 10px;font:31px Oswald,sans-serif}.return-contact__card p{max-width:620px;margin:0;color:#aeb3b0;font-size:12px;line-height:1.7}.return-contact__actions{display:flex;align-items:flex-end;flex-direction:column;gap:9px}.return-contact__actions a{display:flex;align-items:center;gap:45px;padding:14px 18px;border-radius:6px;background:var(--return-gold);color:#fff;font-size:11px;font-weight:800}.return-contact__actions small{color:#929894;font-size:10px}
@media(max-width:900px){.return-hero__grid,.return-details__grid{grid-template-columns:1fr}.return-hero__grid{gap:40px}.return-guarantee{max-width:300px}.return-steps{grid-template-columns:1fr 1fr}.return-step:nth-child(2){border-right:0}.return-step:nth-child(-n+2){border-bottom:1px solid #e7e7e2}.return-details__grid{gap:35px}.return-details__intro{position:static}.return-contact__card{align-items:flex-start;flex-direction:column}.return-contact__actions{align-items:flex-start}}
@media(max-width:560px){.return-hero{padding-bottom:55px}.return-breadcrumb{margin-bottom:45px}.return-hero__copy h1{font-size:48px}.return-steps{grid-template-columns:1fr}.return-step{border-right:0;border-bottom:1px solid #e7e7e2}.return-step:nth-child(3){border-bottom:1px solid #e7e7e2}.return-info{grid-template-columns:38px 1fr;gap:14px}.return-info--featured,.return-info--warning{padding:18px}.return-contact__card{padding:30px 22px}}

/* FAQ public page */
.faq-page { --faq-gold:#D0920E; --faq-ink:#111413; background:#f7f7f4; color:var(--faq-ink); }
.faq-shell { width:min(1240px,calc(100% - 32px)); margin-inline:auto; }
.faq-hero { padding:30px 0 76px; overflow:hidden; background:radial-gradient(circle at 83% 16%,rgba(208,146,14,.13),transparent 28%),#111413; color:#fff; }
.faq-breadcrumb { display:flex; gap:10px; align-items:center; margin-bottom:58px; color:#929795; font-size:12px; }
.faq-breadcrumb a { color:#c3c7c5; }.faq-breadcrumb strong { color:#fff; font-weight:600; }
.faq-hero__grid { display:grid; grid-template-columns:1.05fr .95fr; align-items:end; gap:90px; }
.faq-eyebrow,.faq-list__heading span { color:var(--faq-gold); font-size:11px; font-weight:800; letter-spacing:1.8px; }
.faq-hero__copy h1 { margin:13px 0 22px; font-family:Oswald,sans-serif; font-size:clamp(42px,5.2vw,76px); line-height:.98; letter-spacing:-1px; }
.faq-hero__copy h1 em { color:var(--faq-gold); font-style:normal; }.faq-hero__copy p { max-width:580px; margin:0; color:#b6bbba; font-size:15px; line-height:1.8; }
.faq-search-card { padding:28px; border:1px solid #373a39; border-radius:14px; background:rgba(255,255,255,.055); box-shadow:0 24px 60px rgba(0,0,0,.22); }
.faq-search-card>label { display:block; margin-bottom:10px; font-size:13px; font-weight:700; }.faq-search-card>small { display:block; margin-top:12px; color:#9da3a0; font-size:11px; }
.faq-search-box { display:flex; align-items:center; height:58px; padding:0 18px; border:1px solid #4a4e4c; border-radius:8px; background:#fff; color:#111; }
.faq-search-box svg { flex:0 0 auto; stroke:var(--faq-gold); }.faq-search-box input { flex:1; height:100%; min-width:0; padding:0 14px; border:0; outline:0; color:#181b1a; font-size:14px; }
.faq-search-box button { display:none; border:0; background:transparent; color:#777; font-size:24px; cursor:pointer; }.faq-search-box button.visible { display:block; }
.faq-content { padding-top:32px; padding-bottom:90px; }.faq-category-list { display:flex; gap:8px; padding:20px; margin:0 0 42px; overflow-x:auto; border:1px solid #e0e0da; border-radius:12px; background:#fff; box-shadow:0 12px 35px rgba(17,20,19,.08); }
.faq-category-list button { flex:0 0 auto; display:flex; align-items:center; gap:10px; min-height:42px; padding:0 16px; border:1px solid #e6e6e1; border-radius:7px; background:#fff; color:#555b58; font-size:12px; font-weight:700; cursor:pointer; }
.faq-category-list button span { display:grid; place-items:center; min-width:20px; height:20px; padding:0 5px; border-radius:10px; background:#f1f1ee; font-size:10px; }.faq-category-list button.active { border-color:var(--faq-gold); background:var(--faq-gold); color:#fff; }.faq-category-list button.active span { background:rgba(255,255,255,.22); }
.faq-layout { display:grid; grid-template-columns:minmax(0,1fr) 310px; align-items:start; gap:42px; }.faq-list__heading { display:flex; justify-content:space-between; align-items:end; gap:20px; margin-bottom:22px; }
.faq-list__heading h2 { margin:6px 0 0; font-family:Oswald,sans-serif; font-size:31px; }.faq-list__heading p { margin:0 0 4px; color:#8a8f8c; font-size:11px; }
.faq-item { margin-bottom:10px; border:1px solid #dedfdb; border-radius:10px; background:#fff; overflow:hidden; transition:border-color .2s,box-shadow .2s; }.faq-item:hover,.faq-item.is-open { border-color:rgba(208,146,14,.55); box-shadow:0 8px 24px rgba(25,28,27,.06); }
.faq-question { width:100%; display:grid; grid-template-columns:46px 1fr 32px; align-items:center; gap:14px; padding:20px 22px; border:0; background:transparent; text-align:left; cursor:pointer; }
.faq-item__number { color:#b0b4b2; font-family:Oswald,sans-serif; font-size:17px; }.faq-question small { display:block; margin-bottom:5px; color:var(--faq-gold); font-size:9px; font-weight:800; letter-spacing:.7px; text-transform:uppercase; }.faq-question strong { display:block; color:#202322; font-size:14px; }
.faq-question i { width:26px; height:26px; position:relative; border-radius:50%; background:#f4f4f1; }.faq-question i::before,.faq-question i::after { content:""; position:absolute; left:8px; top:12px; width:10px; height:1.5px; background:#555; transition:transform .2s; }.faq-question i::after { transform:rotate(90deg); }.faq-item.is-open .faq-question i { background:var(--faq-gold); }.faq-item.is-open .faq-question i::before,.faq-item.is-open .faq-question i::after { background:#fff; }.faq-item.is-open .faq-question i::after { transform:rotate(0); }
.faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .25s ease; }.faq-answer>div { overflow:hidden; }.faq-answer p { margin:0 68px 0 82px; padding:0 0 24px; color:#626865; font-size:13px; line-height:1.8; white-space:pre-line; }.faq-item.is-open .faq-answer { grid-template-rows:1fr; }.faq-item[hidden] { display:none; }
.faq-empty { padding:50px; border:1px dashed #cccfc9; border-radius:10px; text-align:center; }.faq-empty strong { font-size:17px; }.faq-empty p { color:#787e7a; }
.faq-support-card { position:sticky; top:24px; padding:32px 28px; border-radius:12px; background:#171a19; color:#fff; box-shadow:0 20px 45px rgba(10,12,11,.18); }.faq-support-icon { display:grid; place-items:center; width:44px; height:44px; margin-bottom:28px; border:1px solid rgba(208,146,14,.6); border-radius:50%; color:var(--faq-gold); font:700 21px Oswald,sans-serif; }.faq-support-card>small { color:var(--faq-gold); font-size:9px; font-weight:800; letter-spacing:1px; }.faq-support-card h2 { margin:10px 0 14px; font:30px/1.1 Oswald,sans-serif; }.faq-support-card p { color:#aeb3b0; font-size:12px; line-height:1.75; }.faq-support-card>a { display:flex; justify-content:space-between; align-items:center; margin:24px 0; padding:14px 16px; border-radius:6px; background:var(--faq-gold); color:#fff; font-size:11px; font-weight:800; }.faq-support-card>div { display:flex; gap:13px; padding-top:18px; border-top:1px solid #323635; color:#929894; font-size:9px; text-transform:uppercase; }

/* FAQ admin */
.faq-admin-page { padding:42px; color:#171a19; }.faq-admin-header { display:flex; justify-content:space-between; align-items:end; gap:24px; margin-bottom:28px; }.faq-admin-header span,.faq-admin-card-title>span,.faq-admin-list__head span { color:#D0920E; font-size:10px; font-weight:800; letter-spacing:1.2px; }.faq-admin-header h1 { margin:7px 0 5px; font:38px Oswald,sans-serif; }.faq-admin-header p { margin:0; color:#747a77; font-size:13px; }.faq-admin-header>a { padding:11px 15px; border:1px solid #d8dad6; border-radius:6px; color:#303432; font-size:11px; font-weight:700; }
.faq-admin-grid { display:grid; grid-template-columns:390px minmax(0,1fr); align-items:start; gap:24px; }.faq-admin-editor,.faq-admin-list { border:1px solid #dfe1dd; border-radius:10px; background:#fff; box-shadow:0 9px 30px rgba(18,21,20,.05); }.faq-admin-editor { position:sticky; top:25px; padding:25px; }.faq-admin-card-title { padding-bottom:17px; margin-bottom:20px; border-bottom:1px solid #eceeea; }.faq-admin-card-title h2,.faq-admin-list__head h2 { margin:5px 0 0; font:25px Oswald,sans-serif; }
.faq-admin-editor label>span:first-child { display:block; margin:0 0 7px; color:#4e5551; font-size:11px; font-weight:700; }.faq-admin-editor input[type=text],.faq-admin-editor input[list],.faq-admin-editor input[type=number],.faq-admin-editor textarea { width:100%; box-sizing:border-box; margin-bottom:15px; padding:11px 12px; border:1px solid #d8dbd6; border-radius:6px; outline:0; color:#222; font:12px inherit; }.faq-admin-editor textarea { resize:vertical; line-height:1.55; }.faq-admin-editor input:focus,.faq-admin-editor textarea:focus { border-color:#D0920E; box-shadow:0 0 0 3px rgba(208,146,14,.1); }.faq-admin-row { display:grid; grid-template-columns:1fr 1fr; gap:15px; }.faq-admin-switch { display:flex; align-items:center; gap:10px; padding:8px 0 14px; }.faq-admin-switch input { accent-color:#D0920E; width:18px; height:18px; }.faq-admin-switch span b,.faq-admin-switch span small { display:block; }.faq-admin-switch span b { font-size:11px; }.faq-admin-switch span small { color:#969b98; font-size:9px; }.faq-admin-actions { display:flex; align-items:center; gap:14px; margin-top:4px; }.faq-admin-actions button { flex:1; display:flex; justify-content:space-between; padding:13px 15px; border:0; border-radius:6px; background:#D0920E; color:#fff; font-size:11px; font-weight:800; cursor:pointer; }.faq-admin-actions a { color:#777; font-size:11px; }
.faq-admin-list { padding:25px; }.faq-admin-list__head { display:flex; justify-content:space-between; align-items:center; margin-bottom:19px; }.faq-admin-list__head>b { padding:6px 10px; border-radius:13px; background:#edf8ef; color:#27813f; font-size:9px; }.faq-admin-item { display:grid; grid-template-columns:48px 1fr auto; gap:16px; align-items:start; padding:18px 0; border-top:1px solid #eceeea; }.faq-admin-item.is-passive { opacity:.58; }.faq-admin-order { display:grid; place-items:center; width:42px; height:42px; border-radius:7px; background:#f4f4f1; color:#D0920E; font:18px Oswald,sans-serif; }.faq-admin-item__copy>span { color:#D0920E; font-size:9px; font-weight:800; text-transform:uppercase; }.faq-admin-item__copy h3 { margin:5px 0 7px; font-size:13px; }.faq-admin-item__copy p { max-width:680px; margin:0; overflow:hidden; color:#777d79; font-size:11px; line-height:1.55; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; }.faq-admin-item__copy small { display:inline-block; margin-top:8px; color:#27813f; font-size:9px; }.faq-admin-item__actions { display:flex; gap:5px; }.faq-admin-item__actions a,.faq-admin-item__actions button { display:grid; place-items:center; width:31px; height:31px; border:1px solid #dedfdb; border-radius:5px; background:#fff; color:#555; cursor:pointer; }.faq-admin-item__actions button { color:#b8392c; font-size:18px; }.faq-admin-empty { padding:50px; text-align:center; color:#8a908c; }
@media(max-width:980px){.faq-hero__grid,.faq-layout,.faq-admin-grid{grid-template-columns:1fr}.faq-hero__grid{gap:36px}.faq-support-card,.faq-admin-editor{position:static}.faq-admin-page{padding:25px}.faq-admin-header{align-items:start}}
@media(max-width:620px){.faq-hero{padding-bottom:55px}.faq-breadcrumb{margin-bottom:38px}.faq-search-card{padding:18px}.faq-content{padding-top:22px}.faq-category-list{margin-top:0}.faq-list__heading{align-items:start;flex-direction:column}.faq-question{grid-template-columns:34px 1fr 28px;padding:17px 14px}.faq-answer p{margin:0 45px 0 62px}.faq-admin-page{padding:18px}.faq-admin-header{flex-direction:column}.faq-admin-row{grid-template-columns:1fr}.faq-admin-item{grid-template-columns:42px 1fr}.faq-admin-item__actions{grid-column:2}.faq-admin-editor,.faq-admin-list{padding:18px}}

/* Store settings admin */
.store-settings-page { max-width: 1180px; margin: 0 auto; }
.store-settings-header { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.store-settings-header > div > span { color: #D0920E; font-size: 11px; font-weight: 800; letter-spacing: .9px; }
.store-settings-header h1 { margin: 7px 0 5px; color: #101828; font-size: 28px; }
.store-settings-header p { margin: 0; color: #667085; font-size: 13.5px; }
.store-settings-save { height: 44px; padding: 0 20px; border: 0; border-radius: 8px; background: #D0920E; color: #fff; font-weight: 700; cursor: pointer; box-shadow: 0 5px 14px rgba(208,146,14,.22); }
.store-settings-save:hover { background: #B77B0C; }
.store-settings-save b { margin-left: 10px; }
.store-settings-form { display: grid; gap: 22px; }
.store-settings-card { padding: 25px; border: 1px solid #e5e7eb; border-radius: 12px; background: #fff; box-shadow: 0 3px 14px rgba(16,24,40,.035); }
.store-settings-card__heading { display: flex; align-items: center; gap: 14px; margin-bottom: 23px; padding-bottom: 18px; border-bottom: 1px solid #eef0f2; }
.store-settings-card__heading > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 8px; background: #fff8e7; color: #D0920E; font-size: 12px; font-weight: 800; }
.store-settings-card__heading h2 { margin: 0 0 4px; color: #101828; font-size: 18px; }
.store-settings-card__heading p { margin: 0; color: #667085; font-size: 12.5px; }
.store-settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.store-settings-field { display: flex; flex-direction: column; gap: 7px; color: #344054; font-size: 13px; font-weight: 700; }
.store-settings-field--wide { grid-column: 1 / -1; }
.store-settings-field input { width: 100%; height: 44px; padding: 0 13px; border: 1px solid #d0d5dd; border-radius: 8px; outline: 0; color: #101828; font-size: 13.5px; font-weight: 500; }
.store-settings-field input:focus { border-color: #D0920E; box-shadow: 0 0 0 3px rgba(208,146,14,.12); }
.store-settings-field small { color: #98a2b3; font-size: 11.5px; font-weight: 400; }

.cart-shipping-progress { margin: 8px 0 2px; padding: 12px; border-radius: 8px; background: #fff9e9; }
.cart-shipping-progress p { margin: 0 0 9px; color: #6f530c; font-size: 12px; line-height: 1.45; }
.cart-shipping-progress > div { height: 6px; overflow: hidden; border-radius: 999px; background: #eee5ca; }
.cart-shipping-progress > div > span { display: block; height: 100%; border-radius: inherit; background: #D0920E; }

@media (max-width: 720px) {
    .store-settings-header { align-items: flex-start; flex-direction: column; }
    .store-settings-save { width: 100%; }
    .store-settings-grid { grid-template-columns: 1fr; }
    .store-settings-field--wide { grid-column: auto; }
}

/* Professional admin application */
.admin-body { margin: 0; background: #f8fafc; color: #0f172a; font-size: 14px; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; }
.admin-app { min-height: 100vh; display: grid; grid-template-columns: 260px 1fr; transition: grid-template-columns .2s ease; }
.admin-app.is-sidebar-collapsed { grid-template-columns: 78px 1fr; }

.admin-sidebar {
    position: fixed;
    z-index: 30;
    inset: 0 auto 0 0;
    width: 260px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-right: 1px solid #141b22;
    background: #090d11;
    color: #f1f5f9;
    scrollbar-width: thin;
    scrollbar-color: #17202a transparent;
    transition: width .2s ease, transform .25s ease;
}

.admin-sidebar::-webkit-scrollbar {
    width: 4px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: #17202a;
    border-radius: 4px;
}

.admin-sidebar__header {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid #141b22;
    background: #070a0e;
}

.admin-sidebar__brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.admin-sidebar__brand .brand__main {
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.admin-sidebar__brand .brand-logo-frame--admin {
    width: 170px;
    height: 41px;
}

.admin-sidebar__brand .brand__highlight {
    color: #D0920E;
    font-size: 26px;
    font-weight: 900;
}

.admin-sidebar__brand small {
    margin-top: 5px;
    color: #64748b;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 2px;
}

.admin-sidebar__collapse-btn {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #0f141a;
    border: 1px solid #1c2633;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .15s ease;
}

.admin-sidebar__collapse-btn:hover {
    background: #17202b;
    color: #ffffff;
    border-color: #334155;
}

.admin-sidebar__nav {
    flex: 1;
    padding: 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.admin-nav-category {
    display: block;
    margin: 16px 8px 6px;
    color: #64748b;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.admin-nav-category:first-child {
    margin-top: 0;
}

.admin-nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 9px 13px;
    border-radius: 8px;
    background: #0d1217;
    border: 1px solid #141b22;
    color: #cbd5e1;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s ease;
}

.admin-nav-link:hover {
    background: #141b22;
    border-color: #1e293b;
    color: #ffffff;
}

.admin-nav-link.active {
    background: #161f28;
    border-color: #243142;
    color: #ffffff;
    font-weight: 700;
}

.admin-nav-link.active::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 6px;
    bottom: 6px;
    width: 3.5px;
    border-radius: 0 4px 4px 0;
    background: #D0920E;
    box-shadow: 0 0 10px rgba(208, 146, 14, 0.5);
}

.admin-nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #D0920E;
}

.admin-nav-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-nav-arrow {
    color: #64748b;
    margin-left: auto;
    flex-shrink: 0;
    transition: color .15s ease;
}

.admin-nav-link:hover .admin-nav-arrow {
    color: #cbd5e1;
}

.admin-sidebar__footer-wrap {
    padding: 14px;
    border-top: 1px solid #141b22;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #070a0e;
}

.admin-sidebar__status-card {
    background: #0d1217;
    border: 1px solid #161e27;
    border-radius: 10px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.admin-sidebar__status-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-sidebar__status-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
}

.admin-sidebar__status-title strong {
    font-size: 12.5px;
    font-weight: 700;
    color: #f8fafc;
}

.admin-sidebar__status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
}

.admin-sidebar__status-info small {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
}

.admin-sidebar__status-shield {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #131a22;
    border: 1px solid #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.admin-sidebar__toggle-collapse {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px;
    transition: color .15s ease;
}

.admin-sidebar__toggle-collapse:hover {
    color: #cbd5e1;
}

/* Collapsed Sidebar Mode */
.admin-sidebar.is-collapsed {
    width: 78px;
}

.admin-sidebar.is-collapsed .admin-sidebar__header {
    justify-content: center;
    padding: 0 10px;
}

.admin-sidebar.is-collapsed .admin-sidebar__brand small,
.admin-sidebar.is-collapsed .admin-sidebar__brand .brand__main,
.admin-sidebar.is-collapsed .admin-sidebar__brand .brand-logo-frame,
.admin-sidebar.is-collapsed .admin-sidebar__collapse-btn,
.admin-sidebar.is-collapsed .admin-nav-category,
.admin-sidebar.is-collapsed .admin-nav-text,
.admin-sidebar.is-collapsed .admin-nav-arrow,
.admin-sidebar.is-collapsed .admin-sidebar__status-info,
.admin-sidebar.is-collapsed .admin-sidebar__toggle-collapse span {
    display: none;
}

.admin-sidebar.is-collapsed .admin-sidebar__brand::after {
    content: "SC";
    color: #D0920E;
    font-size: 24px;
    font-weight: 900;
}

.admin-sidebar.is-collapsed .admin-nav-link {
    justify-content: center;
    padding: 10px 0;
}

.admin-sidebar.is-collapsed .admin-sidebar__status-card {
    justify-content: center;
    padding: 8px;
}

.admin-workspace { min-width: 0; grid-column: 2; }
.admin-topbar { position: sticky; z-index: 20; top: 0; height: 72px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; border-bottom: 1px solid #dfe2df; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
.admin-menu-toggle { display: none; border: 0; background: transparent; font-size: 22px; }
.admin-topbar__context { display: flex; flex-direction: column; gap: 4px; }
.admin-topbar__context span { color: #1d211f; font-size: 12px; font-weight: 800; }
.admin-topbar__context small { color: #808682; font-size: 11px; }
.admin-topbar__actions { display: flex; align-items: center; gap: 17px; }
.admin-topbar__actions > a { width: 31px; height: 31px; display: grid; place-items: center; border: 1px solid #dfe2df; border-radius: 6px; color: #6f7471; }
.admin-profile { display: flex; align-items: center; gap: 9px; padding-left: 16px; border-left: 1px solid #e1e3e1; }
.admin-profile > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 7px; background: #111513; color: var(--gold); font-size: 11px; font-weight: 800; }
.admin-profile > div { display: flex; flex-direction: column; gap: 2px; }
.admin-profile strong { font-size: 12px; }
.admin-profile small { color: #888e8a; font-size: 10px; }
.admin-topbar__actions form button { height: 34px; padding: 0 13px; border: 1px solid #e0e2df; border-radius: 5px; background: #fff; color: #59605c; font-size: 12px; cursor: pointer; }
.admin-content { padding: 24px 32px 48px; min-height: calc(100vh - 72px); box-sizing: border-box; }
.admin-workspace .admin-page { min-height: 0; padding: 0; background: transparent; }
.admin-workspace .admin-page .shell { width: 100%; max-width: 1240px; }
.admin-workspace .admin-heading { padding: 4px 0 0; }
.admin-workspace .admin-heading h1 { font-size: 31px; }
.admin-workspace .admin-heading p { margin-bottom: 23px; font-size: 14px; }
.admin-workspace .banner-editor-card, .admin-workspace .banner-meta-card, .admin-workspace .about-admin-card, .admin-workspace .gallery-admin-form, .admin-workspace .gallery-admin-list { box-shadow: 0 5px 18px rgba(20,27,23,.045); }

.admin-dashboard { max-width: 1240px; margin: 0 auto; }
.admin-dashboard__heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 25px; }
.admin-dashboard__heading span, .admin-card-heading span { color: #b87b00; font-size: 11px; font-weight: 800; letter-spacing: .8px; }
.admin-dashboard__heading h1 { margin: 7px 0 5px; font-family: Oswald, sans-serif; font-size: 33px; }
.admin-dashboard__heading p { margin: 0; color: #707672; font-size: 14px; }
.admin-dashboard__heading > a { height: 40px; padding: 0 16px; display: inline-flex; align-items: center; gap: 10px; border-radius: 5px; background: #111513; color: #fff; font-size: 11px; font-weight: 800; }
.admin-dashboard__heading > a b { color: var(--gold); }
.admin-metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.admin-metric-grid article { position: relative; min-height: 142px; display: flex; flex-direction: column; padding: 19px; overflow: hidden; border: 1px solid #dfe2df; border-radius: 8px; background: #fff; box-shadow: 0 5px 18px rgba(20,27,23,.035); }
.admin-metric-grid article::after { content: ""; position: absolute; width: 70px; height: 70px; top: -30px; right: -30px; border-radius: 50%; background: rgba(255,180,0,.06); }
.admin-metric-icon { position: absolute; top: 17px; right: 17px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 7px; background: #fff8e8; color: #b77b00; font-size: 18px; }
.admin-metric-grid article > span { color: #747a76; font-size: 11px; font-weight: 800; letter-spacing: .6px; }
.admin-metric-grid article > strong { margin-top: 16px; font-family: Oswald, sans-serif; font-size: 28px; line-height: 1; }
.admin-metric-grid article > small { margin-top: auto; color: #858b87; font-size: 11px; }
.admin-dashboard-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 14px; margin-top: 14px; }
.admin-dashboard-card { border: 1px solid #dfe2df; border-radius: 8px; background: #fff; box-shadow: 0 5px 18px rgba(20,27,23,.035); }
.admin-card-heading { min-height: 66px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid #e7e9e7; }
.admin-card-heading h2 { margin: 4px 0 0; font-size: 18px; }
.admin-quick-actions > div:last-child { display: grid; grid-template-columns: 1fr 1fr; }
.admin-quick-actions a { min-height: 82px; display: grid; grid-template-columns: 38px 1fr 12px; gap: 10px; align-items: center; padding: 13px 18px; border-right: 1px solid #e7e9e7; border-bottom: 1px solid #e7e9e7; transition: background .2s; }
.admin-quick-actions a:nth-child(even) { border-right: 0; }
.admin-quick-actions a:nth-last-child(-n+2) { border-bottom: 0; }
.admin-quick-actions a:hover { background: #fffaf0; }
.admin-quick-actions a > i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 7px; background: #111513; color: var(--gold); font-size: 17px; font-style: normal; }
.admin-quick-actions a > span { display: flex; flex-direction: column; gap: 5px; color: #777d79; font-size: 11px; line-height: 1.4; }
.admin-quick-actions a strong { color: #252927; font-size: 13px; }
.admin-quick-actions a > b { color: #b67a00; font-size: 17px; }
.status-live { padding: 5px 8px; border-radius: 10px; background: #e8f7e7; color: #3c923d; font-size: 10px; font-style: normal; }
.admin-status-list { padding: 10px 20px; }
.admin-status-list p { display: flex; justify-content: space-between; margin: 0; padding: 13px 0; border-bottom: 1px solid #edefed; font-size: 12px; }
.admin-status-list p:last-child { border: 0; }
.admin-status-list span { display: flex; align-items: center; gap: 8px; color: #686e6a; }
.admin-status-list span i { width: 7px; height: 7px; border-radius: 50%; background: #df6c5f; }
.admin-status-list span i.ok { background: #52bf55; }
.admin-status-list b { color: #363b38; }
.admin-system-note { display: grid; grid-template-columns: 28px 1fr; gap: 10px; margin: 4px 20px 18px; padding: 12px; border-radius: 6px; background: #f6f8f6; }
.admin-system-note > span { color: #b77b00; font-size: 18px; }
.admin-system-note p { margin: 0; color: #737a75; font-size: 11px; line-height: 1.4; }
.admin-system-note strong { display: block; margin-bottom: 3px; color: #3c413e; font-size: 12px; }
.admin-catalog-summary { margin-top: 14px; }
.admin-catalog-summary .admin-card-heading a { color: #a36e00; font-size: 11px; font-weight: 800; }
.admin-catalog-summary > div:last-child { min-height: 90px; display: flex; align-items: center; justify-content: space-around; }
.admin-catalog-summary > div:last-child span { display: flex; flex-direction: column; align-items: center; gap: 6px; color: #757b77; font-size: 11px; }

/* Product and category management */
.admin-heading--actions { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.admin-heading--actions > a { margin-bottom: 24px; min-height: 42px; padding: 0 17px; display: inline-flex; align-items: center; border-radius: 6px; background: #D0920E; color: #fff; font-size: 12px; font-weight: 800; text-decoration: none; }
.admin-heading--actions > a:hover { background: #B8800B; }
.admin-create-button { min-height: 42px; margin-bottom: 24px; padding: 0 17px; border: 0; border-radius: 6px; background: #D0920E; color: #fff; font-size: 12px; font-weight: 800; cursor: pointer; box-shadow: 0 2px 6px rgba(208, 146, 14, 0.25); transition: all .15s ease; }
.admin-create-button:hover { background: #B8800B; }
.catalog-admin-layout { display: grid; grid-template-columns: minmax(390px, .72fr) minmax(620px, 1.28fr); gap: 18px; align-items: start; }
.catalog-admin-layout--categories { grid-template-columns: minmax(360px, .65fr) minmax(590px, 1.35fr); }
.catalog-editor-card, .catalog-list-card { border: 1px solid #dfe2df; border-radius: 10px; background: #fff; box-shadow: 0 5px 18px rgba(20,27,23,.045); }
.catalog-editor-card { padding: 23px; }
.catalog-card-title, .catalog-list-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.catalog-card-title span, .catalog-list-header span { color: #b77b00; font-size: 11px; font-weight: 800; letter-spacing: .8px; }
.catalog-card-title h2, .catalog-list-header h2 { margin: 5px 0 0; font-family: Oswald, sans-serif; font-size: 24px; }
.catalog-card-title h2 b, .catalog-list-header h2 b { color: #b77b00; font-size: 15px; }
.catalog-form-grid { gap: 16px; }
.catalog-form-grid label > span em { color: #969b98; font-size: 10px; font-style: normal; font-weight: 500; }
.catalog-current-image { width: 100%; min-height: 110px; margin-top: 17px; padding: 12px; display: flex; align-items: center; gap: 14px; border: 1px solid #e2e4e2; border-radius: 7px; background: #f8f9f8; color: #727873; font-size: 12px; }
.catalog-current-image img { width: 82px; height: 82px; object-fit: contain; border-radius: 6px; background: #fff; }
.catalog-current-image--category img { width: 130px; object-fit: cover; }
.catalog-upload-info { margin-top: 17px; padding: 13px; display: flex; flex-direction: column; gap: 5px; border: 1px solid #eadab4; border-radius: 6px; background: #fffbf1; color: #747974; font-size: 12px; }
.catalog-upload-info strong { color: #343936; font-size: 13px; }
.catalog-editor-actions { display: flex; align-items: center; gap: 16px; }
.catalog-editor-actions > a { margin-top: 22px; color: #7b817d; font-size: 13px; font-weight: 700; }
.catalog-list-card { overflow: hidden; }
.catalog-list-header { min-height: 76px; margin: 0; padding: 0 20px; border-bottom: 1px solid #e5e7e5; }
.catalog-list-header form { display: flex; }
.catalog-list-header form input { width: 180px; height: 38px; padding: 0 12px; border: 1px solid #d9dcd9; border-radius: 5px 0 0 5px; font-size: 13px; }
.catalog-list-header form button { padding: 0 13px; border: 0; border-radius: 0 5px 5px 0; background: #111513; color: #fff; font-size: 12px; }
.catalog-table-wrap { overflow-x: auto; }
.catalog-table { width: 100%; border-collapse: collapse; }
.catalog-table th { padding: 12px 14px; background: #f6f8f6; color: #747a76; text-align: left; font-size: 11px; letter-spacing: .4px; }
.catalog-table td { padding: 13px 14px; border-top: 1px solid #eceeec; color: #4f5551; font-size: 13px; vertical-align: middle; }
.product-management-list .catalog-list-header form input { width: 260px; }
.catalog-table--products .catalog-product-cell { min-width: 300px; }
.catalog-table--products td { padding-top: 16px; padding-bottom: 16px; }
.catalog-table--products .catalog-product-cell img { width: 64px; height: 64px; }
.catalog-product-cell { min-width: 190px; display: flex; align-items: center; gap: 11px; }
.catalog-product-cell img { width: 52px; height: 52px; object-fit: contain; border: 1px solid #eceeec; border-radius: 6px; background: #fafbfa; }
.catalog-product-cell div { display: flex; flex-direction: column; gap: 4px; }
.catalog-product-cell strong { color: #202421; font-size: 13px; }
.catalog-product-cell small, .catalog-old-price { color: #8a908c; font-size: 11px; }
.catalog-old-price { display: block; text-decoration: line-through; }
.catalog-status { display: inline-flex; padding: 5px 8px; border-radius: 12px; background: #edf4ed; color: #4a814c; font-size: 10px; font-weight: 800; }
.catalog-status.is-new { background: #fff3d6; color: #a66f00; }
.catalog-row-actions { display: flex; align-items: center; gap: 7px; }
.catalog-row-actions a, .catalog-row-actions button { padding: 7px 9px; border: 1px solid #dcdedc; border-radius: 5px; background: #fff; color: #4b514d; font-size: 11px; font-weight: 700; cursor: pointer; }
.catalog-row-actions button { border-color: #efd8d4; color: #a13c32; }
.catalog-empty { height: 100px; text-align: center; }
.category-admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 18px; }
.category-admin-grid article { overflow: hidden; border: 1px solid #e1e4e1; border-radius: 8px; background: #fff; }
.category-admin-card { position: relative; }
.category-admin-card::before { position: absolute; z-index: 1; inset: 0 auto 0 0; width: 4px; content: ""; background: #ffb400; }
.category-admin-card--child { border-color: #cfdcdf !important; background: #f7fafb !important; }
.category-admin-card--child::before { background: #387f91; }
.category-admin-card--child .category-admin-cover { background: #172326; }
.category-admin-cover { height: 130px; display: grid; place-items: center; overflow: hidden; background: #101311; color: #777e79; font-size: 12px; }
.category-admin-cover img { width: 100%; height: 100%; object-fit: cover; }
.category-admin-copy { min-height: 145px; padding: 15px; }
.category-admin-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.category-admin-type, .category-admin-order { border-radius: 999px; font-size: 9px; font-weight: 800; letter-spacing: .04em; }
.category-admin-type { padding: 5px 8px; background: #fff1ca; color: #8a5c00; }
.category-admin-order { color: #8a5c00; }
.category-admin-card--child .category-admin-type { background: #dcecef; color: #245f6e; }
.category-admin-card--child .category-admin-order { color: #245f6e; }
.category-admin-parent { display: block; margin-top: 9px; color: #587077; font-size: 10px; font-weight: 700; }
.category-admin-copy h3 { margin: 6px 0; font-size: 16px; }
.category-admin-card--child .category-admin-copy h3 { margin-left: 10px; color: #173d46; }
.category-admin-copy p { min-height: 36px; margin: 0 0 10px; color: #747a76; font-size: 12px; line-height: 1.5; }
.category-admin-copy strong { color: #4c524e; font-size: 12px; }
.category-admin-grid .catalog-row-actions { padding: 0 15px 15px; }
.category-management-list .catalog-list-header > small { color: #858b87; font-size: 12px; }
.category-admin-grid--wide { grid-template-columns: repeat(3, 1fr); }
.category-admin-empty { grid-column: 1 / -1; min-height: 220px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #7b817d; }
.category-admin-empty strong { color: #252a27; font-size: 17px; }

/* Category editor modal */
.admin-modal-open { overflow: hidden; }
.admin-modal { position: fixed; z-index: 100; inset: 0; display: none; align-items: center; justify-content: center; padding: 28px; }
.admin-modal.is-open { display: flex; }
.admin-modal__backdrop { position: absolute; inset: 0; border: 0; background: rgba(5,8,7,.73); backdrop-filter: blur(5px); cursor: default; }
.admin-modal__dialog { position: relative; width: min(920px, 100%); max-height: calc(100vh - 56px); overflow-y: auto; border: 1px solid #343a36; border-radius: 13px; background: #fff; box-shadow: 0 30px 90px rgba(0,0,0,.35); animation: admin-modal-in .2s ease-out; }
@keyframes admin-modal-in { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: none; } }
.admin-modal__header { min-height: 116px; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding: 25px 27px 20px; border-bottom: 1px solid #e4e7e4; }
.admin-modal__header span { color: #b77b00; font-size: 11px; font-weight: 800; letter-spacing: .8px; }
.admin-modal__header h2 { margin: 6px 0 5px; font-family: Oswald, sans-serif; font-size: 27px; }
.admin-modal__header p { margin: 0; color: #747a76; font-size: 13px; }
.admin-modal__header > button { flex: 0 0 auto; width: 38px; height: 38px; border: 1px solid #dce0dc; border-radius: 50%; background: #f8f9f8; color: #555c57; font-size: 24px; line-height: 1; cursor: pointer; }
.admin-modal__form { padding: 25px 27px 0; }
.category-modal-layout { display: grid; grid-template-columns: 1.12fr .88fr; gap: 25px; }
.category-image-editor > span { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 800; }
.category-image-preview { position: relative; width: 100%; aspect-ratio: 3 / 2; overflow: hidden; border: 1px solid #dfe2df; border-radius: 8px; background: #0d100f; }
.category-image-preview > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.category-image-preview > div { display: none; position: absolute; inset: 0; align-items: center; justify-content: center; flex-direction: column; gap: 7px; color: #8d948f; text-align: center; }
.category-image-preview > div b { color: var(--gold); font-size: 29px; }
.category-image-preview > div strong { color: #d9dcda; font-size: 13px; }
.category-image-preview > div small { font-size: 11px; }
.category-image-preview.is-empty > img { display: none; }
.category-image-preview.is-empty > div { display: flex; }
.category-image-upload { min-height: 54px; margin-top: 12px; padding: 0 14px; display: flex; align-items: center; gap: 10px; border: 1px dashed #c38a13; border-radius: 7px; background: #fffbf1; cursor: pointer; }
.category-image-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.category-image-upload strong { color: #9c6900; font-size: 12px; }
.category-image-upload span { margin-left: auto; color: #8a908c; font-size: 11px; }
.category-image-remove { min-height: 40px; margin-top: 9px; padding: 0 12px; display: flex; align-items: center; gap: 9px; border: 1px solid #ead8d5; border-radius: 7px; background: #fff7f5; color: #a53d32; cursor: pointer; font-size: 12px; font-weight: 700; }
.category-image-remove input { accent-color: #b84438; }
.admin-modal__actions { min-height: 84px; margin: 25px -27px 0; padding: 0 27px; display: flex; align-items: center; justify-content: flex-end; gap: 11px; border-top: 1px solid #e5e7e5; background: #f8f9f8; }
.admin-modal__actions > button:first-child { height: 44px; padding: 0 18px; border: 1px solid #d7dad7; border-radius: 6px; background: #fff; color: #626864; font-size: 12px; font-weight: 800; cursor: pointer; }
.admin-modal__actions .admin-save-button { height: 44px; margin: 0; }

/* Standalone product editor */
.product-editor-shell { max-width: 1080px !important; }
.product-editor-heading > a { display: inline-flex; margin-bottom: 23px; color: #6e7570; font-size: 13px; font-weight: 700; }
.product-editor-heading p { margin-bottom: 0 !important; }
.product-editor-form { display: grid; gap: 17px; margin-top: 27px; }
.product-editor-card { padding: 25px; border: 1px solid #dfe2df; border-radius: 10px; background: #fff; box-shadow: 0 5px 18px rgba(20,27,23,.045); }
.product-editor-section-title { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 23px; padding-bottom: 18px; border-bottom: 1px solid #e7e9e7; }
.product-editor-section-title > span { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 7px; background: #111513; color: var(--gold); font-size: 11px; font-weight: 800; }
.product-editor-section-title h2 { margin: 0 0 4px; font-size: 19px; }
.product-editor-section-title p { margin: 0; color: #7d837f; font-size: 12px; }
.product-editor-grid { grid-template-columns: 1fr 1fr; }
.product-editor-grid--four { grid-template-columns: repeat(4, 1fr); }
.product-media-layout { display: grid; grid-template-columns: 290px 1fr; gap: 25px; align-items: center; }
.product-image-preview { position: relative; aspect-ratio: 1; overflow: hidden; border: 1px solid #e0e3e0; border-radius: 9px; background: #fafbfa; }
.product-image-preview > img { width: 100%; height: 100%; display: block; object-fit: contain; }
.product-image-preview > div { display: none; position: absolute; inset: 0; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: #8b918d; text-align: center; }
.product-image-preview > div b { color: #b77b00; font-size: 31px; }
.product-image-preview > div strong { color: #464c48; font-size: 13px; }
.product-image-preview > div small { font-size: 11px; }
.product-image-preview.is-empty > img { display: none; }
.product-image-preview.is-empty > div { display: flex; }
.product-media-copy .category-image-upload { max-width: 430px; }
.product-media-copy .catalog-upload-info { max-width: 430px; }
.product-publish-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.product-publish-options > label { min-height: 82px; padding: 15px; display: flex; align-items: flex-start; gap: 12px; border: 1px solid #dfe2df; border-radius: 8px; background: #fafbfa; cursor: pointer; }
.product-publish-options input { margin-top: 3px; width: 17px; height: 17px; accent-color: #d99900; }
.product-publish-options div { display: flex; flex-direction: column; gap: 5px; }
.product-publish-options strong { color: #272c29; font-size: 13px; }
.product-publish-options span { color: #7c827e; font-size: 11px; }
.product-editor-actions { min-height: 80px; padding: 0 22px; display: flex; align-items: center; justify-content: flex-end; gap: 13px; border: 1px solid #dfe2df; border-radius: 9px; background: #fff; }
.product-editor-actions > a { color: #68706b; font-size: 12px; font-weight: 800; }
.product-editor-actions .admin-save-button { margin: 0; }

/* Gallery list and standalone editor */
.gallery-management-list .catalog-list-header > small { color: #777e79; font-size: 12px; font-weight: 700; }
.gallery-admin-table .gallery-table-media { min-width: 330px; display: flex; align-items: center; gap: 13px; }
.gallery-table-thumb { position: relative; width: 90px; height: 62px; flex: 0 0 auto; overflow: hidden; border-radius: 7px; background: #111412; }
.gallery-table-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-table-thumb > span { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 21px; text-shadow: 0 2px 8px #000; }
.gallery-table-media > div:last-child { display: flex; flex-direction: column; gap: 5px; }
.gallery-table-media strong { color: #252a27; font-size: 13px; }
.gallery-table-media small { max-width: 260px; overflow: hidden; color: #818783; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.gallery-type-badge { padding: 5px 8px; border-radius: 12px; background: #edf0ee; color: #59605b; font-size: 10px; font-weight: 800; }
.catalog-status.is-passive { background: #f2f2f1; color: #868b88; }
.gallery-media-editor-layout { display: grid; grid-template-columns: minmax(340px, .9fr) minmax(380px, 1.1fr); gap: 26px; align-items: start; }
.gallery-live-preview { position: relative; width: 100%; aspect-ratio: 16 / 10; overflow: hidden; border: 1px solid #dfe2df; border-radius: 9px; background: #0d100f; }
.gallery-live-preview > img, .gallery-live-preview > video { width: 100%; height: 100%; display: block; object-fit: cover; }
.gallery-live-preview > video { object-fit: contain; }
.gallery-live-preview > div { display: none; position: absolute; inset: 0; align-items: center; justify-content: center; flex-direction: column; gap: 8px; color: #919793; text-align: center; }
.gallery-live-preview > div b { color: var(--gold); font-size: 30px; }
.gallery-live-preview > div strong { color: #d9dcda; font-size: 13px; }
.gallery-live-preview > div small { font-size: 11px; }
.gallery-live-preview.is-empty > img, .gallery-live-preview.is-empty > video { display: none; }
.gallery-live-preview.is-empty > div { display: flex; }
.gallery-media-fields { display: grid; gap: 14px; }
.gallery-video-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 15px; border: 1px solid #e1e4e1; border-radius: 8px; background: #fafbfa; }
.gallery-video-options > label > span { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 800; }
.gallery-video-options input { width: 100%; min-height: 42px; padding: 9px; border: 1px solid #d9dcd9; border-radius: 6px; background: #fff; font-size: 12px; }
.gallery-video-options small { display: block; margin-top: 5px; color: #a93127; font-size: 11px; }
.gallery-thumbnail-preview { grid-column: 1 / -1; min-height: 85px; padding: 10px; display: flex; align-items: center; gap: 13px; border: 1px dashed #d3d7d3; border-radius: 7px; color: #777e79; font-size: 11px; }
.gallery-thumbnail-preview img { width: 120px; height: 68px; object-fit: cover; border-radius: 5px; background: #111; }
.gallery-thumbnail-preview.is-empty img { opacity: 0; }
.gallery-editor-page .product-publish-options { grid-template-columns: minmax(280px, 1fr); max-width: 520px; }
.gallery-editor-page .is-hidden { display: none !important; }

@media (max-width: 1200px) {
    .catalog-admin-layout, .catalog-admin-layout--categories { grid-template-columns: 1fr; }
    .category-admin-grid--wide { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 980px) {
    .product-editor-grid--four { grid-template-columns: 1fr 1fr; }
    .gallery-media-editor-layout { grid-template-columns: 1fr; }
}
.admin-catalog-summary > div:last-child strong { color: #171b19; font-family: Oswald, sans-serif; font-size: 23px; }
.admin-catalog-summary > div:last-child i { width: 1px; height: 35px; background: #e1e4e1; }

@media (max-width: 1050px) {
    .admin-app { grid-template-columns: 215px 1fr; }
    .admin-sidebar { width: 215px; }
    .admin-metric-grid { grid-template-columns: 1fr 1fr; }
    .admin-dashboard-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
    .admin-app { display: block; }
    .admin-sidebar { width: 245px; transform: translateX(-100%); transition: transform .25s; box-shadow: 10px 0 35px rgba(0,0,0,.25); }
    .admin-sidebar.is-open { transform: translateX(0); }
    .admin-menu-toggle { display: block; }
    .admin-topbar { padding: 0 16px; }
    .admin-topbar__context { display: none; }
    .admin-profile > div { display: none; }
    .admin-content { padding: 22px 15px 35px; }
    .admin-dashboard__heading { align-items: flex-start; gap: 15px; }
    .admin-dashboard__heading > a { display: none; }
    .admin-quick-actions > div:last-child { grid-template-columns: 1fr; }
    .admin-quick-actions a { border-right: 0; border-bottom: 1px solid #e7e9e7 !important; }
    .admin-quick-actions a:last-child { border-bottom: 0 !important; }
    .admin-workspace .banner-editor-card { grid-template-columns: 1fr; }
    .admin-heading--actions { align-items: flex-start; }
    .admin-heading--actions > a { display: none; }
    .admin-create-button { flex: 0 0 auto; margin-bottom: 18px; padding: 0 13px; }
    .catalog-editor-card { padding: 18px; }
    .catalog-list-header { min-height: 105px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 10px; }
    .catalog-list-header form, .catalog-list-header form input { width: 100%; }
    .category-admin-grid { grid-template-columns: 1fr; padding: 13px; }
    .admin-modal { padding: 0; align-items: flex-end; }
    .admin-modal__dialog { width: 100%; max-height: 94vh; border-radius: 14px 14px 0 0; }
    .admin-modal__header { padding: 21px 19px 17px; }
    .admin-modal__header h2 { font-size: 24px; }
    .admin-modal__form { padding: 20px 19px 0; }
    .category-modal-layout { grid-template-columns: 1fr; }
    .admin-modal__actions { margin-left: -19px; margin-right: -19px; padding: 0 19px; }
    .product-editor-card { padding: 18px; }
    .product-editor-grid, .product-editor-grid--four { grid-template-columns: 1fr; }
    .product-media-layout { grid-template-columns: 1fr; }
    .product-image-preview { width: min(100%, 330px); margin: 0 auto; }
    .product-publish-options { grid-template-columns: 1fr; }
    .product-editor-actions { padding: 12px 15px; }
    .product-management-list .catalog-list-header form input { width: 100%; }
    .gallery-video-options { grid-template-columns: 1fr; }
    .gallery-thumbnail-preview { grid-column: auto; }
}

@media (max-width: 480px) {
    .admin-metric-grid { grid-template-columns: 1fr; }
    .admin-catalog-summary > div:last-child { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 18px; }
    .admin-catalog-summary > div:last-child i { display: none; }
}

/* Dynamic analytics dashboard */
.analytics-dashboard { --dash-gold:#bd8424; --dash-border:#e4e1db; --dash-muted:#74716d; max-width: 1540px; margin: 0 auto; color:#1d1c1a; }
.analytics-heading { display:flex; align-items:center; justify-content:space-between; gap:24px; margin-bottom:30px; }
.analytics-heading h1 { margin:0 0 7px; font-family:Georgia, 'Times New Roman', serif; font-size:35px; font-weight:500; letter-spacing:-.6px; }
.analytics-heading p { margin:0; color:var(--dash-muted); font-size:14px; }
.analytics-heading__actions { display:flex; align-items:center; gap:14px; }
.dashboard-date-filter { height:48px; padding:0 10px 0 14px; display:flex; align-items:center; gap:8px; border:1px solid #ddd9d1; border-radius:7px; background:#fff; box-shadow:0 2px 7px rgba(40,34,25,.03); }
.dashboard-date-filter > span { color:#706b64; font-size:17px; }
.dashboard-date-filter input { width:124px; border:0; outline:0; background:transparent; color:#514e49; font:500 13px Inter,sans-serif; }
.dashboard-date-filter i { color:#a39e97; font-style:normal; }
.dashboard-date-filter button { width:31px; height:31px; border:0; background:transparent; color:#4d4943; font-size:18px; cursor:pointer; }
.dashboard-report-button { height:48px; padding:0 21px; display:inline-flex; align-items:center; gap:9px; border-radius:7px; background:linear-gradient(135deg,#c99234,#ac7418); color:#fff; box-shadow:0 7px 18px rgba(177,119,26,.2); font-size:13px; font-weight:700; }
.analytics-metrics { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; margin-bottom:22px; }
.analytics-metric,.analytics-panel { border:1px solid #e5e7eb; border-radius:12px; background:#fff; box-shadow:0 1px 3px rgba(0,0,0,.02); }
.analytics-metric { min-height:165px; padding:20px 22px 14px; overflow:hidden; display:flex; flex-direction:column; justify-content:space-between; position:relative; }
.analytics-metric__top { display:flex; justify-content:space-between; align-items:flex-start; gap:12px; }
.analytics-metric__top div { min-width:0; display:flex; flex-direction:column; gap:6px; }
.analytics-metric__top span { font-size:13px; font-weight:500; color:#6b7280; }
.analytics-metric__top strong { overflow:hidden; font-family:'Inter',sans-serif; font-size:24px; font-weight:800; color:#111827; text-overflow:ellipsis; white-space:nowrap; letter-spacing:-0.4px; }
.analytics-metric__icon, .analytics-metric__top > i { width:40px; height:40px; flex:0 0 auto; display:grid; place-items:center; border-radius:10px; background:#fffdf5; border:1px solid #fef3c7; color:#d97706; font-size:18px; font-style:normal; }
.analytics-metric > p { margin:8px 0 6px; color:#16a34a; font-size:12px; font-weight:600; display:flex; align-items:center; gap:4px; }
.analytics-metric > p.negative { color:#dc2626; }
.analytics-metric > p span { color:#9ca3af; font-weight:400; font-size:11.5px; }
.analytics-metric__chart { width:calc(100% + 44px); margin-left:-22px; margin-right:-22px; margin-bottom:-14px; height:44px; overflow:hidden; }
.analytics-metric__chart svg { width:100%; height:44px; display:block; }
.analytics-main-grid { display:grid; grid-template-columns:1.22fr 1fr; gap:20px; margin-bottom:22px; }
.analytics-panel { padding:22px; }
.analytics-panel__heading { min-height:32px; display:flex; align-items:flex-start; justify-content:space-between; gap:15px; }
.analytics-panel__heading h2 { margin:0; font-family:Georgia,'Times New Roman',serif; font-size:16px; font-weight:600; }
.analytics-panel__heading > span,.analytics-panel__heading > a { padding:7px 12px; border:1px solid #e1ded8; border-radius:5px; color:#514e49; font-size:11px; }
.sales-analysis,.order-status-panel { min-height:340px; }
.sales-chart { height:265px; display:grid; grid-template-columns:42px 1fr; padding-top:22px; }
.sales-chart__axis { height:205px; padding:0 9px 0 0; display:flex; flex-direction:column; justify-content:space-between; color:#817d77; font-size:10px; text-align:right; }
.sales-chart__plot { height:226px; display:grid; grid-template-columns:repeat(12,1fr); gap:10px; align-items:end; border-bottom:1px solid #e5e2dd; background:repeating-linear-gradient(to bottom,#eeeae4 0,#eeeae4 1px,transparent 1px,transparent 51px); }
.sales-bar-column { height:226px; display:flex; flex-direction:column; justify-content:flex-end; align-items:center; gap:10px; }
.sales-bar-column > span { width:min(18px,55%); min-height:2px; background:linear-gradient(180deg,#efcb83,#c9912d); transition:height .3s; }
.sales-bar-column:hover > span { background:#b87815; }
.sales-bar-column small { height:11px; color:#68645f; font:11px Georgia,serif; text-transform:capitalize; }
.order-status-content { min-height:270px; display:grid; grid-template-columns:1fr 1.05fr; align-items:center; gap:26px; }
.order-donut { width:190px; aspect-ratio:1; margin:auto; display:grid; place-items:center; border-radius:50%; background:conic-gradient(var(--donut)); }
.order-donut::before { content:""; grid-area:1/1; width:60%; aspect-ratio:1; border-radius:50%; background:#fff; }
.order-donut > div { z-index:1; grid-area:1/1; display:flex; flex-direction:column; align-items:center; }
.order-donut strong { font:600 25px Georgia,serif; }
.order-donut span { margin-top:3px; color:#77736d; font-size:11px; }
.order-status-legend { display:grid; gap:18px; }
.order-status-legend p { margin:0; display:grid; grid-template-columns:10px 1fr auto; align-items:center; gap:10px; font-size:12px; }
.order-status-legend i { width:9px; height:9px; border-radius:50%; }
.order-status-legend span { color:#68645f; }
.order-status-legend strong { font:600 14px Georgia,serif; }
.analytics-bottom-grid { display:grid; grid-template-columns:.92fr 1.08fr 1.08fr; gap:20px; }
.dashboard-list-card { min-height:310px; padding:20px; }
.dashboard-list-card .analytics-panel__heading { padding-bottom:9px; }
.popular-product-row,.recent-order-row,.notification-row { min-height:49px; border-bottom:1px solid #eeeae5; }
.popular-product-row:last-child,.recent-order-row:last-child,.notification-row:last-child { border-bottom:0; }
.popular-product-row { display:grid; grid-template-columns:40px 1fr auto; align-items:center; gap:10px; }
.popular-product-row img { width:36px; height:36px; object-fit:contain; border-radius:4px; background:#f2f0ec; }
.popular-product-row strong { overflow:hidden; font-size:12px; font-weight:600; text-overflow:ellipsis; white-space:nowrap; }
.popular-product-row span { color:#74877a; font-size:10px; }
.recent-order-row { display:grid; grid-template-columns:63px 1fr 82px 100px; align-items:center; gap:8px; font-size:11px; }
.recent-order-row > strong { font-family:Georgia,serif; }
.recent-order-row > span { overflow:hidden; color:#6f6b65; text-overflow:ellipsis; white-space:nowrap; }
.recent-order-row > b { font-weight:600; text-align:right; }
.recent-order-row > i { padding:5px 7px; border-radius:12px; background:#f7efe0; color:#997022; font-size:9px; font-style:normal; text-align:center; }
.recent-order-row > i.status-confirmed,.recent-order-row > i.status-delivered { background:#e9f3e7; color:#4d8753; }
.recent-order-row > i.status-shipped { background:#e8eff4; color:#4d718b; }
.recent-order-row > i.status-cancelled { background:#f8e7e5; color:#a5534c; }
.notification-row { display:grid; grid-template-columns:34px 1fr; align-items:center; gap:10px; }
.notification-row > i { width:31px; height:31px; display:grid; place-items:center; border-radius:50%; background:#f4f1ec; color:#796f62; font-size:12px; font-style:normal; }
.notification-row > i.notification-warning { background:#fbf0da; color:#b37918; }
.notification-row > i.notification-danger { background:#f8e3e1; color:#a94d45; }
.notification-row p { margin:0; display:flex; flex-direction:column; gap:4px; }
.notification-row strong { overflow:hidden; color:#62605c; font-size:10px; font-weight:500; text-overflow:ellipsis; white-space:nowrap; }
.notification-row span { color:#99958e; font-size:9px; }
.dashboard-empty { min-height:180px; display:grid; place-items:center; color:#8b8781; font-size:12px; text-align:center; }

@media (max-width:1250px) {
    .analytics-metrics { grid-template-columns:1fr 1fr; }
    .analytics-bottom-grid { grid-template-columns:1fr 1fr; }
    .notification-card { grid-column:1/-1; }
}
@media (max-width:900px) {
    .analytics-heading { align-items:flex-start; flex-direction:column; }
    .analytics-main-grid,.analytics-bottom-grid { grid-template-columns:1fr; }
    .notification-card { grid-column:auto; }
}
@media (max-width:650px) {
    .analytics-heading__actions { width:100%; align-items:stretch; flex-direction:column; }
    .dashboard-date-filter { justify-content:center; }
    .dashboard-report-button { justify-content:center; }
    .analytics-metrics { grid-template-columns:1fr; }
    .order-status-content { grid-template-columns:1fr; padding-top:20px; }
    .sales-chart__plot { gap:3px; }
    .recent-order-row { grid-template-columns:58px 1fr 84px; }
    .recent-order-row > span { display:none; }
}

/* Banner management - visual asset cards */
.banner-management { max-width:1480px; margin:0 auto; color:#1d1c1a; }
.banner-management__heading { min-height:108px; display:flex; align-items:flex-start; justify-content:space-between; gap:24px; }
.banner-management__heading > div > span { color:#b57b18; font-size:12px; font-weight:800; letter-spacing:.45px; }
.banner-management__heading h1 { margin:12px 0 8px; font-family:Inter,sans-serif; font-size:29px; line-height:1; letter-spacing:-.8px; }
.banner-management__heading p { margin:0; color:#585653; font-size:13px; }
.banner-management__heading > button { height:45px; margin-top:20px; padding:0 19px; display:inline-flex; align-items:center; gap:9px; border:0; border-radius:6px; background:linear-gradient(135deg,#d89a12,#bd7f05); color:#fff; box-shadow:0 8px 20px rgba(184,119,5,.17); font:500 12px Inter,sans-serif; cursor:pointer; }
.banner-management__heading > button b { font-weight:600; }
.banner-management__form { display:grid; gap:22px; }
.banner-management-card,.banner-description-card { position:relative; border:1px solid #e4e1db; border-radius:14px; background:#fff; box-shadow:0 7px 22px rgba(55,46,34,.055); }
.banner-management-card { min-height:284px; padding:21px 68px 21px 23px; display:grid; grid-template-columns:282px minmax(0,1fr); align-items:center; gap:24px; }
.banner-management-copy { align-self:stretch; display:flex; flex-direction:column; align-items:flex-start; }
.banner-device-label { min-height:28px; padding:0 10px; display:inline-flex; align-items:center; gap:8px; border-radius:15px; background:#faf9f7; color:#1d1e1c; font-size:13px; }
.banner-device-label b { font-size:11px; letter-spacing:.25px; }
.banner-management-copy h2 { margin:16px 0 13px; font:700 25px Inter,sans-serif; letter-spacing:-.5px; }
.banner-management-copy p { margin:0; color:#716e68; font-size:12px; line-height:1.8; }
.banner-active-state { margin-top:auto; display:flex; align-items:center; gap:8px; color:#3d6d37; font-size:12px; }
.banner-active-state i { width:15px; height:15px; display:grid; place-items:center; border-radius:50%; background:#cce5b7; color:#43843b; font-size:9px; font-style:normal; }
.banner-card-actions { margin-top:19px; display:flex; gap:11px; }
.banner-change-button,.banner-edit-button { height:40px; padding:0 16px; display:inline-flex; align-items:center; justify-content:center; gap:8px; border-radius:6px; font:600 11px Inter,sans-serif; cursor:pointer; }
.banner-change-button { border:1px solid #d6960a; background:linear-gradient(135deg,#daa017,#c68705); color:#fff; }
.banner-edit-button { border:1px solid #dedbd5; background:#fff; color:#2a2927; }
.banner-hidden-upload { position:absolute; width:1px; height:1px; opacity:0; pointer-events:none; }
.banner-management-copy .field-validation { margin-top:8px; color:#b33f34; font-size:10px; }
.banner-management-preview { overflow:hidden; display:grid; place-items:center; border-radius:10px; background:#0b0d0c; color:#9b9b98; font-size:12px; }
.banner-management-preview img { width:100%; height:100%; display:block; object-fit:contain; }
.banner-management-preview--desktop { width:100%; max-height:246px; aspect-ratio:1920 / 700; }
.banner-more-button { position:absolute; top:24px; right:25px; width:24px; height:30px; border:0; background:transparent; color:#1a1a19; font-size:24px; line-height:1; cursor:pointer; }
.banner-management-card--mobile { min-height:285px; }
.banner-management-preview--mobile { justify-self:start; width:225px; height:264px; }
.banner-description-card { min-height:195px; padding:24px 23px; display:grid; grid-template-columns:minmax(0,1fr) 345px; gap:32px; }
.banner-description-field { min-width:0; }
.banner-description-field > label { margin-bottom:12px; display:flex; align-items:center; gap:9px; color:#272624; font-size:11px; font-weight:800; }
.banner-description-field > input { width:100%; height:40px; padding:0 14px; border:1px solid #ddd9d2; border-radius:5px; outline:0; color:#272624; font:12px Inter,sans-serif; }
.banner-description-field > input:focus { border-color:#c68a16; box-shadow:0 0 0 3px rgba(198,138,22,.1); }
.banner-description-field .field-validation { display:block; margin-top:5px; color:#af3f34; font-size:10px; }
.banner-description-field > small { display:block; margin-top:11px; color:#8c8882; font-size:10px; }
.banner-save-button { height:39px; margin-top:24px; padding:0 17px; border:0; border-radius:6px; background:linear-gradient(135deg,#d99a11,#bd7d04); color:#fff; font:600 11px Inter,sans-serif; cursor:pointer; }
.banner-save-button span { margin-left:5px; }
.banner-description-card > aside { height:97px; padding:18px 20px; display:flex; align-items:flex-start; gap:13px; border-radius:10px; background:linear-gradient(135deg,#fffdfa,#faf7f1); }
.banner-description-card > aside > i { width:25px; height:25px; flex:0 0 auto; display:grid; place-items:center; border-radius:50%; background:#fff5df; color:#c48612; font-size:14px; font-style:normal; }
.banner-description-card > aside p { margin:0; display:flex; flex-direction:column; gap:11px; }
.banner-description-card > aside strong { font-size:12px; font-weight:500; }
.banner-description-card > aside span { color:#77736d; font-size:11px; line-height:1.65; }

@media (max-width:1100px) {
    .banner-management-card { grid-template-columns:245px minmax(0,1fr); }
    .banner-description-card { grid-template-columns:1fr 300px; }
}
@media (max-width:800px) {
    .banner-management__heading { align-items:flex-start; flex-direction:column; margin-bottom:20px; }
    .banner-management__heading > button { margin-top:0; }
    .banner-management-card { padding:22px; grid-template-columns:1fr; }
    .banner-management-preview { grid-row:1; }
    .banner-management-preview--mobile { justify-self:center; }
    .banner-management-copy { min-height:230px; }
    .banner-more-button { top:17px; right:17px; color:#fff; text-shadow:0 1px 4px #000; }
    .banner-description-card { grid-template-columns:1fr; }
}
@media (max-width:520px) {
    .banner-management__heading h1 { font-size:26px; }
    .banner-management__heading > button { width:100%; justify-content:center; }
    .banner-management-card { padding:15px; }
    .banner-card-actions { width:100%; }
    .banner-change-button,.banner-edit-button { flex:1; padding:0 9px; }
    .banner-description-card { padding:18px 15px; }
}

/* Gallery management - media library */
.gallery-library-page { max-width:1540px; margin:0 auto; color:#1d1c1a; }
.gallery-library-heading { min-height:112px; display:flex; align-items:flex-start; justify-content:space-between; gap:25px; }
.gallery-library-heading > div > span { color:#b77d18; font-size:12px; font-weight:800; letter-spacing:.4px; }
.gallery-library-heading h1 { margin:12px 0 9px; font-family:Inter,sans-serif; font-size:30px; line-height:1; letter-spacing:-.75px; }
.gallery-library-heading p { margin:0; color:#6d6963; font-size:13px; }
.gallery-library-heading > a { height:43px; margin-top:22px; padding:0 19px; display:inline-flex; align-items:center; gap:9px; border-radius:6px; background:linear-gradient(135deg,#d79a16,#b97b08); color:#fff; box-shadow:0 8px 18px rgba(180,119,9,.17); font-size:12px; font-weight:600; }
.gallery-library-heading > a b { font-size:16px; font-weight:400; }
.gallery-library-card { overflow:hidden; padding:22px; border:1px solid #e4e1db; border-radius:14px; background:#fff; box-shadow:0 7px 23px rgba(55,46,34,.055); }
.gallery-library-card__heading { min-height:66px; display:flex; align-items:flex-start; justify-content:space-between; gap:20px; }
.gallery-library-card__heading > div:first-child > span { color:#4f4c47; font-size:12px; }
.gallery-library-card__heading h2 { margin:7px 0 0; font-family:Inter,sans-serif; font-size:21px; letter-spacing:-.4px; }
.gallery-library-card__heading h2 b { width:27px; height:27px; margin-left:6px; display:inline-grid; place-items:center; border-radius:50%; background:#fbf1da; color:#3a3328; font-size:12px; vertical-align:middle; }
.gallery-publish-count { height:42px; padding:0 15px; display:flex; align-items:center; gap:10px; border:1px solid #ece9e3; border-radius:7px; color:#68645f; font-size:11px; }
.gallery-publish-count:first-letter { color:#8a8781; }
.gallery-library-table-wrap { overflow-x:auto; }
.gallery-library-table { width:100%; min-width:1040px; border-collapse:collapse; table-layout:fixed; }
.gallery-library-table th { height:36px; padding:0 9px; border-top:1px solid #e8e5df; border-bottom:1px solid #e8e5df; background:#faf9f7; color:#76716b; text-align:left; font-size:10px; font-weight:500; }
.gallery-library-table th:first-child { width:130px; border-left:1px solid #e8e5df; border-radius:6px 0 0 6px; }
.gallery-library-table th:nth-child(2) { width:240px; }
.gallery-library-table th:nth-child(3) { width:160px; }
.gallery-library-table th:nth-child(4) { width:135px; }
.gallery-library-table th:nth-child(5) { width:82px; }
.gallery-library-table th:nth-child(6) { width:130px; }
.gallery-library-table th:last-child { width:160px; border-right:1px solid #e8e5df; border-radius:0 6px 6px 0; }
.gallery-library-table td { height:66px; padding:6px 9px; border-bottom:1px solid #ece9e4; color:#56524d; font-size:11px; vertical-align:middle; }
.gallery-library-table tbody tr:last-child td { border-bottom:0; }
.gallery-library-table tbody tr:hover { background:#fdfcf9; }
.gallery-library-thumb { position:relative; width:104px; height:48px; overflow:hidden; border-radius:6px; background:#101211; }
.gallery-library-thumb img { width:100%; height:100%; display:block; object-fit:cover; }
.gallery-library-thumb > span { position:absolute; inset:0; display:grid; place-items:center; color:#fff; font-size:17px; text-shadow:0 2px 8px #000; }
.gallery-library-title { display:flex; flex-direction:column; gap:5px; min-width:0; }
.gallery-library-title strong { overflow:hidden; color:#242321; font-size:12px; font-weight:700; text-overflow:ellipsis; white-space:nowrap; }
.gallery-library-title small { overflow:hidden; color:#87827c; font-size:9px; text-overflow:ellipsis; white-space:nowrap; }
.gallery-library-category { color:#66615b; font-size:11px; }
.gallery-library-type { min-height:24px; padding:0 9px; display:inline-flex; align-items:center; border-radius:8px; font-size:10px; font-weight:500; }
.gallery-library-type.is-photo { background:#eaf3fa; color:#467a9f; }
.gallery-library-type.is-video { background:#f0ebfb; color:#7658b4; }
.gallery-library-order { color:#595650; font-size:11px; }
.gallery-library-status { min-height:24px; padding:0 10px; display:inline-flex; align-items:center; gap:6px; border-radius:9px; font-size:10px; font-weight:500; }
.gallery-library-status i { width:6px; height:6px; border-radius:50%; background:currentColor; }
.gallery-library-status.is-active { background:#e9f6e9; color:#31883e; }
.gallery-library-status.is-passive { background:#f1f1ef; color:#7f817c; }
.gallery-library-actions { display:flex; align-items:center; gap:14px; }
.gallery-library-actions > a { height:33px; padding:0 14px; display:inline-flex; align-items:center; gap:8px; border:1px solid #dfdcd6; border-radius:5px; background:#fff; color:#35322f; font-size:10px; font-weight:600; }
.gallery-library-actions form { margin:0; }
.gallery-library-actions button { width:36px; height:33px; display:grid; place-items:center; border:1px solid #f0c8c3; border-radius:5px; background:#fff; color:#df5147; font-size:14px; cursor:pointer; }
.gallery-library-actions > a:hover { border-color:#c58a18; color:#a66d00; }
.gallery-library-actions button:hover { background:#fff5f3; }
.gallery-library-empty { min-height:300px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px; color:#8c8881; }
.gallery-library-empty b { color:#c38a1a; font-size:30px; }
.gallery-library-empty strong { color:#34312d; font-size:15px; }
.gallery-library-empty span { font-size:11px; }

@media (max-width:800px) {
    .gallery-library-heading { min-height:155px; flex-direction:column; }
    .gallery-library-heading > a { width:100%; margin-top:0; justify-content:center; }
    .gallery-library-card { padding:15px; }
    .gallery-library-card__heading { min-height:110px; align-items:flex-start; flex-direction:column; padding-bottom:15px; }
}

/* ==========================================================================
   Admin Gallery Form (Yeni Galeri Kaydı & Düzenleme)
   ========================================================================== */
.gallery-form-page {
    max-width: 1040px;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #111827;
}

.gallery-form-shell {
    width: 100%;
}

.gallery-form-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #d97706;
    margin-bottom: 12px;
}

.gallery-form-breadcrumb a {
    color: #d97706;
    text-decoration: none;
    transition: opacity .15s ease;
}

.gallery-form-breadcrumb a:hover {
    opacity: 0.8;
}

.gallery-form-breadcrumb span {
    color: #d97706;
    font-weight: 600;
}

.gallery-form-header {
    margin-bottom: 22px;
}

.gallery-form-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 6px 0;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.gallery-form-header p {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.gallery-form-summary-error {
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    font-size: 13px;
}

.gallery-form-summary-error:empty {
    display: none;
}

.gallery-card-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.gallery-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.gallery-badge {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #000000;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.gallery-card-titles h2 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 3px 0;
    line-height: 1.3;
}

.gallery-card-titles p {
    font-size: 12.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.gallery-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

.gallery-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gallery-field-group label {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.gallery-req {
    color: #ef4444;
    font-weight: 700;
}

.gallery-field-wide {
    grid-column: 1 / -1;
}

.gallery-input,
.gallery-textarea,
.gallery-select {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.gallery-input:focus,
.gallery-textarea:focus,
.gallery-select:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.gallery-input::placeholder,
.gallery-textarea::placeholder {
    color: #9ca3af;
    font-size: 13px;
}

.gallery-textarea {
    height: auto;
    min-height: 85px;
    padding: 10px 14px;
    resize: vertical;
    line-height: 1.5;
}

.gallery-select-wrapper {
    position: relative;
    width: 100%;
}

.gallery-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 36px;
    cursor: pointer;
}

.gallery-chevron-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6b7280;
}

.gallery-field-error {
    color: #ef4444;
    font-size: 11.5px;
    margin-top: 2px;
}

.gallery-field-error:empty {
    display: none;
}

/* Media section */
.gallery-media-layout-v2 {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.gallery-dropzone-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gallery-dropzone {
    border: 1.5px dashed #d1d5db;
    border-radius: 10px;
    background: #fafafa;
    min-height: 175px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 18px;
    cursor: pointer;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    transition: all .2s ease;
}

.gallery-dropzone:hover,
.gallery-dropzone.is-dragover {
    border-color: #d97706;
    background: #fffdfa;
}

.gallery-hidden-file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.gallery-dropzone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-cloud-icon {
    margin-bottom: 8px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-dropzone-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3px;
}

.gallery-dropzone-sub {
    font-size: 12px;
    color: #9ca3af;
}

.gallery-selected-name {
    display: none;
    margin-top: 10px;
    padding: 4px 10px;
    background: #fef3c7;
    color: #92400e;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 600;
    max-width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery-preview-wrapper {
    display: none;
    position: relative;
    width: 100%;
    max-height: 155px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
}

.gallery-preview-wrapper.is-visible {
    display: block;
}

.gallery-preview-image,
.gallery-preview-video {
    width: 100%;
    max-height: 155px;
    object-fit: contain;
    border-radius: 8px;
    background: #0f172a;
    display: block;
}

.gallery-preview-change-overlay {
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

.gallery-btn-change-file {
    padding: 5px 12px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
    font-size: 11.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}

.gallery-btn-change-file:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
}

.gallery-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
}

.gallery-info-pill-box {
    background: #fffdf5;
    border: 1px solid #fef3c7;
    border-radius: 10px;
    padding: 13px 16px;
}

.gallery-info-pill-title {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #d97706;
    margin: 0 0 4px 0;
}

.gallery-info-pill-text {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.gallery-info-pill-text span {
    display: block;
}

.gallery-video-extra-section {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed #e5e7eb;
}

.gallery-video-extra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

.gallery-file-input {
    padding-top: 8px;
    font-size: 12px;
}

.gallery-current-thumb-view {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #6b7280;
}

.gallery-current-thumb-view img {
    width: 80px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
}

/* Publish status switch */
.gallery-publish-status-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gallery-toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
    margin: 0;
}

.gallery-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.gallery-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #e5e7eb;
    border-radius: 24px;
    transition: background-color .2s ease;
}

.gallery-toggle-slider::before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform .2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.gallery-toggle-input:checked + .gallery-toggle-slider {
    background-color: #d97706;
}

.gallery-toggle-input:checked + .gallery-toggle-slider::before {
    transform: translateX(20px);
}

.gallery-toggle-label-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
}

.gallery-toggle-label-wrap strong {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
}

.gallery-toggle-label-wrap span {
    font-size: 12px;
    color: #6b7280;
}

/* Bottom Actions */
.gallery-bottom-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 22px;
    margin-bottom: 45px;
}

.gallery-btn-cancel {
    height: 42px;
    padding: 0 24px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .15s ease;
}

.gallery-btn-cancel:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
}

.gallery-btn-submit {
    height: 42px;
    padding: 0 24px;
    border: none;
    border-radius: 8px;
    background: #D0920E;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .15s ease;
    box-shadow: 0 2px 6px rgba(208, 146, 14, 0.25);
}

.gallery-btn-submit:hover {
    background: #B8800B;
    box-shadow: 0 4px 12px rgba(208, 146, 14, 0.35);
}

.is-hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .gallery-fields-grid,
    .gallery-media-layout-v2,
    .gallery-video-extra-grid {
        grid-template-columns: 1fr;
    }

    .gallery-card-box {
        padding: 18px 16px;
    }

    .gallery-bottom-actions {
        width: 100%;
    }

    .gallery-btn-cancel,
    .gallery-btn-submit {
        flex: 1;
        justify-content: center;
    }
}

/* ==========================================================================
   Admin About Page (Hakkımızda Sayfası Yönetimi)
   ========================================================================== */
.about-editor-page {
    max-width: 1040px;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #111827;
}

.about-editor-shell {
    width: 100%;
}

.about-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 22px;
    gap: 20px;
}

.about-top-category {
    color: #d97706;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

.about-page-header__left h1 {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 6px 0;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.about-page-header__left p {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.about-page-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-btn-preview {
    height: 38px;
    padding: 0 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-sizing: border-box;
    transition: all .15s ease;
}

.about-btn-preview:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
}

.about-btn-save-dark {
    height: 38px;
    padding: 0 16px;
    border: none;
    border-radius: 8px;
    background: #D0920E;
    color: #ffffff;
    font-size: 12.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    box-sizing: border-box;
    box-shadow: 0 2px 6px rgba(208, 146, 14, 0.25);
    transition: all .15s ease;
}

.about-btn-save-dark:hover {
    background: #B8800B;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(208, 146, 14, 0.35);
}

.about-form-summary-error {
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    font-size: 13px;
}

.about-form-summary-error:empty {
    display: none;
}

.about-card-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.about-badge {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #000000;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

.about-card-titles h2 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.3;
}

.about-grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

.about-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-field-group label {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.about-field-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
}

.about-dimension-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: #D0920E;
    background: #fffbeb;
    border: 1px solid #fef3c7;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.2px;
}

.about-field-hint {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: #64748b;
    margin-top: 4px;
    line-height: 1.4;
}

.about-field-hint strong {
    color: #334155;
    font-weight: 600;
}

.about-field-hint svg {
    color: #D0920E;
    flex-shrink: 0;
}

.about-field-full {
    margin-top: 14px;
}

.about-input,
.about-textarea {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.about-input:focus,
.about-textarea:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.about-input::placeholder,
.about-textarea::placeholder {
    color: #9ca3af;
    font-size: 13px;
}

.about-textarea {
    height: auto;
    min-height: 80px;
    padding: 10px 14px;
    resize: vertical;
    line-height: 1.5;
}

.about-field-error {
    color: #ef4444;
    font-size: 11.5px;
    margin-top: 2px;
}

.about-field-error:empty {
    display: none;
}

/* Richbox / WYSIWYG Toolbar */
.about-editor-richbox {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.about-editor-richbox:focus-within {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.about-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.about-toolbar-btn {
    font-size: 12px;
    color: #374151;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    cursor: pointer;
    border-radius: 4px;
}

.about-tb-arrow {
    font-size: 9px;
    color: #6b7280;
}

.about-tb-divider {
    width: 1px;
    height: 16px;
    background: #e5e7eb;
    margin: 0 4px;
}

.about-tb-tool {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #4b5563;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background .15s ease;
}

.about-tb-tool:hover {
    background: #e5e7eb;
    color: #111827;
}

.about-rich-textarea {
    width: 100%;
    border: none;
    padding: 10px 14px;
    font-size: 13.5px;
    color: #111827;
    font-family: inherit;
    outline: none;
    resize: vertical;
    min-height: 58px;
    line-height: 1.5;
    box-sizing: border-box;
    background: transparent;
}

/* Media area with file trigger and live preview */
.about-media-two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    align-items: center;
    margin-top: 14px;
}

.about-quality-media-row {
    align-items: flex-start;
}

.about-file-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .15s ease;
}

.about-file-box:hover {
    border-color: #d97706;
    background: #fffdfa;
}

.about-hidden-file {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.about-file-name {
    font-size: 13px;
    color: #374151;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.about-media-preview-card {
    height: 130px;
    border-radius: 8px;
    overflow: hidden;
    background: #0b0d0c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-media-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-media-preview-card--quality {
    height: 90px;
}

/* Feature cards grid (02) */
.about-feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.about-feature-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 12px 14px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-feature-tag {
    font-size: 11px;
    font-weight: 700;
    color: #d97706;
}

.about-feature-inner {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.about-feature-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #fffdf5;
    border: 1px solid #fef3c7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-feature-texts {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.about-feature-title-input {
    border: none;
    outline: none;
    font-size: 12px;
    font-weight: 800;
    color: #111827;
    padding: 0;
    text-transform: uppercase;
    font-family: inherit;
    width: 100%;
    background: transparent;
}

.about-feature-title-input:focus {
    color: #d97706;
}

.about-feature-desc-input {
    border: none;
    outline: none;
    font-size: 11px;
    color: #6b7280;
    padding: 0;
    line-height: 1.4;
    resize: none;
    width: 100%;
    font-family: inherit;
    background: transparent;
    height: 42px;
}

/* Quality section (04) */
.about-quality-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-quality-media-row {
    margin-top: 0;
    align-items: flex-end;
}

/* Bottom Bar */
.about-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    margin-bottom: 45px;
}

.about-bottom-note {
    font-size: 12px;
    color: #9ca3af;
}

.about-bottom-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-btn-cancel {
    height: 42px;
    padding: 0 24px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .15s ease;
}

.about-btn-cancel:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
}

.about-btn-submit {
    height: 42px;
    padding: 0 24px;
    border: none;
    border-radius: 8px;
    background: #D0920E;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .15s ease;
    box-shadow: 0 2px 6px rgba(208, 146, 14, 0.25);
}

.about-btn-submit:hover {
    background: #B8800B;
    box-shadow: 0 4px 12px rgba(208, 146, 14, 0.35);
}

@media (max-width: 900px) {
    .about-feature-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid-two-col,
    .about-media-two-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-page-header {
        flex-direction: column;
        align-items: stretch;
    }

    .about-page-header__actions {
        width: 100%;
        justify-content: flex-end;
    }

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

    .about-card-box {
        padding: 18px 16px;
    }

    .about-bottom-bar {
        flex-direction: column;
        gap: 14px;
        align-items: stretch;
    }

    .about-bottom-actions {
        width: 100%;
    }

    .about-btn-cancel,
    .about-btn-submit {
        flex: 1;
        justify-content: center;
    }
}

/* ==========================================================================
   Admin Product Management (Ürün Yönetimi Tablosu)
   ========================================================================== */
.pman-page {
    max-width: 1420px;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #111827;
}

.pman-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    gap: 20px;
}

.pman-header__copy h1 {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 6px 0;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.pman-header__copy p {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.pman-btn-create {
    height: 40px;
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    background: #D0920E;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-sizing: border-box;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(208, 146, 14, 0.25);
    transition: all .15s ease;
}

.pman-btn-create:hover {
    background: #B8800B;
    box-shadow: 0 4px 12px rgba(208, 146, 14, 0.35);
}

.pman-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: visible;
}

.pman-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    border-bottom: 1px solid #f3f4f6;
    gap: 16px;
    flex-wrap: wrap;
}

.pman-tabs-group {
    display: flex;
    align-items: center;
    gap: 18px;
}

.pman-title-badge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pman-title-text {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.pman-badge-count {
    font-size: 11.5px;
    font-weight: 700;
    color: #374151;
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 10px;
}

.pman-status-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pman-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 600;
    color: #4b5563;
    transition: all .15s ease;
}

.pman-tab:hover {
    background: #f9fafb;
    color: #111827;
}

.pman-tab.is-active {
    background: #fef3c7;
    color: #b45309;
}

.pman-tab-count {
    font-size: 11px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 8px;
}

.pman-tab-count--active {
    color: #16a34a;
    background: #dcfce7;
}

.pman-tab-count--passive {
    color: #dc2626;
    background: #fee2e2;
}

.pman-actions-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pman-search-form {
    margin: 0;
}

.pman-search-input-wrap {
    position: relative;
    width: 230px;
}

.pman-search-input {
    width: 100%;
    height: 36px;
    padding: 0 32px 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 12.5px;
    color: #111827;
    outline: none;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
    background: #ffffff;
}

.pman-search-input:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
}

.pman-search-submit {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pman-dropdown-container {
    position: relative;
}

.pman-btn-filter {
    height: 36px;
    padding: 0 13px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 12.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all .15s ease;
}

.pman-btn-filter:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
}

.pman-btn-filter.has-filter {
    border-color: #d97706;
    color: #d97706;
    background: #fffdf5;
}

.pman-filter-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 50;
    width: 220px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.pman-filter-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #f3f4f6;
    background: #f9fafb;
}

.pman-filter-menu-header strong {
    font-size: 12px;
    color: #374151;
}

.pman-filter-clear {
    font-size: 11px;
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
}

.pman-filter-menu-items {
    max-height: 240px;
    overflow-y: auto;
    padding: 4px 0;
}

.pman-filter-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
    font-size: 12px;
    color: #4b5563;
    text-decoration: none;
    transition: background .15s ease;
}

.pman-filter-item:hover {
    background: #f3f4f6;
    color: #111827;
}

.pman-filter-item.is-selected {
    background: #fffdf5;
    color: #d97706;
    font-weight: 600;
}

.pman-filter-item small {
    color: #9ca3af;
}

.pman-sort-wrap {
    position: relative;
}

.pman-sort-select {
    height: 36px;
    padding: 0 28px 0 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 12.5px;
    font-weight: 600;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color .15s ease;
}

.pman-sort-select:focus {
    border-color: #d97706;
}

.pman-chevron-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6b7280;
}

.pman-table-responsive {
    width: 100%;
    overflow-x: auto;
}

.pman-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    text-align: left;
}

.pman-table th {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    padding: 12px 22px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.pman-table td {
    padding: 14px 22px;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
    color: #374151;
    font-size: 13.5px;
}

.pman-table tbody tr:hover {
    background-color: #fcfcfc;
}

.pman-table tbody tr:last-child td {
    border-bottom: none;
}

.pman-prod-cell {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pman-prod-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: #18181b;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pman-prod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pman-prod-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.pman-prod-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pman-prod-sku {
    font-size: 11.5px;
    color: #9ca3af;
}

.pman-cat-text {
    font-size: 13px;
    color: #374151;
}

.pman-price-text {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
}

.pman-tag-badge {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11.5px;
    font-weight: 600;
}

.pman-tag-badge--standard {
    background: #f0fdf4;
    color: #166534;
}

.pman-tag-badge--new {
    background: #fef3c7;
    color: #b45309;
}

.pman-stock-text {
    font-size: 13.5px;
    font-weight: 700;
    color: #16a34a;
}

.pman-stock-text.is-low {
    color: #ef4444;
}

.pman-toggle-form {
    margin: 0;
}

.pman-switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 22px;
    cursor: pointer;
    margin: 0;
}

.pman-switch-input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.pman-switch-slider {
    position: absolute;
    inset: 0;
    background-color: #d1d5db;
    border-radius: 22px;
    transition: background-color .2s ease;
}

.pman-switch-slider::before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: transform .2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.pman-switch-input:checked + .pman-switch-slider {
    background-color: #d97706;
}

.pman-switch-input:checked + .pman-switch-slider::before {
    transform: translateX(20px);
}

.pman-action-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pman-btn-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #4b5563;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    transition: all .15s ease;
}

.pman-btn-icon:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
}

.pman-btn-icon--danger {
    color: #ef4444;
    border-color: #fee2e2;
}

.pman-btn-icon--danger:hover {
    background: #fef2f2;
    border-color: #fca5a5;
    color: #dc2626;
}

.pman-empty-row {
    text-align: center;
    padding: 50px 20px !important;
}

.pman-empty-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #9ca3af;
}

.pman-empty-content p {
    margin: 0;
    font-size: 13.5px;
}

.pman-pagination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    border-top: 1px solid #f3f4f6;
    font-size: 12.5px;
    color: #6b7280;
    flex-wrap: wrap;
    gap: 12px;
}

.pman-pagination-info span {
    font-weight: 600;
    color: #111827;
}

.pman-pagination-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pman-page-btn {
    min-width: 28px;
    height: 28px;
    padding: 0 6px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #374151;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all .15s ease;
}

.pman-page-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.pman-page-btn.is-active {
    background: #d97706;
    border-color: #d97706;
    color: #ffffff;
}

.pman-page-btn.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

.pman-pagesize-wrap {
    position: relative;
    margin-left: 8px;
}

.pman-pagesize-select {
    height: 28px;
    padding: 0 24px 0 8px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    background: #ffffff;
    color: #374151;
    font-size: 12px;
    font-weight: 500;
    appearance: none;
    cursor: pointer;
    outline: none;
}

@media (max-width: 768px) {
    .pman-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pman-btn-create {
        width: 100%;
        justify-content: center;
    }

    .pman-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .pman-actions-group {
        flex-wrap: wrap;
    }

    .pman-search-input-wrap {
        width: 100%;
    }

    .pman-pagination-footer {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   Admin Product Add/Edit (Yeni Ürün Ekleme / Düzenleme)
   ========================================================================== */
.prod-create-page {
    max-width: 1360px;
    margin: 0 auto;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #111827;
}

.prod-create-shell {
    width: 100%;
}

.prod-create-header {
    margin-bottom: 22px;
}

.prod-create-header h1 {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 6px 0;
    letter-spacing: -0.4px;
    line-height: 1.2;
}

.prod-create-header p {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.prod-card-box {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 18px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.prod-card-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.prod-badge {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #000000;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.prod-card-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 3px;
}

.prod-card-title-row h2 {
    margin: 0 !important;
}

.prod-card-titles h2 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 3px 0;
    line-height: 1.3;
}

.prod-card-titles p {
    font-size: 12.5px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.prod-grid-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

.prod-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px 20px;
}

.prod-grid-five {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1fr 1fr 1fr;
    gap: 16px 20px;
}

.prod-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.prod-field-group label {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}

.prod-req {
    color: #ef4444;
    font-weight: 700;
}

.prod-field-full {
    width: 100%;
}

.prod-field-hint {
    font-size: 11.5px;
    color: #9ca3af;
    margin-top: 2px;
}

.prod-input,
.prod-select {
    width: 100%;
    height: 42px;
    padding: 0 14px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    font-size: 13.5px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.prod-input:focus,
.prod-select:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.prod-input::placeholder {
    color: #9ca3af;
    font-size: 13px;
}

.prod-currency-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.prod-input-cur {
    padding-right: 42px;
}

.prod-cur-suffix {
    position: absolute;
    right: 14px;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
    pointer-events: none;
}

.prod-select-wrapper {
    position: relative;
    width: 100%;
}

.prod-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 36px;
    cursor: pointer;
}

.prod-chevron-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #6b7280;
}

.prod-field-error {
    color: #ef4444;
    font-size: 11.5px;
    margin-top: 2px;
}

.prod-field-error:empty {
    display: none;
}

/* Richbox / WYSIWYG */
.prod-editor-richbox {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    position: relative;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.prod-editor-richbox:focus-within {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.12);
}

.prod-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

.prod-toolbar-btn {
    font-size: 12px;
    color: #374151;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 6px;
    cursor: pointer;
    border-radius: 4px;
}

.prod-tb-arrow {
    font-size: 9px;
    color: #6b7280;
}

.prod-tb-divider {
    width: 1px;
    height: 16px;
    background: #e5e7eb;
    margin: 0 4px;
}

.prod-tb-tool {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #4b5563;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    transition: background .15s ease;
}

.prod-tb-tool:hover {
    background: #e5e7eb;
    color: #111827;
}

.prod-rich-textarea {
    width: 100%;
    border: none;
    padding: 12px 14px 28px;
    font-size: 13.5px;
    color: #111827;
    font-family: inherit;
    outline: none;
    resize: vertical;
    min-height: 90px;
    line-height: 1.5;
    box-sizing: border-box;
    background: transparent;
}

.prod-char-counter {
    position: absolute;
    right: 12px;
    bottom: 8px;
    font-size: 11px;
    color: #9ca3af;
    pointer-events: none;
}

/* 03 Ürün Görselleri */
.prod-gallery-manager-layout {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.prod-dropzone-box {
    width: 240px;
    height: 120px;
    border: 1.5px dashed #d1d5db;
    border-radius: 10px;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    padding: 12px;
    box-sizing: border-box;
    transition: all .2s ease;
    flex-shrink: 0;
}

.prod-dropzone-box:hover,
.prod-dropzone-box.is-dragover {
    border-color: #d97706;
    background: #fffdf5;
}

.prod-hidden-file {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.prod-dropzone-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.prod-cloud-icon {
    color: #6b7280;
    margin-bottom: 2px;
}

.prod-dropzone-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #111827;
}

.prod-dropzone-sub {
    font-size: 11px;
    color: #6b7280;
}

.prod-dropzone-note {
    font-size: 10px;
    color: #9ca3af;
    margin-top: 2px;
}

.prod-thumbnails-area {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 0;
}

.prod-thumbs-header {
    font-size: 12px;
    font-weight: 600;
    color: #4b5563;
}

.prod-thumbs-list {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.prod-thumb-card {
    position: relative;
    width: 120px;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    background: #000000;
    border: 1px solid #e5e7eb;
    cursor: grab;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    user-select: none;
}

.prod-thumb-card:active {
    cursor: grabbing;
}

.prod-thumb-card.is-dragging {
    opacity: 0.4;
    transform: scale(0.95);
}

.prod-thumb-card.drag-over {
    border-color: #d97706;
    box-shadow: 0 0 0 2px #d97706;
    transform: scale(1.03);
}

.prod-thumb-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.prod-thumb-cover-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: #d97706;
    color: #ffffff;
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 2;
    letter-spacing: 0.2px;
}

.prod-thumb-remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    transition: background .15s ease;
}

.prod-thumb-remove-btn:hover {
    background: #ef4444;
    border-color: #ef4444;
}

.prod-add-thumb-card {
    width: 120px;
    height: 90px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all .15s ease;
    margin-top: 6px;
}

.prod-add-thumb-card:hover {
    border-color: #d97706;
    background: #fffdf5;
}

.prod-add-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 600;
}

.prod-add-thumb-card span {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
}

/* 04 Yayın Ayarları */
.prod-publish-radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.prod-radio-card {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px 18px;
    background: #ffffff;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all .15s ease;
}

.prod-radio-card:hover {
    border-color: #d1d5db;
}

.prod-radio-card.is-selected {
    border-color: #f59e0b;
    background: #fffdf5;
}

.prod-radio-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.prod-radio-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all .15s ease;
}

.prod-radio-card.is-selected .prod-radio-circle {
    border-color: #d97706;
}

.prod-radio-card.is-selected .prod-radio-circle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d97706;
}

.prod-radio-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prod-radio-copy strong {
    font-size: 13.5px;
    font-weight: 700;
    color: #111827;
}

.prod-radio-copy span {
    font-size: 12px;
    color: #6b7280;
}

.prod-feature-toggle {
    margin-top: 16px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}

.prod-feature-toggle:hover {
    border-color: #f59e0b;
    background: #fffdf5;
}

.prod-feature-toggle > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.prod-feature-toggle__check {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    display: grid;
    place-items: center;
    border: 2px solid #d1d5db;
    border-radius: 5px;
    color: transparent;
    font-size: 13px;
    font-weight: 800;
}

.prod-feature-toggle > input:checked + .prod-feature-toggle__check {
    border-color: #d97706;
    background: #f59e0b;
    color: #171200;
}

.prod-feature-toggle:has(input:checked) {
    border-color: #f59e0b;
    background: #fffdf5;
}

/* Alt Butonlar */
.prod-bottom-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 22px;
    margin-bottom: 45px;
}

.prod-btn-cancel {
    height: 40px;
    padding: 0 22px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .15s ease;
}

.prod-btn-cancel:hover {
    background: #f9fafb;
    border-color: #9ca3af;
    color: #111827;
}

.prod-btn-submit {
    height: 40px;
    padding: 0 22px;
    border: none;
    border-radius: 8px;
    background: #D0920E;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    box-sizing: border-box;
    transition: all .15s ease;
    box-shadow: 0 2px 6px rgba(208, 146, 14, 0.25);
}

.prod-btn-submit:hover {
    background: #B8800B;
    box-shadow: 0 4px 12px rgba(208, 146, 14, 0.35);
}

@media (max-width: 900px) {
    .prod-grid-five,
    .prod-grid-four,
    .prod-grid-two,
    .prod-publish-radio-grid {
        grid-template-columns: 1fr;
    }

    .prod-card-box {
        padding: 18px 16px;
    }

    .prod-bottom-actions {
        width: 100%;
    }

    .prod-btn-cancel,
    .prod-btn-submit {
        flex: 1;
        justify-content: center;
    }
}

/* ==========================================================================
   PRODUCT DETAIL
   ========================================================================== */
.pdetail-page {
    padding: 30px 0 80px;
    background: #fdfdfd;
    min-height: calc(100vh - 180px);
}

.pdetail-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 28px;
}

.pdetail-breadcrumb a {
    color: #4b5563;
    text-decoration: none;
    transition: color .15s;
}

.pdetail-breadcrumb a:hover {
    color: #d97706;
}

.pdetail-breadcrumb span {
    color: #9ca3af;
}

.pdetail-breadcrumb span.current {
    color: #111827;
    font-weight: 600;
}

.pdetail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 50px;
}

.pdetail-gallery {
    position: sticky;
    top: 90px;
}

.pdetail-main-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.pdetail-main-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform .3s ease;
}

.pdetail-main-img-box:hover img {
    transform: scale(1.04);
}

.pdetail-badge-new {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #111827;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.pdetail-badge-discount {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #dc2626;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

.pdetail-thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.pdetail-thumb-btn {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    background: #ffffff;
    padding: 4px;
    cursor: pointer;
    overflow: hidden;
    flex-shrink: 0;
    transition: all .2s ease;
}

.pdetail-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pdetail-thumb-btn.active,
.pdetail-thumb-btn:hover {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.pdetail-info {
    display: flex;
    flex-direction: column;
}

.pdetail-cat-pill {
    align-self: flex-start;
    background: #fef3c7;
    color: #b45309;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.pdetail-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin: 0 0 14px;
}

.pdetail-stock-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.pdetail-stock-in {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #16a34a;
}

.pdetail-stock-in .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
}

.pdetail-stock-low {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #d0920e;
    font-size: 13px;
    font-weight: 600;
}

.pdetail-stock-low .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0920e;
}

.pdetail-stock-out {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #dc2626;
}

.pdetail-stock-out .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc2626;
}

.pdetail-price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 20px;
}

.pdetail-current-price {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.5px;
}

.pdetail-old-price {
    font-size: 20px;
    font-weight: 500;
    color: #9ca3af;
    text-decoration: line-through;
}

.pdetail-unit-badge {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.pdetail-short-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 24px;
}

.pdetail-meta-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 13px;
    color: #6b7280;
}

.pdetail-meta-list strong {
    color: #111827;
}

.pdetail-buy-form {
    display: flex;
    gap: 14px;
    margin-bottom: 30px;
}

.pdetail-quantity-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    height: 48px;
    overflow: hidden;
}

.pdetail-qty-btn {
    width: 40px;
    height: 100%;
    border: 0;
    background: transparent;
    font-size: 18px;
    font-weight: 600;
    color: #4b5563;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .15s;
}

.pdetail-qty-btn:hover {
    background: #f3f4f6;
}

.pdetail-quantity-wrap input {
    width: 44px;
    height: 100%;
    border: 0;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    outline: none;
    -moz-appearance: textfield;
}

.pdetail-quantity-wrap input::-webkit-outer-spin-button,
.pdetail-quantity-wrap input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pdetail-add-cart-btn {
    flex: 1;
    height: 48px;
    background: linear-gradient(135deg, #d97706, #b45309);
    color: #ffffff;
    border: 0;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.28);
    transition: all .2s ease;
}

.pdetail-add-cart-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #b45309, #92400e);
    box-shadow: 0 6px 18px rgba(217, 119, 6, 0.38);
    transform: translateY(-1px);
}

.pdetail-add-cart-btn:disabled {
    background: #9ca3af;
    box-shadow: none;
    cursor: not-allowed;
}

.pdetail-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid #f3f4f6;
}

.pdetail-perk {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pdetail-perk strong {
    display: block;
    font-size: 12.5px;
    color: #111827;
    font-weight: 600;
}

.pdetail-perk small {
    display: block;
    font-size: 11px;
    color: #6b7280;
}

/* Tabs */
.pdetail-tabs-section {
    margin-top: 40px;
    border-top: 1px solid #e5e7eb;
    padding-top: 36px;
}

.pdetail-tab-nav {
    display: flex;
    gap: 12px;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 30px;
}

.pdetail-tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all .2s ease;
}

.pdetail-tab-btn:hover {
    color: #111827;
}

.pdetail-tab-btn.active {
    color: #d97706;
    border-bottom-color: #d97706;
}

.pdetail-tab-content {
    display: none;
}

.pdetail-tab-content.active {
    display: block;
}

.pdetail-desc-text {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
}




@media (max-width: 900px) {
    .pdetail-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pdetail-gallery {
        position: static;
    }

}


/* ==========================================================================
   CONTACT PAGE FORM ALERTS
   ========================================================================== */
.contact-form-alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 13.5px;
    font-weight: 600;
}

.contact-form-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.contact-form-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

/* ==========================================================================
   ADMIN MESSAGES MANAGEMENT PAGE (.msgman-*)
   ========================================================================== */
.msgman-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.msgman-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 4px;
    font-family: 'Inter', sans-serif;
}

.msgman-header p {
    font-size: 13.5px;
    color: #6b7280;
    margin: 0;
}

.msgman-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.msgman-stat-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.msgman-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.msgman-stat-icon--total {
    background: #f3f4f6;
    color: #4b5563;
}

.msgman-stat-icon--unread {
    background: #fef3c7;
    color: #d97706;
}

.msgman-stat-icon--read {
    background: #ecfdf5;
    color: #16a34a;
}

.msgman-stat-card span {
    display: block;
    font-size: 12.5px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 2px;
}

.msgman-stat-card strong {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
}

.msgman-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.msgman-toolbar {
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-bottom: 1px solid #f3f4f6;
}

.msgman-status-tabs {
    display: flex;
    gap: 6px;
}

.msgman-status-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none;
    transition: all .15s;
}

.msgman-status-tabs a:hover {
    background: #f3f4f6;
    color: #111827;
}

.msgman-status-tabs a.active {
    background: #D0920E;
    color: #ffffff;
}

.msgman-status-tabs a .badge {
    padding: 1px 6px;
    background: #e5e7eb;
    color: #374151;
    border-radius: 10px;
    font-size: 11px;
}

.msgman-status-tabs a.active .badge {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.msgman-status-tabs a .badge--warning {
    background: #fef3c7;
    color: #b45309;
}

.msgman-filter-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.msgman-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.msgman-search-wrap svg {
    position: absolute;
    left: 12px;
    color: #9ca3af;
    pointer-events: none;
}

.msgman-search-wrap input {
    height: 38px;
    padding: 0 32px 0 36px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    width: 280px;
    transition: border-color .15s;
}

.msgman-search-wrap input:focus {
    border-color: #d97706;
}

.msgman-clear-search {
    position: absolute;
    right: 10px;
    color: #9ca3af;
    text-decoration: none;
    font-size: 12px;
}

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

.msgman-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.msgman-table th {
    background: #fafafa;
    padding: 12px 18px;
    text-align: left;
    font-weight: 600;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

.msgman-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f3f4f6;
    vertical-align: middle;
}

.msgman-table tr:hover td {
    background: #fcfcfc;
}

.msgman-row--unread td {
    background: #fffdf5;
}

.msgman-row--unread td strong {
    color: #000000;
    font-weight: 700;
}

.msgman-sender-cell strong {
    display: block;
    color: #111827;
    font-weight: 600;
    font-size: 13.5px;
}

.msgman-contact-cell {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.msgman-email-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 12.5px;
}

.msgman-email-link:hover {
    text-decoration: underline;
}

.msgman-phone-link {
    color: #4b5563;
    text-decoration: none;
    font-size: 12px;
}

.msgman-subject-badge {
    display: inline-block;
    padding: 3px 8px;
    background: #f3f4f6;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
}

.msgman-message-preview {
    cursor: pointer;
    max-width: 380px;
}

.msgman-message-preview p {
    margin: 0;
    color: #4b5563;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.msgman-message-preview:hover p {
    color: #d97706;
}

.msgman-date-cell span {
    display: block;
    color: #111827;
    font-weight: 500;
}

.msgman-date-cell small {
    display: block;
    color: #9ca3af;
    font-size: 11px;
}

.msgman-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 600;
}

.msgman-badge--read {
    background: #ecfdf5;
    color: #16a34a;
    border: 1px solid #a7f3d0;
}

.msgman-badge--unread {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
}

.msgman-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d97706;
    display: inline-block;
}

.msgman-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.msgman-btn-action {
    height: 32px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    border: 0;
    transition: all .15s;
    text-decoration: none;
    box-sizing: border-box;
}

.msgman-btn-view {
    background: #111827;
    color: #ffffff;
}

.msgman-btn-view:hover {
    background: #1f2937;
}

.msgman-btn-read {
    background: #ecfdf5;
    color: #16a34a;
    border: 1px solid #a7f3d0;
    padding: 0 8px;
}

.msgman-btn-read:hover {
    background: #d1fae5;
}

.msgman-btn-unread {
    background: #fffbeb;
    color: #d97706;
    border: 1px solid #fde68a;
    padding: 0 8px;
}

.msgman-btn-unread:hover {
    background: #fef3c7;
}

.msgman-btn-reply {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
    padding: 0 8px;
}

.msgman-btn-reply:hover {
    background: #dbeafe;
}

.msgman-btn-delete {
    background: #fee2e2;
    color: #dc2626;
    padding: 0 8px;
}

.msgman-btn-delete:hover {
    background: #fecaca;
    color: #b91c1c;
}

.msgman-empty-state {
    padding: 48px 24px;
    text-align: center;
}

.msgman-empty-state h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 12px 0 4px;
}

.msgman-empty-state p {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.msgman-pagination {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f3f4f6;
    font-size: 13px;
    color: #6b7280;
}

.msgman-page-links {
    display: flex;
    gap: 6px;
}

.msgman-page-links a {
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 12.5px;
    transition: all .15s;
}

.msgman-page-links a:hover {
    background: #f3f4f6;
}

.msgman-page-links a.active {
    background: #D0920E;
    color: #ffffff;
    border-color: #D0920E;
}

/* Modal */
.msgman-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
}

.msgman-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.msgman-modal {
    background: #ffffff;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform .2s ease;
}

.msgman-modal-overlay.is-open .msgman-modal {
    transform: translateY(0);
}

.msgman-modal__header {
    padding: 20px 24px;
    background: #fafafa;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.msgman-modal__badge {
    display: inline-block;
    padding: 3px 8px;
    background: #fef3c7;
    color: #b45309;
    font-size: 11.5px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 6px;
}

.msgman-modal__header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.msgman-modal__close {
    background: transparent;
    border: 0;
    font-size: 18px;
    color: #6b7280;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background .15s;
}

.msgman-modal__close:hover {
    background: #e5e7eb;
    color: #111827;
}

.msgman-modal__meta {
    padding: 14px 24px;
    background: #ffffff;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 13px;
    color: #4b5563;
}

.msgman-modal__meta a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.msgman-modal__body {
    padding: 24px;
}

.msgman-modal__body label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.msgman-modal__content {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #1f2937;
    max-height: 280px;
    overflow-y: auto;
    white-space: pre-wrap;
}

.msgman-modal__footer {
    padding: 16px 24px;
    background: #fafafa;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.msgman-btn-reply-lg {
    height: 40px;
    padding: 0 18px;
    background: #2563eb;
    color: #ffffff;
    font-size: 13.5px;
}

.msgman-btn-reply-lg:hover {
    background: #1d4ed8;
}

.msgman-btn-close-lg {
    height: 40px;
    padding: 0 16px;
    background: #f3f4f6;
    color: #374151;
    font-size: 13.5px;
}

.msgman-btn-close-lg:hover {
    background: #e5e7eb;
}

@media (max-width: 900px) {
    .msgman-stats-grid {
        grid-template-columns: 1fr;
    }

    .msgman-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .msgman-search-wrap input {
        width: 100%;
    }
}

/* ==========================================================================
   Admin Sipariş Yönetimi (Orders Admin)
   ========================================================================== */
.ordman-page {
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0f172a;
}

.ordman-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #15803d;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ordman-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.ordman-header__copy h1,
.ordman-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.ordman-header__copy p,
.ordman-header p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

/* 5'li Metrik Kartları Grid */
.ordman-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.ordman-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .15s ease, box-shadow .15s ease;
}

.ordman-stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ordman-stat-card__main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ordman-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ordman-stat-icon--purple {
    background: #f3e8ff;
    color: #9333ea;
}

.ordman-stat-icon--green {
    background: #ecfdf5;
    color: #10b981;
}

.ordman-stat-icon--amber {
    background: #fff7ed;
    color: #d97706;
}

.ordman-stat-icon--red {
    background: #fef2f2;
    color: #ef4444;
}

.ordman-stat-icon--blue {
    background: #eff6ff;
    color: #2563eb;
}

.ordman-stat-content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.ordman-stat-title {
    font-size: 12.5px;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ordman-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ordman-stat-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.ordman-stat-sub {
    font-size: 11.5px;
    color: #94a3b8;
}

.ordman-stat-trend {
    font-size: 11.5px;
    font-weight: 600;
}

.ordman-stat-trend--up {
    color: #16a34a;
}

.ordman-stat-trend--down {
    color: #dc2626;
}

/* Ana Kart & Toolbar */
.ordman-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.ordman-toolbar {
    padding: 16px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.ordman-status-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.ordman-status-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    background: transparent;
    transition: all .15s ease;
    white-space: nowrap;
}

.ordman-status-tabs a:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.ordman-status-tabs a.active {
    background: #D0920E;
    color: #ffffff;
    font-weight: 600;
}

.ordman-status-tabs a .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #e2e8f0;
    color: #475569;
    font-size: 11px;
    font-weight: 700;
}

.ordman-status-tabs a.active .badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.ordman-status-tabs a .badge.badge--warning {
    background: #fef3c7;
    color: #b45309;
}

.ordman-filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ordman-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.ordman-search-wrap svg {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    pointer-events: none;
}

.ordman-search-wrap input {
    height: 38px;
    width: 280px;
    padding: 0 32px 0 36px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.ordman-search-wrap input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.ordman-clear-search {
    position: absolute;
    right: 10px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
}

.ordman-clear-search:hover {
    color: #0f172a;
}

/* Sipariş Tablosu */
.ordman-table-wrap {
    overflow-x: auto;
}

.ordman-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13.5px;
    text-align: left;
}

.ordman-table th {
    padding: 12px 16px;
    background: #f8fafc;
    color: #64748b;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid #e2e8f0;
}

.ordman-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.ordman-table tbody tr:hover {
    background: #fbfcfe;
}

.ordman-orderno-cell strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    font-family: monospace;
}

.ordman-orderno-cell small {
    font-size: 11.5px;
    color: #64748b;
}

.ordman-cust-cell strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a;
}

.ordman-cust-cell small {
    display: block;
    font-size: 12px;
    color: #64748b;
}

.ordman-date-cell span {
    display: block;
    font-weight: 500;
    color: #1e293b;
}

.ordman-date-cell small {
    font-size: 11.5px;
    color: #94a3b8;
}

.ordman-item-preview {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ordman-item-preview img {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
}

.ordman-item-preview span {
    font-size: 13px;
    color: #1e293b;
    font-weight: 500;
}

.ordman-price-cell strong {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
}

/* Durum Rozetleri */
.ordman-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.ordman-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.ordman-badge--pending {
    background: #fef3c7;
    color: #b45309;
}

.ordman-badge--confirmed {
    background: #e0f2fe;
    color: #0369a1;
}

.ordman-badge--shipped {
    background: #f3e8ff;
    color: #7e22ce;
}

.ordman-badge--delivered {
    background: #dcfce7;
    color: #15803d;
}

.ordman-badge--cancelled {
    background: #fee2e2;
    color: #b91c1c;
}

.ordman-badge--refunded {
    background: #ffedd5;
    color: #c2410c;
}

/* Aksiyonlar */
.ordman-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.ordman-btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 32px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all .15s ease;
}

.ordman-btn-view {
    background: #f1f5f9;
    color: #334155;
    border-color: #cbd5e1;
}

.ordman-btn-view:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.ordman-status-select {
    height: 32px;
    padding: 0 8px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    outline: none;
}

.ordman-status-select:hover {
    border-color: #94a3b8;
}

.ordman-empty {
    padding: 60px 20px !important;
}

.ordman-empty-state {
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
}

.ordman-empty-state h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 12px 0 4px 0;
}

.ordman-empty-state p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* Sayfalama */
.ordman-pagination {
    padding: 14px 20px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}

.ordman-page-links {
    display: flex;
    gap: 5px;
}

.ordman-page-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    color: #334155;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 500;
    transition: all .15s ease;
}

.ordman-page-links a:hover {
    background: #f1f5f9;
}

.ordman-page-links a.active {
    background: #D0920E;
    border-color: #D0920E;
    color: #ffffff;
    font-weight: 700;
}

/* Sipariş Detay Modalı */
.ordman-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ordman-modal-overlay.is-open {
    display: flex;
}

.ordman-modal {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 680px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.ordman-modal__header {
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.ordman-modal__badge {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    padding: 2px 8px;
    border-radius: 6px;
    margin-bottom: 6px;
}

.ordman-modal__header h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    font-family: monospace;
}

.ordman-modal__date {
    font-size: 12px;
    color: #64748b;
    margin-top: 4px;
    display: block;
}

.ordman-modal__close {
    background: none;
    border: none;
    font-size: 18px;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
}

.ordman-modal__close:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.ordman-modal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px 24px 0 24px;
}

.ordman-modal__box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 14px 16px;
}

.ordman-modal__box h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
}

.ordman-modal__info-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
}

.ordman-modal__info-list span {
    color: #64748b;
}

.ordman-modal__info-list a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.ordman-modal__address {
    font-size: 13px;
    color: #1e293b;
    line-height: 1.5;
    margin: 0;
}

.ordman-modal__items-wrap {
    padding: 20px 24px;
}

.ordman-modal__items-wrap h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin: 0 0 12px 0;
}

.ordman-modal__table-scroll {
    max-height: 220px;
    overflow-y: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.ordman-modal__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.ordman-modal__table th {
    padding: 10px 12px;
    background: #f8fafc;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
}

.ordman-modal__table td {
    padding: 10px 12px;
    border-bottom: 1px solid #f1f5f9;
}

.ordman-modal__item-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ordman-modal__item-cell img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.ordman-modal__total-strip {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    font-size: 14px;
    color: #64748b;
}

.ordman-modal__total-strip strong {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.ordman-modal__footer {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.ordman-modal__status-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ordman-modal__status-form label {
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
}

.ordman-modal__select {
    height: 36px;
    padding: 0 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    background: #ffffff;
    color: #0f172a;
    outline: none;
}

.ordman-btn-update-modal {
    background: #2563eb;
    color: #ffffff;
    height: 36px;
    padding: 0 16px;
}

.ordman-btn-update-modal:hover {
    background: #1d4ed8;
}

.ordman-btn-close-modal {
    background: #e2e8f0;
    color: #334155;
    height: 36px;
    padding: 0 16px;
}

.ordman-btn-close-modal:hover {
    background: #cbd5e1;
}

/* Responsive */
@media (max-width: 1200px) {
    .ordman-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .ordman-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .ordman-search-wrap input {
        width: 100%;
    }

    .ordman-modal__grid {
        grid-template-columns: 1fr;
    }

    .ordman-modal__footer {
        flex-direction: column;
        align-items: stretch;
    }

    .ordman-modal__status-form {
        flex-direction: column;
        align-items: stretch;
    }
}

/* ==========================================================================
   Admin Müşteriler (Customer Management)
   ========================================================================== */
.custman-page {
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0f172a;
}

.custman-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #15803d;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.custman-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.custman-header__copy h1,
.custman-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.custman-header__copy p,
.custman-header p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

/* 5'li Metrik Kartları */
.custman-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.custman-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .15s ease, box-shadow .15s ease;
}

.custman-stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.custman-stat-card__main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.custman-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custman-stat-icon--purple {
    background: #f3e8ff;
    color: #9333ea;
}

.custman-stat-icon--green {
    background: #ecfdf5;
    color: #10b981;
}

.custman-stat-icon--blue {
    background: #eff6ff;
    color: #2563eb;
}

.custman-stat-icon--amber {
    background: #fff7ed;
    color: #ea580c;
}

.custman-stat-icon--red {
    background: #fef2f2;
    color: #ef4444;
}

.custman-stat-content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.custman-stat-title {
    font-size: 12.5px;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custman-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custman-stat-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.custman-stat-sub {
    font-size: 11.5px;
    color: #94a3b8;
}

.custman-stat-percent {
    font-size: 11.5px;
    font-weight: 700;
    color: #16a34a;
}

/* Ana Kart & Toolbar */
.custman-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.custman-toolbar {
    padding: 16px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.custman-filter-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.custman-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.custman-search-wrap svg {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    pointer-events: none;
}

.custman-search-wrap input {
    height: 38px;
    width: 260px;
    padding: 0 32px 0 36px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.custman-search-wrap input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.custman-clear-search {
    position: absolute;
    right: 10px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
}

.custman-clear-search:hover {
    color: #0f172a;
}

.custman-select {
    height: 38px;
    padding: 0 32px 0 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 10px;
    appearance: none;
    cursor: pointer;
    outline: none;
}

.custman-select:focus {
    border-color: #3b82f6;
}

.custman-btn-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}

.custman-btn-filter:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.custman-badge-total {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

/* Tablo */
.custman-table-wrap {
    overflow-x: auto;
}

.custman-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.custman-table th {
    padding: 12px 18px;
    background: #f8fafc;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 1px solid #e2e8f0;
}

.custman-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.custman-table tbody tr:hover {
    background: #fbfcfe;
}

/* Müşteri Hücresi */
.custman-user-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.custman-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.custman-user-info strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a;
}

.custman-user-info small {
    font-size: 11.5px;
    color: #94a3b8;
}

.custman-contact-cell .custman-email {
    display: block;
    font-weight: 500;
    color: #1e293b;
}

.custman-contact-cell .custman-phone {
    display: block;
    font-size: 11.5px;
    color: #64748b;
    margin-top: 2px;
}

.custman-location-cell {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #475569;
    font-weight: 500;
}

.custman-orders-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 6px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.custman-orders-badge--active {
    background: #e0f2fe;
    color: #0369a1;
}

.custman-spent {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
}

.custman-date-cell span {
    display: block;
    font-weight: 500;
    color: #1e293b;
}

.custman-date-cell small {
    font-size: 11.5px;
    color: #94a3b8;
}

.custman-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
}

.custman-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.custman-status--active {
    background: #dcfce7;
    color: #15803d;
}

.custman-status--inactive {
    background: #f1f5f9;
    color: #64748b;
}

.custman-btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    height: 30px;
    padding: 0 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    background: #f1f5f9;
    color: #334155;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    transition: all .15s ease;
}

.custman-btn-action:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.custman-empty {
    padding: 60px 20px !important;
    text-align: center;
}

.custman-empty-state p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

/* Alt Bar / Pagination */
.custman-footer {
    padding: 14px 20px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
}

.custman-pagination {
    display: flex;
    align-items: center;
}

.custman-page-links {
    display: flex;
    gap: 5px;
}

.custman-page-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    color: #334155;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all .15s ease;
}

.custman-page-links a:hover {
    background: #f1f5f9;
}

.custman-page-links a.active {
    background: #D0920E;
    border-color: #D0920E;
    color: #ffffff;
    font-weight: 700;
}

.custman-pagesize-select {
    height: 32px;
    padding: 0 24px 0 8px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 12px;
    color: #334155;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 8px center;
    background-size: 8px;
    appearance: none;
    cursor: pointer;
    outline: none;
}

/* Modal */
.custman-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custman-modal-overlay.is-open {
    display: flex;
}

.custman-modal {
    background: #ffffff;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.custman-modal__header {
    padding: 20px 24px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custman-modal__user {
    display: flex;
    align-items: center;
    gap: 14px;
}

.custman-modal__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custman-modal__user h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}

.custman-modal__email {
    font-size: 12.5px;
    color: #64748b;
}

.custman-modal__close {
    background: none;
    border: none;
    font-size: 18px;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
}

.custman-modal__close:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.custman-modal__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 24px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.custman-modal__stat-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 14px;
}

.custman-modal__stat-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
}

.custman-modal__stat-num {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 2px;
}

.custman-modal__body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.custman-modal__section h4 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
}

.custman-modal__info-list {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
}

.custman-modal__info-list span {
    color: #64748b;
}

.custman-modal__address-text {
    margin: 4px 0 0 0;
    color: #1e293b;
    line-height: 1.4;
    font-weight: 500;
}

.custman-modal__orders-table-wrap {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    max-height: 180px;
    overflow-y: auto;
}

.custman-modal__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
}

.custman-modal__table th {
    padding: 8px 12px;
    background: #f8fafc;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
    position: sticky;
    top: 0;
}

.custman-modal__table td {
    padding: 8px 12px;
    border-bottom: 1px solid #f1f5f9;
}

.custman-order-pill {
    display: inline-block;
    padding: 2px 6px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
}

.custman-modal__footer {
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custman-btn-orders-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.custman-btn-orders-link:hover {
    text-decoration: underline;
}

.custman-btn-close-modal {
    background: #e2e8f0;
    color: #334155;
    border: none;
    height: 34px;
    padding: 0 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.custman-btn-close-modal:hover {
    background: #cbd5e1;
}

/* Responsive */
@media (max-width: 1200px) {
    .custman-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .custman-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .custman-search-wrap input {
        width: 100%;
    }

    .custman-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .custman-select {
        width: 100%;
    }

    .custman-footer {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
}

/* ==========================================================================
   Admin Kuponlar (Coupon Management - List & Create/Edit)
   ========================================================================== */
.coupman-page, .coupform-page {
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #0f172a;
}

.coupman-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #15803d;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.coupman-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.coupman-header__copy h1 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.coupman-header__copy p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

.coupman-btn-create {
    height: 40px;
    padding: 0 18px;
    border: none;
    border-radius: 8px;
    background: #D0920E;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(208, 146, 14, 0.25);
    transition: all .15s ease;
}

.coupman-btn-create:hover {
    background: #B8800B;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(208, 146, 14, 0.35);
    color: #ffffff;
}

/* 5'li Metrik Kartları */
.coupman-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.coupman-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .15s ease, box-shadow .15s ease;
}

.coupman-stat-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.coupman-stat-card__main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.coupman-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.coupman-stat-icon--purple {
    background: #f3e8ff;
    color: #9333ea;
}

.coupman-stat-icon--green {
    background: #ecfdf5;
    color: #10b981;
}

.coupman-stat-icon--blue {
    background: #eff6ff;
    color: #2563eb;
}

.coupman-stat-icon--red {
    background: #fef2f2;
    color: #ef4444;
}

.coupman-stat-icon--amber {
    background: #fff7ed;
    color: #ea580c;
}

.coupman-stat-content {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.coupman-stat-title {
    font-size: 12.5px;
    font-weight: 500;
    color: #64748b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.coupman-stat-value {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.4px;
    line-height: 1.2;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.coupman-stat-card__footer {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}

.coupman-stat-sub {
    font-size: 11.5px;
    color: #94a3b8;
}

/* Tablo & Toolbar */
.coupman-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.coupman-toolbar {
    padding: 16px 20px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.coupman-filter-form {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.coupman-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.coupman-search-wrap svg {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    pointer-events: none;
}

.coupman-search-wrap input {
    height: 38px;
    width: 250px;
    padding: 0 32px 0 36px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.coupman-search-wrap input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
}

.coupman-clear-search {
    position: absolute;
    right: 10px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 12px;
    cursor: pointer;
}

.coupman-clear-search:hover {
    color: #0f172a;
}

.coupman-select-wrap {
    position: relative;
}

.coupman-select {
    height: 38px;
    padding: 0 32px 0 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 10px;
    appearance: none;
    cursor: pointer;
    outline: none;
}

.coupman-select:focus {
    border-color: #3b82f6;
}

.coupman-btn-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all .15s ease;
}

.coupman-btn-filter:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.coupman-badge-total {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

/* Tablo */
.coupman-table-wrap {
    overflow-x: auto;
}

.coupman-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    text-align: left;
}

.coupman-table th {
    padding: 12px 18px;
    background: #f8fafc;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-bottom: 1px solid #e2e8f0;
}

.coupman-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.coupman-table tbody tr:hover {
    background: #fbfcfe;
}

.coupman-item-cell strong {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #0f172a;
}

.coupman-code-tag {
    display: inline-block;
    padding: 2px 7px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-family: monospace;
    font-weight: 700;
    font-size: 11.5px;
    color: #047857;
    margin-top: 4px;
}

.coupman-discount-val {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.coupman-usage strong {
    font-weight: 700;
    color: #0f172a;
}

.coupman-dates span {
    display: block;
    font-weight: 500;
    color: #1e293b;
}

.coupman-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
}

.coupman-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.coupman-status--active {
    background: #dcfce7;
    color: #15803d;
}

.coupman-status--scheduled {
    background: #eff6ff;
    color: #2563eb;
}

.coupman-status--expired {
    background: #fee2e2;
    color: #b91c1c;
}

.coupman-status--inactive {
    background: #f1f5f9;
    color: #64748b;
}

.coupman-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.coupman-btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #f8fafc;
    color: #475569;
    border: 1px solid #cbd5e1;
    cursor: pointer;
    text-decoration: none;
    transition: all .15s ease;
}

.coupman-btn-action:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #94a3b8;
}

.coupman-btn-action--delete:hover {
    background: #fee2e2;
    color: #ef4444;
    border-color: #fca5a5;
}

/* Empty State */
.coupman-empty {
    padding: 70px 20px !important;
    text-align: center;
}

.coupman-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 380px;
    margin: 0 auto;
}

.coupman-empty-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffedd5;
    color: #ea580c;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.coupman-empty-state h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.coupman-empty-state p {
    font-size: 13px;
    color: #64748b;
    margin: 0 0 14px 0;
}

.coupman-empty-link {
    color: #047857;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

.coupman-empty-link:hover {
    text-decoration: underline;
}

/* Sayfalama */
.coupman-footer {
    padding: 14px 20px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
}

.coupman-pagination {
    display: flex;
    align-items: center;
}

.coupman-page-links {
    display: flex;
    gap: 5px;
}

.coupman-page-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    height: 30px;
    padding: 0 6px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    color: #334155;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all .15s ease;
}

.coupman-page-links a:hover {
    background: #f1f5f9;
}

.coupman-page-links a.active {
    background: #D0920E;
    border-color: #D0920E;
    color: #ffffff;
    font-weight: 700;
}

.coupman-pagesize-select {
    height: 32px;
    padding: 0 24px 0 8px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 12px;
    color: #334155;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 8px center;
    background-size: 8px;
    appearance: none;
    cursor: pointer;
    outline: none;
}

/* ==========================================================================
   Admin Kupon Formu (Yeni Kupon & Düzenle)
   ========================================================================== */
.coupform-back {
    margin-bottom: 12px;
}

.coupform-back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color .15s ease;
}

.coupform-back a:hover {
    color: #0f172a;
}

.coupform-header {
    margin-bottom: 24px;
}

.coupform-header h1 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.coupform-header p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.coupform-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 24px;
    align-items: flex-start;
}

.coupform-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coupform-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coupform-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.coupform-card__header {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.coupform-card__header h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.coupform-card__header p {
    font-size: 12.5px;
    color: #64748b;
    margin: 4px 0 0 0;
}

.coupform-card__body {
    padding: 20px;
}

.coupform-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.coupform-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.coupform-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.coupform-group label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}

.coupform-group label .required {
    color: #ef4444;
}

.coupform-input {
    height: 42px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13.5px;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease;
}

.coupform-input:focus {
    border-color: #047857;
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.12);
}

.coupform-input--code {
    font-family: monospace;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.coupform-select {
    height: 42px;
    padding: 0 32px 0 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    color: #0f172a;
    background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2364748b' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 10px;
    appearance: none;
    cursor: pointer;
    outline: none;
}

.coupform-input-unit {
    position: relative;
    display: flex;
    align-items: center;
}

.coupform-input-unit .coupform-input {
    width: 100%;
    padding-right: 36px;
}

.coupform-unit {
    position: absolute;
    right: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    pointer-events: none;
}

.coupform-hint {
    font-size: 11.5px;
    color: #94a3b8;
    line-height: 1.4;
}

/* Switch */
.coupform-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
}

.coupform-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
}

.coupform-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.coupform-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e1;
    transition: .3s;
    border-radius: 24px;
}

.coupform-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.coupform-switch input:checked + .coupform-slider {
    background-color: #047857;
}

.coupform-switch input:checked + .coupform-slider:before {
    transform: translateX(20px);
}

.coupform-toggle-info strong {
    display: block;
    font-size: 13.5px;
    color: #0f172a;
}

.coupform-toggle-info small {
    display: block;
    font-size: 11.5px;
    color: #64748b;
}

/* Canlı Önizleme Kartı */
.coupform-preview-card {
    background: linear-gradient(145deg, #123023, #091a13);
    border-radius: 12px;
    padding: 24px 20px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px -5px rgba(9, 26, 19, 0.4);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.coupform-preview-card__glow {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0) 70%);
    pointer-events: none;
}

.coupform-preview-tag {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: #a7f3d0;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.coupform-preview-code {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    font-family: monospace;
    letter-spacing: 1px;
    margin: 0 0 6px 0;
    text-transform: uppercase;
}

.coupform-preview-desc {
    font-size: 12px;
    color: #94a3b8;
    margin: 0 0 18px 0;
    line-height: 1.4;
}

.coupform-preview-badge {
    display: inline-block;
    background: #fbbf24;
    color: #0f291e;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

/* Actions */
.coupform-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.coupform-btn-cancel {
    height: 42px;
    padding: 0 20px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease;
}

.coupform-btn-cancel:hover {
    background: #f8fafc;
    color: #0f172a;
}

.coupform-btn-submit {
    height: 42px;
    padding: 0 24px;
    background: #D0920E;
    border: none;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(208, 146, 14, 0.25);
    transition: all .15s ease;
}

.coupform-btn-submit:hover {
    background: #B8800B;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(208, 146, 14, 0.35);
}

/* ==========================================================================
   Ön Yüz Sepet & Kupon Kullanımı (Cart Page Styles)
   ========================================================================== */
.cart-section {
    padding: 40px 0 80px 0;
    background: #f8fafc;
    min-height: calc(100vh - 200px);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cart-header h1 {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.cart-continue-link {
    color: #047857;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
}

.cart-continue-link:hover {
    text-decoration: underline;
}

.cart-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 500;
    margin-bottom: 20px;
}

.cart-alert--success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
}

.cart-alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.cart-empty {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 60px 20px;
    text-align: center;
    max-width: 500px;
    margin: 40px auto;
}

.cart-empty__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.cart-empty h2 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.cart-empty p {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 24px 0;
    line-height: 1.5;
}

.cart-btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #D0920E;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background .15s ease;
}

.cart-btn-primary:hover {
    background: #B8800B;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 24px;
    align-items: flex-start;
}

.cart-items-wrap {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    overflow: hidden;
}

.cart-items-table-header {
    display: grid;
    grid-template-columns: 3fr 1.2fr 1.5fr 1.2fr 40px;
    padding: 14px 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    font-size: 11.5px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
}

.cart-item-row {
    display: grid;
    grid-template-columns: 3fr 1.2fr 1.5fr 1.2fr 40px;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}

.cart-item-product {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-item-product img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e2e8f0;
}

.cart-item-product strong {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
}

.cart-item-price span {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.cart-qty-form {
    display: inline-flex;
    align-items: center;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    overflow: hidden;
}

.cart-qty-btn {
    width: 30px;
    height: 30px;
    background: #f8fafc;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #334155;
    transition: background .15s ease;
}

.cart-qty-btn:hover {
    background: #e2e8f0;
}

.cart-qty-val {
    width: 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #0f172a;
}

.cart-item-total strong {
    font-size: 14.5px;
    font-weight: 700;
    color: #0f172a;
}

.cart-btn-remove {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: color .15s ease;
}

.cart-btn-remove:hover {
    color: #ef4444;
}

.cart-items-footer {
    padding: 14px 20px;
    display: flex;
    justify-content: flex-end;
}

.cart-btn-clear {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
}

.cart-btn-clear:hover {
    color: #ef4444;
    text-decoration: underline;
}

/* Sağ Özet & Kupon */
.cart-summary-wrap {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-coupon-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px 20px;
}

.cart-coupon-box h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 12px 0;
}

.cart-coupon-form {
    display: flex;
    gap: 8px;
}

.cart-coupon-form input {
    flex: 1;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: monospace;
    outline: none;
}

.cart-coupon-form input:focus {
    border-color: #047857;
}

.cart-coupon-form button {
    height: 38px;
    padding: 0 16px;
    background: #D0920E;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s ease;
}

.cart-coupon-form button:hover {
    background: #B8800B;
}

.cart-coupon-applied {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ecfdf5;
    border: 1px dashed #059669;
    border-radius: 8px;
    padding: 10px 14px;
}

.cart-coupon-tag {
    display: block;
    font-family: monospace;
    font-weight: 800;
    font-size: 13px;
    color: #065f46;
}

.cart-coupon-applied__info small {
    display: block;
    font-size: 11.5px;
    color: #047857;
    margin-top: 2px;
}

.cart-coupon-remove-btn {
    background: #ffffff;
    border: 1px solid #a7f3d0;
    color: #dc2626;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.cart-summary-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.cart-summary-box h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
}

.cart-summary-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
    color: #475569;
}

.cart-summary-row strong {
    color: #0f172a;
}

.cart-summary-row--discount {
    color: #059669;
}

.cart-summary-row--discount strong {
    color: #059669;
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
}

.cart-summary-total strong {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.cart-btn-checkout {
    display: block;
    width: 100%;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: #D0920E;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(208, 146, 14, 0.25);
    transition: all .15s ease;
}

.cart-btn-checkout:hover {
    background: #B8800B;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(208, 146, 14, 0.35);
}

/* Responsive */
@media (max-width: 1200px) {
    .coupman-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .coupform-row, .coupform-row-3 {
        grid-template-columns: 1fr;
    }

    .cart-items-table-header {
        display: none;
    }

    .cart-item-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

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

    .coupman-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .coupman-search-wrap input {
        width: 100%;
    }

    .coupman-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .coupman-select {
        width: 100%;
    }

    .coupman-footer {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
}

/* ==========================================================================
   ADMIN USERS MANAGEMENT (KULLANICILAR SAYFASI)
   ========================================================================== */
.userman-page {
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
}

.userman-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.userman-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #15803d;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.userman-header__copy h1 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.userman-header__copy p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

.userman-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.userman-badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #166534;
}

.userman-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
}

.userman-btn-create {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #D0920E;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(208, 146, 14, 0.25);
    transition: all .15s ease;
}

.userman-btn-create:hover {
    background: #B8800B;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(208, 146, 14, 0.35);
}

/* Stat Cards */
.userman-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.userman-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.userman-stat-card__main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.userman-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.userman-stat-icon--purple { background: #f3e8ff; color: #9333ea; }
.userman-stat-icon--amber { background: #fef3c7; color: #d97706; }
.userman-stat-icon--green { background: #dcfce7; color: #16a34a; }
.userman-stat-icon--blue { background: #e0f2fe; color: #0284c7; }
.userman-stat-icon--red { background: #fee2e2; color: #dc2626; }

.userman-stat-content {
    display: flex;
    flex-direction: column;
}

.userman-stat-title {
    font-size: 11.5px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 2px;
}

.userman-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.userman-stat-card__footer {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.userman-stat-sub {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 500;
}

/* Toolbar & Card */
.userman-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.userman-toolbar {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.userman-filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
}

.userman-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.userman-search-wrap svg {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    pointer-events: none;
}

.userman-search-wrap input {
    height: 38px;
    padding: 0 32px 0 36px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: #1e293b;
    width: 240px;
    outline: none;
    transition: all .15s ease;
}

.userman-search-wrap input:focus {
    border-color: #0f291e;
    box-shadow: 0 0 0 3px rgba(15, 41, 30, 0.1);
}

.userman-clear-search {
    position: absolute;
    right: 10px;
    color: #94a3b8;
    font-size: 12px;
    text-decoration: none;
}

.userman-select-wrap select {
    height: 38px;
    padding: 0 30px 0 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: #334155;
    background: #ffffff;
    outline: none;
    cursor: pointer;
}

.userman-btn-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 14px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all .15s ease;
}

.userman-btn-filter:hover {
    background: #f8fafc;
    border-color: #94a3b8;
}

.userman-badge-total {
    background: #f1f5f9;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

/* Table */
.userman-table-wrap {
    overflow-x: auto;
}

.userman-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.userman-table thead th {
    background: #f8fafc;
    padding: 12px 18px;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e8f0;
}

.userman-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background .12s ease;
}

.userman-table tbody tr:hover {
    background: #fcfdfd;
}

.userman-table tbody td {
    padding: 14px 18px;
    font-size: 13px;
    color: #334155;
    vertical-align: middle;
}

.userman-user-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.userman-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.userman-user-info {
    display: flex;
    flex-direction: column;
}

.userman-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.userman-name-row strong {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
}

.userman-badge-self {
    background: #dcfce7;
    color: #15803d;
    font-size: 10.5px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 4px;
}

.userman-id-text {
    font-size: 11.5px;
    color: #94a3b8;
    font-family: monospace;
}

.userman-role-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
}

.userman-role-badge--admin {
    background: #fef3c7;
    color: #b45309;
}

.userman-role-badge--editor {
    background: #e0f2fe;
    color: #0369a1;
}

.userman-email {
    font-size: 13px;
    color: #475569;
}

.userman-date-cell {
    display: flex;
    flex-direction: column;
}

.userman-date-cell span {
    font-size: 12.5px;
    font-weight: 600;
    color: #1e293b;
}

.userman-date-cell small {
    font-size: 11px;
    color: #94a3b8;
}

.userman-sec-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
}

.userman-sec-status--confirmed {
    color: #16a34a;
}

.userman-sec-status--confirmed .userman-sec-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

.userman-sec-status--unconfirmed {
    color: #dc2626;
}

.userman-sec-status--unconfirmed .userman-sec-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ef4444;
}

.userman-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
}

.userman-status--active {
    background: #dcfce7;
    color: #166534;
}

.userman-status--locked {
    background: #fee2e2;
    color: #991b1b;
}

.userman-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.userman-btn-action {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    transition: all .12s ease;
}

.userman-btn-action:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
}

.userman-btn-action--delete:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
}

.userman-btn-action--disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.userman-empty {
    text-align: center;
    padding: 48px 16px !important;
    color: #94a3b8;
}

/* Footer & Pagination */
.userman-footer {
    padding: 14px 18px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.userman-footer__left span {
    font-size: 12.5px;
    color: #64748b;
}

.userman-pagination {
    display: flex;
    justify-content: center;
}

.userman-page-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.userman-page-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all .12s ease;
}

.userman-page-links a:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.userman-page-links a.active {
    background: #D0920E;
    color: #ffffff;
    font-weight: 700;
}

.userman-pagesize-select {
    height: 32px;
    padding: 0 8px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 12.5px;
    color: #334155;
    background: #ffffff;
    outline: none;
    cursor: pointer;
}

/* Modal */
.userman-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 16px;
}

.userman-modal-overlay.is-open {
    display: flex;
}

.userman-modal {
    background: #ffffff;
    border-radius: 12px;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    animation: usermanModalIn .2s ease-out;
}

@@keyframes usermanModalIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.userman-modal__header {
    padding: 18px 24px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.userman-modal__header h3 {
    font-size: 17px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px 0;
}

.userman-modal__header small {
    font-size: 12.5px;
    color: #64748b;
}

.userman-modal__close {
    background: none;
    border: none;
    font-size: 18px;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.userman-modal__close:hover {
    color: #0f172a;
}

.userman-modal__body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.userman-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

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

.userman-form-group label {
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
}

.userman-input, .userman-select-input {
    height: 38px;
    padding: 0 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: #1e293b;
    outline: none;
    background: #ffffff;
    transition: all .15s ease;
}

.userman-input:focus, .userman-select-input:focus {
    border-color: #0f291e;
    box-shadow: 0 0 0 3px rgba(15, 41, 30, 0.1);
}

.userman-checkbox-group label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #475569;
    cursor: pointer;
}

.userman-modal__footer {
    padding: 16px 24px;
    border-top: 1px solid #f1f5f9;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.userman-btn-modal-cancel {
    height: 38px;
    padding: 0 16px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
}

.userman-btn-modal-cancel:hover {
    background: #f1f5f9;
}

.userman-btn-modal-submit {
    height: 38px;
    padding: 0 18px;
    border: none;
    background: #D0920E;
    color: #ffffff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(208, 146, 14, 0.25);
    transition: all .15s ease;
}

.userman-btn-modal-submit:hover {
    background: #B8800B;
}

/* Responsive */
@media (max-width: 1200px) {
    .userman-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

    .userman-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .userman-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .userman-search-wrap input,
    .userman-select-wrap select {
        width: 100%;
    }

    .userman-footer {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
}

/* ==========================================================================
   ADMIN GALLERY MANAGEMENT (GALERİ YÖNETİMİ)
   ========================================================================== */
.galman-page {
    width: 100%;
    box-sizing: border-box;
}

.galman-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.galman-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #15803d;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.galman-header__copy h1 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.galman-header__copy p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

.galman-btn-create {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #D0920E;
    color: #ffffff;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(208, 146, 14, 0.25);
    transition: all .15s ease;
}

.galman-btn-create:hover {
    background: #B8800B;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(208, 146, 14, 0.35);
    color: #ffffff;
}

.galman-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.galman-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.galman-stat-card__main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.galman-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.galman-stat-icon--purple { background: #f3e8ff; color: #9333ea; }
.galman-stat-icon--blue { background: #e0f2fe; color: #0284c7; }
.galman-stat-icon--red { background: #fee2e2; color: #dc2626; }
.galman-stat-icon--green { background: #dcfce7; color: #16a34a; }
.galman-stat-icon--amber { background: #fef3c7; color: #d97706; }

.galman-stat-content {
    display: flex;
    flex-direction: column;
}

.galman-stat-title {
    font-size: 11.5px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 2px;
}

.galman-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.galman-stat-card__footer {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.galman-stat-sub {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 500;
}

.galman-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.galman-toolbar {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.galman-status-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.galman-status-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: all .15s ease;
}

.galman-status-tabs a:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.galman-status-tabs a.active {
    background: #D0920E;
    color: #ffffff;
}

.galman-status-tabs a .badge {
    background: #e2e8f0;
    color: #475569;
    padding: 1px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.galman-status-tabs a.active .badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.galman-status-tabs a .badge--success {
    background: #dcfce7;
    color: #166534;
}

.galman-filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.galman-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.galman-search-wrap svg {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    pointer-events: none;
}

.galman-search-wrap input {
    height: 38px;
    padding: 0 32px 0 36px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: #1e293b;
    width: 220px;
    outline: none;
    transition: all .15s ease;
}

.galman-search-wrap input:focus {
    border-color: #0f291e;
    box-shadow: 0 0 0 3px rgba(15, 41, 30, 0.1);
}

.galman-clear-search {
    position: absolute;
    right: 10px;
    color: #94a3b8;
    font-size: 12px;
    text-decoration: none;
}

.galman-select-wrap select {
    height: 38px;
    padding: 0 30px 0 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: #334155;
    background: #ffffff;
    outline: none;
    cursor: pointer;
}

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

.galman-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.galman-table thead th {
    background: #f8fafc;
    padding: 12px 18px;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e8f0;
}

.galman-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background .12s ease;
}

.galman-table tbody tr:hover {
    background: #fcfdfd;
}

.galman-table tbody td {
    padding: 14px 18px;
    font-size: 13px;
    color: #334155;
    vertical-align: middle;
}

.galman-thumb-box {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.galman-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galman-video-badge {
    position: absolute;
    bottom: 3px;
    right: 3px;
    background: rgba(15, 23, 42, 0.75);
    color: #ffffff;
    font-size: 9px;
    padding: 2px 4px;
    border-radius: 4px;
    line-height: 1;
}

.galman-title-box strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
}

.galman-title-box p {
    font-size: 12px;
    color: #64748b;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.galman-category-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.galman-type-badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
}

.galman-type-badge--photo {
    background: #e0f2fe;
    color: #0369a1;
}

.galman-type-badge--video {
    background: #fee2e2;
    color: #dc2626;
}

.galman-order-pill {
    display: inline-block;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
}

.galman-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.galman-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.galman-status--active {
    background: #dcfce7;
    color: #166534;
}

.galman-status--active .galman-status-dot {
    background: #22c55e;
}

.galman-status--passive {
    background: #f1f5f9;
    color: #64748b;
}

.galman-status--passive .galman-status-dot {
    background: #94a3b8;
}

.galman-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.galman-btn-action {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    text-decoration: none;
    transition: all .12s ease;
}

.galman-btn-action:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
}

.galman-btn-action--delete:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
}

.galman-empty {
    text-align: center;
    padding: 48px 16px !important;
}

.galman-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.galman-empty-state strong {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
}

.galman-empty-state p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

.galman-footer {
    padding: 14px 18px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.galman-footer__left span {
    font-size: 12.5px;
    color: #64748b;
}

.galman-pagination {
    display: flex;
    justify-content: center;
}

.galman-page-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.galman-page-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all .12s ease;
}

.galman-page-links a:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.galman-page-links a.active {
    background: #D0920E;
    color: #ffffff;
    font-weight: 700;
}

.galman-pagesize-select {
    height: 32px;
    padding: 0 8px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 12.5px;
    color: #334155;
    background: #ffffff;
    outline: none;
    cursor: pointer;
}

/* ==========================================================================
   ADMIN PRODUCT MANAGEMENT (ÜRÜN YÖNETİMİ)
   ========================================================================== */
.prodman-page {
    width: 100%;
    box-sizing: border-box;
}

.prodman-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    gap: 16px;
    flex-wrap: wrap;
}

.prodman-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #15803d;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.prodman-header__copy h1 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 6px 0;
    letter-spacing: -0.5px;
}

.prodman-header__copy p {
    font-size: 13.5px;
    color: #64748b;
    margin: 0;
}

.prodman-btn-create {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #D0920E;
    color: #ffffff;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(208, 146, 14, 0.25);
    transition: all .15s ease;
}

.prodman-btn-create:hover {
    background: #B8800B;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(208, 146, 14, 0.35);
    color: #ffffff;
}

.prodman-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.prodman-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.prodman-stat-card__main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.prodman-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prodman-stat-icon--purple { background: #f3e8ff; color: #9333ea; }
.prodman-stat-icon--green { background: #dcfce7; color: #16a34a; }
.prodman-stat-icon--red { background: #fee2e2; color: #dc2626; }
.prodman-stat-icon--amber { background: #fef3c7; color: #d97706; }
.prodman-stat-icon--blue { background: #e0f2fe; color: #0284c7; }

.prodman-stat-content {
    display: flex;
    flex-direction: column;
}

.prodman-stat-title {
    font-size: 11.5px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 2px;
}

.prodman-stat-value {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.prodman-stat-value small {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
}

.prodman-stat-card__footer {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
}

.prodman-stat-sub {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 500;
}

.prodman-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.prodman-toolbar {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.prodman-status-tabs {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.prodman-status-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
    text-decoration: none;
    transition: all .15s ease;
}

.prodman-status-tabs a:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.prodman-status-tabs a.active {
    background: #D0920E;
    color: #ffffff;
}

.prodman-status-tabs a .badge {
    background: #e2e8f0;
    color: #475569;
    padding: 1px 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.prodman-status-tabs a.active .badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.prodman-status-tabs a .badge--success {
    background: #dcfce7;
    color: #166534;
}

.prodman-status-tabs a .badge--warning {
    background: #fef3c7;
    color: #b45309;
}

.prodman-filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.prodman-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.prodman-search-wrap svg {
    position: absolute;
    left: 12px;
    color: #94a3b8;
    pointer-events: none;
}

.prodman-search-wrap input {
    height: 38px;
    padding: 0 32px 0 36px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: #1e293b;
    width: 230px;
    outline: none;
    transition: all .15s ease;
}

.prodman-search-wrap input:focus {
    border-color: #0f291e;
    box-shadow: 0 0 0 3px rgba(15, 41, 30, 0.1);
}

.prodman-clear-search {
    position: absolute;
    right: 10px;
    color: #94a3b8;
    font-size: 12px;
    text-decoration: none;
}

.prodman-select-wrap select {
    height: 38px;
    padding: 0 30px 0 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 13px;
    color: #334155;
    background: #ffffff;
    outline: none;
    cursor: pointer;
}

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

.prodman-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.prodman-table thead th {
    background: #f8fafc;
    padding: 12px 18px;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e8f0;
}

.prodman-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
    transition: background .12s ease;
}

.prodman-table tbody tr:hover {
    background: #fcfdfd;
}

.prodman-table tbody td {
    padding: 14px 18px;
    font-size: 13px;
    color: #334155;
    vertical-align: middle;
}

.prodman-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #0f291e;
}

.prodman-product-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.prodman-thumb {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

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

.prodman-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.prodman-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    text-decoration: none;
    line-height: 1.3;
}

.prodman-name:hover {
    color: #15803d;
}

.prodman-meta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.prodman-brand {
    font-size: 11.5px;
    font-weight: 600;
    color: #0f291e;
    background: #f0fdf4;
    padding: 1px 6px;
    border-radius: 4px;
}

.prodman-sku {
    font-size: 11px;
    color: #94a3b8;
    font-family: monospace;
}

.prodman-category-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.prodman-price-box {
    display: flex;
    flex-direction: column;
}

.prodman-price-regular {
    font-size: 13.5px;
    font-weight: 800;
    color: #0f172a;
}

.prodman-price-sale {
    font-size: 13.5px;
    font-weight: 800;
    color: #16a34a;
}

.prodman-price-old {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
}

.prodman-stock-box {
    display: flex;
    align-items: center;
    gap: 6px;
}

.prodman-stock-count {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
}

.prodman-stock-count.is-critical {
    color: #d97706;
}

.prodman-stock-badge-critical {
    background: #fef3c7;
    color: #b45309;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 4px;
    text-transform: uppercase;
}

.prodman-status-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all .12s ease;
}

.prodman-status-btn .prodman-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.prodman-status-btn.is-active {
    background: #dcfce7;
    color: #166534;
}

.prodman-status-btn.is-active .prodman-status-dot {
    background: #22c55e;
}

.prodman-status-btn.is-passive {
    background: #f1f5f9;
    color: #64748b;
}

.prodman-status-btn.is-passive .prodman-status-dot {
    background: #94a3b8;
}

.prodman-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.prodman-btn-action {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    cursor: pointer;
    text-decoration: none;
    transition: all .12s ease;
}

.prodman-btn-action:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: #0f172a;
}

.prodman-btn-action--delete:hover {
    background: #fee2e2;
    border-color: #fca5a5;
    color: #dc2626;
}

.prodman-empty {
    text-align: center;
    padding: 48px 16px !important;
}

.prodman-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.prodman-empty-state strong {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
}

.prodman-empty-state p {
    font-size: 13px;
    color: #94a3b8;
    margin: 0;
}

.prodman-footer {
    padding: 14px 18px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.prodman-footer__left span {
    font-size: 12.5px;
    color: #64748b;
}

.prodman-pagination {
    display: flex;
    justify-content: center;
}

.prodman-page-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.prodman-page-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    transition: all .12s ease;
}

.prodman-page-links a:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.prodman-page-links a.active {
    background: #D0920E;
    color: #ffffff;
    font-weight: 700;
}

.prodman-pagesize-select {
    height: 32px;
    padding: 0 8px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 12.5px;
    color: #334155;
    background: #ffffff;
    outline: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 1200px) {
    .galman-stats-grid,
    .prodman-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .galman-stats-grid,
    .prodman-stats-grid {
        grid-template-columns: 1fr;
    }

    .galman-toolbar,
    .prodman-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .galman-filter-form,
    .prodman-filter-form {
        flex-direction: column;
        align-items: stretch;
    }

    .galman-search-wrap input,
    .galman-select-wrap select,
    .prodman-search-wrap input,
    .prodman-select-wrap select {
        width: 100%;
    }

    .galman-footer,
    .prodman-footer {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
}

/* ==========================================================================
   GLOBAL SEARCHABLE DROPDOWNS (ARAMALI DROPDOWN)
   ========================================================================== */

.custom-searchable-native-hidden {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden !important;
}

.custom-searchable-select {
    position: relative;
    display: inline-block;
    width: 100%;
    font-family: inherit;
    font-size: 13px;
    vertical-align: middle;
    box-sizing: border-box;
}

/* Trigger Button */
.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 40px;
    padding: 0 14px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
    user-select: none;
}

.custom-select-trigger:hover {
    border-color: #94a3b8;
    background: #fafafa;
}

.custom-searchable-select.is-open .custom-select-trigger,
.custom-select-trigger:focus {
    border-color: #D0920E;
    box-shadow: 0 0 0 3px rgba(208, 146, 14, 0.15);
    background: #ffffff;
}

.custom-select-label {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 8px;
}

.custom-select-chevron {
    flex-shrink: 0;
    color: #64748b;
    transition: transform 0.2s ease, color 0.2s ease;
}

.custom-searchable-select.is-open .custom-select-chevron {
    transform: rotate(180deg);
    color: #D0920E;
}

/* Dropdown Popup Menu */
.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    min-width: 100%;
    max-height: 320px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.16), 0 4px 6px -2px rgba(15, 23, 42, 0.06);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
}

.custom-searchable-select.is-open .custom-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Search Header inside Dropdown */
.custom-select-search {
    position: relative;
    padding: 10px;
    border-bottom: 1px solid #f1f5f9;
    background: #ffffff;
    box-sizing: border-box;
}

.custom-select-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.custom-select-search-input {
    width: 100%;
    height: 34px;
    padding: 0 12px 0 32px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 12px;
    color: #0f172a;
    outline: none;
    box-sizing: border-box;
    transition: all 0.15s ease;
}

.custom-select-search-input:focus {
    background: #ffffff;
    border-color: #D0920E;
    box-shadow: 0 0 0 2px rgba(208, 146, 14, 0.12);
}

/* Options List */
.custom-select-options {
    flex: 1;
    max-height: 220px;
    overflow-y: auto;
    padding: 6px;
    box-sizing: border-box;
}

.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: #f8fafc;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* Option Item */
.custom-select-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
    box-sizing: border-box;
    margin-bottom: 2px;
}

.custom-select-option:last-child {
    margin-bottom: 0;
}

.custom-select-option:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.custom-select-option.is-selected {
    background: #fff7ed;
    color: #D0920E;
    font-weight: 600;
}

.custom-select-option.is-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: transparent !important;
}

.custom-option-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-select-check {
    opacity: 0;
    transform: scale(0.7);
    color: #D0920E;
    flex-shrink: 0;
    margin-left: 8px;
    transition: all 0.15s ease;
}

.custom-select-option.is-selected .custom-select-check {
    opacity: 1;
    transform: scale(1);
}

.custom-select-empty {
    padding: 16px;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
}

/* Contextual Sizing Adapters */
.galman-select-wrap .custom-searchable-select,
.prodman-select-wrap .custom-searchable-select,
.ordman-select-wrap .custom-searchable-select,
.custman-select-wrap .custom-searchable-select,
.coupman-select-wrap .custom-searchable-select,
.userman-select-wrap .custom-searchable-select {
    min-width: 170px;
    width: auto;
}

.galman-pagesize-select + .custom-searchable-select,
.prodman-pagesize-select + .custom-searchable-select,
.ordman-pagesize-select + .custom-searchable-select,
.custman-pagesize-select + .custom-searchable-select,
.coupman-pagesize-select + .custom-searchable-select,
.userman-pagesize-select + .custom-searchable-select {
    width: 80px;
    min-width: 80px;
}

.galman-pagesize-select + .custom-searchable-select .custom-select-trigger,
.prodman-pagesize-select + .custom-searchable-select .custom-select-trigger,
.ordman-pagesize-select + .custom-searchable-select .custom-select-trigger,
.custman-pagesize-select + .custom-searchable-select .custom-select-trigger,
.coupman-pagesize-select + .custom-searchable-select .custom-select-trigger,
.userman-pagesize-select + .custom-searchable-select .custom-select-trigger {
    height: 32px;
    min-height: 32px;
    padding: 0 8px;
    font-size: 12px;
}

.prod-select-wrapper .custom-searchable-select .custom-select-trigger,
.gallery-select-wrapper .custom-searchable-select .custom-select-trigger {
    height: 44px;
    min-height: 44px;
    background: #f8fafc;
    border-color: #e2e8f0;
}

.prod-select-wrapper .prod-chevron-icon,
.gallery-select-wrapper .gallery-chevron-icon {
    display: none !important;
}

/* Storefront Dark Dropdown Theme Adapter */
.contact-form-grid .custom-searchable-select .custom-select-trigger {
    background: #0a0d0c;
    border: 1px solid #353937;
    color: #f6f7f6;
    height: 42px;
    border-radius: 5px;
}

.contact-form-grid .custom-searchable-select.is-open .custom-select-trigger,
.contact-form-grid .custom-searchable-select .custom-select-trigger:focus {
    border-color: #D0920E;
    box-shadow: 0 0 0 2px rgba(208, 146, 14, 0.2);
}

.contact-form-grid .custom-select-dropdown {
    background: #141817;
    border: 1px solid #353937;
}

.contact-form-grid .custom-select-search {
    background: #141817;
    border-bottom: 1px solid #232726;
}

.contact-form-grid .custom-select-search-input {
    padding: 0 12px 0 38px;
    background: #0a0d0c;
    border: 1px solid #353937;
    color: #f6f7f6;
}

.contact-form-grid .custom-select-option {
    color: #d1d5db;
}

.contact-form-grid .custom-select-option:hover {
    background: #1e2423;
    color: #ffffff;
}

.contact-form-grid .custom-select-option.is-selected {
    background: rgba(208, 146, 14, 0.15);
    color: #D0920E;
}


/* ==========================================================================
   UNIVERSAL INPUT ICONS (ICONLU INPUTLAR)
   ========================================================================== */

.input-icon-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.input-icon-prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 2;
}

.input-icon-wrap input {
    width: 100% !important;
    padding-left: 38px !important;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-icon-wrap:focus-within .input-icon-prefix {
    color: #D0920E;
}

.input-password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 6px;
    color: #94a3b8;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease, background-color 0.15s ease;
    z-index: 2;
}

.input-password-toggle:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.input-password-toggle.is-visible {
    color: #D0920E;
}

/* Contact Form Input Wrapper */
.contact-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.contact-input-wrap svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
    transition: color 0.2s ease;
    z-index: 2;
}

.contact-input-wrap input {
    padding-left: 40px !important;
}

.contact-textarea-wrap {
    align-items: flex-start;
}

.contact-textarea-wrap svg {
    top: 14px;
    transform: none;
}

.contact-textarea-wrap textarea {
    padding-left: 40px !important;
}

.contact-input-wrap:focus-within svg {
    color: #D0920E;
}

/* -------------------------------------------------------------
   Toast Notifications & Cart Action Feedback
   ------------------------------------------------------------- */
.app-toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    width: calc(100vw - 48px);
    pointer-events: none;
}

.app-toast {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #D0920E;
    animation: toastSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.app-toast.is-closing {
    opacity: 0;
    transform: translateX(40px) scale(0.96);
}

.app-toast--success {
    border-left-color: #10b981;
}

.app-toast--success .app-toast__icon {
    color: #10b981;
    background: #ecfdf5;
}

.app-toast--warning {
    border-left-color: #f59e0b;
}

.app-toast--warning .app-toast__icon {
    color: #f59e0b;
    background: #fffbeb;
}

.app-toast--error {
    border-left-color: #ef4444;
}

.app-toast--error .app-toast__icon {
    color: #ef4444;
    background: #fef2f2;
}

.app-toast__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-toast__icon svg {
    width: 20px;
    height: 20px;
}

.app-toast__body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.app-toast__msg {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.4;
}

.app-toast__action {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 6px;
    background: #D0920E;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.15s ease, transform 0.15s ease;
}

.app-toast__action:hover {
    background: #B8800B;
    transform: translateY(-1px);
}

.app-toast__close {
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    transition: color 0.15s ease;
}

.app-toast__close:hover {
    color: #374151;
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.badge-bounce {
    animation: badgeBounce 0.4s ease;
}

@keyframes badgeBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}

.add-cart.is-loading,
.pdetail-add-cart-btn.is-loading {
    opacity: 0.7;
    pointer-events: none;
    cursor: wait;
}

.pdetail-add-cart-btn.is-added {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35) !important;
}

/* Product detail reference layout */
.pdetail-page {
    --pdetail-accent: #D0920E;
    --pdetail-accent-hover: #B77B0C;
    padding: 30px 0 78px;
    background: radial-gradient(circle at 15% 8%, rgba(208, 146, 14, .035), transparent 24%), #fff;
}

.pdetail-page .sc-container {
    width: min(1440px, calc(100% - 28px));
    margin-inline: auto;
}

.pdetail-breadcrumb { gap: 10px; margin-bottom: 28px; font-size: 13px; }
.pdetail-breadcrumb a:hover,
.pdetail-tab-btn.active { color: var(--pdetail-accent); }

.pdetail-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, .98fr);
    gap: 56px;
    align-items: start;
    margin-bottom: 44px;
}

.pdetail-gallery {
    position: sticky;
    top: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "main";
    gap: 20px;
    min-width: 0;
}

.pdetail-gallery.has-thumbnails {
    grid-template-columns: 86px minmax(0, 1fr);
    grid-template-areas: "thumbs main";
}

.pdetail-main-img-box {
    grid-area: main;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: 1px solid #e7e4dc;
    border-radius: 16px;
    background: #f6f4ef;
    box-shadow: 0 10px 28px rgba(39, 35, 24, .06);
}

.pdetail-main-img-box img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
}

.pdetail-main-img-box:hover img { transform: none; }

.pdetail-thumbs {
    grid-area: thumbs;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 8px 0;
    overflow-x: visible;
    overflow-y: auto;
    scrollbar-width: thin;
}

.pdetail-thumb-btn {
    width: 86px;
    height: 96px;
    padding: 0;
    border: 1px solid #e2dfd6;
    border-radius: 10px;
    box-shadow: none;
}

.pdetail-thumb-btn img { object-fit: cover; }
.pdetail-thumb-btn.active,
.pdetail-thumb-btn:hover {
    border-color: var(--pdetail-accent);
    box-shadow: 0 0 0 1px var(--pdetail-accent);
}

.pdetail-badge-discount {
    top: 18px;
    right: auto;
    left: 18px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--pdetail-accent);
    font-size: 12px;
}

.pdetail-badge-new {
    top: 18px;
    right: 18px;
    left: auto;
    border-radius: 999px;
    background: #171a18;
}

.pdetail-zoom-btn {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(17, 24, 39, .1);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #1f2937;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .1);
    transition: color .2s ease, transform .2s ease;
}

.pdetail-zoom-btn:hover { color: var(--pdetail-accent); transform: translateY(-2px); }
.pdetail-info { min-width: 0; padding-top: 1px; }
.pdetail-cat-pill { margin-bottom: 14px; padding: 5px 13px; background: #f5f1e5; color: #65541e; }
.pdetail-title { margin-bottom: 16px; font-size: clamp(28px, 2.2vw, 34px); line-height: 1.18; letter-spacing: -.6px; }
.pdetail-stock-strip { gap: 9px; margin-bottom: 24px; }

.pdetail-price-box {
    min-height: 82px;
    padding: 20px 0;
    margin-bottom: 23px;
    border-color: #e8e7e3;
}

.pdetail-current-price { color: #556331; font-size: 34px; }
.pdetail-short-desc { margin-bottom: 26px; font-size: 14px; line-height: 1.75; }
.pdetail-meta-list { gap: 10px; margin-bottom: 26px; }
.pdetail-buy-form { gap: 28px; margin-bottom: 28px; }

.pdetail-quantity-wrap {
    width: 160px;
    height: 56px;
    justify-content: space-between;
    border-color: #dddcd8;
    border-radius: 10px;
}

.pdetail-qty-btn { width: 46px; color: #111827; }
.pdetail-add-cart-btn {
    height: 56px;
    border-radius: 10px;
    background: var(--pdetail-accent);
    box-shadow: 0 5px 15px rgba(208, 146, 14, .25);
}

.pdetail-add-cart-btn:hover:not(:disabled) {
    background: var(--pdetail-accent-hover);
    box-shadow: 0 7px 18px rgba(208, 146, 14, .32);
}

.pdetail-add-cart-btn.is-added { background: #16a34a; }
.pdetail-perks { gap: 0; padding-top: 26px; border-color: #e8e7e3; }
.pdetail-perk { min-height: 48px; padding: 0 20px; border-right: 1px solid #eceae4; }
.pdetail-perk:first-child { padding-left: 0; }
.pdetail-perk:last-child { padding-right: 0; border-right: 0; }
.pdetail-perk strong { font-size: 13px; }

.pdetail-feature-strip {
    min-height: 208px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
    overflow: hidden;
    margin: 0 0 52px;
    border: 1px solid #e7e5df;
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 5px 18px rgba(34, 31, 22, .035);
}

.pdetail-feature-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 38px;
    text-align: center;
}

.pdetail-feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 38px;
    right: 0;
    bottom: 38px;
    width: 1px;
    background: #e7e5df;
}

.pdetail-feature-item svg {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
    color: #667440;
    stroke-width: 1.65;
}

.pdetail-feature-item h3 { margin: 0 0 12px; color: #17191a; font-size: 16px; font-weight: 700; }
.pdetail-feature-item p { max-width: 255px; margin: 0; color: #5f6368; font-size: 13px; line-height: 1.65; }
.pdetail-tabs-section { margin-top: 0; padding-top: 38px; }
.pdetail-tab-btn.active { border-bottom-color: var(--pdetail-accent); }

@media (max-width: 1050px) {
    .pdetail-layout { grid-template-columns: 1fr; gap: 38px; }
    .pdetail-gallery { position: static; max-width: 780px; width: 100%; margin-inline: auto; }
    .pdetail-feature-strip { grid-template-columns: repeat(2, 1fr); }
    .pdetail-feature-item:nth-child(2)::after { display: none; }
    .pdetail-feature-item:nth-child(-n+2) { border-bottom: 1px solid #e7e5df; }
}

@media (max-width: 700px) {
    .pdetail-page { padding-top: 20px; }
    .pdetail-page .sc-container { width: min(100% - 24px, 1440px); }
    .pdetail-breadcrumb { margin-bottom: 20px; }
    .pdetail-gallery.has-thumbnails { grid-template-columns: 1fr; grid-template-areas: "main" "thumbs"; gap: 12px; }
    .pdetail-thumbs { flex-direction: row; gap: 10px; padding: 0 0 4px; overflow-x: auto; overflow-y: hidden; }
    .pdetail-thumb-btn { width: 70px; height: 76px; }
    .pdetail-layout { gap: 30px; }
    .pdetail-title { font-size: 27px; }
    .pdetail-buy-form { gap: 12px; }
    .pdetail-quantity-wrap { width: 132px; }
    .pdetail-perks { grid-template-columns: 1fr; gap: 16px; }
    .pdetail-perk,
    .pdetail-perk:first-child,
    .pdetail-perk:last-child { padding: 0; border-right: 0; }
    .pdetail-feature-item { padding: 28px 20px; }
}

@media (max-width: 520px) {
    .pdetail-buy-form { flex-direction: column; }
    .pdetail-quantity-wrap,
    .pdetail-add-cart-btn { width: 100%; }
    .pdetail-feature-strip { grid-template-columns: 1fr; }
    .pdetail-feature-item { border-bottom: 1px solid #e7e5df; }
    .pdetail-feature-item:last-child { border-bottom: 0; }
    .pdetail-feature-item::after { display: none; }
}

/* Privacy and KVKK admin */
.privacy-admin-page{padding:42px;color:#171a19}.privacy-admin-header{display:flex;justify-content:space-between;align-items:end;gap:24px;margin-bottom:28px}.privacy-admin-header>div:first-child>span,.privacy-admin-card__title span{color:#D0920E;font-size:10px;font-weight:800;letter-spacing:1.2px}.privacy-admin-header h1{margin:7px 0 5px;font:38px Oswald,sans-serif}.privacy-admin-header p{margin:0;color:#747a77;font-size:13px}.privacy-admin-header>div:last-child{display:flex;align-items:center;gap:10px}.privacy-admin-header a,.privacy-admin-header button{padding:12px 16px;border:1px solid #d8dad6;border-radius:6px;background:#fff;color:#303432;font-size:11px;font-weight:700;cursor:pointer}.privacy-admin-header button{border-color:#D0920E;background:#D0920E;color:#fff}.privacy-admin-form{display:grid;gap:22px}.privacy-admin-card{padding:25px;border:1px solid #dfe1dd;border-radius:10px;background:#fff;box-shadow:0 9px 30px rgba(18,21,20,.05)}.privacy-admin-card__title{display:flex;align-items:center;gap:14px;padding-bottom:17px;margin-bottom:20px;border-bottom:1px solid #eceeea}.privacy-admin-card__title>b{display:grid;place-items:center;width:38px;height:38px;border-radius:7px;background:#f5f3eb;color:#D0920E;font:17px Oswald,sans-serif}.privacy-admin-card__title h2{margin:4px 0 0;font:23px Oswald,sans-serif}.privacy-admin-fields,.privacy-admin-sections{display:grid;grid-template-columns:1fr 1fr;gap:18px}.privacy-admin-card label{display:block}.privacy-admin-card label>span{display:block;margin-bottom:7px;color:#4e5551;font-size:11px;font-weight:700}.privacy-admin-card input,.privacy-admin-card textarea{width:100%;box-sizing:border-box;padding:11px 12px;border:1px solid #d8dbd6;border-radius:6px;outline:0;color:#222;font-family:inherit;font-size:12px}.privacy-admin-card textarea{resize:vertical;line-height:1.6}.privacy-admin-card input:focus,.privacy-admin-card textarea:focus{border-color:#D0920E;box-shadow:0 0 0 3px rgba(208,146,14,.1)}.privacy-admin-card label+label{margin-top:14px}.privacy-admin-card--intro label+label{margin-top:0}.privacy-admin-footer{display:flex;justify-content:space-between;align-items:center;padding:20px 24px;border-radius:9px;background:#171a19;color:#fff}.privacy-admin-footer p{margin:0;color:#aeb3b0;font-size:11px}.privacy-admin-footer button{padding:13px 18px;border:0;border-radius:6px;background:#D0920E;color:#fff;font-size:11px;font-weight:800;cursor:pointer}@media(max-width:980px){.privacy-admin-page{padding:25px}.privacy-admin-header{align-items:start}.privacy-admin-sections{grid-template-columns:1fr}}@media(max-width:620px){.privacy-admin-page{padding:18px}.privacy-admin-header,.privacy-admin-header>div:last-child,.privacy-admin-footer{align-items:stretch;flex-direction:column}.privacy-admin-fields{grid-template-columns:1fr}.privacy-admin-footer{gap:15px}}

/* Home campaign slider */
.home-promo-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1200 / 320;
    margin: 8px 0 38px;
    overflow: hidden;
    border: 1px solid #dedfdc;
    border-radius: 11px;
    background: #0d1110;
    box-shadow: 0 10px 28px rgba(15, 18, 17, .08);
}

.home-promo-slider__track,
.home-promo-slide { position: absolute; inset: 0; }
.home-promo-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease, visibility .45s ease;
}
.home-promo-slide.is-active { opacity: 1; visibility: visible; }
.home-promo-slide img { display: block; width: 100%; height: 100%; object-fit: cover; }

.home-promo-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    padding: 0 0 3px;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .42);
    border-radius: 50%;
    background: rgba(12, 15, 14, .72);
    color: #fff;
    font: 31px/1 Arial, sans-serif;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: background .2s ease, border-color .2s ease;
}
.home-promo-slider__arrow:hover { border-color: #f3ad16; background: #d0920e; }
.home-promo-slider__arrow--prev { left: 18px; }
.home-promo-slider__arrow--next { right: 18px; }
.home-promo-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 13px;
    z-index: 2;
    display: flex;
    gap: 7px;
    transform: translateX(-50%);
}
.home-promo-slider__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 50%;
    background: rgba(13, 17, 16, .45);
    cursor: pointer;
    transition: width .2s ease, border-radius .2s ease, background .2s ease;
}
.home-promo-slider__dots button.is-active { width: 24px; border-color: #f3ad16; border-radius: 999px; background: #f3ad16; }

/* Home slider admin */
.home-slider-admin { padding: 38px; color: #171a19; }
.home-slider-admin__header { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.home-slider-admin__header span { color: #d0920e; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; }
.home-slider-admin__header h1 { margin: 7px 0 5px; font: 38px Oswald, sans-serif; }
.home-slider-admin__header p { margin: 0; color: #747a77; font-size: 13px; }
.home-slider-admin__header button { flex: 0 0 auto; padding: 13px 18px; border: 0; border-radius: 6px; background: #d0920e; color: #fff; font-size: 11px; font-weight: 800; cursor: pointer; }
.home-slider-admin__form { display: grid; gap: 18px; }
.home-slider-slot { position: relative; display: grid; grid-template-columns: minmax(310px, 1.15fr) minmax(280px, .85fr); gap: 24px; padding: 23px; border: 1px solid #dfe1dd; border-radius: 10px; background: #fff; box-shadow: 0 9px 30px rgba(18, 21, 20, .045); }
.home-slider-slot__number { position: absolute; top: 12px; left: 12px; z-index: 2; display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: #d0920e; color: #fff; font: 15px Oswald, sans-serif; box-shadow: 0 3px 10px rgba(0, 0, 0, .18); }
.home-slider-slot__preview { aspect-ratio: 1200 / 320; display: grid; place-items: center; overflow: hidden; border: 1px dashed #cfd2cd; border-radius: 8px; background: #101312; color: #969c98; font-size: 11px; }
.home-slider-slot__preview img { display: block; width: 100%; height: 100%; object-fit: contain; }

/* Product media must use the complete square supplied by the administrator. */
.product-card .product-image {
    flex: 0 0 auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    background-position: center !important;
    background-size: cover !important;
}

.products-page-card .products-page-card__image {
    flex: 0 0 auto !important;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    padding: 0 !important;
}

.products-page-card .products-page-card__image > img {
    width: 100% !important;
    max-width: none !important;
    height: 100% !important;
    max-height: none !important;
    margin: 0 !important;
    object-fit: cover !important;
}
.home-slider-slot__fields { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.home-slider-slot__fields > label > span { display: block; margin: 0 0 7px; color: #4e5551; font-size: 11px; font-weight: 700; }
.home-slider-slot__fields input[type="file"],
.home-slider-slot__fields input[type="text"] { width: 100%; box-sizing: border-box; padding: 10px 11px; border: 1px solid #d8dbd6; border-radius: 6px; background: #fff; color: #222; font: inherit; font-size: 12px; outline: 0; }
.home-slider-slot__fields input[type="text"]:focus { border-color: #d0920e; box-shadow: 0 0 0 3px rgba(208, 146, 14, .1); }
.home-slider-slot__fields > label + .field-validation + label { margin-top: 13px; }
.home-slider-slot__fields > small { margin-top: 9px; color: #858b87; font-size: 10px; }
.home-slider-slot__options { display: flex; align-items: center; gap: 24px; margin-top: 14px; }
.home-slider-slot__options label { display: flex; align-items: center; gap: 7px; color: #3f4542; font-size: 11px; font-weight: 700; }
.home-slider-slot__options input { accent-color: #d0920e; }
.home-slider-slot__remove { color: #aa3c32 !important; }

@media (max-width: 900px) {
    .home-slider-admin { padding: 25px; }
    .home-slider-slot { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .home-promo-slider { aspect-ratio: 2 / 1; margin-bottom: 30px; }
    .home-promo-slider__arrow { width: 36px; height: 36px; font-size: 27px; }
    .home-promo-slider__arrow--prev { left: 10px; }
    .home-promo-slider__arrow--next { right: 10px; }
    .home-slider-admin { padding: 18px; }
    .home-slider-admin__header { align-items: stretch; flex-direction: column; }
    .home-slider-admin__header button { width: 100%; }
    .home-slider-slot { min-width: 0; padding: 15px; }
    .home-slider-slot__options { align-items: flex-start; flex-direction: column; gap: 11px; }
}
@media (prefers-reduced-motion: reduce) {
    .home-promo-slide,
    .home-promo-slider__dots button { transition: none; }
}

/* Lookup management */
.lookup-admin { max-width: 1180px; margin: 0 auto; color: #171a19; }
.lookup-admin__header { margin-bottom: 24px; }
.lookup-admin__header span,
.lookup-admin__create > div > b,
.lookup-admin__list-head b { color: #d0920e; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; }
.lookup-admin__header h1 { margin: 7px 0 5px; font: 36px Oswald, sans-serif; }
.lookup-admin__header p,
.lookup-admin__create > div p { margin: 0; color: #747a77; font-size: 13px; }
.lookup-admin__create { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: center; padding: 24px; margin-bottom: 20px; border: 1px solid #dfe1dd; border-radius: 10px; background: #fff; box-shadow: 0 8px 26px rgba(18, 21, 20, .045); }
.lookup-admin__create h2,
.lookup-admin__list-head h2 { margin: 5px 0 6px; font: 23px Oswald, sans-serif; }
.lookup-admin__create form { display: grid; grid-template-columns: minmax(180px, 1fr) 90px auto auto; gap: 12px; align-items: end; }
.lookup-admin label > span { display: block; margin-bottom: 7px; color: #4e5551; font-size: 11px; font-weight: 700; }
.lookup-admin input[type="text"],
.lookup-admin input[type="number"] { width: 100%; height: 41px; box-sizing: border-box; padding: 0 11px; border: 1px solid #d8dbd6; border-radius: 6px; color: #222; font: inherit; font-size: 12px; outline: 0; }
.lookup-admin input:focus { border-color: #d0920e; box-shadow: 0 0 0 3px rgba(208, 146, 14, .1); }
.lookup-toggle { min-height: 41px; display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.lookup-toggle > span { display: inline !important; margin: 0 !important; }
.lookup-toggle input { accent-color: #d0920e; }
.lookup-admin__create button,
.lookup-save,
.lookup-delete { height: 41px; padding: 0 15px; border: 0; border-radius: 6px; font-size: 10px; font-weight: 800; cursor: pointer; }
.lookup-admin__create button { background: #d0920e; color: #fff; }
.lookup-admin__list { overflow: hidden; border: 1px solid #dfe1dd; border-radius: 10px; background: #fff; box-shadow: 0 8px 26px rgba(18, 21, 20, .045); }
.lookup-admin__list-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid #e8eae7; }
.lookup-admin__list-head h2 { margin-bottom: 0; }
.lookup-admin__list-head > span { padding: 6px 10px; border-radius: 999px; background: #f4f2eb; color: #777d79; font-size: 10px; }
.lookup-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; align-items: end; padding: 15px 22px; border-bottom: 1px solid #eceeea; }
.lookup-row:last-child { border-bottom: 0; }
.lookup-row__edit { display: grid; grid-template-columns: minmax(180px, 1fr) 90px 80px auto; gap: 12px; align-items: end; }
.lookup-save { border: 1px solid #d0920e; background: #fff8e8; color: #9a6800; }
.lookup-delete { border: 1px solid #eed7d4; background: #fff5f3; color: #a83d34; }
.lookup-empty { padding: 35px; color: #858b87; font-size: 12px; text-align: center; }
.lookup-admin .field-validation { grid-column: 1; color: #b33d34; font-size: 10px; }

@media (max-width: 900px) {
    .lookup-admin__create { grid-template-columns: 1fr; }
    .lookup-admin__create form,
    .lookup-row__edit { grid-template-columns: 1fr 90px; }
    .lookup-admin__create button,
    .lookup-row__edit button { width: 100%; }
}
@media (max-width: 620px) {
    .lookup-admin__create form,
    .lookup-row,
    .lookup-row__edit { grid-template-columns: 1fr; }
    .lookup-row > form:last-child button { width: 100%; }
}

/* Order tracking */
.tracking-page{--track-gold:#D0920E;--track-ink:#111413;background:#f7f7f4;color:var(--track-ink)}.tracking-shell{width:min(1220px,calc(100% - 32px));margin-inline:auto}.tracking-hero{padding:30px 0 72px;background:radial-gradient(circle at 72% 18%,rgba(208,146,14,.15),transparent 27%),#111413;color:#fff}.tracking-breadcrumb{display:flex;align-items:center;gap:10px;margin-bottom:54px;color:#8e9491;font-size:12px}.tracking-breadcrumb a{color:#c3c8c5}.tracking-breadcrumb strong{color:#fff}.tracking-hero__grid{display:grid;grid-template-columns:1fr 480px;align-items:center;gap:95px}.tracking-hero__copy>span{color:var(--track-gold);font-size:10px;font-weight:800;letter-spacing:1.8px}.tracking-hero__copy h1{margin:13px 0 22px;font:clamp(43px,5vw,70px)/1 Oswald,sans-serif}.tracking-hero__copy h1 em{color:var(--track-gold);font-style:normal}.tracking-hero__copy>p{max-width:560px;margin:0;color:#b4bab7;font-size:14px;line-height:1.8}.tracking-trust{display:flex;gap:26px;margin-top:28px;color:#e2e5e3;font-size:10px;font-weight:700;text-transform:uppercase}.tracking-trust span::first-letter{color:var(--track-gold)}.tracking-form{padding:29px;border:1px solid #393d3b;border-radius:13px;background:rgba(255,255,255,.055);box-shadow:0 25px 65px rgba(0,0,0,.22)}.tracking-form__head{display:flex;align-items:center;gap:13px;margin-bottom:23px}.tracking-form__head>b{display:grid;place-items:center;width:38px;height:38px;border:1px solid rgba(208,146,14,.55);border-radius:7px;color:var(--track-gold);font:17px Oswald,sans-serif}.tracking-form__head small{color:var(--track-gold);font-size:9px;font-weight:800;letter-spacing:1px}.tracking-form__head h2{margin:3px 0 0;font:23px Oswald,sans-serif}.tracking-form label{display:block;margin-bottom:16px}.tracking-form label>span:first-child{display:block;margin-bottom:7px;color:#d8dcda;font-size:11px;font-weight:700}.tracking-form label>div{display:flex;height:49px;align-items:center;border:1px solid #474c49;border-radius:6px;background:#fff;overflow:hidden}.tracking-form label>div>strong{display:grid;place-items:center;width:43px;height:100%;border-right:1px solid #e3e5e1;color:var(--track-gold);font-size:13px}.tracking-form input{flex:1;height:100%;min-width:0;padding:0 13px;border:0;outline:0;color:#202321;font-family:inherit;font-size:12px}.tracking-form label>small{display:block;margin-top:5px;color:#858c88;font-size:9px}.tracking-form>button{display:flex;justify-content:space-between;width:100%;padding:14px 16px;border:0;border-radius:6px;background:var(--track-gold);color:#fff;font-size:11px;font-weight:800;cursor:pointer;box-shadow:0 7px 18px rgba(208,146,14,.2)}.tracking-form>p{margin:12px 0 0;color:#7f8582;font-size:9px;text-align:center}.tracking-validation,.tracking-field-error{display:block;color:#f5a8a0;font-size:10px}.tracking-validation:empty,.tracking-field-error:empty{display:none}.tracking-validation{margin-bottom:12px}.tracking-content{padding:48px 0 85px}.tracking-result{margin-bottom:40px;border:1px solid #dedfda;border-radius:12px;background:#fff;box-shadow:0 15px 40px rgba(15,18,17,.07);overflow:hidden}.tracking-result__header{display:flex;justify-content:space-between;align-items:center;padding:25px 29px;border-bottom:1px solid #eceee9}.tracking-result__header span,.tracking-block-title span,.tracking-total>span{color:var(--track-gold);font-size:9px;font-weight:800;letter-spacing:1px}.tracking-result__header h2{margin:4px 0;font:27px Oswald,sans-serif}.tracking-result__header p{margin:0;color:#8b918e;font-size:10px}.tracking-status{padding:8px 13px;border-radius:16px;background:#edf8ef;color:#27813f;font-size:10px}.tracking-status.is-exception{background:#fff0ee;color:#b23b31}.tracking-timeline{display:grid;grid-template-columns:repeat(4,1fr);position:relative;padding:38px 45px 42px}.tracking-timeline::before,.tracking-timeline::after{content:"";position:absolute;left:12.5%;right:12.5%;top:54px;height:2px;background:#e5e6e2}.tracking-timeline::after{right:auto;width:calc(var(--tracking-progress) * .75);background:var(--track-gold)}.tracking-timeline>div{position:relative;z-index:1;text-align:center}.tracking-timeline i{display:grid;place-items:center;width:34px;height:34px;margin:0 auto 13px;border:2px solid #d9dbd7;border-radius:50%;background:#fff;color:transparent;font-style:normal}.tracking-timeline .active i{border-color:var(--track-gold);background:var(--track-gold);color:#fff}.tracking-timeline strong,.tracking-timeline span{display:block}.tracking-timeline strong{font-size:11px}.tracking-timeline span{margin-top:5px;color:#929794;font-size:9px}.tracking-summary-grid{display:grid;grid-template-columns:1fr 290px;border-top:1px solid #eceee9}.tracking-products{padding:25px 29px}.tracking-block-title{display:flex;justify-content:space-between;margin-bottom:15px}.tracking-block-title>b{color:#888e8a;font-size:9px}.tracking-product{display:flex;align-items:center;gap:13px;padding:10px 0;border-top:1px solid #f0f1ee}.tracking-product img,.tracking-product__placeholder{display:grid;place-items:center;width:48px;height:48px;border-radius:6px;background:#f4f4f1;object-fit:contain;color:var(--track-gold)}.tracking-product div strong,.tracking-product div small{display:block}.tracking-product div strong{font-size:11px}.tracking-product div small{margin-top:4px;color:#8e9490;font-size:9px}.tracking-total{padding:25px;border-left:1px solid #eceee9;background:#fafaf8}.tracking-total>strong,.tracking-total>small{display:block}.tracking-total>strong{margin:9px 0 3px;font:29px Oswald,sans-serif}.tracking-total>small{color:#8e9490;font-size:9px}.tracking-total>a{display:block;margin-top:23px;padding-top:16px;border-top:1px solid #e3e4df;color:var(--track-gold);font-size:10px;font-weight:700}.tracking-exception,.tracking-not-found{display:flex;align-items:center;gap:17px;padding:24px 29px;background:#fff5f3}.tracking-exception>b,.tracking-not-found>b{display:grid;place-items:center;width:40px;height:40px;border-radius:50%;background:#cc493d;color:#fff}.tracking-exception strong{font-size:12px}.tracking-exception p,.tracking-not-found p{margin:4px 0 0;color:#777d79;font-size:11px}.tracking-not-found{margin-bottom:40px;border:1px solid #ead5d1;border-radius:10px;background:#fff}.tracking-not-found h2{margin:0;font:22px Oswald,sans-serif}.tracking-help{display:grid;grid-template-columns:repeat(3,1fr);border:1px solid #dfe0dc;border-radius:10px;background:#fff}.tracking-help>div{padding:27px;border-right:1px solid #e6e7e3}.tracking-help>div:last-child{border-right:0}.tracking-help span{display:grid;place-items:center;width:30px;height:30px;margin-bottom:15px;border-radius:50%;background:#f4f1e6;color:var(--track-gold);font:15px Oswald,sans-serif}.tracking-help strong{font-size:12px}.tracking-help p{margin:7px 0 0;color:#7f8581;font-size:10px;line-height:1.6}@media(max-width:930px){.tracking-hero__grid{grid-template-columns:1fr;gap:40px}.tracking-form{max-width:600px}.tracking-summary-grid{grid-template-columns:1fr}.tracking-total{border-left:0;border-top:1px solid #eceee9}}@media(max-width:650px){.tracking-hero{padding-bottom:50px}.tracking-breadcrumb{margin-bottom:36px}.tracking-form{padding:21px}.tracking-trust{flex-direction:column;gap:9px}.tracking-result__header{align-items:flex-start;flex-direction:column;gap:14px}.tracking-timeline{grid-template-columns:1fr;padding:25px}.tracking-timeline::before,.tracking-timeline::after{display:none}.tracking-timeline>div{display:grid;grid-template-columns:36px 1fr;text-align:left;column-gap:12px;margin-bottom:18px}.tracking-timeline i{grid-row:1/3;margin:0}.tracking-timeline span{margin-top:2px}.tracking-help{grid-template-columns:1fr}.tracking-help>div{border-right:0;border-bottom:1px solid #e6e7e3}.tracking-help>div:last-child{border-bottom:0}}
