/* =============================================
   DESIGN TOKENS
============================================= */
:root {
    --cream: #f6f2ec;
    --cream-dark: #ffffff;
    --stone: #e0d8cc;
    --clay: #b8a48a;
    --earth: #8b6f52;
    --bark: #5c4433;
    --ink: #1a1714;
    --ink-soft: #3d3530;
    --muted: #8a8078;
    --border: rgba(90, 70, 55, 0.12);
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --topbar-h: 38px;
    --header-h: 80px;
    --mco-primary: #000;
    --mco-primary-hover: #222;
    --mco-success: #10b981;
    --mco-success-hover: #059669;
    --mco-warning: #f59e0b;
    --mco-danger: #ef4444;
    --mco-light: #f5f5f5;
    --mco-dark: #111;
    --mco-border: #d8d8d8;
    --mco-text: #333;
    --mco-text-light: #666;
    --mco-white: #fff;
    --mco-shadow: 0 1px 3px rgba(0, 0, 0, .08);
    --mco-shadow-md: 0 5px 18px rgba(0, 0, 0, .08);
    --mco-shadow-lg: 0 12px 32px rgba(0, 0, 0, .1);
    --mco-radius: 0;
    --mco-radius-sm: 0;
}

/* =============================================
   QUOTE FORM PAGE
============================================= */
.quote-page {
    background: #fff;
    min-height: calc(100vh - var(--header-h));
}

.quote-section {
    display: flex;
    justify-content: center;
    padding: 96px 24px;
}

.quote-shell {
    width: min(100%, 860px);
}

.quote-heading {
    text-align: center;
    margin-bottom: 36px;
}

.quote-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #000;
    font-size: 10px;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.quote-heading h1 {
    margin: 0;
    color: #000;
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 300;
    line-height: 1.05;
}

.quote-heading p {
    max-width: 560px;
    margin: 16px auto 0;
    color: #5f5f5f;
    font-size: 15px;
    line-height: 1.7;
}

.quote-form {
    border-top: 1px solid #000;
    padding-top: 32px;
}

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

.quote-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.quote-field label {
    color: #000;
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    background: #fff;
    color: #000;
    font-family: var(--font-sans);
    font-size: 15px;
    min-height: 48px;
    padding: 11px 14px;
}

.quote-field textarea {
    resize: vertical;
    min-height: 130px;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    border-color: #000;
}

.quote-form.was-invalid input:invalid {
    border-color: #b00020;
}

.quote-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 24px;
}

.quote-submit {
    min-width: 240px;
    min-height: 50px;
    background: #000;
    color: #fff;
    border: 1px solid #000;
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    transition: background .25s, color .25s, opacity .25s;
}

.quote-submit:hover {
    background: #fff;
    color: #000;
}

.quote-submit:disabled {
    opacity: .55;
    cursor: wait;
}

.quote-status {
    color: #5f5f5f;
    font-size: 13px;
    line-height: 1.5;
}

.quote-status.success {
    color: #147a3c;
}

.quote-status.error {
    color: #b00020;
}

.quote-status.info {
    color: #5f5f5f;
}

@media(max-width:768px) {
    .quote-section {
        padding: 64px 20px;
    }

    .quote-heading h1 {
        font-size: 40px;
    }

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

    .quote-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .quote-submit {
        width: 100%;
    }
}

/* =============================================
   BASE
============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: var(--font-sans);
    cursor: pointer;
    border: none;
    background: none;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--clay);
    border-radius: 3px;
}

/* =============================================
   TOPBAR
============================================= */
#aw-topbar {
    height: var(--topbar-h);
    background: var(--ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
    transition: transform .3s var(--ease), height .3s var(--ease);
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 1001;
}

#aw-topbar.hidden {
    transform: translateY(-100%);
}

.topbar-social {
    display: flex;
    gap: 18px;
}

.topbar-social a {
    color: rgba(255, 255, 255, .35);
    font-size: 12px;
    transition: color .25s;
}

.topbar-social a:hover {
    color: rgba(255, 255, 255, .8);
}

@media(max-width:768px) {
    #aw-topbar {
        padding: 0 20px;
        justify-content: center;
    }

    .topbar-social {
        display: none;
    }
}

/* =============================================
   HEADER
============================================= */
#aw-header {
    position: sticky;
    top: 36px;
    z-index: 1000;
    height: var(--header-h);
    background: rgba(246, 242, 236, .94);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s, background .3s;
}

#aw-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 4px 32px rgba(26, 23, 20, .06);
    background: rgba(246, 242, 236, .97);
    top: 0;
}

.header-inner {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 40px;
    gap: 16px;
    max-width: 1440px;
    margin: 0 auto;
}

/* --- NAV LEFT --- */
.aw-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.aw-nav .nav-link-item {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted);
    position: relative;
    padding-bottom: 2px;
    transition: color .25s;
    white-space: nowrap;
    font-weight: 500;
}

.aw-nav .nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--ink);
    transition: width .3s var(--ease);
}

.aw-nav .nav-link-item:hover {
    color: var(--ink);
}

.aw-nav .nav-link-item:hover::after,
.aw-nav .nav-link-item.active::after {
    width: 100%;
}

.aw-nav .nav-link-item.active {
    color: var(--ink);
}

/* Dropdown */
.aw-dropdown {
    position: relative;
}

.aw-dropdown-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 210px;
    background: var(--cream);
    border: 1px solid var(--stone);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all .25s var(--ease);
    z-index: 200;
}

.aw-dropdown:hover .aw-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.aw-dropdown-menu a {
    display: block;
    padding: 9px 22px;
    font-size: 10.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted);
    transition: color .2s, padding-left .2s;
}

.aw-dropdown-menu a:hover {
    color: var(--ink);
    padding-left: 28px;
}

/* --- LOGO CENTER --- */
.aw-logo {
    text-align: center;
    grid-column: 2;
}

.aw-logo a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.logo-main {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1;
}

.logo-sub {
    font-size: 8.5px;
    letter-spacing: .42em;
    text-transform: uppercase;
    color: var(--clay);
    font-weight: 300;
}

.aw-logo img {
    height: 70px;
    width: auto;
}

/* --- HEADER ACTIONS --- */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    grid-column: 3;
}

.hdr-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    border-radius: 0;
    position: relative;
    transition: color .2s;
    font-size: 14px;
}

.hdr-btn:hover {
    color: var(--ink);
}

.cart-badge {
    position: absolute;
    top: 5px;
    right: -3px;
    width: 15px;
    height: 15px;
    background: var(--ink);
    color: var(--cream);
    border-radius: 50%;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

/* Hamburger */
.hamburger {
    display: none;
    width: 24px;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    height: 1.5px;
    background: var(--ink);
    transition: all .3s;
}

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

    .hamburger {
        display: flex;
    }
}

@media(max-width:640px) {
    .header-inner {
        padding: 0 20px;
    }
}

/* =============================================
   SEARCH BAR
============================================= */
#aw-searchbar {
    position: sticky;
    top: var(--header-h);
    z-index: 999;
    background: var(--cream);
    border-bottom: 1px solid var(--stone);
    height: 0;
    overflow: hidden;
    transition: height .3s var(--ease);
}

#aw-searchbar.open {
    height: 62px;
}

.searchbar-inner {
    height: 62px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.searchbar-inner i {
    color: var(--clay);
    font-size: 14px;
}

#aw-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    outline: none;
}

#aw-search-input::placeholder {
    color: var(--clay);
}

.search-close-btn {
    color: var(--clay);
    font-size: 14px;
    cursor: pointer;
    transition: color .2s;
}

.search-close-btn:hover {
    color: var(--ink);
}

#aw-search-results {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--stone);
    max-height: 320px;
    overflow-y: auto;
    list-style: none;
    z-index: 999;
}

