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

:root {
--black: #080808;
--charcoal: #292728;
--card-bg: #161719;
--surface: #1c1e21;
--border: #2a2c30;
--border-light: #383b40;
--orange: #f05822;
--orange-dim: #cc4400;
--red: #e8150c;
--blue: #0ea5e9;
--blue-dim: #0284c7;
--silver: #a8adb8;
--silver-light: #d0d4de;
--white: #ffffff;
--off-white: #f5f6f8;
--text-muted: #6b7280;
--text-dim: #4b5563;
--gradient-orange: linear-gradient(135deg, #ff5500, #e8150c);
--gradient-blue: linear-gradient(135deg, #0ea5e9, #6366f1);
--gradient-silver: linear-gradient(135deg, #d0d4de, #a8adb8);
--gradient-dark: linear-gradient(135deg, #1c1e21, #111214);
--gunmetal: #1c1e21;
--dark-grey: #2a2c30;
--font-head: "Agdasima";
--font-subheadsemi: "Jost";
--font-subheadmedium: "Jost";
--font-body: "Jost";
--section-pad: 80px;

}

@font-face {
/*font-family: 'Agdasima';*/
/*src: url('../fonts/Agdasima-Bold.ttf') format('truetype');*/
/*font-family: 'JostSemiBold';*/
/*src: url('../fonts/Jost-SemiBold.ttf') format('truetype');*/
/*font-family: 'JostMedium';*/
/*src: url('../fonts/Jost-Medium.ttf') format('truetype');*/
/*font-family: 'JostBody';*/
/*src: url('../fonts/Jost-Light.ttf') format('truetype');*/
font-family: "Jost", sans-serif;
font-family: "Agdasima", sans-serif;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
margin: 0;
padding: 0;
}
h1 {
font-family: "Agdasima", sans-serif;
font-weight: 700;
}

h2 {
font-family: "Jost", sans-serif;
font-weight: 600;
}

h3,span {
font-family: "Jost", sans-serif;
font-weight: 500;
}

h4 {
font-family: "Jost", sans-serif;
font-weight: 400;
}

body,
p {
font-family: "Jost", sans-serif;
font-weight: 300;
}



ul,
li {
margin: 0;
padding: 0;
list-style-type: none;
}

a {
text-decoration: none;
}

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

html {
scroll-behavior: smooth;
overflow-x: hidden;
}

body {
background: var(--black);
color: var(--white);
font-family: var(--font-body);
overflow-x: hidden;
}

.container-main {
max-width: 1440px;
margin: 0 auto;
padding: 0 80px;
}

/* HEADER */
#header-main {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
height: 72px;
display: flex;
align-items: center;
transition: all 0.4s ease;
border-bottom: 1px solid transparent;
background: var(--charcoal);
}

#header-main .container-main {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}

#header-main.scrolled {
background: rgba(10, 10, 10, 0.92);
backdrop-filter: blur(12px);
border-bottom-color: var(--border);
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.logo {
font-family: var(--font-head);
font-size: 1.8rem;
font-weight: 700;
letter-spacing: 3px;
color: var(--white);
text-decoration: none;
display: flex;
align-items: center;
gap: 8px;
text-transform: uppercase;
}

.logo img {
max-width: 170px;
}

nav {
display: flex;
align-items: center;
}

.btn-link {
display: none;
}

.nav-link {
color: var(--white);
text-decoration: none;
font-family: var(--font-head);
font-size: 16px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
transition: color 0.25s;
position: relative;
padding-bottom: 4px;
}

.nav-link::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 1.5px;
background: var(--orange);
transition: width 0.3s ease;
}

.nav-link:hover {
color: var(--white);
}

.nav-link:hover::after {
width: 100%;
}

.header-icon ul {
display: flex;
align-items: center;
gap: 1rem;

}

.header-icon ul li a img {
width: 20px;
height: 20px;
}

.header-actions {
display: flex;
align-items: center;
gap: 1.5rem;
}

.nav-right {
display: flex;
align-items: center;
gap: 0.85rem;
}

.nav-right .btn-primary {
margin: 0;
}

.nav-icon,
.nav-cart-btn,
.icon-btn {
background: transparent;
border: 1.5px solid var(--border-light);
color: var(--white);
cursor: pointer;
font-size: 1rem;
display: inline-flex;
align-items: center;
justify-content: center;
border-radius: 6px;
transition: all 0.25s ease;
}

.nav-icon {
width: 42px;
height: 42px;
text-decoration: none;
}

.nav-icon:hover,
.nav-cart-btn:hover,
.icon-btn:hover {
background: rgba(255, 255, 255, 0.08);
border-color: var(--white);
}

.nav-cart-btn {
padding: 0.8rem 1rem;
}

.btn-primary {
background: var(--orange);
color: var(--white);
font-family: var(--font-accent);
font-weight: 700;
font-size: 16px;
letter-spacing: 2px;
text-transform: uppercase;
padding: 10px 20px;
border-radius: 4px;
text-decoration: none;
border: 1.5px solid var(--orange);
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.6rem;
margin: 0;
}

.btn-primary:hover {
background: var(--orange-dim);
border-color: var(--orange-dim);
color: var(--white);
box-shadow: 0 0 16px rgba(255, 85, 0, 0.35);
}

.btn-link {
background: var(--orange);
color: var(--white);
font-family: var(--font-accent);
font-weight: 700;
font-size: 16px;
letter-spacing: 2px;
text-transform: uppercase;
padding: 10px 20px;
border-radius: 4px;
text-decoration: none;
border: 1.5px solid var(--orange);
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
}

.btn-link:hover {
background: var(--orange-dim);
border-color: var(--orange-dim);
color: var(--white);
box-shadow: 0 0 16px rgba(255, 85, 0, 0.35);
}

.icon-btn {
background: transparent;
border: 1.5px solid var(--border-light);
color: var(--white);
cursor: pointer;
font-size: 1rem;
width: 42px;
height: 42px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 6px;
transition: all 0.25s;
position: relative;
}

.icon-btn:hover {
background: rgba(14, 165, 233, 0.12);
color: var(--blue);
border-color: var(--blue);
box-shadow: 0 0 12px rgba(14, 165, 233, 0.2);
}

.cart-count {
position: absolute;
top: 6px;
right: 6px;
width: 16px;
height: 16px;
background: var(--silver-light);
border-radius: 50%;
font-size: 0.6rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
color: var(--black);
}

.hamburger {
display: none;
background: none;
border: none;
cursor: pointer;
flex-direction: column;
gap: 5px;
width: 32px;
}

.hamburger span {
display: block;
width: 100%;
height: 2px;
background: var(--white);
transition: all 0.35s ease;
}

.hamburger.open span:nth-child(1) {
transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
opacity: 0;
transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
display: none;
}

/* HERO */
.hero-main {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
padding-top: var(--section-pad);
padding-bottom: var(--section-pad);
}

.hero-main-bg {
position: absolute;
inset: 0;
z-index: 0;
}

.hero-main-bg img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.4;
}

.hero-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(255, 85, 0, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255, 85, 0, 0.03) 1px, transparent 1px);
background-size: 60px 60px;
z-index: 1;
}

