:root {
    --orange: #0EA5E9;
    --dark: #0F172A;
    --mid: #64748B;
    --light: #F0F9FF;
    --white: #ffffff;
    --border: rgba(14, 165, 233, 0.18);
}

a{
    text-decoration: none;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--light);
    color: var(--dark);
    overflow-x: hidden;
}

/* NAV */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 40px;
    height: 60px;
    background: rgba(242, 242, 240, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: var(--dark);
    margin-right: 60px;
    flex-shrink: 0;
}

.nav-logo span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    gap: 32px;
    flex: 1;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    transition: .2s;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
}

.nav-links a:hover,
.nav-links a.active {
    border-bottom-color: var(--orange);
    color: var(--orange);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-search {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mid);
    cursor: pointer;
    background: none;
    border: none;
}

.nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--dark);
    position: relative;
    transition: .2s;
}

.nav-btn:hover {
    color: var(--orange);
}

.nav-bdg {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--orange);
    color: #fff;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    font-size: .48rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-account {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    transition: .2s;
}

.nav-account:hover {
    color: var(--orange);
}

/* HERO */
.page {
    padding-top: 60px;
}

.hero {
    position: relative;
    min-height: calc(100vh - 60px);
    display: grid;
    grid-template-columns: 240px 1fr 280px;
    overflow: hidden;
    background: var(--light);
}

.hero::before {
    content: '';
    position: absolute;
    right: 80px;
    top: -200px;
    width: 750px;
    height: 750px;
    background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(0, 0, 0, .03) 0deg 2deg, transparent 2deg 8deg);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* HERO LEFT */
.hero-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 0 40px 40px;
}

.hero-squares {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sq {
    width: 18px;
    height: 18px;
    border: 2.5px solid var(--orange);
    border-radius: 3px;
}

.sq.filled {
    background: var(--orange);
}

.hero-vert-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(5.5rem, 9vw, 6rem);
    line-height: 1;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: var(--dark);
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px 0;
    user-select: none;
}

.hero-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-social a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
    text-decoration: none;
    transition: .2s;
}

.hero-social a:hover {
    color: var(--orange);
}

/* HERO CENTER */
.hero-center {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-bg-text {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(9rem, 17vw, 21rem);
    line-height: 1;
    color: rgba(0, 0, 0, .055);
    letter-spacing: -4px;
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    z-index: 1;
}

.hero-img-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    height: calc(100vh - 60px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}

.hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #e8e4df 0%, #d0cbc4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(0, 0, 0, .18);
}

.hero-credits {
    position: absolute;
    bottom: 60px;
    left: 0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    padding: 14px 16px;
    border-left: 3px solid var(--orange);
}

.hero-credits strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: var(--dark);
}

.hero-credits p {
    font-size: .7rem;
    color: var(--mid);
    line-height: 1.4;
}

.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.hdot {
    width: 22px;
    height: 3px;
    border-radius: 2px;
    background: rgba(0, 0, 0, .18);
    cursor: pointer;
    transition: .3s;
}

.hdot.active {
    background: var(--orange);
    width: 32px;
}

/* HERO RIGHT */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 40px 40px 20px;
    gap: 24px;
}

.prod-eyebrow {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
}

.prod-attr-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--mid);
}

.prod-attr-val {
    font-size: .88rem;
    font-weight: 500;
    color: var(--dark);
    margin-top: 2px;
}

.prod-id-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.prod-id {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--mid);
}

.prod-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: var(--dark);
    line-height: 1;
}

.prod-actions {
    display: flex;
    gap: 8px;
}

.btn-style {
    flex: 1;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 13px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .25s;
}

.btn-style:hover {
    background: #c93d09;
}

.btn-bid {
    flex: 1;
    background: transparent;
    color: var(--dark);
    border: 1.5px solid rgba(0, 0, 0, .2);
    padding: 13px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .25s;
}

.btn-bid:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.prod-thumbs {
    display: flex;
    gap: 8px;
}

.prod-thumb {
    width: 58px;
    height: 68px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .2s;
    background: #ddd;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.prod-thumb.active {
    border-color: var(--orange);
}

.prod-wish {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mid);
    transition: .2s;
}

.prod-wish:hover {
    color: var(--orange);
}

.prod-privacy {
    font-size: .62rem;
    color: var(--mid);
    text-align: right;
    margin-top: auto;
}

.prod-privacy a {
    color: var(--mid);
}

/* STRIP */
.strip {
    background: var(--dark);
    padding: 12px 0;
    overflow: hidden;
}

