*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --white: #FFFFFF;
    --off-white: #FAF8F5;
    --cream: #F4F0E8;
    --brown: #7C5C3E;
    --brown-light: #A0795A;
    --brown-pale: #F0E8DC;
    --charcoal: #1E1A16;
    --mid: #7A6F65;
    --light: #DDD8CF;
    --border: #E8E2D8;
    --font: 'Google Sans', sans-serif;
    --font-th: 'Noto Sans Thai', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--charcoal);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3.5rem;
    background: var(--charcoal);
    transition: padding .3s;
}

.nav-logo {
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: .15em;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    margin-right: 1rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: var(--font);
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .2s;
    cursor: pointer;
    position: relative;
    padding-bottom: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--brown-light);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 1.2rem;
    z-index: 1;
}

.nav-dd-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1rem);
    left: 0;
    background: var(--charcoal);
    border: 1px solid rgba(255, 255, 255, .1);
    min-width: 190px;
    padding: .5rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
    z-index: 10;
}

.nav-dropdown:hover .nav-dd-menu,
.nav-dropdown.clicked .nav-dd-menu {
    display: block;
}

.nav-dd-menu a {
    display: block;
    padding: .6rem 1.25rem;
    font-family: var(--font-th);
    font-size: .82rem;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: all .15s;
    letter-spacing: 0;
    text-transform: none;
}

.nav-dd-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05);
    padding-left: 1.5rem;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .8rem;
    margin: -.8rem;
    z-index: 201;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(255, 255, 255, .7);
    transition: all .3s;
}

.hamburger:hover span {
    background: #fff;
}

/* SIDE MENU */
.side-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.side-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: var(--charcoal);
    z-index: 301;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.77, 0, .175, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
}

.side-menu.open {
    transform: translateX(0);
}

.side-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.side-logo {
    font-family: var(--font);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: .15em;
    color: var(--white);
}

.side-close {
    background: none;
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .6);
    width: 34px;
    height: 34px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.side-close:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.side-item {
    display: block;
    padding: .85rem 0;
    border-bottom: .5px solid rgba(255, 255, 255, .08);
    font-family: var(--font-th);
    font-size: 1rem;
    color: rgba(255, 255, 255, .6);
    cursor: pointer;
    transition: color .2s;
}

.side-item:hover {
    color: #fff;
}

.side-sub {
    padding: .4rem 0 .4rem 1rem;
}

.side-sub a {
    display: block;
    padding: .35rem 0;
    font-family: var(--font-th);
    font-size: .85rem;
    color: rgba(255, 255, 255, .38);
    text-decoration: none;
    cursor: pointer;
    transition: color .2s;
}

.side-sub a:hover {
    color: rgba(255, 255, 255, .75);
}

.side-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.side-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--brown);
    color: var(--white);
    padding: .9rem 1.25rem;
    font-family: var(--font-th);
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: background .2s;
}

.side-cart:hover {
    background: var(--brown-light);
}

.side-login {
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .6);
    padding: .9rem;
    font-family: var(--font-th);
    font-size: .9rem;
    cursor: pointer;
    background: none;
    text-align: center;
    transition: all .2s;
}

.side-login:hover {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

/* PAGES */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 62px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .9s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(.5);
}

.slide-bg.fallback {
    background: linear-gradient(135deg, #2A2018, #1A1410);
    filter: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
}

.slide-content {
    position: relative;
    z-index: 2;
    padding: 0 3.5rem;
    max-width: 680px;
    margin-top: -3rem;
}

.slide-eye {
    font-family: var(--font);
    font-size: .7rem;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: 1.25rem;
}

.slide-title {
    font-family: var(--font);
    font-size: clamp(2.8rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.slide-desc {
    font-family: var(--font-th);
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .62);
    max-width: 480px;
    margin-bottom: 2rem;
    font-weight: 300;
}

.slide-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--brown);
    color: var(--white);
    padding: .9rem 2.4rem;
    font-family: var(--font-th);
    font-size: .9rem;
    cursor: pointer;
    border: none;
    transition: all .3s;
}

.slide-btn:hover {
    background: var(--brown-light);
    transform: translateY(-2px);
}