.hero-content-main {
position: relative;
z-index: 10;
max-width: 1400px;
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
gap: 4rem;
}

.hero-badge span {
display: inline-flex;
align-items: center;
gap: 8px;
background: rgba(255, 85, 0, 0.12);
border: 1px solid rgba(255, 85, 0, 0.35);
border-radius: 100px;
padding: 0.4rem 1rem;
font-size: 0.75rem;
font-family: var(--font-body);
letter-spacing: 2px;
color: var(--orange);
text-transform: uppercase;
margin-bottom: 1.5rem;
animation: fadeInUp 0.8s ease forwards;
}

.hero-badge span::before {
content: "";
width: 6px;
height: 6px;
background: var(--orange);
border-radius: 50%;
animation: pulse 2s infinite;
}

@keyframes pulse {

0%,
100% {
opacity: 1;
box-shadow: 0 0 0 0 rgba(255, 85, 0, 0.5);
}

50% {
opacity: 0.8;
box-shadow: 0 0 0 8px rgba(255, 85, 0, 0);
}
}

.hero-title {
font-family: var(--font-head);
font-size: clamp(3.5rem, 7vw, 7rem);
font-weight: 700;
line-height: 0.92;
text-transform: uppercase;
letter-spacing: -1px;
margin-bottom: 1.5rem;
}

.hero-title .line1 {
font-family: var(--font-head);
display: block;
color: var(--white);
font-weight: 700;
animation: fadeInUp 0.8s 0.1s ease both;
}

.hero-title .line2 {
display: block;
font-weight: 700;
color: var(--orange);
animation: fadeInUp 0.8s 0.2s ease both;
font-family: var(--font-head);

}

.hero-title .line3 {
font-weight: 700;
font-family: var(--font-head);
display: block;
-webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
color: transparent;
animation: fadeInUp 0.8s 0.3s ease both;
}

.hero-sub p {
color: var(--white);
font-size: 1.05rem;
font-weight:300;
line-height: 1.7;
max-width: 420px;
margin-bottom: 2.5rem;
animation: fadeInUp 0.8s 0.4s ease both;
}

.hero-btns {
display: flex;
gap: 1rem;
flex-wrap: wrap;
animation: fadeInUp 0.8s 0.5s ease both;
}

.btn-primary {
background: var(--orange);
color: var(--white);
font-family: var(--font-body);
font-weight: 300;
font-size: 0.85rem;
letter-spacing: 2.5px;
text-transform: uppercase;
padding: 0.9rem 2.2rem;
border-radius: 4px;
text-decoration: none;
border: 1.5px solid var(--orange);
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.6rem;
}

