* {
  box-sizing: border-box;
}

:root {
  --green: #16c35b;
  --green-dark: #0ea64b;
  --dark: #101814;
  --text: #5f6865;
  --muted: #8a9691;
  --light: #f6f8f7;
  --line: #e5eee8;
  --soft-green: #eff8f1;
  --soft-pink: #fff4f8;
  --soft-purple: #f4f0ff;
  --border-green: #c5e0cd;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: var(--dark);
  font-family: 'Inter', Arial, sans-serif;
}

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

a {
  color: inherit;
}

.container {
  width: min(1320px, 92%);
  margin: auto;
}

.narrow {
  max-width: 880px;
}

.center {
  text-align: center;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 238, 232, .9);
}

.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.logo img {
  width: 150px;
  height: auto;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #35423d;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .01em;
  transition: .25s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green);
}

.header-whatsapp {
  text-decoration: none;
  background: var(--green);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(22, 195, 91, .22);
  transition: .25s;
}

.header-whatsapp:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #eef8f1;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--green);
  display: block;
  margin: 5px auto;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: .25s;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 38px rgba(22, 195, 91, .25);
}

.btn-secondary {
  border: 2px solid var(--line);
  color: var(--dark);
  background: #fff;
}

.btn:hover,
.catalog-btn:hover {
  transform: translateY(-2px);
}

/* Home Hero */

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background: linear-gradient(135deg, #edf8f1 0%, #ffffff 42%, #f7fff9 100%);
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 205, 226, .95) 0%, transparent 25%),
    radial-gradient(circle at 92% 82%, rgba(205, 190, 255, .9) 0%, transparent 24%),
    radial-gradient(circle at 12% 15%, rgba(22, 195, 91, .22) 0%, transparent 34%),
    linear-gradient(135deg, #eaf8ef 0%, #ffffff 42%, #f7fff9 100%);
}

.home-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 122, 53, .10) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .55;
}

.home-hero-bg::after {
  content: "";
  position: absolute;
  right: -140px;
  top: 90px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(22, 195, 91, .22), rgba(14, 166, 75, .08));
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

.hero-badge,
.section-label,
.section-head span,
.page-hero span,
.catalog-banner span {
  display: inline-block;
  padding: 11px 22px;
  border-radius: 999px;
  background: #edf8f0;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .03em;
}

.home-hero-content h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(82px, 8vw, 130px);
  line-height: .88;
  letter-spacing: -4px;
  margin: 28px 0 24px;
  font-weight: 600;
  color: #101814;
}

.home-hero-content p {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.9;
  color: #5d6963;
  margin: 0 0 38px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.home-hero-visual {
  position: relative;
  min-height: 620px;
}

.editorial-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.editorial-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
}

.glow-one {
  width: 480px;
  height: 480px;
  background: rgba(22, 195, 91, .18);
}

.glow-two {
  width: 260px;
  height: 260px;
  right: 30px;
  bottom: 70px;
  background: rgba(255, 205, 226, .72);
}

.hero-product {
  position: absolute;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .10);
}

.hero-product.main {
  width: 430px;
  border-radius: 46px;
  padding: 36px;
  left: 50%;
  top: 95px;
  transform: translateX(-50%);
  z-index: 3;
}

.editorial-product {
  box-shadow: 0 40px 90px rgba(15, 122, 53, .18);
}

.hero-product img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.hero-product strong {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-weight: 700;
  letter-spacing: .6px;
}

.editorial-tag {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  padding: 14px 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .07);
  font-weight: 700;
  color: #233129;
}

.tag-top {
  top: 70px;
  left: 30px;
}

.tag-bottom {
  right: 40px;
  bottom: 120px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 44px;
  line-height: 1;
}

/* Home Intro */

.home-intro {
  padding: 95px 0;
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.intro-grid h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(50px, 5vw, 86px);
  line-height: .98;
  letter-spacing: -2px;
  font-weight: 600;
  margin: 24px 0 0;
}

.intro-grid p {
  font-size: 20px;
  line-height: 1.9;
  color: var(--text);
  margin: 0;
}

/* Sections */

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 54px;
}

.section-head.left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.section-head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 5.2vw, 88px);
  line-height: .98;
  margin: 18px 0 14px;
  letter-spacing: -2px;
  font-weight: 600;
}

.section-head p {
  font-size: 18px;
  color: var(--text);
  line-height: 1.7;
}

.home-categories {
  padding: 110px 0;
  background: #f8fbf9;
}