#aw-search-results li a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 40px;
    font-size: 12.5px;
    color: var(--muted);
    transition: background .2s, color .2s;
    border-bottom: 1px solid var(--border);
}

#aw-search-results li a:hover {
    background: var(--cream-dark);
    color: var(--ink);
}

#aw-search-results li a img {
    width: 42px;
    height: 42px;
    object-fit: cover;
}

/* =============================================
   MOBILE DRAWER
============================================= */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100dvh;
    background: var(--ink);
    z-index: 1060;
    transform: translateX(-100%);
    transition: transform .35s var(--ease);
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.mobile-drawer-logo {
    font-family: var(--font-serif);
    font-size: 20px;
    letter-spacing: .22em;
    color: rgba(255, 255, 255, .85);
    text-transform: uppercase;
    margin-bottom: 40px;
    filter: invert(1);
}

.mobile-drawer-logo span {
    display: block;
    font-family: var(--font-sans);
    font-size: 8px;
    letter-spacing: .38em;
    color: var(--clay);
    margin-top: 3px;
}

.mobile-nav-link {
    display: block;
    padding: 13px 0;
    font-size: 10.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 66%);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: color .2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.parent {
    color: rgba(255, 255, 255, .85);
}

.mobile-sub-link {
    display: block;
    padding: 9px 0 9px 18px;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 49%);
    transition: color .2s;
}

.mobile-sub-link:hover {
    color: rgba(255, 255, 255, .65);
}

.mobile-drawer-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: rgba(255, 255, 255, .35);
    font-size: 18px;
    cursor: pointer;
    transition: color .2s;
    z-index: 999;
    padding: 10px;
}

.mobile-drawer-close:hover {
    color: rgba(255, 255, 255, .75);
}

.mobile-drawer-phone {
    margin-top: auto;
    padding-top: 32px;
    font-size: 10px;
    letter-spacing: .1em;
    color: rgb(255 255 255 / 70%);
}

/* =============================================
   CART DRAWER
============================================= */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100dvh;
    background: var(--cream);
    z-index: 1060;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--stone);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer-head {
    padding: 28px 28px 22px;
    border-bottom: 1px solid var(--stone);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.cart-drawer-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    letter-spacing: .04em;
}

.cart-close-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    cursor: pointer;
    font-size: 16px;
    transition: color .2s;
}

.cart-close-btn:hover {
    color: var(--ink);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
}

.cart-empty-state {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--clay);
    text-align: center;
}

.cart-empty-state i {
    font-size: 36px;
}

.cart-empty-state p {
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
}

.cart-item-body {
    flex: 1;
}

.cart-item-name {
    font-size: 12.5px;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 4px;
    display: block;
    transition: color .2s;
}

.cart-item-name:hover {
    color: var(--earth);
}

.cart-item-price {
    font-size: 12px;
    color: var(--muted);
}

.cart-item-remove {
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--clay);
    cursor: pointer;
    margin-top: 5px;
    display: inline-block;
    transition: color .2s;
}

.cart-item-remove:hover {
    color: var(--ink);
}

.cart-foot {
    padding: 22px 28px 28px;
    border-top: 1px solid var(--stone);
    flex-shrink: 0;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 18px;
}

.cart-total-label {
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
}

.cart-total-amount {
    font-family: var(--font-serif);
    font-size: 22px;
    color: var(--ink);
}

.btn-ink {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--ink);
    color: var(--cream);
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    text-align: center;
    transition: background .25s, opacity .25s;
    cursor: pointer;
}

.btn-ink:hover {
    background: var(--ink-soft);
    color: var(--cream);
}

.btn-ink.disabled {
    opacity: .38;
    pointer-events: none;
}

.btn-clear-cart {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 9.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--clay);
    cursor: pointer;
    transition: color .2s;
}

.btn-clear-cart:hover {
    color: var(--ink);
}

/* =============================================
   HERO
============================================= */
.aw-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 9s ease;
}

.aw-hero.loaded .hero-bg img {
    transform: scale(1);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(18, 15, 12, .72) 0%, rgba(18, 15, 12, .08) 55%, transparent 100%),
        linear-gradient(to right, rgba(18, 15, 12, .22) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px 80px;
    max-width: 820px;
}

.hero-eyebrow {
    font-size: 9.5px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--clay);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(52px, 8vw, 108px);
    font-weight: 300;
    line-height: .92;
    color: #fff;
    letter-spacing: -.01em;
    margin-bottom: 34px;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, .65);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 30px;
    border: 1px solid rgba(255, 255, 255, .38);
    color: rgba(255, 255, 255, .9);
    font-size: 9.5px;
    letter-spacing: .24em;
    text-transform: uppercase;
    transition: all .3s var(--ease);
    width: max-content;
    background: rgb(0 0 0 / 53%);
}

.hero-cta:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .75);
    color: #fff;
    gap: 22px;
}

.hero-scroll {
    position: absolute;
    right: 44px;
    bottom: 72px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll-label {
    font-size: 8.5px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    width: 1px;
    height: 52px;
    background: rgba(255, 255, 255, .15);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .55);
    animation: scrollDown 2.2s ease infinite;
}

@keyframes scrollDown {
    0% {
        top: -100%;
    }

    100% {
        top: 200%;
    }
}

@media(max-width:768px) {
    .hero-content {
        padding: 0 28px 52px;
    }

    .hero-scroll {
        display: none;
    }
}

/* =============================================
   FEATURE STRIP
============================================= */
.feature-strip {
    background: var(--ink);
    padding: 0;
}

.feature-strip-row {
    display: flex;
}

.feature-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 32px;
    border-right: 1px solid rgba(255, 255, 255, .07);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    font-size: 18px;
    color: var(--clay);
    flex-shrink: 0;
    width: 22px;
    text-align: center;
}

.feature-text h5 {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 1px;
    font-weight: 400;
}

.feature-text p {
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: .06em;
    margin: 0;
}

@media(max-width:900px) {
    .feature-strip-row {
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 0 0 50%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .07);
    }
}

@media(max-width:480px) {
    .feature-item {
        padding: 18px 20px;
    }
}

/* =============================================
   SECTION UTILITIES
============================================= */
.aw-section {
    padding: 60px 80px 60px 80px;
}

.aw-section-sm {
    padding: 60px 80px;
}

.bg-warm {
    background: var(--cream-dark);
}

.bg-ink {
    background: var(--ink);
}

@media(max-width:1200px) {

    .aw-section,
    .aw-section-sm {
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media(max-width:768px) {

    .aw-section,
    .aw-section-sm {
        padding-left: 24px;
        padding-right: 24px;
        padding-top: 52px;
        padding-bottom: 52px;
    }
}

.sec-eyebrow {
    font-size: 9.5px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--earth);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sec-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--clay);
}

.sec-title {
    font-family: var(--font-serif);
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -.005em;
}

.sec-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.sec-more {
    font-size: 9.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--earth);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    transition: gap .25s, color .25s;
}

.sec-more:hover {
    gap: 16px;
    color: var(--ink);
}

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

/* =============================================
   PRODUCT CARD
============================================= */
.aw-product {
    position: relative;
    background: var(--cream);
}

.product-thumb {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--cream-dark);
    position: relative;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s var(--ease), filter .5s;
    filter: grayscale(12%);
}

.aw-product:hover .product-thumb img {
    transform: scale(1.065);
    filter: grayscale(0%);
}

.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 14px 14px;
    background: linear-gradient(transparent, rgba(18, 15, 12, .82));
    display: flex;
    gap: 7px;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .3s, transform .3s;
}

.aw-product:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.icon-btn {
    width: 36px;
    height: 36px;
    background: rgba(246, 242, 236, .88);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    font-size: 12px;
    transition: background .2s;
    flex-shrink: 0;
}