.btn-primary:hover {
background: var(--orange-dim);
border-color: var(--orange-dim);
color: var(--white);
box-shadow: 0 0 20px rgba(255, 85, 0, 0.4);
}

.btn-secondary {
background: transparent;
color: var(--white);
font-family: var(--font-body);
font-weight: 300;
font-size: 0.85rem;
letter-spacing: 2.5px;
text-transform: uppercase;
padding: 0.9rem 2.2rem;
border-radius: 6px;
text-decoration: none;
border: 1.5px solid var(--border-light);
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 0.6rem;
}

.btn-secondary:hover {
background: transparent;
border-color: var(--orange);
color: var(--orange);
transform: translateY(-3px);
}

.hero-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
margin-top: 3rem;
animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-stat-card {
background: rgba(42, 42, 47, 0.5);
border: 1px solid var(--border);
border-radius: 8px;
padding: 1.2rem;
position: relative;
overflow: hidden;
transition: all 0.3s;
}

.hero-stat-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1.5px;
background: linear-gradient(90deg, transparent, var(--orange), transparent);
opacity: 0;
transition: opacity 0.3s;
}

.hero-stat-card:hover {
background: rgba(255, 85, 0, 0.1);
border-color: rgba(255, 85, 0, 0.4);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(255, 85, 0, 0.2);
}

.stat-num {
font-family: var(--font-subheadsemi);
font-size: 2.2rem;
font-weight: 600;
color: var(--orange);
letter-spacing: -1px;
}

.stat-label p {
font-size: 0.75rem;
color: var(--text-muted);
letter-spacing: 1px;
text-transform: uppercase;
margin-top: 2px;
}

/* MARQUEE */
.marquee-section {
padding: 1.5rem 0;
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
overflow: hidden;
background: var(--charcoal);
}

.marquee-track {
display: flex;
gap: 3rem;
animation: marquee 25s linear infinite;
white-space: nowrap;
}

.marquee-track:hover {
animation-play-state: paused;
}

.marquee-item {
display: flex;
align-items: center;
gap: 1rem;
font-family: var(--font-head);
font-size: 1rem;
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--white);
flex-shrink: 0;
}

.marquee-dot {
width: 6px;
height: 6px;
background: var(--orange);
border-radius: 50%;
}

@keyframes marquee {
from {
transform: translateX(0);
}

to {
transform: translateX(-50%);
}
}

.section-eyebrow span {
font-family: var(--font-head);
font-size: 0.8rem;
font-weight: 500;
letter-spacing: 4px;
text-transform: uppercase;
color: var(--orange);
margin-bottom: 0.75rem;
display: flex;
align-items: center;
gap: 0.75rem;
}

.section-eyebrow span::before {
content: "";
width: 30px;
height: 1.5px;
background: var(--orange);
}

.section-title h1 {
font-family: var(--font-head);
font-size: 60px;
font-weight: 700;
text-transform: uppercase;
line-height: 1;
letter-spacing: 4px;
margin-bottom: 1rem;
}

.section-title-white h1 {
font-family: var(--font-head);
font-size: 60px;
font-weight: 700;
text-transform: uppercase;
line-height: 1;
letter-spacing: 4px;
margin-bottom: 1rem;
color: var(--white);
}

.section-title-white h1 span {
font-family: var(--font-head);
font-weight: 700;
font-size: 60px;
color: var(--orange);
}

.section-title span {
color: var(--orange);
font-family: var(--font-head);
font-size: 60px;
font-weight: 700;
}

.section-sub p {
color: var(--white);
font-size: 1rem;
line-height: 1.7;
padding-bottom: 10px;
}

.section-sub-black p {
color: var(--black);
font-size: 1rem;
line-height: 1.7;
padding-bottom: 10px;
font-weight: 300;
}


.section-unsub p {
font-size: .75rem;
color: var(--text-dim);
margin-top: 1rem;
position: relative;
z-index: 2
font-weight: 300;
}

/* CATEGORIES */
.categories {
padding-top: var(--section-pad);
padding-bottom: var(--section-pad);
background: var(--charcoal);
}

.categories-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: 300px 240px;
gap: 1.5rem;
}

.cat-card {
position: relative;
border-radius: 16px;
overflow: hidden;
cursor: pointer;
background: #141414;
}

.cat-card.large {
grid-column: 1 / 3;
grid-row: 1 / 2;
}

.cat-card.tall {
grid-column: 3 / 5;
grid-row: 1 / 3;
}

.cat-card.regular {
grid-column: span 1;
grid-row: 2 / 3;
}