.s-dots {
    position: absolute;
    bottom: 2.5rem;
    left: 3.5rem;
    z-index: 3;
    display: flex;
    gap: .75rem;
}

.s-dot {
    width: 28px;
    height: 2px;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all .3s;
    border: none;
    padding: 0;
}

.s-dot.active {
    background: var(--white);
    width: 48px;
}

.s-arrows {
    position: absolute;
    bottom: 2.5rem;
    right: 3.5rem;
    z-index: 3;
    display: flex;
    gap: .5rem;
}

.s-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .3);
    background: none;
    color: rgba(255, 255, 255, .7);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

.s-arrow:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .6);
    color: #fff;
}

/* SORT BAR */
.sort-bar {
    padding: 3rem 3.5rem 1.5rem;
    background: var(--off-white);
}

.sort-label {
    font-family: var(--font);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: .5rem;
}

.sort-title {
    font-family: var(--font-th);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1.25rem;
}

.sort-title span {
    color: var(--brown);
}

.cat-tabs {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.cat-tab {
    padding: .48rem 1.1rem;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--mid);
    font-family: var(--font-th);
    font-size: .84rem;
    cursor: pointer;
    transition: all .2s;
}

.cat-tab:hover,
.cat-tab.active {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

/* PRODUCTS */
.prod-section {
    padding: 1.75rem 3.5rem 5rem;
    background: var(--off-white);
}

.prod-count {
    font-family: var(--font-th);
    font-size: .82rem;
    color: var(--mid);
    margin-bottom: 1.5rem;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.prod-card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid #f0f0f0;
}

.prod-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--brown-light);
}

.prod-img {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: var(--cream);
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
}

.prod-card:hover .prod-img img {
    transform: scale(1.08);
}

.prod-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    background: var(--cream);
}

/* VIEW DETAIL OVERLAY */
.prod-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 26, 22, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.prod-overlay span {
    background: var(--white);
    color: var(--charcoal);
    padding: 0.75rem 1.5rem;
    font-family: var(--font);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.prod-card:hover .prod-overlay {
    opacity: 1;
}

.prod-card:hover .prod-overlay span {
    transform: translateY(0);
}

.prod-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    background: var(--brown);
    color: var(--white);
    font-family: var(--font);
    font-size: .6rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .25rem .65rem;
    z-index: 3;
}

.prod-info {
    padding: 1.5rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prod-cat {
    font-family: var(--font);
    font-size: .65rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    margin-bottom: .65rem;
    font-weight: 500;
}

.prod-name {
    font-family: var(--font);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
    height: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    letter-spacing: 0.01em;
}

.prod-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f5f5f5;
    margin-top: auto;
}

.prod-price {
    font-family: var(--font);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-top: auto;
}

.prod-price span {
    font-size: .75rem;
    color: rgba(0, 0, 0, 0.4);
    font-weight: 400;
    margin-left: 0.2rem;
}

.prod-add {
    width: 34px;
    height: 34px;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    flex-shrink: 0;
}

.prod-add:hover {
    background: var(--brown);
}

/* SPACES hero/tabs */
.sub-hero {
    height: 50vh;
    min-height: 360px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 3rem 3.5rem;
    margin-top: 62px;
}

.sub-hero-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10rem;
    filter: brightness(.35);
}

.sub-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 26, 22, .85), rgba(30, 26, 22, .1));
}

.sub-hero-content {
    position: relative;
    z-index: 2;
}

.sub-hero-label {
    font-family: var(--font);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: .6rem;
}

.sub-hero-title {
    font-family: var(--font);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
}

.sub-hero-desc {
    font-family: var(--font-th);
    font-size: .92rem;
    color: rgba(255, 255, 255, .55);
    margin-top: .6rem;
    font-weight: 300;
}

.sticky-tabs {
    background: var(--charcoal);
    padding: 0 3.5rem;
    display: flex;
    gap: 0;
    overflow-x: auto;
    position: sticky;
    top: 62px;
    z-index: 50;
}

.sticky-tabs::-webkit-scrollbar {
    display: none;
}

.s-tab {
    padding: 1rem 1.4rem;
    font-family: var(--font-th);
    font-size: .8rem;
    color: rgba(255, 255, 255, .42);
    cursor: pointer;
    transition: all .2s;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
}