.category-showcase {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 24px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: 38px;
  text-decoration: none;
  color: #101814;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  transition: .35s;
  backdrop-filter: blur(10px);
}

.category-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -70px;
  top: -70px;
  background: rgba(22, 195, 91, .12);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .08);
}

.category-card.large {
  grid-row: span 2;
  background:
    radial-gradient(circle at top right, rgba(22, 195, 91, .18), transparent 34%),
    #fff;
}

.category-card.pink {
  background: var(--soft-pink);
}

.category-card.green {
  background: var(--soft-green);
}

.category-card.purple {
  background: var(--soft-purple);
}

.category-card span {
  font-weight: 700;
  color: var(--green);
  margin-bottom: 18px;
}

.category-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 54px;
  line-height: .95;
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: -1px;
}

.category-card p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}

/* Product Preview */

.home-products-preview {
  padding: 110px 0;
  background: #fff;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 24px;
}

.preview-item {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  border: 1px solid #d8eadf;
  border-radius: 34px;
  padding: 22px;
  text-align: center;
  transition: .35s;
}

.preview-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .08);
}

.preview-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fbfcfb;
  border-radius: 26px;
}

.preview-item strong {
  display: block;
  margin-top: 18px;
  font-weight: 700;
  letter-spacing: .5px;
}

.center-button {
  text-align: center;
  margin-top: 46px;
}

/* Catalog Banner */

.catalog-banner {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

.catalog-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.catalog-banner span {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.catalog-banner h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #fff;
  font-size: clamp(54px, 5.2vw, 86px);
  line-height: .9;
  margin: 18px 0;
  font-weight: 600;
}

.catalog-banner p {
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

.catalog-btn,
.big-pdf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--green);
  min-height: 62px;
  padding: 0 36px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}

/* Inner Page Banner */

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 115px 0 105px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(22, 195, 91, .24) 0%, transparent 28%),
    radial-gradient(circle at 88% 15%, rgba(255, 205, 226, .92) 0%, transparent 25%),
    radial-gradient(circle at 82% 86%, rgba(205, 190, 255, .85) 0%, transparent 24%),
    linear-gradient(135deg, #eaf8ef 0%, #ffffff 46%, #f3fff7 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(22, 195, 91, .24), rgba(22, 195, 91, .06));
  right: -140px;
  top: -120px;
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 42% 58% 48% 52%;
  background: rgba(15, 122, 53, .18);
  left: -80px;
  bottom: -90px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .container::before {
  content: "";
  position: absolute;
  inset: -80px -120px;
  background-image: radial-gradient(rgba(15, 122, 53, .11) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .45;
  z-index: -1;
}

.page-hero span {
  background: #fff;
  color: var(--green);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .06);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(64px, 6.2vw, 110px);
  line-height: .88;
  margin: 26px 0 20px;
  letter-spacing: -3px;
  font-weight: 600;
}

.page-hero p {
  color: var(--text);
  font-size: 20px;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
}

/* Content Pages */

.content-section,
.collection-section,
.contact-section {
  padding: 100px 0;
}

.content-section p {
  color: #45524d;
  font-size: 20px;
  line-height: 1.9;
}

.muted {
  color: var(--muted) !important;
  font-size: 16px !important;
}

/* Collection V2 */

.collection-v2-section {
  padding: 76px 0 110px;
  background: #f5fbf7;
}

.products-header-v2 {
  display: flex;
  align-items: flex-end;
  gap: 28px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}

.products-title-v2 {
  flex: 1;
  min-width: 260px;
}

.products-title-v2 h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(54px, 5.2vw, 88px);
  line-height: .92;
  margin: 18px 0 12px;
  font-weight: 600;
  letter-spacing: -2px;
}

.products-title-v2 p {
  color: var(--text);
  font-size: 18px;
  margin: 0;
}

.products-actions-v2 {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.filters-wrap-v2 {
  background: #fff;
  border: 1.5px solid var(--border-green);
  border-radius: 999px;
  padding: 7px;
  display: flex;
  gap: 4px;
  box-shadow: 0 12px 34px rgba(15, 122, 53, .12);
}

.filter-btn-v2 {
  border: 0;
  background: transparent;
  color: #5a7060;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.filter-btn-v2.active {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 22px rgba(22, 195, 91, .28);
}

.search-wrap-v2 input {
  width: 230px;
  height: 48px;
  border-radius: 999px;
  border: 1.5px solid var(--border-green);
  background: #fff;
  padding: 0 18px;
  outline: none;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
}

.search-wrap-v2 input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 195, 91, .10);
}