.icon-btn:hover {
    background: #fff;
    color: var(--ink);
}

.product-body {
    padding: 14px 14px 18px;
}

.product-cat {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 4px;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 8px;
}

.product-name a {
    color: var(--ink);
    transition: color .2s;
}

.product-name a:hover {
    color: var(--earth);
}

.product-price-now {
    font-size: 14px;
    color: var(--ink);
}

.product-price-old {
    font-size: 11.5px;
    color: var(--clay);
    text-decoration: line-through;
    margin-left: 6px;
}

/* Product grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

@media(max-width:1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =============================================
   CATEGORY SCROLL
============================================= */
.cat-scroll-wrap {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 1px;
    margin: 0 -2px;
    gap: 10px !important;
    flex-wrap: wrap;
}

.cat-scroll-wrap::-webkit-scrollbar {
    display: none;
}

.cat-scroll-wrap.owl-carousel {
    display: block;
    margin: 0;
    padding-bottom: 0;
}

.cat-scroll-wrap.owl-carousel .owl-stage {
    display: flex;
}

.cat-scroll-wrap.owl-carousel .owl-item {
    float: none;
}

.cat-card {
    flex: 0 0 13.6%;
    cursor: pointer;
}

.cat-scroll-wrap.owl-carousel .cat-card {
    display: block;
    width: 100%;
    flex: 0 0 auto;
}

.cat-card-thumb {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--stone);
}

.cat-card-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(18%) brightness(.96);
    transition: transform .7s var(--ease), filter .4s;
    padding: 10px;
    background: white;
}

.cat-card:hover .cat-card-thumb img {
    transform: scale(1.07);
    filter: grayscale(0%) brightness(1);
}

.cat-card-info {
    padding: 6px 0 8px;
}

.cat-card-name {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2px;
}

.cat-card-count {
    font-size: 9.5px;
    letter-spacing: .12em;
    color: var(--clay);
    text-transform: uppercase;
}

/* =============================================
   TABS
============================================= */
.aw-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--stone);
    margin-bottom: 36px;
    overflow-x: auto;
    scrollbar-width: none;
}

.aw-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    font-size: 9.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clay);
    padding: 11px 22px;
    border-bottom: 1.5px solid transparent;
    margin-bottom: -1px;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
    cursor: pointer;
    background: none;
}

.tab-btn:hover {
    color: var(--ink);
}

.tab-btn.active {
    color: var(--ink);
    border-bottom-color: var(--ink);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
}

@media(max-width:1200px) {
    .products-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media(max-width:900px) {
    .products-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:600px) {
    .products-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .cat-card {
        flex: 0 0 47.5%;
    }

}

.view-cat-link {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

/* =============================================
   STORY SPLIT
============================================= */
.story-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.story-visual {
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

.story-visual:hover img {
    transform: scale(1.04);
}

.story-panel {
    background: var(--ink);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-eyebrow {
    font-size: 9px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 18px;
}

.story-title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 4.5vw, 58px);
    font-weight: 300;
    color: #fff;
    line-height: 1.03;
    margin-bottom: 26px;
}

.story-title em {
    font-style: italic;
    color: var(--clay);
}

.story-body {
    font-size: 13.5px;
    line-height: 1.8;
    color: rgb(255 255 255 / 65%);
    margin-bottom: 40px;
    max-width: 400px;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 9.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clay);
    transition: gap .25s, color .25s;
}

.story-link:hover {
    gap: 20px;
    color: #fff;
}

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

    .story-panel {
        padding: 52px 32px;
    }

    .story-visual {
        min-height: 360px;
    }
}

/* =============================================
   DISCOUNT BENTO
============================================= */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 2px;
}

.bento-cell {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--stone);
}

.bento-cell.large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.bento-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 220px;
    transition: transform .7s var(--ease);
    display: block;
}

.bento-cell.large img {
    min-height: 500px;
}

.bento-cell:hover img {
    transform: scale(1.04);
}

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 15, 12, .78) 0%, transparent 60%);
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-price-was {
    font-size: 10.5px;
    color: rgba(255, 255, 255, .4);
    text-decoration: line-through;
    margin-bottom: 2px;
}

.bento-name {
    font-family: var(--font-serif);
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 4px;
}

.bento-price-now {
    font-family: var(--font-serif);
    font-size: 17px;
    color: var(--clay);
    margin-bottom: 12px;
}

.bento-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .6);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    padding-bottom: 3px;
    transition: all .25s;
}

.bento-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, .55);
    gap: 14px;
}

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

    .bento-cell.large {
        grid-column: 1/3;
        grid-row: auto;
    }
}

@media(max-width:600px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-cell.large {
        grid-column: auto;
    }
}

/* =============================================
   NEWSLETTER
============================================= */
.newsletter-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 80px;
    background: var(--cream-dark);
}

.newsletter-title {
    font-family: var(--font-serif);
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 300;
    line-height: 1.08;
    margin-bottom: 14px;
}

.newsletter-body {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.72;
}

.newsletter-input {
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--clay);
    background: transparent;
    font-family: var(--font-sans);
    font-size: 14px;
    padding: 13px 0;
    color: var(--ink);
    outline: none;
    margin-bottom: 12px;
    transition: border-color .25s;
}

.newsletter-input::placeholder {
    color: var(--clay);
}

.newsletter-input:focus {
    border-color: var(--ink);
}

@media(max-width:900px) {
    .newsletter-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 52px 24px;
    }
}

@media(max-width:768px) {
    .newsletter-wrap {
        padding: 48px 24px;
    }
}

/* =============================================
   FOOTER
============================================= */
.aw-footer {
    background: var(--ink);
    position: relative;
}

.aw-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 164, 138, .25), transparent);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 60px 80px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-logo {
    margin-bottom: 18px;
    filter: invert(1);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 20px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
}

.footer-logo-sub {
    font-size: 8px;
    letter-spacing: .4em;
    text-transform: uppercase;
    color: var(--clay);
    margin-top: 3px;
    display: block;
    font-family: var(--font-sans);
    font-weight: 300;
}

.footer-desc {
    font-size: 12px;
    color: rgb(255 255 255 / 68%);
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .35);
    font-size: 12px;
    transition: border-color .2s, color .2s;
}

.footer-social a:hover {
    border-color: var(--clay);
    color: var(--clay);
}

.footer-company-info {
    border-top: 1px solid rgba(255, 255, 255, .05);
    padding-top: 16px;
}

.fci-row {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgb(255 255 255 / 75%);
    letter-spacing: .04em;
    margin-bottom: 4px;
}

.fci-row span:last-child {
    color: rgb(255 255 255 / 80%);
}

.footer-col h4 {
    font-size: 9.5px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgb(255 255 255 / 74%);
    margin-bottom: 20px;
    font-weight: 400;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    padding-left: 0;
}

.footer-col ul li a {
    font-size: 12px;
    color: rgb(255 255 255 / 89%);
    letter-spacing: .04em;
    transition: color .2s, padding-left .2s;
    display: block;
}

