/* Devs Storefront CSS - Public E-commerce Frontend */

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

:root {
  --ink: #0D0D0D;
  --ink-80: #2D2D2D;
  --ink-60: #595959;
  --ink-50: #737373;
  --ink-40: #8C8C8C;
  --ink-30: #A6A6A6;
  --ink-20: #BFBFBF;
  --ink-10: #D9D9D9;
  --ink-05: #ECECEC;
  --ink-02: #F5F5F5;
  --cream: #FBF9F5;
  --warm: #F9F6F1;
  --linen: #F3EDE4;
  --sand: #E8DFD1;
  --clay: #C9B99A;
  --terra: #B85C38;
  --terra-deep: #8B3A1F;
  --terra-glow: #D4845C;
  --terra-pale: #F5DED0;
  --forest: #1B6B45;
  --forest-deep: #0F4D30;
  --forest-light: #2D9B65;
  --forest-pale: #D8F0E3;
  --gold: #C89B3C;
  --gold-light: #E8D5A0;
  --danger: #C0392B;
  --white: #FFF;
  --sh-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --sh-md: 0 4px 14px rgba(0, 0, 0, .07), 0 2px 6px rgba(0, 0, 0, .04);
  --sh-lg: 0 10px 30px rgba(0, 0, 0, .09), 0 4px 10px rgba(0, 0, 0, .04);
  --sh-xl: 0 20px 50px rgba(0, 0, 0, .12);
  --sh-glow: 0 4px 24px rgba(184, 92, 56, .2);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-full: 9999px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body: 'Manrope', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

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

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

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.95)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all .7s var(--ease)
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px
}

/* Announcement */
.ann {
  background: var(--ink);
  color: var(--white);
  padding: 9px 0;
  overflow: hidden
}

.ann__track {
  display: flex;
  gap: 56px;
  animation: marquee 35s linear infinite;
  white-space: nowrap
}

.ann__i {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0
}

.ann__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terra)
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 249, 245, .92);
  backdrop-filter: blur(16px) saturate(1.5);
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  transition: box-shadow .3s
}

.nav.scrolled {
  box-shadow: var(--sh-sm)
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 11px
}

.nav__logo {
  width: 152px;
  max-width: 42vw;
  height: auto;
  object-fit: contain
}

.nav__mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--terra), var(--terra-deep));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--white)
}

.nav__name {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px
}

.nav__link {
  padding: 7px 15px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-60);
  border-radius: var(--r-full);
  transition: all .2s var(--ease)
}

.nav__link:hover {
  color: var(--ink);
  background: rgba(0, 0, 0, .04)
}

.nav__link.active {
  color: var(--terra);
  background: var(--terra-pale)
}

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

.nav__cart {
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  border: 1.5px solid var(--ink-10);
  color: var(--ink-60);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all .2s
}

.nav__cart svg {
  width: 16px;
  height: 16px;
  stroke-width: 2
}

.nav__cart:hover {
  border-color: var(--ink-30);
  color: var(--ink)
}

.nav__call {
  padding: 9px 20px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 700;
  background: var(--ink);
  color: var(--white);
  transition: all .2s
}

.nav__call:hover {
  background: var(--ink-80);
  transform: translateY(-1px)
}

.nav__staff {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-30);
  padding: 7px 12px;
  border-radius: var(--r-full);
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 5px
}

.nav__staff svg {
  width: 13px;
  height: 13px;
  stroke-width: 2
}

.nav__staff:hover {
  color: var(--terra);
  background: var(--terra-pale)
}

.nav__burger {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--ink-60)
}

.nav__burger svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.8
}

@media(max-width:900px) {

  .nav__links,
  .nav__call,
  .nav__staff {
    display: none
  }

  .nav__cart {
    padding: 6px;
    border: none;
    background: none;
    position: relative
  }

  .nav__cart svg {
    width: 22px;
    height: 22px
  }

  .nav__cart-label {
    display: none
  }

  .nav__cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--terra);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center
  }

  .nav__burger {
    display: flex
  }
}

/* Mobile menu drawer */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13,13,13,.5);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  opacity: 0;
  transition: opacity .3s var(--ease)
}