.strip-inner {
    display: flex;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.strip-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 1.5px;
}

.strip-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* SECTIONS */
.sec {
    padding: 80px 60px;
}

.sec.alt {
    background: var(--white);
}

.sec-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sec-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--orange);
}

.sec-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(3rem, 6vw, 7.5rem);
    line-height: .88;
    color: var(--dark);
}

.sec-title em {
    color: var(--orange);
    font-style: italic;
}

/* PRODUCT GRID */
.cat-hd {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Bebas Neue', cursive;
    font-size: 2.2rem;
    color: var(--dark);
    margin: 50px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dark);
}

.cat-hd i {
    color: var(--orange);
}

.pgrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(200px, 1fr));
    gap: 2px;
}

.pcard {
    background: var(--white);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: .35s;
}

.pcard:hover {
    background: var(--dark);
}

.pcard:hover .pcard-name {
    color: #fff;
}

.pcard:hover .pcard-cat {
    color: rgba(255, 255, 255, .45);
}

.pcard:hover .pcard-price {
    color: var(--orange);
}

.pcard-img {
    width: 100%;
    aspect-ratio: 4/4;
    overflow: hidden;
    position: relative;
    background: #e8e8e8;
}

.pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.pcard:hover .pcard-img img {
    transform: scale(1.08);
}

.pcard-body {
    padding: 14px;
}

.pcard-cat {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 4px;
    transition: .35s;
}

.pcard-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 8px;
    transition: .35s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.pcard-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: var(--dark);
    transition: .35s;
}

.pcard-price s {
    color: var(--mid);
    font-size: 1rem;
    margin-left: 4px;
}

.pcard-acts {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.btn-ac {
    flex: 1;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s;
}

.btn-ac:hover {
    background: #c93d09;
}

.btn-wl {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .78rem;
    color: var(--mid);
    cursor: pointer;
    transition: .2s;
    background: var(--light);
    border: none;
}

.btn-wl.on,
.btn-wl:hover {
    background: var(--orange);
    color: #fff;
}

/* BANNERS */
.banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 40px;
}

.banner {
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: .3s;
}

.banner:hover {
    filter: brightness(1.06);
}

.banner.dark-ban {
    background: var(--dark);
}

.banner.orange-ban {
    background: var(--orange);
}

.banner-bg {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', cursive;
    font-size: 10rem;
    color: rgba(255, 255, 255, .06);
    line-height: 1;
    user-select: none;
    pointer-events: none;
}

.banner-body {
    position: relative;
    z-index: 1;
    padding: 32px;
}

.banner-pct {
    font-family: 'Bebas Neue', cursive;
    font-size: 5.5rem;
    color: #fff;
    line-height: .85;
}

.banner-pct sup {
    font-size: 2rem;
    vertical-align: super;
}

.banner-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
    margin: 6px 0 16px;
}

.btn-ban {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--dark);
    border: none;
    padding: 8px 20px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s;
}

.btn-ban:hover {
    background: var(--light);
}

/* ABOUT */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    color: var(--orange);
    line-height: 1;
}

.stat-lbl {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid);
}

.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}

.about-card {
    background: var(--light);
    padding: 22px;
    transition: .3s;
}

.about-card:hover {
    background: var(--orange);
}

.about-card:hover h5,
.about-card:hover p,
.about-card:hover i {
    color: #fff;
}

.about-card i {
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 10px;
    display: block;
    transition: .3s;
}

.about-card h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
    transition: .3s;
}

.about-card p {
    font-size: .75rem;
    color: var(--mid);
    line-height: 1.5;
    transition: .3s;
}

.about-desc {
    font-size: .9rem;
    color: var(--mid);
    line-height: 1.8;
    max-width: 400px;
}

/* FAQ */
.faq-wrap {
    max-width: 780px;
    margin-top: 50px;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    cursor: pointer;
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.faq-q span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .5px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: var(--dark);
    flex-shrink: 0;
    transition: .3s;
}

.faq-item.open .faq-icon {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    font-size: .82rem;
    color: var(--mid);
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: .35s;
}

.faq-item.open .faq-a {
    max-height: 200px;
    margin-top: 10px;
}

/* SUBSCRIBE */
.sub-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    margin-top: 50px;
    overflow: hidden;
}