.footer-col ul li a:hover {
    color: rgba(255, 255, 255, .75);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-icon {
    color: var(--clay);
    font-size: 12px;
    flex-shrink: 0;
    width: 14px;
    text-align: center;
    margin-top: 2px;
}

.contact-text {
    font-size: 11.5px;
    color: rgb(255 255 255 / 71%);
    line-height: 1.6;
}

.contact-text a {
    color: rgb(255 255 255 / 75%);
    transition: color .2s;
    display: block;
}

.contact-text a:hover {
    color: rgba(255, 255, 255, .7);
}

.footer-bottom {
    padding: 22px 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-copy {
    font-size: 9.5px;
    letter-spacing: .07em;
    color: rgb(255 255 255 / 61%);
}

.footer-copy a {
    color: rgb(255 255 255);
    transition: color .2s;
}

.footer-copy a:hover {
    color: rgba(255, 255, 255, .6);
}

.footer-payment img {
    height: 26px;
    opacity: 1;
    filter: brightness(0) invert(1);
}

@media(max-width:1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding: 48px 24px 40px;
    }

    .footer-bottom {
        padding: 18px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =============================================
   SCROLL-TO-TOP
============================================= */
#scroll-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 42px;
    height: 42px;
    background: var(--ink);
    border: 1px solid rgba(255, 255, 255, .14);
    color: rgba(255, 255, 255, .55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all .3s;
    z-index: 400;
}

#scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-top:hover {
    background: var(--ink-soft);
    color: #fff;
}

/* =============================================
   FADE-IN ANIMATION
============================================= */
.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   HERO SLIDER (Dynamic)
============================================= */
.aw-hero {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2.2 / 1;
}
 
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 0;
}
 
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}
 
.hero-slide img {
    width: 100%;
    object-fit: contain;
    transform: scale(1.03);
    transition: transform 9s ease;
    aspect-ratio: 2.2 / 1;
}
 
.hero-slide.active img {
    transform: scale(1.08);
}
 
.hero-vignette {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: none;
    pointer-events: none;
}
 
.hero-content {
    position: relative;
    z-index: 3;
    padding: 0 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
 
.hero-dots {
    position: absolute;
    bottom: 36px;
    left: 80px;
    z-index: 4;
    display: flex;
    gap: 8px;
    align-items: center;
}
 
.hero-dot {
    width: 28px;
    height: 2px;
    background: rgb(0 0 0 / 28%);
    cursor: pointer;
    transition: background .3s, width .3s;
    border: none;
    padding: 0;
}
 
.hero-dot.active {
    background: rgb(219 219 219 / 85%);
    width: 44px;
}
 
.hero-scroll {
    position: absolute;
    right: 44px;
    bottom: 72px;
    z-index: 4;
}
 
@media(max-width:768px) {
    .hero-content { padding: 0 28px 64px; min-height: 65vh; }
    .hero-dots { left: 28px; }
    .hero-scroll { display: none; }
    .footer-payment img {
        height: max-content;
    }
}
 
/* =============================================
   NEW HEADER / NAV
============================================= */
.aw-nav-left,
.aw-nav-right {
    display: flex;
    align-items: center;
    gap: 28px;
}
 
.aw-nav-left { justify-content: flex-start; }
.aw-nav-right { justify-content: flex-end; }
 
.aw-nav-right .nav-link-item {
    font-size: 11px;
    letter-spacing: .14em;
}
 
/* Topbar iÃƒÂ§in catalog/teklif al linkleri */
.nav-highlight {
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--earth) !important;
    font-weight: 500;
}
 
.nav-highlight::after { background: var(--earth) !important; }
 
/* ÃƒÅ“rÃƒÂ¼n kategorisi hÃ„Â±zlÃ„Â± nav (sol, kÃ„Â±sa isimler) */
.cat-quick-nav {
    display: flex;
    align-items: center;
    gap: 9px;
}
 
.cat-quick-nav a {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 3px 0;
    transition: color .2s;
    white-space: nowrap;
}
 
.cat-quick-nav a:hover { color: var(--ink); }
 
.cat-quick-sep {
    color: #000000;
    font-size: 10px;
    user-select: none;
}
 
/* =============================================
   RANDOM PRODUCTS SECTION
============================================= */
.random-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
 
@media(max-width:1200px) { .random-products-grid { grid-template-columns: repeat(3, 1fr); } }
@media(max-width:768px)  { .random-products-grid { grid-template-columns: repeat(2, 1fr); } }
 
.rp-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--cream-dark);
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease;
}
 
.rp-card.show {
    opacity: 1;
    transform: none;
}
 
.rp-card-thumb {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--stone);
}
 
.rp-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease), filter .4s;
    filter: grayscale(10%);
}
 
.rp-card:hover .rp-card-thumb img {
    transform: scale(1.065);
    filter: grayscale(0%);
}
 
.rp-card-body {
    padding: 14px 14px 18px;
}
 
.rp-cat {
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--clay);
    margin-bottom: 4px;
}
 
.rp-name {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 8px;
}
 
.rp-price {
    font-size: 13px;
    color: var(--ink);
}
 
.rp-price del {
    font-size: 11px;
    color: var(--clay);
    margin-left: 6px;
}
 
.rp-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 14px 14px;
    background: linear-gradient(transparent, rgba(18,15,12,.75));
    display: flex;
    gap: 7px;
    justify-content: center;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity .3s, transform .3s;
}
 
.rp-card:hover .rp-actions {
    opacity: 1;
    transform: none;
}
 
.rp-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--ink);
    color: var(--cream);
    font-size: 8.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 4px 9px;
    z-index: 2;
}
 
/* Refresh button */
.refresh-products-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 22px;
    border: 1px solid var(--stone);
    font-size: 9.5px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: all .25s;
    background: transparent;
}
 
.refresh-products-btn:hover {
    border-color: var(--ink);
    color: var(--ink);
}
 
.refresh-products-btn i {
    font-size: 12px;
    transition: transform .4s;
}
 
.refresh-products-btn:hover i {
    transform: rotate(180deg);
}
 
.sec-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
 
/* =============================================
   SEARCH OVERLAY (yeniden tasarÃ„Â±m)
============================================= */
#aw-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26,23,20,.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s var(--ease), visibility .3s;
}
 
#aw-search-overlay.open {
    opacity: 1;
    visibility: visible;
}
 
.search-overlay-inner {
    width: 100%;
    max-width: 680px;
    padding: 0 24px;
}
 
.search-overlay-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 1px solid rgba(255,255,255,.25);
    padding-bottom: 16px;
    margin-bottom: 0;
}
 
.search-overlay-bar i {
    color: rgba(255,255,255,.4);
    font-size: 16px;
    flex-shrink: 0;
}
 
#search-overlay-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    color: rgba(255,255,255,.9);
    caret-color: var(--clay);
    letter-spacing: -.01em;
}
 
#search-overlay-input::placeholder {
    color: rgba(255,255,255,.25);
}
 
.search-overlay-close {
    color: rgba(255,255,255,.35);
    font-size: 16px;
    cursor: pointer;
    transition: color .2s;
    flex-shrink: 0;
    background: none;
    border: none;
}
 
.search-overlay-close:hover { color: rgba(255,255,255,.8); }
 
#search-overlay-results {
    list-style: none;
    margin-top: 0;
    max-height: 440px;
    overflow-y: auto;
    scrollbar-width: none;
}
 
#search-overlay-results::-webkit-scrollbar { display: none; }
 
#search-overlay-results li {
    border-bottom: 1px solid rgba(255,255,255,.07);
}
 
#search-overlay-results li a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    color: rgba(255,255,255,.6);
    transition: color .2s;
}
 
#search-overlay-results li a:hover { color: rgba(255,255,255,.95); }
 
#search-overlay-results li a img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    flex-shrink: 0;
    opacity: .85;
}
 
.sres-info { flex: 1; }
 
.sres-name {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 400;
    display: block;
    margin-bottom: 2px;
    color: rgba(255,255,255,.85);
}
 
.sres-cat {
    font-size: 9.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.3);
}
 
.sres-price {
    font-size: 13px;
    color: var(--clay);
    flex-shrink: 0;
}
 
.search-hint {
    padding: 24px 0 8px;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.22);
}
 
@media(max-width:640px) {
    #aw-search-overlay { padding-top: 60px; }
    #search-overlay-input { font-size: 22px; }
}

/* =============================================
   ART WIND BLACK / WHITE HOME REVISIONS
============================================= */
#aw-topbar {
    display: none;
}