.cat-bg {
position: absolute;
inset: 0;
transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-card:hover .cat-bg {
transform: scale(1.08);
}

.cat-overlay {
position: absolute;
inset: 0;
background: linear-gradient(to top,
rgba(0, 0, 0, 0.85) 0%,
rgba(0, 0, 0, 0.2) 60%,
transparent 100%);
transition: all 0.4s;
}

.cat-card:hover .cat-overlay {
background: linear-gradient(to top,
rgba(0, 0, 0, 0.9) 0%,
rgba(0, 0, 0, 0.4) 70%,
rgba(255, 85, 0, 0.08) 100%);
}

.cat-glow {
position: absolute;
inset: 0;
border-radius: 16px;
border: 2px solid transparent;
transition: border-color 0.4s;
}

.cat-card:hover .cat-glow {
border-color: rgba(255, 85, 0, 0.4);
box-shadow:
inset 0 0 30px rgba(255, 85, 0, 0.1),
0 0 30px rgba(255, 85, 0, 0.15);
}

.cat-content {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 1.8rem 2rem;
z-index: 2;
}

.cat-tag p {
font-family: var(--font-subheadmedium);
font-size: 0.7rem;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--orange);
margin-bottom: 0.4rem;
font-weight: 300;
}

.cat-name p {
font-family: var(--font-head);
font-size: 1.8rem;
font-weight: 700;
text-transform: uppercase;
margin-bottom: 0.3rem;
transition: color 0.3s;
}

.cat-card:hover .cat-name {
color: var(--orange);
}

.cat-count {
font-size: 0.8rem;
color: var(--white);
transition: all 0.3s;
display: flex;
align-items: center;
gap: 0.5rem;
}

.cat-arrow {
width: 32px;
height: 32px;
background: var(--orange);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
transform: translateY(10px);
opacity: 0;
transition: all 0.4s;
color: var(--white);
font-weight: 900;
}

.cat-card:hover .cat-arrow {
transform: translateY(0);
opacity: 1;
}

/* ✅ MAIN FIX - Image visibility aur positioning */
.cat-svg-art {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: flex-end;
padding: 0 2rem 3.5rem 0;
}

.cat-card.tall .cat-svg-art {
justify-content: center;
align-items: center;
padding: 0 0 4rem 0;
}

.cat-card.regular .cat-svg-art {
justify-content: center;
padding: 0 0 3.5rem 0;
}

.cat-svg-art img {
width: auto;
height: 85%;
max-width: 65%;
max-height: 85%;
object-fit: contain;
object-position: center bottom;
opacity: 0.9;
mix-blend-mode: luminosity;
}

.cat-card.tall .cat-svg-art img {
height: 80%;
max-width: 80%;
max-height: 80%;
opacity: 0.9;
mix-blend-mode: luminosity;
}

.cat-card.regular .cat-svg-art img {
height: 70%;
max-width: 70%;
max-height: 70%;
opacity: 0.9;
mix-blend-mode: luminosity;
}

/* PRODUCTS */
.products {
padding-top: var(--section-pad);
padding-bottom: var(--section-pad);
background: var(--black);
}

.products-header {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 1rem;

}

.filter-tabs {
display: flex;
gap: 0.5rem;
flex-wrap: wrap;
margin-top: 1rem;
}

.filter-tab {
background: transparent;
border: 1px solid var(--border);
color: var(--white);
font-family: var(--font-accent);
font-weight: 600;
font-size: 0.75rem;
letter-spacing: 2px;
text-transform: uppercase;
padding: 0.45rem 1.1rem;
border-radius: 4px;
cursor: pointer;
transition: all 0.25s;
}

.filter-tab.active,
.filter-tab:hover {
background: var(--orange);
border-color: var(--orange);
color: var(--white);
box-shadow: 0 0 12px rgba(255, 85, 0, 0.3);
}

.products-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
}

.product-card {
background: var(--card-bg);
border-radius: 14px;
overflow: hidden;
border: 1px solid var(--border);
transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
position: relative;
cursor: pointer;
}

.product-card:hover {
transform: translateY(-8px);
border-color: rgba(255, 85, 0, 0.3);
box-shadow:
0 20px 50px rgba(0, 0, 0, 0.5),
0 0 30px rgba(255, 85, 0, 0.15);
}

.product-img-wrap {
position: relative;
aspect-ratio: 1/1;
overflow: hidden;
background: var(--surface);
}

.product-img-bg {
position: absolute;
inset: 0;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.5s ease;
}

.product-img-bg img {
width: 100%;
height: 100%;
object-fit: cover;
transition:
transform 0.35s ease,
filter 0.35s ease;
}

.cat-svg-art img {
width: auto;
height: auto;
max-width: 90%;
max-height: 90%;
object-fit: contain;
transition:
transform 0.35s ease,
filter 0.35s ease;
}

.product-card:hover .product-img-bg img {
transform: scale(1.03);
filter: saturate(1.25) brightness(1.08) drop-shadow(0 14px 24px rgba(255, 85, 0, 0.18));
}

.cat-card:hover .cat-svg-art img {
transform: scale(1.04);
filter: saturate(1.3) brightness(1.05) drop-shadow(0 0 22px rgba(255, 85, 0, 0.22));
}

.product-img-bg.hover-img {
opacity: 0;
transform: scale(1.05);
}

.product-card:hover .product-img-bg.main-img {
opacity: 0;
transform: scale(1.05);
}