.s-tab:hover {
    color: rgba(255, 255, 255, .8);
}

.s-tab.active {
    color: #fff;
    border-bottom-color: var(--brown-light);
}

/* COLLECTIONS hero */
.coll-hero {
    height: 65vh;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 62px;
}

.coll-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1A1208, #2C2010);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
    filter: brightness(.3);
}

.coll-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 26, 22, .88) 50%, rgba(30, 26, 22, .15));
}

.coll-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 3.5rem;
    max-width: 580px;
}

.coll-eyebrow {
    font-family: var(--font);
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: 1rem;
}

.coll-title {
    font-family: var(--font);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.25rem;
}

.coll-desc {
    font-family: var(--font-th);
    font-size: .95rem;
    color: rgba(255, 255, 255, .52);
    line-height: 1.9;
    font-weight: 300;
}

.coll-type-bar {
    background: var(--off-white);
    padding: 1.75rem 3.5rem;
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
}

.coll-type-btn {
    padding: .6rem 2rem;
    border: 1px solid var(--border);
    background: var(--white);
    font-family: var(--font-th);
    font-size: .88rem;
    color: var(--mid);
    cursor: pointer;
    transition: all .2s;
}

.coll-type-btn.active,
.coll-type-btn:hover {
    background: var(--charcoal);
    color: var(--white);
    border-color: var(--charcoal);
}

/* CUSTOM DESIGN */
.custom-hero {
    height: 58vh;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 62px;
}

.custom-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1C1612, #2A2018);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12rem;
    filter: brightness(.28);
}

.custom-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 26, 22, .7), rgba(30, 26, 22, .1));
}

.custom-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 3.5rem;
    text-align: center;
    width: 100%;
}

.ch-label {
    font-family: var(--font);
    font-size: .68rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--brown-light);
    margin-bottom: 1rem;
}

.ch-title {
    font-family: var(--font);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
}

.ch-sub {
    font-family: var(--font-th);
    font-size: 1rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 1rem;
}

.custom-services {
    padding: 5rem 3.5rem;
}

.cs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.cs-grid.rev {
    direction: rtl;
}

.cs-grid.rev>* {
    direction: ltr;
}

.cs-img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.cs-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .8s ease;
}

.cs-img:hover img {
    transform: scale(1.05);
}

.cs-num {
    font-family: var(--font);
    font-size: 4.5rem;
    font-weight: 300;
    color: var(--brown-pale);
    line-height: 1;
    margin-bottom: .75rem;
}

.cs-title {
    font-family: var(--font-th);
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.cs-desc {
    font-family: var(--font-th);
    font-size: .92rem;
    line-height: 1.9;
    color: var(--mid);
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.cs-list {
    font-family: var(--font-th);
    font-size: .88rem;
    line-height: 1.85;
    color: var(--mid);
    padding-left: 1rem;
}

.cs-list li {
    margin-bottom: .35rem;
}

.cta-strip {
    background: var(--charcoal);
    padding: 5rem 3.5rem;
    text-align: center;
}

.cta-title {
    font-family: var(--font-th);
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: .75rem;
}

.cta-desc {
    font-family: var(--font-th);
    font-size: .95rem;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background: var(--brown);
    color: var(--white);
    padding: 1rem 3rem;
    font-family: var(--font-th);
    font-size: .95rem;
    cursor: pointer;
    border: none;
    transition: all .3s;
    text-decoration: none;
}

.cta-btn:hover {
    background: var(--brown-light);
}

/* WHY */
.why-section {
    padding: 5rem 3.5rem;
    background: var(--white);
}

.why-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.sec-label {
    font-family: var(--font);
    font-size: .68rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: .75rem;
}

.sec-title {
    font-family: var(--font);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--charcoal);
}

.sec-title em {
    font-style: normal;
    color: var(--brown);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-card {
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: border-color .2s;
}

.why-card:hover {
    border-color: var(--brown-light);
}

.why-icon {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    color: var(--brown);
}

.why-card-title {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: .75rem;
}

.why-desc {
    font-family: var(--font-th);
    font-size: .88rem;
    line-height: 1.8;
    color: var(--mid);
    font-weight: 300;
}

/* FOOTER */
footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 4rem 3.5rem 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    border-bottom: .5px solid rgba(255, 255, 255, .08);
    padding-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: .15em;
    color: var(--white);
    display: block;
    margin-bottom: 1rem;
    cursor: pointer;
}

.footer-brand p {
    font-family: var(--font-th);
    font-size: .875rem;
    line-height: 1.8;
    color: rgba(244, 240, 232, .4);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-size: .72rem;
    color: rgba(244, 240, 232, .46);
    text-decoration: none;
    transition: all .2s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, .07);
    color: var(--cream);
}