#aw-header,
#aw-header.scrolled {
    top: 0;
    background: #000;
    border-bottom-color: rgba(255, 255, 255, .14);
    box-shadow: none;
}

.header-inner {
    grid-template-columns: minmax(0, 1.25fr) auto minmax(0, 1.25fr);
    gap: 30px;
}

.aw-logo img {
    filter: invert(1);
}

.aw-nav .nav-link-item,
.cat-quick-nav a,
.hdr-btn {
    color: rgba(255, 255, 255, .82);
}

.aw-nav .nav-link-item:hover,
.aw-nav .nav-link-item.active,
.cat-quick-nav a:hover,
.hdr-btn:hover {
    color: #fff;
}

.aw-nav .nav-link-item::after,
.nav-highlight::after {
    background: #fff !important;
}

.nav-highlight {
    color: #fff !important;
}

.cat-quick-nav {
    gap: 7px;
    min-width: 0;
}

.cat-quick-nav a {
    font-size: 11px;
    letter-spacing: .1em;
}

.cat-quick-sep {
    color: rgba(255, 255, 255, .36);
}

.cart-badge {
    background: #fff;
    color: #000;
}

.hamburger span {
    background: #fff;
}

.hero-social {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 8px;
}

.hero-social a {
    color: rgba(255, 255, 255, .48);
    font-size: 13px;
    transition: color .2s, transform .2s;
}

.hero-social a:hover {
    color: #fff;
    transform: translateY(-1px);
}

body,
.bg-warm,
.aw-section,
.rp-card,
.cat-card-thumb img {
    background: #fff;
}

.sec-eyebrow,
.sec-more,
.rp-cat,
.cat-card-count,
.refresh-products-btn,
.rp-price del {
    color: #000;
}

.sec-eyebrow::before {
    background: #000;
}

.sec-title,
.rp-name,
.rp-name a,
.cat-card-name {
    color: #000;
}

.refresh-products-btn {
    border-color: #000;
    background: #fff;
}

.refresh-products-btn:hover {
    background: #000;
    color: #fff;
}

.random-products-grid,
.cat-scroll-wrap,
.project-banners {
    gap: 1px;
}

.rp-card-thumb {
    background: #f4f4f4;
}

.rp-thumb-link {
    display: block;
    width: 100%;
    height: 100%;
}

.rp-card-body {
    position: relative;
    min-height: 118px;
    padding: 16px 58px 18px 16px;
    background: #fff;
    border-top: 1px solid #000;
}

.rp-cart-btn {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background: #000;
    color: #fff;
}

.rp-cart-btn:hover {
    background: #fff;
    color: #000;
    outline: 1px solid #000;
}

.rp-actions {
    display: none;
}

.icon-btn {
    border-radius: 0;
}

.projects-section {
    background: #fff;
}

.project-banners {
    display: flex;
}

.project-banners.owl-carousel {
    display: block;
}

.project-banners.owl-carousel .owl-stage {
    display: flex;
}

.project-banner {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    color: #fff;
    background: #000;
}

.project-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease), filter .35s;
}

.project-banner::after {
    content: '';
    position: absolute;
    inset: 0;
}

.project-banner span {
    position: relative;
    z-index: 1;
    max-width: 620px;
    font-family: var(--font-serif);
    font-size: clamp(30px, 4vw, 40px);
    font-weight: 300;
    line-height: 1.04;
    text-shadow: 1px 1px 2px black;
}

.project-banner:hover img {
    transform: scale(1.035);
    filter: grayscale(1) contrast(1.1) brightness(.82);
}

.project-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.project-carousel .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .18);
    transition: background .25s ease, transform .25s ease;
}

.project-carousel .owl-dot.active span {
    background: #000;
    transform: scale(1.15);
}

.project-logos-shell {
    padding-top: 0;
}

.project-logos {
    border-top: 1px solid rgba(0, 0, 0, .08);
    padding-top: 26px;
}

.sec-header-compact {
    margin-bottom: 18px;
}
.reference-carousel {
    padding: 12px;
}
.sec-title-small {
    font-size: clamp(28px, 4vw, 42px);
}

.reference-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.reference-logo-item {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 26px;
    border: 1px solid rgb(0 0 0);
    background: white;
}

.reference-logo-item img {
    display: block;
    max-width: 100%;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .82;
}

.story-banner-layout {
    display: flex;
    flex-direction: column;
}

.story-banner-layout .story-visual {
    min-height: 480px;
}

.story-banner-layout .story-panel {
    background: #fff;
    color: #000;
    padding: 70px 80px;
}

.story-banner-layout .story-eyebrow,
.story-banner-layout .story-title,
.story-banner-layout .story-title em,
.story-banner-layout .story-body,
.story-banner-layout .story-link {
    color: #000;
}

.story-banner-layout .story-body {
    max-width: 760px;
}

.aw-middle-visual {
    width: min(100%, 1680px);
    margin: 0 auto;
    padding: 0 32px 48px;
}

.aw-middle-visual img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
    object-fit: cover;
}

.feature-strip {
    background: #000;
    border-top: 1px solid #000;
}

.feature-icon,
.feature-text h5,
.feature-text p {
    color: #fff;
}

@media(max-width:1320px) {
    .header-inner {
        padding: 0 24px;
        gap: 18px;
    }

    .cat-quick-nav a,
    .aw-nav .nav-link-item {
        font-size: 11;
        letter-spacing: .08em;
    }
}

@media(max-width:1100px) {
    .header-inner {
        grid-template-columns: 1fr auto;
    }

    .aw-logo {
        grid-column: 1;
        text-align: left;
    }

    .header-inner > .aw-nav:first-child {
        display: none;
    }

    .header-inner > .aw-nav:last-child {
        display: flex;
        grid-column: 2;
    }

    .header-inner > .aw-nav:last-child > .nav-link-item {
        display: none;
    }
}

@media(max-width:768px) {
    .aw-middle-visual {
        padding: 0 16px 32px;
    }

    .project-banner {
        min-height: 210px;
        padding: 24px;
    }

    .story-banner-layout .story-panel {
        padding: 52px 24px;
    }

    .story-banner-layout .story-visual {
        min-height: 320px;
    }
}

/* =============================================
   INNER PAGES: BREADCRUMB / CONTACT / PRODUCT CARDS
============================================= */
.space,
.space-top {
    padding-top: 72px;
}

.space,
.space-bottom {
    padding-bottom: 72px;
}

.space-extra,
.space-extra-top {
    padding-top: 52px;
}

.space-extra,
.space-extra-bottom {
    padding-bottom: 64px;
}

.breadcumb-wrapper {
    background: #fff;
    border-bottom: 1px solid #000;
    padding: 40px 0 44px;
    text-align: center;
}

.breadcumb-content {
    max-width: 920px;
    margin: 0 auto;
}

.breadcumb-title {
    margin: 0;
    color: #000;
    font-family: var(--font-serif);
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 300;
    line-height: 1.02;
}

.breadcumb-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 20px 0 0;
    padding: 0;
    color: #000;
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.breadcumb-menu li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.breadcumb-menu li:not(:last-child)::after {
    content: "/";
    color: rgba(0, 0, 0, .35);
}

.breadcumb-menu a {
    color: #000;
    transition: opacity .2s;
}

.breadcumb-menu a:hover {
    opacity: .55;
}

.title-area {
    margin-bottom: 34px;
}

.title-area .sub-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 10px;
    color: #000;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.title-area .sub-title img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.title-area .sec-title,
.sec-title {
    margin: 0;
    color: #000;
    font-family: var(--font-serif);
    font-size: clamp(34px, 5vw, 54px);
    font-weight: 300;
    line-height: 1.08;
}

.sec-text {
    max-width: 760px;
    margin: 14px auto 0;
    color: #555;
    font-size: 15px;
    line-height: 1.75;
}