.product-card:hover .product-img-bg.hover-img {
opacity: 1;
transform: scale(1);
}

.product-badges {
position: absolute;
top: 1rem;
left: 1rem;
display: flex;
flex-direction: column;
gap: 0.4rem;
z-index: 5;
}

.badge {
font-family: var(--font-accent);
font-size: 0.65rem;
font-weight: 700;
letter-spacing: 1.5px;
text-transform: uppercase;
padding: 0.25rem 0.65rem;
border-radius: 4px;
}

.badge.sale {
background: rgba(232, 21, 12, 0.15);
color: var(--red);
border: 1px solid rgba(232, 21, 12, 0.4);
}

.badge.new {
background: rgba(14, 165, 233, 0.15);
color: var(--blue);
border: 1px solid rgba(14, 165, 233, 0.4);
}

.badge.bestseller {
background: rgba(255, 85, 0, 0.15);
color: var(--orange);
border: 1px solid rgba(255, 85, 0, 0.4);
}

.product-actions {
position: absolute;
top: 1rem;
right: 1rem;
display: flex;
flex-direction: column;
gap: 0.5rem;
opacity: 1;
transform: translateX(0);
transition: all 0.35s;
z-index: 10;
}

.action-btn {
width: 44px;
height: 44px;
background: rgba(42, 42, 47, 0.95);
border: 1.5px solid var(--border);
border-radius: 6px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.25s;
color: var(--white);
font-size: 1.2rem;
position: relative;
z-index: 15;
}

.action-btn:hover {
background: var(--orange);
border-color: var(--orange);
color: var(--white);
transform: scale(1.1);
box-shadow: 0 0 16px rgba(255, 85, 0, 0.3);
}

.quick-add {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: var(--orange);
color: var(--white);
font-family: var(--font-accent);
font-weight: 700;
font-size: 0.75rem;
letter-spacing: 2px;
text-transform: uppercase;
padding: 0.8rem;
text-align: center;
transform: translateY(100%);
transition: transform 0.35s ease;
cursor: pointer;
border-top: 1px solid var(--orange-dim);
}

.product-card:hover .quick-add {
transform: translateY(0);
}

.product-info {
padding: 1.2rem;
}

.product-brand h3 {
font-size: 0.7rem;
font-family: var(--font-subheadmedium);
letter-spacing: 2px;
text-transform: uppercase;
color: var(--orange);
margin-bottom: 0.3rem;
font-weight: 500;
}

.product-name p {
font-family: var(--font-accent);
font-weight: 500;
font-size: 1rem;
color: var(--white);
margin-bottom: 0.5rem;
line-height: 1.3;
}

.product-rating {
display: flex;
align-items: center;
gap: 0.4rem;
margin-bottom: 0.6rem;
}

.stars {
font-family: var(--font-subheadmedium);
color: #f59e0b;
font-size: 0.8rem;
letter-spacing: 1px;
}

.rating-count {
font-family: var(--font-subheadmedium);
font-size: 0.7rem;
color: var(--text-muted);
}

.product-price {
display: flex;
align-items: center;
gap: 7px;
}

.price-current {
font-family: var(--font-subheadmedium);
font-size: 1.4rem;
font-weight: 300;
color: var(--white);
}

.price-old {
font-size: 0.85rem;
color: var(--text-muted);
text-decoration: line-through;
}

.price-save {
font-size: 0.7rem;
color: var(--orange);
font-weight: 600;
}

/* WHY CHOOSE US */
.why {
padding-top: var(--section-pad);
padding-bottom: var(--section-pad);
background: var(--charcoal);
position: relative;
overflow: hidden;
}

.why-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 1.5rem;
position: relative;
z-index: 2;
}

.why-card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid var(--border);
border-radius: 16px;
padding: 2rem 1.5rem;
text-align: center;
transition: all 0.4s;
position: relative;
overflow: hidden;
}

.why-card::before {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(135deg, rgba(255, 85, 0, 0.08), transparent);
opacity: 0;
transition: opacity 0.4s;
}

.why-card:hover {
border-color: rgba(255, 85, 0, 0.3);
transform: translateY(-6px);
background: rgba(255, 85, 0, 0.08);
}

.why-card:hover::before {
opacity: 1;
}

.why-icon {
width: 60px;
height: 60px;
background: rgba(255, 85, 0, 0.12);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.2rem;
transition: all 0.4s;
position: relative;
z-index: 1;
border: 1px solid rgba(255, 85, 0, 0.3);
}

.why-card:hover .why-icon {
background: rgba(255, 85, 0, 0.2);
border-color: rgba(255, 85, 0, 0.5);
transform: scale(1.1);
box-shadow: 0 0 12px rgba(255, 85, 0, 0.2);
}

.why-icon img {
width: 28px;
height: 28px;
}

.why-title h2 {
font-family: var(--font-head);
font-weight: 700;
font-size: 0.95rem;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 0.5rem;
position: relative;
z-index: 1;
}

