@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;600;700;900&display=swap');

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

:root {
  --bg-dark: #111111;
  --bg-light: #F5F5F5;
  --bg-white: #FFFFFF;
  --text-white: #FFFFFF;
  --text-dark: #1C1C1C;
  --text-muted: #888888;
  --border: #E0E0E0;
  --border-dark: #333333;
  --accent: #c8b89a;
  --green: #25D366;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-dark);
  overflow-x: hidden;
  cursor: none
}

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

button {
  cursor: none;
  font-family: inherit
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Bebas Neue', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px
}

.uppercase {
  text-transform: uppercase
}

.label {
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase
}

/* CUSTOM CURSOR */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: difference;
  transition: transform .15s ease
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
  z-index: 10001;
  mix-blend-mode: difference
}

.cursor.hover {
  transform: scale(3)
}

/* LOADER */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease
}

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

.loader-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: #fff;
  letter-spacing: 10px;
  margin-bottom: 2rem
}

.loader-bar-wrap {
  width: 200px;
  height: 2px;
  background: #333
}

.loader-bar {
  height: 100%;
  width: 0;
  background: #fff;
  transition: width .05s linear
}

.loader-percent {
  color: #888;
  font-size: .8rem;
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 3px
}

/* ANNOUNCEMENT TICKER */
.ticker {
  background: #1A1A1A;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap
}

.ticker-track {
  display: inline-flex;
  animation: ticker 20s linear infinite
}

.ticker-track span {
  font-size: .7rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s ease, padding .3s ease;
  background: transparent
}

.nav.scrolled {
  background: rgba(17, 17, 17, .95);
  padding: .7rem 3rem;
  backdrop-filter: blur(10px)
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 5px;
  display: flex;
  align-items: center;
  gap: .8rem
}

.nav-logo .tri {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 22px solid #fff
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none
}

.nav-links a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: width .3s ease
}

.nav-links a:hover::after {
  width: 100%
}

.nav-icons {
  display: flex;
  gap: 1.5rem;
  align-items: center
}

.nav-icons a {
  color: #fff;
  font-size: 1.1rem;
  position: relative
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #fff;
  color: #111;
  font-size: .55rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700
}

/* HERO */
.hero {
  position: relative;
  height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 4rem;
  overflow: hidden
}

.hero video,
.hero .hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6)
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px
}

.hero-label {
  color: #c8b89a;
  margin-bottom: 1.5rem;
  font-size: .7rem
}

.hero-title {
  font-size: clamp(3rem, 12vw, 10rem);
  color: #fff;
  line-height: .95;
  margin-bottom: 1.5rem
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(60px)
}

.hero-sub {
  color: rgba(255, 255, 255, .8);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 500px
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

.btn {
  padding: 1rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 2px solid #fff;
  transition: all .3s ease;
  display: inline-block
}

.btn-fill {
  background: #c8b89a;
  color: #111;
  border-color: #fff
}

.btn-fill:hover {
  background: transparent;
  color: #fff
}

.btn-outline {
  background: transparent;
  color: #fff
}

.btn-outline:hover {
  background: #c8b89a;
  color: #111
}

.btn-dark {
  background: #111;
  color: #fff;
  border-color: #111
}

.btn-dark:hover {
  background: #c8b89a;
  color: #111
}

.btn-green {
  background: var(--green);
  color: #fff;
  border-color: var(--green)
}

.btn-pill {
  background: #111;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: .9rem 2.5rem;
  font-size: .75rem
}

.btn-pill:hover {
  background: #333
}

.scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  font-size: 1.5rem;
  animation: bounce 2s infinite
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(10px)
  }
}

/* BRAND SPLIT COLUMNS */
.brand-split {
  display: flex;
  gap: 1rem;
  padding: 1rem
}

.brand-split-col {
  flex: 1
}

.brand-split-img {
  position: relative;
  overflow: hidden;
  height: 500px
}

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

.brand-split-col:hover .brand-split-img img {
  transform: scale(1.05)
}

.brand-split-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  background: linear-gradient(to top, rgba(0, 0, 0, .5) 0%, transparent 60%);
  color: #fff
}

.brand-split-overlay .label {
  margin-bottom: .8rem;
  color: rgba(255, 255, 255, .8);
  font-size: .6rem
}

.brand-split-overlay h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
  line-height: 1.2
}

/* FEATURED COLLECTION */
.featured {
  background: var(--bg-light);
  padding: 6rem 4rem
}

.section-header {
  text-align: center;
  margin-bottom: 3rem
}

.section-header .label {
  color: var(--text-muted);
  display: block;
  margin-bottom: .8rem
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-dark)
}

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

.product-card {
  background: #fff;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease
}

.product-card:hover {
  transform: translateY(-5px)
}

.product-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.product-card:hover .product-img img {
  transform: scale(1.08)
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--bg-dark);
  color: #fff;
  font-size: .6rem;
  padding: 5px 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 2
}