.product-details {
    background: #fff;
    color: #000;
    font-size: 16px;
}

.contact-feature {
    height: 100%;
    min-height: 156px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 18px;
    background: #fff;
    border: 1px solid #000;
    color: #000;
}

.contact-feature .box-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    font-size: 17px;
}

.contact-feature .media-body {
    min-width: 0;
}

.contact-feature .box-title {
    margin: 0 0 8px;
    color: #000;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
}

.contact-feature .box-text {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.65;
}

.contact-feature .box-text a {
    display: block;
    color: #000;
    overflow-wrap: anywhere;
    transition: opacity .2s;
}

.contact-feature .box-text a:hover {
    opacity: .55;
}

.contact-feature .th-social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.contact-feature .th-social a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border: 1px solid #000;
    color: #fff;
    font-size: 14px;
    transition: background .2s, color .2s;
}

.contact-feature .th-social a:hover {
    background: #fff;
    color: #000;
}

.contact-map {
    width: min(100%, 1520px);
    margin: 0 auto;
    padding: 0 24px;
    line-height: 0;
}

.contact-map iframe {
    width: 100%;
    height: 560px;
    border: 0;
    filter: grayscale(1);
}

.th-product.product-grid {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #000;
    text-align: left;
}

.th-product .product-img {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f4f4f4;
    border-bottom: 1px solid #000;
}

.th-product .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease), filter .4s;
    filter: grayscale(10%);
}

.th-product:hover .product-img img {
    transform: scale(1.065);
    filter: grayscale(0%);
}

.th-product .product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    max-width: calc(100% - 24px);
    background: #000;
    color: #fff;
    padding: 4px 9px;
    font-size: 8.5px;
    letter-spacing: .14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.th-product .actions {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    display: flex;
    gap: 7px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity .25s, transform .25s;
}

.th-product:hover .actions {
    opacity: 1;
    transform: none;
}

.th-product .actions .icon-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border: 1px solid #000;
    color: #fff;
    font-size: 14px;
    transition: background .2s, color .2s;
}

.th-product .actions .icon-btn:hover {
    background: #fff;
    color: #000;
}

.th-product .product-content {
    min-height: 120px;
    padding: 16px;
}

.th-product .product-category {
    display: block;
    margin-bottom: 5px;
    color: #000;
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.th-product .product-title {
    margin: 0 0 9px;
    color: #000;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.th-product .product-title a {
    color: inherit;
}

.th-product .price {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    color: #000;
    font-size: 14px;
    line-height: 1.4;
}

.th-product .price del {
    color: #777;
    font-size: 12px;
}

@media(max-width:991px) {
    .space,
    .space-top {
        padding-top: 52px;
    }

    .space,
    .space-bottom {
        padding-bottom: 52px;
    }

    .contact-map iframe {
        height: 420px;
    }
}

@media(max-width:640px) {
    .breadcumb-wrapper {
        padding: 54px 0 34px;
    }

    .breadcumb-menu {
        font-size: 9px;
        letter-spacing: .12em;
    }

    .contact-feature {
        min-height: 0;
        padding: 20px;
    }

    .contact-map {
        padding: 0 16px;
    }

    .contact-map iframe {
        height: 340px;
    }

    .th-product .actions {
        opacity: 1;
        transform: none;
    }
}

/* =============================================
   PRODUCT CATEGORY / PRODUCT DETAIL
============================================= */
.ltn__shop-options {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #000;
}

.cat-name h6 {
    margin: 0;
    color: #000;
    font-family: var(--font-serif);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 300;
    line-height: 1.08;
}

.showing-product-number span {
    color: #555;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.sidebar.ltn__shop-sidebar {
    position: sticky;
    top: 104px;
}

.widget.ltn__menu-widget {
    border: 1px solid #000;
    background: #fff;
    padding: 22px;
}

.ltn__widget-title {
    margin: 0 0 18px;
    color: #000;
    font-family: var(--font-serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.1;
}

.quick-search {
    position: relative;
    margin-bottom: 18px;
}

.quick-search .form-control {
    width: 100%;
    min-height: 44px;
    border: 1px solid #000;
    border-radius: 0;
    padding: 10px 42px 10px 12px;
    color: #000;
    font-family: var(--font-sans);
    font-size: 13px;
}

.quick-search>i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    color: #000;
    cursor: pointer;
    font-size: 13px;
    padding: 8px;
}

.widget.ltn__menu-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget.ltn__menu-widget ul ul {
    margin-top: 9px;
    padding-left: 13px;
    border-left: 1px solid rgba(0, 0, 0, .16);
}

.widget.ltn__menu-widget li {
    margin-bottom: 9px;
}

.widget.ltn__menu-widget li:last-child {
    margin-bottom: 0;
}

.widget.ltn__menu-widget a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #000;
    font-size: 12px;
    letter-spacing: .08em;
    line-height: 1.45;
    text-transform: uppercase;
    transition: opacity .2s, padding-left .2s;
}

.widget.ltn__menu-widget a span {
    color: rgba(0, 0, 0, .38);
    font-size: 10px;
}

.widget.ltn__menu-widget li.active>a,
.widget.ltn__menu-widget a:hover {
    opacity: .55;
    padding-left: 5px;
}

.th-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 24px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: .18em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: background .2s, color .2s;
}

.th-btn:hover,
.th-btn.active {
    background: #fff;
    color: #000;
}

.product-big-img {
    overflow: hidden;
    background: #f4f4f4;
    border: 1px solid #000;
}

.product-big-img .img {
    display: block;
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.product-big-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pr-slide .owl-nav,
.pr-slide .owl-dots {
    display: none;
}

.tumbnails-area {
    position: relative;
    margin-top: 12px;
    margin-bottom: 24px;
}

.tumbnails-box {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 10px 44px;
    border: 1px solid #000;
    background: #fff;
}

.tumbnails-box::-webkit-scrollbar {
    display: none;
}

.tumbnails-img a {
    width: 86px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .24);
    background: #f4f4f4;
}

.tumbnails-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-scroll {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #000;
    color: #000;
    cursor: pointer;
    z-index: 2;
}

.thumbnail-scroll.left-scroll {
    left: 0;
}

.thumbnail-scroll.right-scroll {
    right: 0;
}

.product-about {
    padding-left: 30px;
    color: #000;
}

.product-about .product-title {
    margin: 0 0 14px;
    color: #000;
    font-family: var(--font-serif);
    font-size: clamp(38px, 5vw, 62px);
    font-weight: 300;
    line-height: 1.03;
}

.product-about p {
    color: #555;
    font-size: 15px;
}

.product-about .sku,
.product-about .colored {
    color: #000 !important;
}

.product-about small {
    display: inline-block;
    margin-bottom: 7px;
    color: #777;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-about>.price {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: baseline;
    gap: 12px;
    margin: 0;
    color: #000;
    font-size: clamp(28px, 4vw, 42px) !important;
    font-weight: 400;
    line-height: 1.15;
}

.product-about>.price del {
    color: #777;
    font-size: 58%;
    font-weight: 300;
}

.product-about .actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin: 26px 0;
}

.quantity {
    position: relative;
    display: inline-flex;
    width: 112px;
    height: 50px;
}

.quantity .qty-input {
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    border-radius: 0;
    background: #fff;
    color: #000;
    padding: 0 42px 0 14px;
    font-family: var(--font-sans);
    font-size: 15px;
}

.quantity .qty-btn {
    position: absolute;
    right: 0;
    width: 34px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #000;
    color: #000;
    font-size: 10px;
}

.quantity .quantity-plus {
    top: 0;
    border-bottom: 1px solid #000;
}

.quantity .quantity-minus {
    bottom: 0;
}