.why-desc p {
font-size: 0.82rem;
color: var(--white);
line-height: 1.6;
position: relative;
z-index: 1;
}

/* BRANDS */
.brands {
background: var(--black);
padding-top: var(--section-pad);
padding-bottom: var(--section-pad);
/* padding: 4rem 3rem */
}

.brands-slider {
overflow: hidden;
mask: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.brands-track {
display: flex;
gap: 1.5rem;
padding: 1rem 0;
animation: brandScroll 20s linear infinite;
}

.brands-track:hover {
animation-play-state: paused;
}

.brand-pill {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 160px;
min-height: 90px;
padding: 1rem 1.5rem;
background: rgba(255, 255, 255, 0.04);
border: 1px solid var(--border-light);
border-radius: 14px;
transition:
background 0.3s ease,
border-color 0.3s ease,
transform 0.3s ease,
box-shadow 0.3s ease;
cursor: pointer;
flex-shrink: 0;
}

.brand-pill img {
max-width: 140px;
max-height: 52px;
width: auto;
height: auto;
object-fit: contain;
filter: grayscale(70%) brightness(1.1);
transition:
filter 0.3s ease,
transform 0.3s ease;
}

.brand-pill:hover {
background: rgba(255, 85, 0, 0.12);
border-color: var(--orange);
transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(255, 85, 0, 0.18);
}

.brand-pill:hover img {
filter: saturate(180%) brightness(1.05);
transform: scale(1.05);
}

.brand-pill.brand-pill-text {
font-family: var(--font-head);
font-size: 1rem;
font-weight: 700;
letter-spacing: 1.4px;
text-transform: uppercase;
color: var(--white);
padding: 1rem 1.7rem;
}

.brand-pill.brand-pill-text:hover {
color: var(--white);
}

@keyframes brandScroll {
from {
transform: translateX(0);
}

to {
transform: translateX(-50%);
}
}

/* LIFESTYLE SECTION */
.lifestyle {
padding-top: var(--section-pad);
padding-bottom: var(--section-pad);
background: var(--charcoal);
position: relative;
overflow: hidden;
}

.lifestyle-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: center;
max-width: 1400px;
margin: 0 auto;
position: relative;
z-index: 2;
}

.lifestyle-bg {
position: absolute;
inset: 0;
z-index: 0;
}

.lifestyle-bg img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.2;
}

.lifestyle-desc {
color: var(--white);
font-size: 1rem;
line-height: 1.8;
margin: 1.5rem 0 2rem;
}

.lifestyle-features {
display: flex;
flex-direction: column;
gap: 1rem;
margin-bottom: 2.5rem;
}

.lifestyle-feat {
display: flex;
align-items: flex-start;
gap: 1rem;
}

/* Stacked stat cards */

.stacked-stat-cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
}

.stat-card {
background: var(--dark-grey);
padding: 28px 24px;
position: relative;
overflow: hidden;
transition: none;
/* no hover effect */
}

.stat-card-border-red {
border: 1px solid rgba(232, 21, 12, 0.15);
}

.stat-card-border-light {
border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card-red {
background: var(--red);
}

.stat-line {
position: absolute;
top: 0;
left: 0;
width: 3px;
height: 100%;
}

.stat-line-red {
background: var(--red);
}

.stat-line-accent {
background: var(--orange);
}

.stat-line-silver {
background: var(--silver);
}

.stat-number {
font-family: var(--font-head);
font-size: 48px;
font-weight: 700;
color: var(--white);
line-height: 1;
}

.stat-label {
font-family: var(--font-subheadmedium);
font-weight: 600;
font-size: 12px;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--white);
margin-top: 6px;
}

.stat-label-light {
color: rgba(255, 255, 255, 0.75);
}

.stat-label-flex {
display: flex;
align-items: center;
gap: 8px;
}

.stat-stars {
color: var(--orange);
}

.stat-bg-icon {
position: absolute;
top: -20px;
right: -20px;
opacity: 0.1;
}

/* Counter animation */

.counter {
display: inline-block;
animation: counterPop 0.8s ease;
}

@keyframes counterPop {
0% {
opacity: 0;
transform: translateY(20px) scale(0.9);
}

60% {
opacity: 1;
transform: translateY(-4px) scale(1.05);
}

100% {
transform: translateY(0) scale(1);
}
}

.feat-dot {
width: 8px;
height: 8px;
background: var(--orange);
border-radius: 50%;
margin-top: 0.5rem;
flex-shrink: 0;
}

.feat-text p {
font-size: 0.9rem;
color: var(--white);
line-height: 1.6;
}

.feat-text strong {
color: var(--white);
}