.product-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, .9);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: .9rem;
  transition: all .3s ease
}

.product-wish:hover {
  background: #111;
  color: #fff
}

.quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  padding: 1rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform .35s ease;
  z-index: 2;
}

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

.quick-add-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #111;
  margin-bottom: .8rem;
  text-transform: uppercase;
}

.quick-add-sizes {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.quick-add-size {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #eee;
  font-size: .7rem;
  color: #111;
  cursor: pointer;
  transition: all .2s ease;
}

.quick-add-size:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

.product-info {
  padding: 1.2rem
}

.product-info h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: .4rem
}

.product-info .price {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: .3rem
}

.product-info .clearpay {
  font-size: .7rem;
  color: var(--text-muted)
}

.text-center {
  text-align: center
}

/* SPLIT BANNERS */
.split {
  display: flex;
  max-height: 70vh
}

.split-img {
  flex: 1;
  overflow: hidden
}

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

.split:hover .split-img img {
  transform: scale(1.03)
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 5rem
}

.split-text .label {
  margin-bottom: 1.5rem
}

.split-text h2 {
  font-size: clamp(2rem, 5vw, 10rem);
  margin-bottom: 1.5rem;
  line-height: 1.05
}

.split-text p {
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: .95rem
}

.split-dark {
  background: var(--bg-dark);
  color: #fff
}

.split-light {
  background: var(--bg-light);
  color: var(--text-dark)
}

/* FEATURED PRODUCTS CAROUSEL */
.feat-carousel {
  background: var(--bg-white);
  padding: 6rem 4rem
}

.swiper-feat .swiper-slide {
  width: auto
}

.swiper-feat .product-card {
  min-width: 280px
}

.swiper-nav-wrap {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem
}

.swiper-btn {
  width: 50px;
  height: 50px;
  border: 2px solid var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all .3s ease;
  background: transparent;
  color: var(--text-dark)
}

.swiper-btn:hover {
  background: var(--bg-dark);
  color: #fff
}

/* FOUNDER STRIP - SPLIT LAYOUT */
.founder-split {
  display: flex;
  background: #111;
  min-height: 80vh;
}

.founder-split-img {
  flex: 1;
  overflow: hidden;
}

.founder-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.founder-split:hover .founder-split-img img {
  transform: scale(1.05);
}

.founder-split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  background: #131313;
}

/* OFFERS WITH VIDEO BG */
.offers {
  background: var(--bg-dark);
  text-align: center;
  padding: 7rem 4rem 7rem 4rem;
  position: relative;
  overflow: hidden;
}

.offers-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.offers-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.offers-content {
  position: relative;
  z-index: 2;
}

.offers .label {
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.offers h2 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 1rem;
}

.offers p {
  color: rgba(255, 255, 255, .8);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem
}

.countdown-item {
  text-align: center
}

.countdown-item span {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #fff
}

.countdown-item small {
  color: var(--text-muted);
  font-size: .65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif
}

/* LOOKBOOK */
.lookbook {
  background: #fff;
  padding: 6rem 4rem
}

.masonry {
  columns: 3;
  column-gap: 1.5rem
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform .6s ease
}

.masonry-item:hover img {
  transform: scale(1.05)
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase
}

.masonry-item:hover .masonry-overlay {
  opacity: 1
}

/* REVIEWS V2 - CAROUSEL CENTERED */
.reviews-v2 {
  background: var(--bg-light);
  padding: 6rem 4rem
}

.swiper-reviews {
  max-width: autopx;
  margin: 0 auto;
  padding-bottom: 3rem
}

.rv2-card {
  text-align: center;
  padding: 2rem 1rem
}

.rv2-quote {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--text-dark);
  margin-bottom: .5rem
}

.rv2-card blockquote {
  font-family: 'Georgia', serif;
  font-size: 1.20rem;
  line-height: 1.8;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 2rem;
  font-weight: 300
}

.rv2-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--accent);
  padding: 3px;
  background: #fff
}

.rv2-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%
}

.rv2-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: .3rem
}

.rv2-role {
  font-size: .8rem;
  color: var(--text-muted)
}

.swiper-pagination-reviews {
  text-align: center;
  margin-top: 1rem
}

.swiper-pagination-reviews .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--text-dark);
  opacity: .25;
  margin: 0 5px
}

.swiper-pagination-reviews .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--text-dark)
}

/* TRUST BADGES V2 */
.trust-v2 {
  background: #fff;
  padding: 3rem 4rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.trust-v2-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: auto;
  margin: 0 auto
}

.trust-v2-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  padding: 0 1.5rem
}

.trust-v2-item:not(:last-child) {
  border-right: 1px solid var(--border)
}

.trust-v2-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-dark);
  flex-shrink: 0;
  border: 1.5px solid var(--text-dark);
  border-radius: 50%
}

.trust-v2-info {
  display: flex;
  flex-direction: column;
  gap: .2rem
}

.trust-v2-info strong {
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-dark)
}