.product_meta {
    display: grid;
    gap: 6px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid #000;
    color: #000;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product_meta a,
.product_meta .sku {
    color: #555;
    letter-spacing: 0;
    text-transform: none;
}

.product-tab-style1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 58px 0 24px;
    padding: 0;
    border-bottom: 1px solid #000;
    padding-bottom: 18px;
}

.product-tab-style1 .nav-link {
    border-radius: 0;
}

.product-details .tab-content {
    color: #000;
}

.product-details .tab-pane {
    padding: 26px;
    border: 1px solid #000;
    background: #fff;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.product-details .tab-pane p:last-child {
    margin-bottom: 0;
}

.title-line {
    border: 0;
    border-top: 1px solid #000;
    opacity: 1;
}

.icon-box {
    display: flex;
    gap: 8px;
}

.slider-arrow {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    transition: background .2s, color .2s;
}

.slider-arrow:hover {
    background: #000;
    color: #fff;
}

.th-slider {
    overflow: hidden;
    padding: 1px;
}

.th-slider:not(.swiper-initialized) .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.th-slider:not(.swiper-initialized) .swiper-slide {
    width: auto;
}

.lg-backdrop {
    background: rgba(0, 0, 0, .92) !important;
}

#lg-share,
#lg-actual-size,
.lg-fullscreen,
.lg-autoplay-button {
    display: none !important;
}
@media(max-width:1199px) {
    .th-slider:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media(max-width:991px) {
    .sidebar.ltn__shop-sidebar {
        position: static;
        margin-bottom: 28px;
    }

    .product-about {
        padding-left: 0;
        margin-top: 26px;
    }
}

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

    .th-slider:not(.swiper-initialized) .swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-details .tab-pane {
        padding: 20px;
    }
}

@media(max-width:575px) {
    .product-about .actions,
    .product-about .actions .th-btn {
        width: 100%;
    }

    .quantity {
        width: 100%;
    }

    .tumbnails-box {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* =============================================
   STATIC CONTENT PAGES
============================================= */
.page-content-section {
    background: #fff;
}

.page-content-section .container {
    max-width: 1040px;
}

.page-content-section .col-12 {
    color: #292929;
    font-size: 17px;
    line-height: 1.85;
}

.page-content-section p {
    margin: 0 0 20px;
}

.page-content-section p:empty {
    display: none;
}

.page-content-section strong,
.page-content-section b {
    color: #000;
    font-weight: 500;
}

.page-content-section p:first-child strong:first-child {
    display: block;
    margin-bottom: 10px;
    color: #000;
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.08;
}

.page-content-section h1,
.page-content-section h2,
.page-content-section h3,
.page-content-section h4,
.page-content-section h5,
.page-content-section h6 {
    margin: 34px 0 14px;
    color: #000;
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.15;
}

.page-content-section h1 {
    font-size: clamp(38px, 5vw, 58px);
}

.page-content-section h2 {
    font-size: clamp(32px, 4vw, 46px);
}

.page-content-section h3 {
    font-size: 30px;
}

.page-content-section a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.page-content-section ul,
.page-content-section ol {
    margin: 0 0 24px;
    padding-left: 22px;
}

.page-content-section li {
    margin-bottom: 10px;
}

.page-content-section blockquote {
    margin: 34px 0;
    padding: 24px 28px;
    border-left: 1px solid #000;
    background: #f7f7f7;
    color: #000;
    font-family: var(--font-serif);
    font-size: 25px;
    line-height: 1.35;
}

.page-content-section img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 28px auto;
}

.page-content-section table {
    width: 100%;
    margin: 28px 0;
    border-collapse: collapse;
    font-size: 14px;
}

.page-content-section th,
.page-content-section td {
    border: 1px solid #000;
    padding: 12px;
    vertical-align: top;
}

.page-content-section th {
    background: #000;
    color: #fff;
    font-weight: 500;
}

@media(max-width:640px) {
    .page-content-section .col-12 {
        font-size: 15px;
        line-height: 1.75;
    }

    .page-content-section blockquote {
        padding: 20px;
        font-size: 22px;
    }
}

/* =============================================
   PROFILE / ACCOUNT
============================================= */
.form-title h3 {
    margin: 0 0 22px;
    color: #000;
    font-family: var(--font-serif);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 300;
    line-height: 1.1;
}

.form-group {
    position: relative;
    margin-bottom: 16px;
}

.form-group label,
.custom-form label {
    display: block;
    margin-bottom: 6px;
    color: #000;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.form-control,
.form-group input:not([type="radio"]):not([type="checkbox"]),
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 46px;
    border: 1px solid #000;
    border-radius: 0;
    background: #fff;
    color: #000;
    font-family: var(--font-sans);
    font-size: 14px;
    padding: 10px 12px;
}

.form-control:disabled,
.form-group input:disabled,
.form-group select:disabled {
    background: #f4f4f4;
    color: #777;
}

.form-control:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #000;
    box-shadow: none;
    outline: none;
}

.danger {
    border-color: #b00020 !important;
    box-shadow: 0 0 0 3px rgba(176, 0, 32, .08) !important;
}

.btn-block {
    width: 100%;
}

.th-btn.style4,
.btn.th-btn.style4 {
    background: #fff;
    color: #000;
}

.th-btn.style4:hover,
.btn.th-btn.style4:hover {
    background: #000;
    color: #fff;
}

.radio-inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 14px;
}

.custom-checkbox {
    position: relative;
}

.custom-checkbox input[type="radio"],
.custom-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}

.custom-checkbox label {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border: 1px solid #000;
    padding: 10px 16px;
    color: #000;
    cursor: pointer;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.custom-checkbox input:checked~label {
    background: #000;
    color: #fff;
}

.captcha {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 10px;
}

.captcha #captcha {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 12px;
}

.captcha #captcha img {
    max-width: 100%;
    max-height: 42px;
}

.captcha #captcha.loading {
    opacity: .55;
    pointer-events: none;
}

.cart_table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    color: #000;
}

.cart_table th,
.cart_table td {
    border: 1px solid #000;
    padding: 12px;
    vertical-align: top;
    font-size: 13px;
}

.cart_table th {
    background: #000;
    color: #fff;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 500;
}

.cart_table .th-btn {
    min-height: 38px;
    padding: 10px 14px;
}

td.status {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    gap: 7px;
}

.status>span {
    display: inline-flex;
    border: 1px solid currentColor;
    padding: 4px 8px;
    font-size: 12px;
}

td.status>small {
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hide-content {
    display: none;
}

.hide-content.toggled {
    display: table-row;
    background: #f8f8f8;
}

tr.toggled {
    background: #f8f8f8;
}

tr.toggled td.status small i {
    transform: rotateX(180deg);
}

.order-info {
    display: grid;
    gap: 8px;
    text-align: left;
    font-size: 13px;
}

ul.cart-items {
    margin: 0;
    padding: 0;
    list-style: none;
    border: 1px solid #000;
}

ul.cart-items li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .12);
    background: #fff;
    color: #000;
    font-size: 13px;
    line-height: 1.45;
}

ul.cart-items li:last-child {
    border-bottom: 0;
}

ul.cart-items li:nth-child(even) {
    background: #f7f7f7;
}

.order-code {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    border: 1px dashed #000;
    padding: 12px 18px;
    background: #fff;
    color: #000;
}