.mobile-menu.open {
  display: block;
  opacity: 1
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  padding: 24px;
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  overflow-y: auto
}

.mobile-menu.open .mobile-menu__panel {
  transform: translateX(0)
}

.mobile-menu__close {
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: var(--ink-02);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px
}

.mobile-menu__link {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-05);
  text-decoration: none
}

.mobile-menu__link:last-child {
  border-bottom: none
}

/* Add-to-cart toast */
.cart-toast {
  position: fixed;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-xl);
  padding: 16px 20px;
  z-index: 150;
  width: calc(100% - 32px);
  max-width: 420px;
  transition: bottom .4s var(--ease);
  border: 1px solid var(--ink-05)
}

.cart-toast.show {
  bottom: 90px
}

@media(min-width:901px) {
  .cart-toast.show {
    bottom: 24px
  }
}

.cart-toast__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px
}

.cart-toast__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--forest-pale);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.cart-toast__check svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5
}

.cart-toast__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1
}

.cart-toast__count {
  font-size: 12px;
  color: var(--ink-50);
  margin-bottom: 14px
}

.cart-toast__btns {
  display: flex;
  gap: 10px
}

.cart-toast__btn {
  flex: 1;
  padding: 11px 8px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  transition: all .2s
}

.cart-toast__btn--cart {
  background: var(--ink);
  color: var(--white)
}

.cart-toast__btn--cart:hover {
  background: var(--ink-80)
}

.cart-toast__btn--continue {
  background: var(--ink-02);
  color: var(--ink)
}

.cart-toast__btn--continue:hover {
  background: var(--ink-05)
}

.cart-toast__btn--wa {
  background: #25D366;
  color: var(--white);
  flex: 0 0 auto;
  padding: 11px 14px
}

.cart-toast__btn--wa:hover {
  background: #20BD5A
}

.cart-toast__btn--wa svg {
  width: 18px;
  height: 18px;
  vertical-align: middle
}

/* Cart modal mobile improvements */
@media(max-width:600px) {
  .modal-content {
    padding: 20px 16px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    max-height: 90vh;
    overflow-y: auto;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 100%;
    animation: slideUp .3s var(--ease)
  }

  .modal {
    align-items: flex-end
  }

  .cart-actions {
    flex-direction: column
  }

  .cart-actions .hero__btn {
    text-align: center;
    justify-content: center
  }
}

@keyframes slideUp {
  from { transform: translateY(100%) }
  to { transform: translateY(0) }
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0D0D0D 0%, #1A2744 50%, #2D1810 100%)
}

.hero__bg {
  position: absolute;
  inset: 0
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  filter: saturate(.6)
}

.hero__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, .88) 0%, rgba(26, 39, 68, .5) 50%, rgba(184, 92, 56, .08) 100%)
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r-full);
  padding: 7px 16px;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .75);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 26px;
  animation: fadeUp .6s var(--ease) both
}

.hero__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest-light);
  animation: pulse 2s infinite
}

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(42px, 5.8vw, 78px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -.04em;
  animation: fadeUp .7s var(--ease) .08s both
}

.hero__title em {
  font-style: italic;
  color: var(--terra-glow)
}

.hero__desc {
  font-size: 16.5px;
  color: rgba(255, 255, 255, .55);
  max-width: 480px;
  margin-top: 22px;
  line-height: 1.75;
  animation: fadeUp .7s var(--ease) .16s both
}

.hero__support {
  max-width: 520px;
  margin-top: 14px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  animation: fadeUp .7s var(--ease) .2s both
}

.hero__btns {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
  animation: fadeUp .7s var(--ease) .24s both
}

.hero__btn {
  padding: 14px 30px;
  border-radius: var(--r-full);
  font-size: 14.5px;
  font-weight: 700;
  transition: all .3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px
}

.hero__btn svg {
  width: 17px;
  height: 17px;
  stroke-width: 2
}

.hero__btn--pri {
  background: var(--terra);
  color: var(--white)
}

.hero__btn--pri:hover {
  background: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: var(--sh-glow)
}

.hero__btn--gho {
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .18);
  color: var(--white)
}

.hero__btn--gho:hover {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .32)
}