.section-heading-v2 {
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 2px solid #d0f0dd;
  padding-bottom: 14px;
  margin-bottom: 22px;
}

.section-heading-v2 h3 {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 22px;
  color: #0f7a35;
  font-weight: 700;
}

.section-heading-v2 div {
  margin-left: auto;
  color: #5a7060;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.product-grid-v2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card-v2 {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  border: 1px solid #d8eadf;
  border-radius: 28px;
  overflow: hidden;
  transition: .35s;
  cursor: pointer;
}

.product-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .08);
  border-color: var(--green);
}

.card-img-wrap-v2 {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 0;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card-img-wrap-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s;
}

.product-card-v2:hover .card-img-wrap-v2 img {
  transform: scale(1.06);
}

.color-badge-v2 {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #0f7a35;
  color: #fff;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.card-body-v2 {
  padding: 16px 18px 18px;
}

.card-code-v2 {
  color: #0f7a35;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  margin-bottom: 5px;
}

.card-color-v2 {
  color: #5a7060;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.color-dots-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 11px;
}

.color-dot-v2 {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, .12);
  cursor: pointer;
  transition: .15s;
}

.color-dot-v2:hover {
  transform: scale(1.25);
}

.color-dot-v2.active-dot {
  box-shadow: 0 0 0 3px var(--green);
}

/* Dot Colors */