.footer-col h4 {
    font-family: var(--font);
    font-size: .65rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(244, 240, 232, .3);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: .65rem;
}

.footer-col ul li a {
    font-family: var(--font-th);
    font-size: .875rem;
    color: rgba(180, 175, 170, .5);
    text-decoration: none;
    transition: color .2s;
    font-weight: 300;
    cursor: pointer;
}

.footer-col ul li a:hover {
    color: var(--cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font);
    font-size: .75rem;
    color: rgba(244, 240, 232, .2);
}

.pay-icons {
    display: flex;
    gap: .5rem;
    align-items: center;
    flex-wrap: wrap;
}

.pay-icon {
    background: #fff;
    border: 1px solid #fff;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    height: 28px;
    width: auto;
    transition: opacity .2s;
    object-fit: contain;
}

.pay-icon:hover {
    opacity: .8;
}

.pay-icon--dark {
    background: rgba(0, 0, 0, .85);
}

.footer-contact-info div {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-contact-info span {
    opacity: 0.7;
    font-size: 1rem;
}

.footer-contact-info a:hover {
    color: var(--white);
    text-decoration: underline;
}

.pay-icon--krlus {
    font-family: var(--font);
    font-size: .6rem;
    font-weight: 700;
    color: #C9A96E;
    letter-spacing: .08em;
    padding: 4px 10px;
    min-width: auto;
}

/* CART */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    background: var(--white);
    z-index: 401;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.77, 0, .175, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.cart-top h2 {
    font-family: var(--font-th);
    font-size: 1.5rem;
    font-weight: 500;
}

.cart-close {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    background: none;
    cursor: pointer;
    font-size: .9rem;
    color: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-close:hover {
    background: var(--cream);
}

.cart-empty {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--mid);
    text-align: center;
}

.cart-empty-icon {
    font-size: 3rem;
    opacity: .3;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    background: var(--cream);
    flex-shrink: 0;
    overflow: hidden;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-img-ph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: var(--font);
    font-size: .9rem;
    margin-bottom: .25rem;
}

.cart-item-price {
    font-family: var(--font);
    font-size: .85rem;
    color: var(--mid);
}

.cart-item-rm {
    background: none;
    border: none;
    color: var(--mid);
    cursor: pointer;
    font-size: .9rem;
}

.cart-item-rm:hover {
    color: #c0392b;
}

.cart-footer {
    margin-top: auto;
    padding-top: 1.5rem;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-family: var(--font-th);
}

.cart-total strong {
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 500;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    font-family: var(--font-th);
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s;
}

.checkout-btn:hover {
    background: var(--brown);
}

/* PRODUCT MODAL */
.pm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s;
}

.pm-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.pm-box {
    background: var(--white);
    width: 860px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transform: translateY(16px);
    transition: transform .25s;
}

.pm-overlay.open .pm-box {
    transform: translateY(0);
}

.pm-img {
    aspect-ratio: 1;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
}

.pm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pm-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, .4);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.pm-info {
    padding: 2.5rem;
}

.pm-cat {
    font-family: var(--font);
    font-size: .62rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--brown);
    margin-bottom: .5rem;
}

.pm-name {
    font-family: var(--font);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: .35rem;
    line-height: 1.25;
}