.hero__floats {
  position: absolute;
  bottom: 44px;
  right: 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
  animation: fadeUp .7s var(--ease) .4s both
}

.hero__float {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--r-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  animation: float 5s ease-in-out infinite
}

.hero__float:nth-child(2) {
  animation-delay: 1.5s
}

.hero__float-ic {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.hero__float-ic svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8
}

.hero__float-ic.t {
  background: rgba(184, 92, 56, .2);
  color: var(--terra-glow)
}

.hero__float-ic.g {
  background: rgba(27, 107, 69, .2);
  color: var(--forest-light)
}

.hero__float-txt {
  font-size: 13px;
  font-weight: 600;
  color: var(--white)
}

.hero__float-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, .45)
}

@media(max-width:900px) {
  .hero__floats {
    display: none
  }

  .hero {
    min-height: 78vh
  }
}

/* Categories */
.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -72px;
  position: relative;
  z-index: 10
}

@media(max-width:800px) {
  .cats {
    grid-template-columns: 1fr;
    margin-top: -36px
  }
}

.cat {
  position: relative;
  height: 320px;
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s var(--ease)
}

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

.cat:hover .cat__photo {
  transform: scale(1.05)
}

.cat__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.cat--boutique {
  background: linear-gradient(135deg, #8B5E3C, #D4845C)
}

.cat--hardware {
  background: linear-gradient(135deg, #5C6B3A, #8B7D3C)
}

.cat--finance {
  background: linear-gradient(135deg, #1B6B45, #2D9B65)
}

.cat__ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(13, 13, 13, .82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  z-index: 2
}

.cat__ic {
  width: 46px;
  height: 46px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px
}

.cat__ic svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.7
}

.cat__ic.b {
  background: rgba(184, 92, 56, .22);
  color: var(--terra-glow)
}

.cat__ic.h {
  background: rgba(200, 155, 60, .22);
  color: var(--gold)
}

.cat__ic.f {
  background: rgba(45, 155, 101, .22);
  color: var(--forest-light)
}

.cat__name {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white)
}

.cat__sub {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
  margin-top: 3px
}

.cat__arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: translateX(-6px);
  transition: all .3s var(--ease);
  z-index: 3
}

.cat__arrow svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2
}

.cat:hover .cat__arrow {
  opacity: 1;
  transform: translateX(0)
}

/* Sections */
.sec {
  padding: 90px 0
}

.sec--warm {
  background: var(--warm)
}

.sec--linen {
  background: var(--linen)
}

.sec__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px
}

.sec__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 10px
}

.sec__title {
  font-family: var(--f-display);
  font-size: clamp(30px, 3.8vw, 48px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.03em;
  line-height: 1.1
}

.sec__title em {
  font-style: italic
}

.sec__desc {
  font-size: 15.5px;
  color: var(--ink-50);
  margin-top: 14px;
  line-height: 1.7
}

/* Products */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px
}

.prod {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .04);
  transition: all .3s var(--ease)
}

.prod:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg)
}

.prod__img {
  position: relative;
  height: 290px;
  overflow: hidden;
  background: linear-gradient(135deg, #D4845C, #E8B49A);
  display: flex;
  align-items: center;
  justify-content: center
}

.prod__img--hw {
  background: linear-gradient(135deg, #8C8C8C, #BFBFBF)
}

/* Carousel images: stacked absolutely, crossfade */
.prod__carousel .carousel__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease, transform .5s var(--ease)
}

.prod__carousel .carousel__img.active {
  opacity: 1
}

/* Dot indicators */
.carousel__dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3
}

.carousel__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: background .3s
}

.carousel__dot.active {
  background: #fff
}

/* Fallback for single images (no carousel class) */
.prod__img img:not(.carousel__img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease)
}

.prod:hover .prod__img img {
  transform: scale(1.04)
}

.prod__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 11px;
  border-radius: var(--r-full);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  z-index: 2
}

.prod__badge--new {
  background: var(--terra);
  color: var(--white)
}

.prod__badge--sale {
  background: var(--danger);
  color: var(--white)
}

.prod__badge--hot {
  background: var(--ink);
  color: var(--white)
}

.prod__wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: var(--r-full);
  background: var(--white);
  box-shadow: var(--sh-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-40);
  transition: all .2s;
  cursor: pointer;
  z-index: 2
}