.lifestyle-card-accent {
position: absolute;
bottom: 5%;
left: 0;
width: 55%;
aspect-ratio: 4/3;
border-radius: 16px;
overflow: hidden;
background: linear-gradient(135deg, #001833, #003566);
border: 2px solid rgba(14, 165, 233, 0.2);
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lifestyle-stat-float {
position: absolute;
top: 30%;
left: 5%;
background: rgba(22, 23, 25, 0.95);
border: 1px solid var(--border);
border-radius: 14px;
padding: 1.2rem 1.5rem;
backdrop-filter: blur(10px);
z-index: 10;
animation: float 5s ease-in-out infinite;
}

/* TESTIMONIALS */
.testimonials {
padding-top: var(--section-pad);
padding-bottom: var(--section-pad);
background: var(--black);
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}

.testi-card {
background: rgba(60, 60, 67, 0.4);
border: 1px solid var(--border);
border-radius: 12px;
padding: 2rem;
position: relative;
overflow: hidden;
transition: all 0.4s;
cursor: pointer;
}

.testi-card::before {
content: '"';
position: absolute;
top: -10px;
right: 20px;
font-family: var(--font-head);
font-size: 8rem;
font-weight: 700;
color: rgba(255, 85, 0, 0.08);
line-height: 1;
}

.testi-card:hover {
border-color: rgba(255, 85, 0, 0.3);
transform: translateY(-6px);
background: rgba(255, 85, 0, 0.08);
box-shadow: 0 8px 25px rgba(255, 85, 0, 0.2);
}

.testi-avatar {
width: 52px;
height: 52px;
border-radius: 50%;
margin-bottom: 1.2rem;
border: 2px solid var(--border-light);
}

.testi-stars {
color: #f59e0b;
font-size: 0.9rem;
margin-bottom: 1rem;
letter-spacing: 2px;
}

.testi-text p {
color: var(--white);
font-size: 0.9rem;
line-height: 1.75;
margin-bottom: 1.5rem;
font-style: italic;
}

.testi-author p {
font-family: var(--font-accent);
font-weight: 700;
font-size: 0.9rem;
color: var(--white);
}

.testi-role p {
font-size: 0.75rem;
color: var(--text-muted);
}

/* COMMUNITY */
.community-wrapper {
background: var(--charcoal);
border-top: 1px solid rgba(255, 255, 255, 0.04);
padding-top: var(--section-pad);
padding-bottom: var(--section-pad);
}

.community-section {
padding: 0;
margin: 0 auto;
max-width: 1400px;
}

.community-eyebrow {
font-family: var(--font-accent);
font-size: 14px;
font-weight: 700;
letter-spacing: 2px;
text-transform: uppercase;
color: var(--orange);
margin-bottom: 18px;
}



.community-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin-bottom: 45px;
}

.community-img {
position: relative;
overflow: hidden;
background: var(--surface);
border: 1px solid var(--border);
height: 320px;
transition: all 0.4s ease;
}

.community-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.5s ease;
}

.community-img:hover img {
transform: scale(1.08);
}