.pm-nameth {
    font-family: var(--font-th);
    font-size: .88rem;
    color: var(--mid);
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.pm-price {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.pm-price span {
    font-size: .82rem;
    color: var(--mid);
    font-weight: 400;
}

.pm-add {
    width: 100%;
    padding: 1rem;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    font-family: var(--font-th);
    font-size: .9rem;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: .75rem;
}

.pm-add:hover {
    background: var(--brown);
}

.pm-inquiry {
    width: 100%;
    padding: .85rem;
    background: #06C755;
    border: 1px solid #06C755;
    color: #fff;
    font-family: var(--font-th);
    font-size: .85rem;
    cursor: pointer;
    transition: all .2s;
    font-weight: 500;
}

.pm-inquiry:hover {
    background: #05b34c;
    border-color: #05b34c;
    box-shadow: 0 5px 15px rgba(6, 199, 85, 0.2);
}

/* PM GALLERY */
.pm-scroll-wrap {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    /* Firefox */
}

.pm-scroll-wrap::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.pm-gallery-item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    scroll-snap-align: start;
}

.pm-scroll-hint {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.65rem;
    font-family: var(--font-th);
    pointer-events: none;
    z-index: 3;
    animation: pmFadeInOut 3s infinite;
}

@keyframes pmFadeInOut {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.pm-counter {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 0.2rem 0.6rem;
    font-size: 0.7rem;
    font-family: var(--font);
    z-index: 3;
    pointer-events: none;
}

.pm-accordion {
    border-bottom: 1px solid var(--border);
}

.pm-acc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.15rem 0;
    cursor: pointer;
    transition: all .2s;
    font-family: var(--font-th);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

.pm-acc-header:hover {
    color: var(--brown);
}

.pm-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: all .35s ease-out;
    font-family: var(--font-th);
    font-size: 0.8rem;
    line-height: 1.8;
    color: var(--mid);
    padding: 0;
}

.pm-accordion.open .pm-acc-content {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

.pm-acc-icon {
    font-size: 1rem;
    font-weight: 300;
    transition: transform .3s;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* AUTH MODAL CUSTOM */
.auth-box {
    background: #fff;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
}

.auth-title {
    font-family: var(--font);
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.auth-subtitle {
    font-family: var(--font-th);
    font-size: 0.85rem;
    color: var(--mid);
    font-weight: 300;
}

.auth-fields {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.auth-group label {
    display: block;
    font-family: var(--font);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mid);
    margin-bottom: 0.5rem;
}

.auth-group input,
.auth-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    background: var(--off-white);
    font-family: var(--font-th);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
    outline: none;
}

.auth-group input:focus,
.auth-group textarea:focus {
    border-color: var(--brown-light);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.auth-btn {
    width: 100%;
    padding: 1.15rem;
    background: var(--charcoal);
    color: #fff;
    border: none;
    font-family: var(--font);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-btn:hover {
    background: var(--brown);
    letter-spacing: 0.25em;
}

/* CHECKOUT BUTTON */
.checkout-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--charcoal);
    color: #fff;
    border: none;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.checkout-btn:hover {
    background: var(--brown);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    font-family: var(--font-th);
    font-size: 0.85rem;
    color: var(--mid);
}

.auth-footer a {
    color: var(--brown);
    text-decoration: none;
    margin-left: 0.25rem;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.auth-brand {
    display: block;
    height: 100%;
}

.auth-content {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* RESPONSIVE */
@media(max-width:1200px) {
    .prod-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:1024px) {
    nav {
        padding: .85rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-col {
        margin-bottom: 2rem;
    }

    .sort-bar,
    .prod-section,
    .why-section,
    .custom-services {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .slide-content,
    .s-dots,
    .coll-hero-content,
    .custom-hero-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .s-arrows {
        right: 1.5rem;
    }

    .s-dots {
        left: 1.5rem;
    }

    .cs-grid,
    .cs-grid.rev {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .cs-img {
        margin-bottom: 1.5rem;
    }

    .pm-box {
        grid-template-columns: 1fr;
    }

    .pm-img {
        aspect-ratio: 16/9;
    }

    .cart-sidebar {
        width: 100%;
    }

    .sticky-tabs,
    .coll-type-bar {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sub-hero,
    .coll-hero,
    .custom-hero {
        padding-left: 1.5rem;
    }
}

@media(max-width:900px) {
    .auth-box {
        grid-template-columns: 1fr !important;
        width: 440px !important;
    }

    .auth-brand {
        display: none;
    }
}

@media(max-width:640px) {
    .prod-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

@media(max-width:420px) {
    .prod-grid {
        grid-template-columns: 1fr;
    }
}