.prod__wish:hover {
  color: var(--danger);
  transform: scale(1.1)
}

.prod__wish svg {
  width: 16px;
  height: 16px;
  stroke-width: 2
}

.prod__info {
  padding: 16px 18px 20px
}

.prod__cat {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--terra);
  margin-bottom: 5px
}

.prod__name {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25
}

.prod__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 7px
}

.prod__now {
  font-size: 16.5px;
  font-weight: 800;
  color: var(--ink)
}

.prod__was {
  font-size: 12.5px;
  color: var(--ink-30);
  text-decoration: line-through
}

.prod__unit {
  font-size: 12px;
  color: var(--ink-40)
}

.prod__btns {
  display: flex;
  gap: 6px;
  margin-top: 13px
}

.prod__btn {
  flex: 1;
  padding: 9px;
  border-radius: var(--r-md);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  transition: all .2s var(--ease);
  cursor: pointer
}

.prod__btn--cart {
  background: var(--ink);
  color: var(--white);
  border: none
}

.prod__btn--cart:hover {
  background: var(--terra);
  transform: translateY(-1px)
}

.prod__btn--view {
  background: var(--ink-02);
  color: var(--ink-60);
  border: 1px solid var(--ink-05)
}

.prod__btn--view:hover {
  border-color: var(--ink-20);
  color: var(--ink)
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--terra);
  margin-top: 36px;
  transition: gap .2s
}

.view-all:hover {
  gap: 10px
}

.view-all svg {
  width: 16px;
  height: 16px;
  stroke-width: 2
}

.no-products {
  text-align: center;
  color: var(--ink-40);
  padding: 40px;
  grid-column: 1/-1
}

.img-label {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em
}

.sec--gallery {
  background: linear-gradient(180deg, var(--warm), rgba(255, 255, 255, .95))
}

.media-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 34px
}

.media-card {
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .05);
  box-shadow: var(--sh-md)
}

.media-card--text-only {
  display: flex;
  min-height: 120px;
  align-items: flex-end
}

.media-card img {
  width: 100%;
  height: 240px;
  object-fit: cover
}

.media-card figcaption {
  padding: 14px 16px;
  color: var(--ink-60);
  font-size: 13px;
  font-weight: 600
}

/* Trust */
.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--sand);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  margin-top: 70px
}

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

@media(max-width:500px) {
  .trust {
    grid-template-columns: 1fr
  }
}

.trust__i {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--sand);
  transition: background .2s
}

.trust__i:last-child {
  border-right: none
}

.trust__i:hover {
  background: var(--warm)
}

.trust__ic {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: var(--terra-pale);
  color: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px
}

.trust__ic svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.8
}

.trust__label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink)
}

.trust__desc {
  font-size: 12px;
  color: var(--ink-40);
  margin-top: 3px
}

/* Loan */
.loan {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: start
}

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

.loan__vis {
  position: relative
}

.loan__img {
  border-radius: var(--r-2xl);
  overflow: hidden;
  height: 480px;
  background: linear-gradient(135deg, #1B6B45, #0F4D30)
}

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

.loan__float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 20px 24px;
  box-shadow: var(--sh-xl);
  display: flex;
  align-items: center;
  gap: 14px
}

@media(max-width:900px) {
  .loan__float {
    right: 16px;
    bottom: -16px
  }
}

.loan__float-ic {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  background: var(--forest-pale);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center
}

.loan__float-ic svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.6
}

.loan__float-val {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink)
}

.loan__float-lbl {
  font-size: 11.5px;
  color: var(--ink-40)
}

.loan__perks {
  list-style: none;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.loan__perk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-60)
}

.loan__chk {
  width: 22px;
  height: 22px;
  border-radius: var(--r-full);
  background: var(--forest-pale);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px
}

.loan__chk svg {
  width: 13px;
  height: 13px;
  stroke-width: 2.5
}

.loan-form {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(0, 0, 0, .04);
  margin-top: 32px
}

.lf__title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px
}

.lf__sub {
  font-size: 12.5px;
  color: var(--ink-40);
  margin-bottom: 24px
}