.sub-left {
    padding: 60px;
    position: relative;
    background: var(--orange);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.sub-left::after {
    content: 'DROPS';
    position: absolute;
    right: -30px;
    bottom: -20px;
    font-family: 'Bebas Neue', cursive;
    font-size: 8rem;
    color: rgba(0, 0, 0, .1);
    line-height: 1;
    pointer-events: none;
}

.sub-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    line-height: .9;
    color: #fff;
    margin-bottom: 12px;
}

.sub-desc {
    font-size: .82rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    max-width: 280px;
}

.sub-unsub {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: .7rem;
    color: rgba(255, 255, 255, .6);
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
}

.sub-right {
    padding: 60px;
    background: var(--dark);
}

.ff {
    width: 100%;
    background: rgba(255, 255, 255, .07);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    padding: 12px 0;
    font-family: 'Barlow', sans-serif;
    font-size: .85rem;
    color: #fff;
    outline: none;
    transition: .2s;
    margin-bottom: 16px;
}

.ff::placeholder {
    color: rgba(255, 255, 255, .25);
}

.ff:focus {
    border-bottom-color: var(--orange);
}

.ff-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ff-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
    display: block;
    margin-bottom: 4px;
}

.check-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin: 8px 0 16px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
    cursor: pointer;
}

.check-item input {
    accent-color: var(--orange);
}

.btn-sub {
    width: 100%;
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 13px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s;
}

.btn-sub:hover {
    background: #c93d09;
}

/* CONTACT */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.c-ico {
    width: 42px;
    height: 42px;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-ico i {
    color: #fff;
    font-size: .82rem;
}

.c-txt strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.c-txt span,
.c-txt a {
    font-size: .8rem;
    color: var(--mid);
    text-decoration: none;
}

.contact-form {
    background: var(--light);
    padding: 40px;
}

.cf {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid var(--border);
    padding: 10px 0;
    font-family: 'Barlow', sans-serif;
    font-size: .85rem;
    color: var(--dark);
    background: transparent;
    outline: none;
    transition: .2s;
    margin-bottom: 16px;
}

.cf:focus {
    border-bottom-color: var(--orange);
}

.cf::placeholder {
    color: var(--mid);
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-send {
    background: var(--dark);
    color: #fff;
    border: none;
    padding: 13px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s;
}

.btn-send:hover {
    background: var(--orange);
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 60px;
    color: rgba(255, 255, 255, .4);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.f-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 3px;
}

.f-logo span {
    color: var(--orange);
}

.f-desc {
    font-size: .78rem;
    line-height: 1.7;
    margin-top: 10px;
    max-width: 220px;
}

.f-soc {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.f-soc a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, .07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    font-size: .78rem;
    transition: .2s;
}

.f-soc a:hover {
    background: var(--orange);
    color: #fff;
}

.f-col h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px;
}

.f-col a,
.f-col button {
    display: block;
    font-size: .78rem;
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    margin-bottom: 10px;
    transition: .2s;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Barlow', sans-serif;
    padding: 0;
}

.f-col a:hover,
.f-col button:hover {
    color: var(--orange);
    padding-left: 4px;
}

.f-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .72rem;
}

.f-bottom a {
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
}

.f-bottom a:hover {
    color: var(--orange);
}

/* OVERLAYS */
.ov {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, .72);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ov.show {
    display: flex;
}

.ovbox {
    background: #fff;
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp .3s cubic-bezier(.16, 1, .3, 1);
}

