@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap");

:root {
  /* Brand palette */
  --forge-black: #1a1a1a;
  --gold: #a67840;
  --warm-gold: #c9a96e;
  --ivory: #f7f5f2;
  --linen: #ede8e0;
  --mist: #d4cec5;
  --white: #ffffff;

  --font-serif: "Crimson Pro", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --page-px: 5.5rem;

  --footer-main: #ffffff;
  --footer-contrast-text: #1a1a1a;
  --section-heading-color: #1a1a1a;
  --typography-font-family: "Figtree", system-ui, sans-serif !important;
}

body {
  font-family: var(--font-body) !important;
}

.sh-shoopy-html-page > div {
  width: 100%;
}
.sh-shoopy-html-page > div > div {
  border: none;
  padding: 0px;
  margin: 0px;
}

.sh-shoopy-html-page > div > div > h1 {
  display: none;
}

.sh-shoopy-html-page {
  margin: 0px !important;
}

.ov-hero__h1 {
  font-size: clamp(40px, 7vw, 84px) !important;
}

.main-header {
  justify-content: center;
}

.beauty-link {
  margin-left: 88px;
}

.shop-all-link {
  display: none !important;
}

.section-3 {
  background-color: #fbf8f1;
  margin-top: -20px;
  padding-top: 20px;
}

.section-4 {
  padding-bottom: 40px;
}

.main-header {
  padding: 0px !important;
}

/* new css */

.products-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.products-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.products-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--section-heading-color);
  letter-spacing: -0.01em;
}

.products-view-all {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forge-black);
  border-bottom: 1px solid var(--forge-black);
  padding-bottom: 1px;
  transition:
    color 0.2s,
    border-color 0.2s;
  margin-bottom: 6px;
}
.products-view-all:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ Scroll Reveal Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
/* .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s var(--ease-expo),
    transform 0.6s var(--ease-expo);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
} */

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: var(--forge-black);
  padding: 0px 0;
}
.announcement-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--page-px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.announcement-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}
.announcement-text strong {
  color: var(--warm-gold);
  font-weight: 600;
}
.announcement-close {
  position: absolute;
  right: var(--page-px);
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.announcement-close:hover {
  color: #fff;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--forge-black);
  overflow: hidden;
  padding: 11px 0;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
}
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 28s linear infinite;
  flex-shrink: 0;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.marquee-item {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0 2rem;
}
.marquee-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ================= CATEGORIES ================= */

.page-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 5.5rem;
}

.cat-section {
  padding: 5rem 0;
}

.cat-section.page-container {
  padding: 5rem 5.5rem;
}

.category-header {
  text-align: center;
  margin-bottom: 3rem;
}

.category-header-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a67840;
  margin-bottom: 8px;
  font-family: "Figtree", sans-serif;
}

.category-header-title {
  font-family: "Crimson Pro", serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.cat-swiper-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.cat-card {
  display: block;
  text-align: center;
  text-decoration: none;
}

.cat-card-img-container {
  overflow: hidden;
  background: #ede8e0;
  margin-bottom: 12px;
}

.cat-card-img-root {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.cat-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cat-card:hover .cat-card-img {
  transform: scale(1.05);
}

.cat-card-title {
  font-family: "Figtree", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: 0.3s;
}

.cat-card:hover .cat-card-title {
  color: #a67840;
}

@media (max-width: 1200px) {
  .cat-swiper-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .page-container {
    padding: 0 1.25rem;
  }

  .cat-section.page-container {
    padding: 4rem 1.25rem;
  }

  .cat-swiper-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

/* --Brand --- */

.brand-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.brand-band-image {
  overflow: hidden;
}

.brand-band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-band:hover .brand-band-image img {
  transform: scale(1.03);
}

.brand-band-content {
  background: #f7f5f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5.5rem 5rem 5rem;
}

.brand-band-eyebrow {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a67840;
  margin-bottom: 1.5rem;
}

.brand-band-quote {
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.35;
  color: #1a1a1a;
  margin-bottom: 2.5rem;
  border: none;
}

.brand-pillars {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}

.brand-pillar {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
  border-left: 2px solid #a67840;
}

.pillar-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1a1a1a;
}

.pillar-desc {
  font-size: 0.75rem;
  color: #888;
}

.banner-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;

  background: #1a1a1a;
  color: white;

  padding: 14px 32px;
  /* margin-top: 2rem; */

  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8125rem;

  text-decoration: none;

  transition: 0.3s;
}

.banner-button:hover {
  background: #a67840;
}

@media (max-width: 1024px) {
  .brand-band {
    grid-template-columns: 1fr;
  }

  .brand-band-image {
    height: 320px;
  }

  .brand-band-content {
    padding: 3.5rem 2rem;
  }

  .brand-pillars {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section {
  padding: 5.5rem 0;
  background: var(--white);
}
.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.reviews-sub {
  font-size: 0.9rem;
  color: #888;
  margin-top: 8px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 0;
}
.review-card {
  background: var(--ivory);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card-dark {
  background: var(--forge-black);
  color: #fff;
}
.review-stars {
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gold);
}
.review-text {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
  color: inherit;
  flex-grow: 1;
}
.review-meta {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1rem;
}
.review-card-dark .review-meta {
  border-color: rgba(255, 255, 255, 0.12);
}
.review-author {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: inherit;
}
.review-product {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 2px;
}

.products-eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.products-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--section-heading-color);
  letter-spacing: -0.01em;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--linen);
  padding: 2.5rem 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.trust-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forge-black);
  margin-bottom: 2px;
}
.trust-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #888;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  :root {
    --page-px: 3rem;
  }
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .cat-swiper-container {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-columns {
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  :root {
    --page-px: 2rem;
  }
  .cust-desktop-footer {
    display: none;
  }
  .cust-mobile-footer {
    display: block;
  }
  .mobile-menu-button {
    display: flex;
  }
  .mobile-logo {
    display: flex;
  }
  .mobile-header-icons {
    display: flex;
    gap: 8px;
  }
  .desktop-nav {
    display: none;
  }
  .utility-bar {
    display: none;
  }

  /* On mobile, main-header shows hamburger + logo + icons */
  .main-header-inner {
    justify-content: space-between;
  }
  .mobile-logo img {
    height: 36px;
  }

  .brand-band {
    grid-template-columns: 1fr;
  }
  .brand-band-image {
    height: 320px;
  }
  .brand-band-content {
    padding: 3.5rem 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .cat-swiper-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-px: 1.25rem;
  }

  .hero-section {
    height: 72vh;
    min-height: 480px;
  }
  .banner-content-inside {
    left: 1.25rem;
    max-width: calc(100% - 2.5rem);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cat-swiper-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .brand-pillars {
    grid-template-columns: 1fr;
  }

  .cust-footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 80vh;
  }
  .banner-title {
    font-size: 2.5rem;
  }

  .cat-swiper-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .cat-card:nth-child(n + 4) {
    display: none;
  }

  .trust-strip-inner {
    grid-template-columns: 1fr;
  }
}
.luxury-header {
  background-color: #ffffff;
}
.nav-link {
  display: block;
  font-size: 12px;
}
/* about us css */

/* HERO MAIN */
.ov-hero__h1 {
  font-family: var(--font-serif) !important;
}

/* SECTION BIG HEADINGS */
.ov-pillars__h,
.ov-sec-h,
.ov-values__h,
.ov-closing__q,
.ov-pullq,
.ov-value__n,
.ov-stat__n {
  font-family: var(--font-serif) !important;
}

/* OPTIONAL */
.ov-pillar__n {
  font-family: var(--font-serif) !important;
}