.dot-siyah { background: #1a1a1a; }
.dot-beyaz { background: #f2f2f2; }
.dot-pembe { background: #e879a0; }
.dot-mavi { background: #3b82f6; }
.dot-yesil { background: #22c55e; }
.dot-sari { background: #fbbf24; }
.dot-mor { background: #a78bfa; }
.dot-lila { background: #c084fc; }
.dot-kahve { background: #92400e; }
.dot-bej { background: #d4b896; }
.dot-gri { background: #9ca3af; }
.dot-krem { background: #fef3c7; }
.dot-vizon { background: #a8896c; }
.dot-haki { background: #6b7c4d; }
.dot-lacivert { background: #1e3a5f; }
.dot-gumus { background: #cbd5e1; }
.dot-taba { background: #9c6b3c; }
.dot-pudra { background: #fbcfe8; }
.dot-default { background: #e5e7eb; }

.empty-products {
  grid-column: 1 / -1;
  padding: 40px;
  background: #f7faf8;
  border: 1px dashed #bdddc9;
  border-radius: 24px;
  color: var(--text);
}

/* Product Lightbox V2 */

.product-lightbox-v2 {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(5, 20, 10, .86);
  backdrop-filter: blur(8px);
  padding: 28px;
  align-items: center;
  justify-content: center;
}

.product-lightbox-v2.open {
  display: flex;
}

.lb-inner-v2 {
  width: min(1320px, 94vw);
  min-height: min(680px, 86vh);
  background: #fff;
  border-radius: 54px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  position: relative;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .24);
}

.lb-close-v2 {
  position: absolute;
  top: 28px;
  right: 30px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid var(--border-green);
  background: #fff;
  color: #5a7060;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img-side-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 55px;
  background: #fff;
}

.lb-img-side-v2 img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: contain;
}

.lb-info-side-v2 {
  padding: 60px 56px;
  background: #eff8f1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.lb-cat-v2 {
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 700;
  color: #16a34a;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.lb-code-v2 {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .02em;
  color: #122117;
  margin-bottom: 18px;
}

.lb-color-text-v2 {
  font-size: 15px;
  color: #5f6d63;
  margin-bottom: 42px;
  font-weight: 500;
}

.lb-section-label-v2 {
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #5f6d63;
  font-weight: 700;
  margin-bottom: 16px;
}

.lb-colors-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

.lb-color-btn-v2 {
  border: 1.5px solid #bfdcc7;
  background: #fff;
  border-radius: 2rem;
  padding: .32rem .80rem;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: #223229;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 42px;
}

.lb-color-btn-v2:hover {
  transform: translateY(-1px);
}

.lb-color-btn-v2.active {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}

.lb-color-btn-v2 .color-dot-v2 {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .08);
}

.lb-whatsapp-v2 {
  display: none !important;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-card {
  padding: 36px 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
}

.contact-card span {
  color: var(--green);
  font-weight: 700;
}

.contact-card p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text);
}

.contact-card a {
  text-decoration: none;
  font-weight: 700;
  color: var(--dark);
}

/* Footer */

.site-footer {
  background: #101814;
  color: #fff;
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr .8fr;
  gap: 40px;
  align-items: start;
}

.footer-brand img {
  width: 150px;
  background: #fff;
  border-radius: 18px;
  padding: 10px;
}

.footer-brand p,
.footer-contact p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.footer-contact a,
.footer-social a {
  color: #fff;
  text-decoration: none;
}

.footer-social {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-social a {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
}

.footer-bottom {
  margin-top: 50px;
  padding: 22px;
  text-align: center;
  color: rgba(255, 255, 255, .55);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

/* Old Generic Lightbox - hidden conflict fix */

.lightbox {
  display: none;
}

/* Responsive */

@media (max-width: 1100px) {
  .home-hero-inner,
  .intro-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    min-height: 560px;
  }

  .category-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .category-card.large {
    grid-row: auto;
  }

  .preview-grid,
  .product-grid-v2,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .lb-inner-v2 {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .lb-info-side-v2 {
    padding: 36px;
  }
}

@media (max-width: 860px) {
  .header-whatsapp {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 92px;
    left: 4%;
    right: 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  }

  .main-nav.open {
    display: flex;
  }
}

@media (max-width: 760px) {
  .products-header-v2 {
    align-items: stretch;
  }

  .products-actions-v2,
  .filters-wrap-v2 {
    width: 100%;
  }

  .filters-wrap-v2 {
    border-radius: 22px;
    justify-content: center;
  }

  .search-wrap-v2,
  .search-wrap-v2 input {
    width: 100%;
  }

  .product-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .card-body-v2 {
    padding: 12px;
  }

  .lb-inner-v2 {
    border-radius: 28px;
  }

  .lb-img-side-v2 {
    padding: 22px;
  }

  .lb-code-v2 {
    font-size: 24px;
  }

  .lb-color-text-v2 {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .lb-color-btn-v2 {
    font-size: 12px;
    min-height: 40px;
    padding: 0 14px;
  }
}

@media (max-width: 720px) {
  .header-inner {
    height: 78px;
  }

  .logo img {
    width: 125px;
  }

  .home-hero,
  .home-hero-inner {
    min-height: auto;
  }

  .home-hero-inner {
    padding: 58px 0 76px;
  }

  .home-hero-content h1 {
    font-size: 70px;
    letter-spacing: -2px;
  }

  .home-hero-content p,
  .intro-grid p {
    font-size: 18px;
  }

  .home-hero-visual {
    min-height: 420px;
  }

  .hero-product.main {
    width: 260px;
    left: 50%;
    top: 75px;
    transform: translateX(-50%);
    padding: 22px;
    border-radius: 30px;
  }

  .editorial-tag {
    padding: 12px 16px;
    font-size: 12px;
  }

  .tag-top {
    left: 0;
    top: 35px;
  }

  .tag-bottom {
    right: 0;
    bottom: 60px;
    font-size: 32px;
  }

  .category-showcase,
  .preview-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 250px;
  }

  .category-card h3 {
    font-size: 42px;
  }

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

  .page-hero {
    padding: 75px 0 70px;
  }

  .page-hero h1 {
    font-size: 58px;
    letter-spacing: -2px;
  }

  .page-hero p {
    font-size: 18px;
  }
}

@media (max-width: 460px) {
  .product-grid-v2 {
    grid-template-columns: 1fr;
  }
}
/* PREMIUM HERO SLIDER */

.hero-slider{
  position:relative;
  height:88vh;
  min-height:760px;
  overflow:hidden;
  background:#111;
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity 1s ease;

  background-size:cover;
  background-position:center;

  display:flex;
  align-items:center;
}

.hero-slide.active{
  opacity:1;
  visibility:visible;
  z-index:2;
}

.hero-overlay{
  position:absolute;
  inset:0;

  background:
  linear-gradient(
    90deg,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.34) 38%,
    rgba(0,0,0,.10) 100%
  );
}

.hero-content-wrap{
  position:relative;
  z-index:5;
}

.hero-content{
  max-width:720px;
  color:#fff;
}

.hero-content span{
  display:inline-block;

  padding:12px 22px;

  border-radius:999px;

  background:rgba(255,255,255,.12);

  backdrop-filter:blur(10px);

  font-size:13px;
  letter-spacing:.18em;
  font-weight:600;
}

.hero-content h1{
  font-family:'Cormorant Garamond',serif;

  font-size:clamp(78px,8vw,150px);

  line-height:.88;

  letter-spacing:-4px;

  margin:28px 0 26px;

  font-weight:600;
}

.hero-content p{
  font-size:21px;

  line-height:1.9;

}