.order-code small {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.order-code b {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
}

.alert {
    border-radius: 0;
}

.preloader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.preloader-inner .loader {
    display: flex;
    gap: 6px;
}

.preloader-inner .loader span {
    width: 8px;
    height: 8px;
    background: #000;
    animation: aw-pulse .8s infinite alternate;
}

.preloader-inner .loader span:nth-child(2n) {
    animation-delay: .15s;
}

@keyframes aw-pulse {
    to {
        opacity: .25;
        transform: translateY(-6px);
    }
}

@media(max-width:768px) {
    .cart_table thead {
        display: none;
    }

    .cart_table,
    .cart_table tbody,
    .cart_table tr,
    .cart_table td {
        display: block;
        width: 100%;
    }

    .cart_table tr {
        margin-bottom: 14px;
        border: 1px solid #000;
    }

    .cart_table td {
        border: 0;
        border-bottom: 1px solid rgba(0, 0, 0, .12);
    }

    td.status {
        align-items: flex-start;
    }

    ul.cart-items li {
        flex-direction: column;
    }

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

/* =============================================
   CHECKOUT
============================================= */
.mco-wrapper {
    background: #fff;
    padding: 56px 0;
    min-height: 100vh;
}

.mco-header,
.mco-accordion-item,
.mco-summary-card {
    background: var(--mco-white);
    border: 1px solid #000;
    box-shadow: none;
}

.mco-header {
    padding: 28px;
    margin-bottom: 24px;
}

.mco-title {
    margin: 0 0 6px;
    color: #000;
    font-family: var(--font-serif);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 300;
    line-height: 1.05;
}

.mco-subtitle {
    margin: 0;
    color: #555;
    font-size: 14px;
}

.mco-auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.mco-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 10px;
    letter-spacing: .14em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s, color .2s, opacity .2s;
}

.mco-btn:hover,
.mco-btn-outline {
    background: #fff;
    color: #000;
}

.mco-btn-outline:hover,
.mco-btn-primary,
.mco-btn-success,
.mco-btn-warning {
    background: #000;
    color: #fff;
}

.mco-btn-light {
    background: #fff;
    color: #000;
}

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

.mco-accordion-wrapper,
.mco-cart-items,
.mco-address-list,
.mco-shipping-options,
.mco-payment-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mco-accordion-item {
    overflow: hidden;
}

.mco-accordion-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.mco-step-number {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 500;
}

.mco-step-info {
    flex: 1;
}

.mco-step-title {
    margin: 0 0 2px;
    color: inherit;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.1;
}

.mco-step-desc {
    margin: 0;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.mco-accordion-body {
    padding: 22px;
}

.mco-cart-item {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    border: 1px solid #000;
    padding: 12px;
    background: #fff;
}

.mco-cart-img {
    width: 82px;
    height: 82px;
    overflow: hidden;
    background: #f4f4f4;
}

.mco-cart-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mco-cart-name {
    margin: 0 0 6px;
    color: #000;
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.15;
}

.mco-cart-name a {
    color: inherit;
}

.mco-cart-price {
    margin: 0 0 10px;
    color: #555;
    font-size: 13px;
}

.mco-quantity-controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mco-qty-btn,
.mco-cart-remove {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    background: #fff;
    color: #000;
}

.mco-qty-btn:hover,
.mco-cart-remove:hover {
    background: #000;
    color: #fff;
}

.mco-qty-input {
    width: 48px;
    height: 32px;
    border: 1px solid #000;
    text-align: center;
}

.mco-cart-total {
    display: grid;
    justify-items: end;
    gap: 10px;
}

.mco-cart-total strong {
    color: #000;
    white-space: nowrap;
}

.mco-cart-actions {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #000;
    padding-top: 16px;
}

.mco-label {
    display: block;
    margin-bottom: 7px;
    color: #000;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.mco-input {
    width: 100%;
    min-height: 46px;
    border: 1px solid #000;
    border-radius: 0;
    background: #fff;
    color: #000;
    padding: 10px 12px;
    font-family: var(--font-sans);
    font-size: 14px;
}

.mco-input:focus {
    outline: none;
    box-shadow: none;
}

.mco-info-alert,
.mco-warning-alert {
    border-radius: 0;
    margin-bottom: 20px;
}

.mco-captcha-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 10px;
}

.mco-captcha-box {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    font-size: 12px;
}

.mco-captcha-box img {
    max-width: 100%;
    max-height: 42px;
}

.mco-address-title,
.mco-summary-title {
    margin: 0 0 16px;
    color: #000;
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
}

.mco-address-card,
.mco-radio-label {
    display: block;
    border: 1px solid #000;
    background: #fff;
    padding: 14px;
    cursor: pointer;
    transition: background .2s, color .2s;
}

.mco-address-card:hover,
.mco-address-card.mco-address-selected,
.mco-radio-card input[type="radio"]:checked+.mco-radio-label {
    background: #000;
    color: #fff;
}

.mco-address-card.mco-address-selected *,
.mco-radio-card input[type="radio"]:checked+.mco-radio-label * {
    color: inherit;
}

.mco-address-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.mco-address-type-badge,
.mco-address-title-small {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mco-address-name {
    margin: 0 0 8px;
    color: inherit;
    font-size: 16px;
}

.mco-address-detail,
.mco-address-tax,
.mco-shipping-price,
.mco-payment-discount {
    margin: 4px 0;
    color: inherit;
    font-size: 13px;
}

.mco-add-address-link {
    padding-top: 14px;
    text-align: center;
}

.mco-add-address-link a {
    color: #000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mco-radio-card {
    position: relative;
}

.mco-radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.mco-radio-label {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
}

.mco-radio-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid currentColor;
}

.mco-radio-content h5 {
    margin: 0 0 4px;
    color: inherit;
    font-size: 15px;
}

.mco-summary-sticky {
    position: sticky;
    top: 104px;
}

.mco-summary-card {
    padding: 22px;
}

.mco-summary-title {
    padding-bottom: 14px;
    border-bottom: 1px solid #000;
}

.mco-summary-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    color: #000;
    font-size: 14px;
}

.mco-summary-divider {
    height: 1px;
    background: #000;
    margin: 12px 0;
}

.mco-summary-total {
    margin: 14px -22px 0;
    padding: 16px 22px;
    background: #000;
    color: #fff;
}

.mco-summary-total strong,
.mco-summary-total span {
    color: #fff;
    font-size: 20px;
}

.mco-contract-check {
    margin: 18px 0;
    padding: 12px;
    border: 1px solid #000;
}

.mco-secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #000;
    color: #555;
    font-size: 13px;
}
.mco-radio-card input[type="radio"]:checked+.mco-radio-label i.fa-check-circle {
    opacity: 1;
}
.text-right {
    text-align: right;
}
.mco-radio-card .mco-radio-label i.fa-check-circle {
    opacity: 0;
}
label.remember {
    display: flex;
    justify-content: space-between !important;
}
button#quantity-update.update {
    animation: aw-pulse-scale 1.2s infinite;
}

@keyframes aw-pulse-scale {
    50% {
        transform: scale(1.04);
        opacity: .55;
    }
}

.was-validated .mco-input:invalid {
    border-color: var(--mco-danger);
}

.was-validated .mco-input:valid {
    border-color: var(--mco-success);
}

.mco-accordion-item.active .collapse {
    display: block !important;
    height: auto !important;
}

@media(max-width:991px) {
    .mco-wrapper {
        padding: 36px 0;
    }

    .mco-auth-buttons {
        justify-content: flex-start;
        margin-top: 16px;
    }

    .mco-summary-sticky {
        position: static;
        margin-top: 20px;
    }
}

@media(max-width:576px) {
    .mco-header,
    .mco-accordion-body,
    .mco-summary-card {
        padding: 16px;
    }

    .mco-cart-item {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .mco-cart-total {
        grid-column: 1 / -1;
        grid-template-columns: 1fr auto;
        align-items: center;
        justify-items: start;
    }

    .mco-auth-buttons,
    .mco-captcha-wrapper {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .mco-auth-buttons .mco-btn,
    .mco-captcha-box {
        width: 100%;
    }

    .mco-radio-label {
        grid-template-columns: 36px minmax(0, 1fr);
    }
}