.ov-header {
    padding: 22px 28px 18px;
    border-bottom: 2px solid var(--dark);
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ov-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

.ov-close {
    background: var(--dark);
    border: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .78rem;
    cursor: pointer;
    transition: .2s;
}

.ov-close:hover {
    background: var(--orange);
}

.ov-body {
    padding: 22px 28px;
}

.crow {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px;
    margin-bottom: 2px;
    background: var(--light);
}

.c-img {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    overflow: hidden;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.c-inf {
    flex: 1;
}

.c-inf h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.c-inf p {
    font-size: .82rem;
    color: var(--orange);
    font-weight: 700;
    margin: 0;
}

.q-ctrl {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
}

.q-btn {
    background: var(--dark);
    color: #fff;
    border: none;
    width: 20px;
    height: 20px;
    font-size: .55rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.q-val {
    font-size: .8rem;
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

.c-total-row {
    background: var(--dark);
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
}

.c-total-row span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
}

.c-total-row span:last-child {
    color: var(--orange);
    font-size: 1.2rem;
}

.btn-co {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
    margin-top: 2px;
    cursor: pointer;
    transition: .2s;
}

.btn-co:hover {
    background: #c93d09;
}

.rm-btn {
    background: none;
    border: none;
    color: #ccc;
    font-size: .85rem;
    cursor: pointer;
    transition: .2s;
}

.rm-btn:hover {
    color: var(--orange);
}

.empty-st {
    text-align: center;
    padding: 40px 20px;
    color: var(--mid);
}

.empty-st i {
    font-size: 3rem;
    color: #ddd;
    display: block;
    margin-bottom: 12px;
}

.cod-box {
    background: var(--light);
    padding: 14px;
    margin-bottom: 12px;
    border-left: 3px solid var(--orange);
}

.legal-content {
    font-size: .82rem;
    line-height: 1.8;
}

.legal-content strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 2px;
}

/* TOAST */
.toast-wrap {
    position: fixed;
    bottom: 30px;
    right: 0;
    z-index: 3000;
}

.tmsg {
    background: var(--dark);
    color: #fff;
    padding: 12px 20px;
    font-size: .78rem;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .3);
    transform: translateX(130%);
    transition: .4s;
    display: flex;
    align-items: center;
    gap: 8px;
    border-left: 3px solid var(--orange);
}

.tmsg.show {
    transform: translateX(-10px);
}

.tmsg i {
    color: var(--orange);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* RESPONSIVE */
@media(max-width:1100px) {
    .hero {
        grid-template-columns: 180px 1fr 240px;
    }
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-left,
    .hero-right {
        display: none;
    }

    .hero-center {
        height: 70vh;
    }

    .sec {
        padding: 50px 24px;
    }

    .about-layout,
    .contact-layout,
    .footer-grid,
    .banners,
    .sub-wrap {
        grid-template-columns: 1fr;
    }

    .ff-row,
    .cf-row {
        grid-template-columns: 1fr;
    }

    .pgrid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .nav-links {
        gap: 16px;
    }
}

/* PRODUCT PAGE MAIN */
.product-page {
    padding-top: 110px;
    background: var(--light);
}

.product-page-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px 70px;
}

/* PRODUCT DETAIL SECTION */
#productDetail {
    background: var(--white);
    padding: 42px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    margin-bottom: 70px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.product-detail-img {
    background: var(--light);
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-detail-img img {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: cover;
    display: block;
    transition: 0.45s ease;
}

.product-detail-img:hover img {
    transform: scale(1.04);
}

.product-detail-info {
    padding: 20px 10px;
}

.product-detail-info .prod-eyebrow {
    margin-bottom: 14px;
}

.product-detail-info .sec-title {
    font-size: clamp(3rem, 5vw, 6.5rem);
    margin-bottom: 20px;
}

.product-detail-info .prod-id-price {
    margin: 22px 0;
    padding: 18px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.product-detail-info .prod-price {
    color: var(--orange);
}

.product-detail-info .about-desc {
    max-width: 520px;
    font-size: 0.95rem;
    line-height: 1.9;
}

.product-detail-info .prod-actions {
    margin-top: 30px;
    max-width: 460px;
}

.product-detail-info .btn-style,
.product-detail-info .btn-bid {
    min-height: 48px;
}

/* RELATED PRODUCTS */
.product-page .sec.alt {
    background: var(--white);
    padding: 55px 42px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);
}

.product-page .sec-title {
    margin-bottom: 34px;
}

#relatedProducts {
    margin-top: 35px;
}

/* PRODUCT CARDS LINK/CURSOR FIX */
.pcard-img,
.pcard-name,
.pcard-cat {
    cursor: pointer;
}

.pcard a {
    color: inherit;
    text-decoration: none;
}

/* SEARCH PANEL */
.search-panel {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 18px 40px;
    display: none;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.search-panel.show {
    display: block;
}

.search-panel input {
    width: 100%;
    max-width: 760px;
    display: block;
    margin: 0 auto;
    border: none;
    border-bottom: 2px solid var(--border);
    background: transparent;
    padding: 12px 0;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    outline: none;
}

.search-panel input:focus {
    border-bottom-color: var(--orange);
}

[data-search-results] {
    max-width: 760px;
    margin: 15px auto 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: var(--light);
    margin-bottom: 2px;
    cursor: pointer;
    transition: 0.25s;
}

.search-result-item:hover {
    background: var(--dark);
    color: var(--white);
}

.search-result-item img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    background: #ddd;
}

.search-result-item strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.search-result-item span {
    font-size: 0.78rem;
    color: var(--mid);
}

.search-result-item:hover span {
    color: rgba(255, 255, 255, 0.55);
}

/* MOBILE NAV FIX */
.nav-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--dark);
    cursor: pointer;
}