.community-img:hover {
border-color: var(--orange);
transform: translateY(-6px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.btn-outline {
display: flex;
justify-content: center;
}

.btn-outline a {
background: transparent;
color: var(--white);
padding: 14px 34px;
font-family: var(--font-head);
font-weight: 700;
font-size: 16px;
letter-spacing: 2px;
text-transform: uppercase;
border: 2px solid rgba(255, 255, 255, 0.3);
cursor: pointer;
text-decoration: none;
display: inline-flex;
justify-content: center;
align-items: center;
transition:
border-color 0.2s,
color 0.2s;
}

.btn-outline a:hover {
border-color: var(--orange-dim);
color: var(--orange);
}

/* NEWSLETTER */
.newsletter {
position: relative;
overflow: hidden;
text-align: center;
padding-top: var(--section-pad);
padding-bottom: var(--section-pad);
}

.nl-glow {
position: absolute;
width: 620px;
height: 620px;
border-radius: 50%;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
pointer-events: none;
}

.nl-title {
font-family: var(--font-head);
font-size: clamp(2rem, 4vw, 3.5rem);
font-weight: 700;
text-transform: uppercase;
line-height: 1;
margin-bottom: 1rem;
}

.nl-sub {
color: var(--white);
margin-bottom: 2.5rem;
line-height: 1.7;
}

.nl-form {
display: flex;
gap: 0.75rem;
max-width: 440px;
margin: 0 auto;
}

.nl-input {
flex: 1;
background: rgba(60, 60, 67, 0.6);
border: 1.5px solid var(--border-light);
border-radius: 4px;
padding: 0.9rem 1.2rem;
color: var(--white);
font-family: var(--font-body);
font-size: 0.9rem;
outline: none;
transition: all 0.3s;
}

.nl-input::placeholder {
color: var(--text-muted);
}

.nl-input:focus {
border-color: var(--orange);
background: rgba(255, 85, 0, 0.12);
box-shadow: 0 0 12px rgba(255, 85, 0, 0.2);
}

.nl-submit {
background: var(--orange);
color: var(--white);
font-family: var(--font-accent);
font-weight: 700;
font-size: 0.8rem;
letter-spacing: 2px;
text-transform: uppercase;
padding: 0.9rem 1.8rem;
border-radius: 4px;
border: 1.5px solid var(--orange);
cursor: pointer;
transition: all 0.3s;
white-space: nowrap;
}

.nl-submit:hover {
background: var(--orange-dim);
border-color: var(--orange-dim);
color: var(--white);
box-shadow: 0 0 20px rgba(255, 85, 0, 0.4);
}

/* TRUST SECTION */
.trust-section {
padding-top: var(--section-pad);
}

.trust-inner {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
}

.trust-item {
border-right: 1px solid rgba(0, 0, 0, 0.08);
display: flex;
align-items: center;
flex-direction: column;

border-radius: 12px;
}

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

.trust-icon {
font-size: 30px;
flex-shrink: 0;
color: var(--orange);
}

.trust-title h3 {
font-weight: 800;
font-size: 16px;
text-transform: uppercase;
letter-spacing: 1px;
line-height: 1.1;
}

.trust-sub p {
font-size: 13px;
color: var(--silver-light);
margin-top: 3px;
font-family: var(--font-body);
}

/* FOOTER */
footer {
background: var(--charcoal);
border-top: 1px solid var(--border);
padding-top: var(--section-pad);
}

.footer-top {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 4rem;
margin-bottom: 4rem;
}

.footer-logo {
font-family: var(--font-head);
font-size: 1.6rem;
font-weight: 700;
letter-spacing: 2px;
margin-bottom: 1rem;
display: flex;
align-items: center;
gap: 8px;
}

.footer-logo img {
max-width: 170px;
}

.footer-desc p {
font-family: var(--font-body);
color: var(--white);
font-size: 0.875rem;
line-height: 1.8;
margin-bottom: 1.5rem;
font-weight: 300;

}

.footer-contact {
display: flex;
flex-direction: column;
gap: 0.6rem;
}

.footer-contact-item {
display: flex;
align-items: center;
gap: 0.7rem;
font-size: 0.82rem;
color: var(--white);
font-weight: 300;
}

.footer-contact-item svg {
width: 14px;
height: 14px;
stroke: var(--orange);
fill: none;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
flex-shrink: 0;
}

.footer-col-title {
font-family: var(--font-body);
font-weight: 500;
font-size: 18px;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--white);
margin-bottom: 1.5rem;
}

.footer-links {
display: flex;
flex-direction: column;
gap: 0.75rem;
}

.footer-links a {
color: var(--white);
text-decoration: none;
font-size: 14px;
transition: color 0.25s;
font-family: var(--font-body);
font-weight: 300;
}

.footer-links a:hover {
color: var(--orange);
}

.footer-socials {
display: flex;
gap: 0.75rem;
margin-top: 1.5rem;
}

.social-btn {
width: 38px;
height: 38px;
background: rgba(255, 255, 255, 0.04);
border: 1.5px solid var(--border);
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s;
}

.social-btn:hover {
background: rgba(255, 85, 0, 0.15);
border-color: rgba(255, 85, 0, 0.4);
}

.social-btn svg {
width: 16px;
height: 16px;
fill: var(--silver);
transition: fill 0.3s;
color: var(--white);
}

.social-btn:hover svg {
fill: var(--orange);
}

.footer-bottom {
border-top: 1px solid var(--border);
padding-top: 20px;
padding-bottom: 20px;
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
gap: 1rem;
}

.footer-copy p {
font-size: 0.8rem;
color: var(--off-white);
font-family: var(--font-body);
font-weight: 300;
}

/* LOADING SCREEN */
#loading {
position: fixed;
inset: 0;
background: var(--black);
z-index: 10000;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
transition: opacity 0.6s ease;
}

#loading.hidden {
opacity: 0;
pointer-events: none;
}

.loading-logo {
font-family: var(--font-head);
font-size: 2rem;
font-weight: 700;
letter-spacing: 4px;
text-transform: uppercase;
color: var(--white);
margin-bottom: 2rem;
animation: loadPulse 1.5s ease-in-out infinite;
}

.loading-logo img {
max-width:250px;
}

@keyframes loadPulse {

0%,
100% {
opacity: 0.4;
}

50% {
opacity: 1;
}
}

.loading-bar {
width: 200px;
height: 2px;
background: rgba(255, 255, 255, 0.1);
border-radius: 2px;
overflow: hidden;
}

.loading-progress {
height: 100%;
background: linear-gradient(90deg, var(--orange), var(--red));
border-radius: 2px;
animation: loadBar 1.8s ease-out forwards;
}

@keyframes loadBar {
from {
width: 0;
}

to {
width: 100%;
}
}

/*    HERO BANNER   */
.contact-us-page-hero {
margin-top: 72px;
position: relative;
height: 320px;
display: flex;
align-items: center;
overflow: hidden;
}

.contact-us-page-hero-bg {
position: absolute;
inset: 0;
opacity: 0.2;
}

.contact-us-page-hero-inner {
position: relative;
z-index: 2;

}