.trust-v2-info span {
  font-size: .75rem;
  color: var(--text-muted);
  line-height: 1.4
}

/* FEATURED COLLECTION BANNER */
.feat-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.feat-banner:hover .feat-banner-bg {
  transform: scale(1.05);
}

.feat-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.feat-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  padding: 2rem;
  color: #fff;
}

.feat-banner-content .label {
  display: block;
  margin-bottom: 1rem;
  font-size: .8rem;
  letter-spacing: 2px;
}

.feat-banner-heading {
  font-family: 'Inter', sans-serif !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 300 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
  margin: 1rem 0 1.5rem 0 !important;
  color: #fff !important;
}

/* INSTAGRAM */
.insta {
  background: #fff;
  padding: 6rem 4rem
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .5rem;
  margin-bottom: 2rem
}

.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.insta-item:hover img {
  transform: scale(1.1)
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transition: opacity .3s ease;
  color: #fff;
  font-size: .85rem
}

.insta-item:hover .insta-overlay {
  opacity: 1
}

/* FOOTER */
.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 5rem 4rem 2rem;
  border-top: 1px solid var(--border-dark)
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem
}

.footer-brand p {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  line-height: 1.7;
  margin: 1rem 0
}

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

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .9rem;
  transition: all .3s ease
}

.footer-socials a:hover {
  background: #fff;
  color: #111
}

.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem
}

.footer-links {
  list-style: none
}

.footer-links li {
  margin-bottom: .8rem
}

.footer-links a {
  color: rgba(255, 255, 255, .5);
  font-size: .85rem;
  transition: color .3s ease
}

.footer-links a:hover {
  color: #fff
}

.newsletter-input {
  display: flex;
  margin-bottom: .8rem
}

.newsletter-input input {
  flex: 1;
  padding: .8rem 1rem;
  background: transparent;
  border: 1px solid var(--border-dark);
  color: #fff;
  font-size: .85rem;
  font-family: inherit
}

.newsletter-input input::placeholder {
  color: #555
}

.newsletter-input button {
  padding: .8rem 1.5rem;
  background: #fff;
  color: #111;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all .3s ease
}

.newsletter-input button:hover {
  background: var(--accent);
  color: #111
}

.footer-newsletter small {
  color: rgba(255, 255, 255, .3);
  font-size: .75rem
}

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

.footer-bottom p {
  font-size: .75rem;
  color: rgba(255, 255, 255, .4)
}

.payment-icons {
  display: flex;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(255, 255, 255, .5)
}

/* FLOATING */
.float-wa {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 55px;
  height: 55px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: transform .3s ease
}

.float-wa:hover {
  transform: scale(1.1)
}

.float-chat {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 55px;
  height: 55px;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  transition: transform .3s ease
}

.float-chat:hover {
  transform: scale(1.1)
}

.back-top {
  position: fixed;
  bottom: 6rem;
  right: 2rem;
  width: 45px;
  height: 45px;
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .1)
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto
}

.back-top:hover {
  background: var(--bg-dark);
  color: #fff
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal.active {
  opacity: 1;
  transform: translateY(0)
}

/* PROMO POPUP */
.promo-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.promo-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.promo-popup-content {
  background: #fff;
  width: 90%;
  max-width: 800px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.4s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.promo-popup.active .promo-popup-content {
  transform: translateY(0);
}

.promo-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  font-size: 1.2rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.promo-close:hover {
  color: #111;
  background: #eee;
}

.promo-split {
  display: flex;
}

.promo-img {
  flex: 1;
  display: block;
}

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

.promo-text {
  flex: 1;
  padding: 3rem 2.5rem;
  text-align: center;
}

.promo-text h2 {
  font-family: 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #111;
}

.promo-desc {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.promo-subdesc {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.promo-form input {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.promo-form input:focus {
  border-color: #111;
}

.promo-terms {
  font-size: 0.55rem;
  color: #777;
  margin-top: 1rem;
  line-height: 1.4;
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .masonry {
    columns: 2
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .split {
    flex-direction: column
  }

  .split-text {
    padding: 3rem 2rem
  }

  .founder-split {
    flex-direction: column;
  }

  .founder-split-img {
    height: 350px;
  }

  .founder-split-text {
    padding: 3rem 2rem;
  }

  .brand-split {
    flex-direction: column
  }

  .brand-split-img {
    height: 350px
  }

  .trust-v2-grid {
    flex-wrap: wrap;
    gap: 1.5rem
  }

  .trust-v2-item {
    min-width: 45%;
    border: none !important
  }

  .feat-banner {
    height: 400px;
  }
}

@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .product-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .masonry {
    columns: 1
  }

  .insta-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero {
    padding: 4rem 2rem
  }

  .cursor,
  .cursor-dot {
    display: none
  }

  body {
    cursor: auto
  }

  .trust-v2-grid {
    flex-direction: column
  }

  .trust-v2-item {
    border: none !important;
    padding: 1rem 0
  }

  .promo-img {
    display: none;
  }
}