/* RESPONSIVE PRODUCT PAGE */
@media(max-width: 950px) {
    .product-page {
        padding-top: 90px;
    }

    .product-page-inner {
        padding: 0 22px 50px;
    }

    #productDetail {
        padding: 24px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .product-detail-img {
        min-height: 420px;
    }

    .product-detail-info {
        padding: 0;
    }

    .product-detail-info .prod-actions {
        flex-direction: column;
        max-width: 100%;
    }

    .product-page .sec.alt {
        padding: 40px 24px;
    }
}

@media(max-width: 768px) {
    .nav {
        padding: 0 20px;
    }

    .nav-menu-toggle {
        display: block;
        margin-left: auto;
        margin-right: 14px;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 22px;
        flex-direction: column;
        gap: 18px;
        border-bottom: 1px solid var(--border);
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-right {
        gap: 12px;
    }

    .nav-search span {
        display: none;
    }

    .product-detail-img {
        min-height: 340px;
    }

    .search-panel {
        padding: 16px 22px;
    }
}

@media(max-width: 520px) {
    .product-page-inner {
        padding: 0 14px 40px;
    }

    #productDetail {
        padding: 16px;
    }

    .product-detail-img {
        min-height: 280px;
    }

    .product-detail-info .sec-title {
        font-size: 3rem;
    }

    .product-detail-info .prod-id-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-page .sec.alt {
        padding: 30px 16px;
    }
}

/* CATEGORY PAGE */
.page {
    padding-top: 60px;
    background: var(--light);
    min-height: 100vh;
}

.page-hero {
    position: relative;
    padding: 90px 60px 55px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.page-hero::before {
    content: 'SHOP';
    position: absolute;
    right: 40px;
    top: 10px;
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(6rem, 15vw, 16rem);
    color: rgba(0, 0, 0, 0.035);
    line-height: 1;
    pointer-events: none;
}

.page-hero .sec-label,
.page-hero .sec-title,
.category-nav {
    position: relative;
    z-index: 1;
}

.page-hero .sec-title {
    margin-bottom: 32px;
}

.category-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 1100px;
}

.category-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light);
    color: var(--dark);
    border: 1px solid var(--border);
    padding: 10px 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.25s ease;
}

.category-nav a i {
    color: var(--orange);
    font-size: 0.78rem;
    transition: 0.25s ease;
}

.category-nav a:hover,
.category-nav a.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}

.category-nav a:hover i,
.category-nav a.active i {
    color: #fff;
}

.content-wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 65px 60px 90px;
}

#categoryProducts {
    margin-top: 0;
}

#categoryProducts.pgrid,
.content-wrap .pgrid {
    display: grid;
    grid-template-columns: repeat(4, minmax(210px, 1fr));
    gap: 3px;
}

.category-empty {
    grid-column: 1 / -1;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 70px 25px;
}

.category-empty h6 {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--dark);
    margin-bottom: 6px;
}

.category-empty p {
    margin-bottom: 22px;
}

.empty-btn {
    display: inline-flex;
    width: auto;
    padding: 12px 28px;
    text-decoration: none;
}

/* CATEGORY PAGE PRODUCT CARD IMPROVEMENT */
.content-wrap .pcard {
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.content-wrap .pcard-img {
    background: #e8e8e8;
}

.content-wrap .pcard-name,
.content-wrap .pcard-cat {
    cursor: pointer;
}

/* RESPONSIVE CATEGORY PAGE */
@media(max-width: 1100px) {

    #categoryProducts.pgrid,
    .content-wrap .pgrid {
        grid-template-columns: repeat(3, minmax(190px, 1fr));
    }
}

@media(max-width: 850px) {
    .page-hero {
        padding: 70px 28px 42px;
    }

    .content-wrap {
        padding: 45px 28px 70px;
    }

    #categoryProducts.pgrid,
    .content-wrap .pgrid {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .category-nav {
        gap: 8px;
    }

    .category-nav a {
        padding: 9px 14px;
        font-size: 0.72rem;
    }
}

@media(max-width: 520px) {
    .page-hero {
        padding: 58px 16px 34px;
    }

    .page-hero .sec-title {
        font-size: 3.5rem;
    }

    .content-wrap {
        padding: 35px 14px 55px;
    }

    #categoryProducts.pgrid,
    .content-wrap .pgrid {
        grid-template-columns: 1fr;
    }

    .category-nav {
        align-items: stretch;
    }

    .category-nav a {
        width: 100%;
        justify-content: center;
    }
}