.lf__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px
}

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

.lf__group {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.lf__group.full {
  grid-column: 1/-1
}

.lf__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-60);
  text-transform: uppercase;
  letter-spacing: .07em
}

.lf__input {
  padding: 11px 14px;
  border: 1.5px solid var(--ink-05);
  border-radius: var(--r-md);
  font-size: 13.5px;
  color: var(--ink);
  background: var(--ink-02);
  transition: all .2s
}

.lf__input::placeholder {
  color: var(--ink-30)
}

.lf__input:focus {
  border-color: var(--forest);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 107, 69, .08);
  outline: none
}

.lf__input:hover {
  border-color: var(--ink-20)
}

select.lf__input {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px
}

.lf__submit {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--forest), var(--forest-deep));
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s var(--ease);
  margin-top: 6px
}

.lf__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(27, 107, 69, .25)
}

.lf__note {
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-30);
  margin-top: 12px
}

/* Testimonials */
.testi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

@media(max-width:800px) {
  .testi {
    grid-template-columns: 1fr
  }
}

.test {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, .04);
  transition: all .3s var(--ease)
}

.test:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-lg)
}

.test__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 15px
}

.test__text {
  font-size: 14.5px;
  color: var(--ink-60);
  line-height: 1.75;
  font-style: italic
}

.test__author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--ink-05)
}

.test__av {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  overflow: hidden;
  flex-shrink: 0
}

.test__av--1 {
  background: linear-gradient(135deg, #D4845C, #E8B49A)
}

.test__av--2 {
  background: linear-gradient(135deg, #6B8CA1, #9ABBE8)
}

.test__av--3 {
  background: linear-gradient(135deg, #C17B8E, #E8B4C3)
}

.test__name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink)
}

.test__role {
  font-size: 11.5px;
  color: var(--ink-40)
}

/* CTA */
.cta {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  padding: 72px 52px;
  text-align: center;
  background: linear-gradient(135deg, #2D1810, #0D0D0D)
}

.cta__bg {
  position: absolute;
  inset: 0
}

.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18
}

.cta__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184, 92, 56, .25), rgba(13, 13, 13, .88))
}

.cta__content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto
}

.cta__title {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.1
}

.cta__desc {
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  margin: 18px 0 28px;
  line-height: 1.7
}

.cta__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap
}

/* Footer */
.footer {
  background: var(--ink);
  padding: 72px 0 0;
  color: var(--white)
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px
}

@media(max-width:800px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px
  }
}

@media(max-width:500px) {
  .footer__grid {
    grid-template-columns: 1fr
  }
}

.footer__brand {
  max-width: 260px
}

.footer__brand-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px
}

.footer__brand-logo {
  width: 140px;
  max-width: 100%;
  height: auto;
  object-fit: contain
}

.footer__brand-mk {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--terra), var(--terra-deep));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--white)
}

.footer__brand-nm {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700
}

.footer__brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.7
}

.footer__col-t {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 16px
}

.footer__link {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
  padding: 4px 0;
  transition: color .2s
}

.footer__link:hover {
  color: var(--terra-glow)
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  margin-top: 44px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.footer__copy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .25)
}

.footer__staff {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: color .2s
}

.footer__staff svg {
  width: 13px;
  height: 13px;
  stroke-width: 2
}

.footer__staff:hover {
  color: var(--terra-glow)
}

/* Cart Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, .55);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px
}

.modal.open {
  display: flex
}

.modal-content {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 32px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: scaleIn .3s var(--ease)
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  background: var(--ink-02);
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center
}

.modal-content h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px
}

.modal-content ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0
}

.modal-content li {
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-05);
  display: flex;
  justify-content: space-between;
  align-items: center
}

.modal-content li button {
  background: var(--danger);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  font-size: 11px
}

.cart-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px
}

.cart-note {
  font-size: 11px;
  color: var(--ink-40);
  text-align: center;
  margin-top: 16px
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  z-index: 99;
  transition: all .3s var(--ease);
  animation: float 3s ease-in-out infinite
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, .5)
}

.whatsapp-float svg {
  width: 32px;
  height: 32px
}

@media(max-width:600px) {
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 54px;
    height: 54px
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px
  }
}
