/* =========================================================
   RESET
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;

  background: #f1e5d9;

  color: #262616;

  font-family: "Montserrat", sans-serif;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  outline: none;
}

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


/* =========================================================
   ROOT COLORS
========================================================= */

:root {

  --cream: #f1e5d9;
  --cream-light: #f8efe6;
  --cream-dark: #e6d2bd;

  --olive: #3e401c;
  --olive-dark: #282a10;

  --gold: #b9852d;
  --gold-light: #d3a04b;
  --gold-more-light: #f7e0b9;
  --gold-dark: #8e641f;

  --brown: #432518;

  --black: #201e12;

  --header-height: 80px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 1000;

  color: var(--black);

  /* Header background */
  background: rgba(241, 229, 217, 0.97);

  /* Slight blur for premium look */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  /* Subtle separation from page */
  border-bottom: 1px solid rgba(142, 100, 31, 0.15);

  box-shadow:
    0 3px 15px rgba(60, 40, 20, 0.08);
}

.header-inner {

  width: min(100% - 70px, 1030px);

  height: var(--header-height);

  margin: auto;

  display: flex;

  align-items: center;

  justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.brand {

  width: 125px;

  display: flex;

  align-items: center;

  justify-content: flex-start;

  flex-shrink: 0;
}

.brand img {

  display: block;

  width: 100%;

  height: auto;

  object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 57px;

  margin-left: auto;

  margin-right: 65px;
}

.nav-link {

  position: relative;

  padding: 10px 0;

  font-family: "Montserrat", sans-serif;

  font-size: 13px;

  font-weight: 500;

  letter-spacing: 1.4px;

  transition: color 0.3s ease;
}

.nav-link::after {

  content: "";

  position: absolute;

  left: 0;

  bottom: 0;

  width: 0;

  height: 2px;

  background: var(--gold);

  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {

  color: var(--olive);
}

.nav-link:hover::after,
.nav-link.active::after {

  width: 100%;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {

  display: flex;

  align-items: center;

  gap: 22px;
}

.search-button {

  width: 34px;
  height: 34px;

  background: transparent;

  color: var(--black);

  cursor: pointer;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 24px;

  transition:
    transform 0.3s ease,
    color 0.3s ease;
}

.search-button:hover {

  color: var(--gold-dark);

  transform: scale(1.08);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-button {

  display: none;

  width: 31px;
  height: 31px;

  background: transparent;

  cursor: pointer;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 6px;
}

.menu-button span {

  width: 26px;

  height: 2px;

  background: var(--black);

  display: block;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-button.active span:nth-child(1) {

  transform: translateY(8px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {

  opacity: 0;
}

.menu-button.active span:nth-child(3) {

  transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAV
========================================================= */

.mobile-nav {

  display: none;
}


/* =========================================================
   SEARCH OVERLAY
========================================================= */

.search-overlay {

  position: fixed;

  inset: 0;

  z-index: 2000;

  background: rgba(37, 34, 19, 0.35);

  backdrop-filter: blur(8px);

  display: flex;

  align-items: flex-start;

  justify-content: center;

  padding-top: 150px;

  opacity: 0;

  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.search-overlay.active {

  opacity: 1;

  visibility: visible;
}

.search-box {

  width: min(650px, calc(100% - 40px));

  position: relative;
}

.search-input-wrapper {

  width: 100%;

  height: 65px;

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 0 22px;

  background: rgba(250, 241, 232, 0.96);

  border: 1px solid rgba(185, 133, 45, 0.7);

  border-radius: 3px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.search-input-wrapper i {

  color: var(--gold-dark);

  font-size: 20px;
}

.search-input-wrapper input {

  flex: 1;

  border: 0;

  outline: none;

  background: transparent;

  color: var(--black);

  font-size: 16px;
}

.search-close {

  position: absolute;

  top: -55px;

  right: 0;

  width: 35px;
  height: 35px;

  background: transparent;

  color: white;

  font-size: 26px;

  cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {

  position: relative;

  min-height: 810px;

  overflow: hidden;

  background:
    linear-gradient(110deg,
      #f6ede4 0%,
      #f2e4d6 48%,
      #eee0d1 100%);
}


/*
   If banner.webp contains the complete background/product
   scene, this element will display it.

   For the closest result, use a clean background image
   containing the flowers, table, product environment, etc.
*/

.hero-background {

  position: absolute;

  inset: 0;

  background-image: url("../assets/images/banner.webp");

  background-repeat: no-repeat;

  background-position: center center;

  background-size: cover;

  z-index: 0;
}


/* =========================================================
   HERO INNER
========================================================= */

.hero-inner {

  position: relative;

  z-index: 2;

  width: min(100% - 70px, 1030px);

  min-height: 810px;

  margin: auto;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {

  position: absolute;

  left: 0;

  top: 185px;

  width: 570px;

  text-align: center;

  z-index: 5;
}


/* =========================================================
   ORNAMENT
========================================================= */

.title-ornament {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  margin-bottom: 14px;
}

.title-ornament span {

  display: block;

  width: 60px;

  height: 1px;

  background: var(--gold);
}

.ornament-symbol {

  width: 25px;
  height: 25px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--gold);

  font-size: 13px;

  transform: rotate(-12deg);
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {

  color: var(--black);

  font-family: "Cormorant Garamond", serif;

  font-size: 23px;

  font-weight: 600;

  letter-spacing: 7px;

  line-height: 1.2;

  margin-bottom: 4px;
}


/* =========================================================
   SCRIPT HEADING
========================================================= */

.hero-content h1 {

  color: var(--gold);

  font-family: "Allura", cursive;

  font-size: 80px;

  font-weight: 400;

  line-height: 0.9;

  white-space: nowrap;

  margin-left: -15px;

  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4);
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.hero-description {

  margin-top: 25px;

  color: #2a241c;

  font-family: "Cormorant Garamond", serif;

  font-size: 20px;

  font-weight: 600;

  line-height: 1.5;
}

/* =========================================================
   EXPLORE THE COLLECTION IMAGE
========================================================= */

.hero-shop-button {

  width: 100%;

  margin-top: 35px;

  display: flex;

  justify-content: flex-start;

  padding-left: 15px;

}


.hero-shop-button a {

  display: block;

  width: 300px;

  line-height: 0;

  cursor: pointer;

}


.hero-shop-button img {

  display: block;

  width: 100%;

  height: auto;

  max-width: 100%;

  object-fit: contain;

  transition:
    transform 0.25s ease,
    filter 0.25s ease;

}


/* =========================================================
   HOVER EFFECT
========================================================= */

.hero-shop-button a:hover img {

  transform: translateY(-2px);

  filter:
    brightness(1.04) drop-shadow(0 5px 8px rgba(55, 42, 16, 0.18));

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .hero-shop-button {

    margin-top: 24px;

    padding-left: 10px;

    justify-content: flex-start;

  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .hero-shop-button {

    margin-top: 22px;

    padding-left: 5px;

  }


}

/* =========================================================
   PRODUCTS
========================================================= */

.hero-products {

  position: absolute;

  right: -25px;

  bottom: 38px;

  width: 570px;

  height: 570px;

  z-index: 4;
}


/* Individual product */

.product {

  position: absolute;

  display: flex;

  align-items: flex-end;

  justify-content: center;
}

.product img {

  display: block;

  width: 100%;

  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(0 14px 15px rgba(75, 49, 25, 0.12));
}

/* =========================================================
   BEST SELLER BADGE
========================================================= */

.best-seller {

  position: absolute;

  width: 70px;
  height: 70px;

  border-radius: 50%;

  background:
    radial-gradient(circle,
      #f8e7bf 0%,
      #d5a14a 75%,
      #a87524 100%);

  border: 2px solid #f5dfac;

  box-shadow:
    0 3px 8px rgba(70, 44, 12, 0.22);

  z-index: 10;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  color: #4a3312;

  font-family: "Cormorant Garamond", serif;

  font-size: 12px;

  font-weight: 700;

  line-height: 0.9;

  text-align: center;
}

.best-seller span {

  display: block;
}

.best-seller i {

  font-size: 9px;

  margin-top: 5px;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefits {

  position: relative;

  min-height: 214px;

  background: #f5e9dc;

  overflow: hidden;

  z-index: 10;
}


/*
   Wavy upper/lower decorative shape
*/

.benefits::before {

  content: "";

  position: absolute;

  left: -2%;

  top: -23px;

  width: 104%;

  height: 45px;

  background: #f1e5d9;

  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.benefits::after {

  content: "";

  position: absolute;

  left: -2%;

  bottom: -27px;

  width: 104%;

  height: 55px;

  background: #f1e5d9;

  border-radius: 50% 50% 0 0 / 100% 100% 0 0;

  transform: rotate(180deg);
}


.benefits-inner {

  position: relative;

  z-index: 3;

  width: min(100% - 70px, 1030px);

  min-height: 214px;

  margin: auto;

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  align-items: center;
}


/* =========================================================
   BENEFIT ITEM
========================================================= */

.benefit-item {

  min-height: 84px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  position: relative;

  text-align: center;
}

.benefit-item:not(:last-child)::after {

  content: "";

  position: absolute;

  right: 0;

  top: 50%;

  transform: translateY(-50%);

  width: 1px;

  height: 78px;

  background: rgba(126, 91, 35, 0.7);
}


/* =========================================================
   BENEFIT ICON
========================================================= */

.benefit-icon {

  width: 59px;
  height: 59px;

  border: 1px solid var(--gold);

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #76601f;

  font-size: 25px;

  margin-bottom: 12px;

  background: rgba(255, 248, 239, 0.25);
}

.benefit-item p {

  color: #292816;

  font-family: "Montserrat", sans-serif;

  font-size: 11px;

  font-weight: 600;

  line-height: 1.5;

  letter-spacing: 0.4px;
}


/* =========================================================
   DUMMY SECTIONS
========================================================= */

.dummy-section {

  min-height: 400px;

  padding: 100px 30px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #f6ede4;

  color: var(--olive);

  text-align: center;
}

.dummy-section:nth-child(even) {

  background: #ead8c7;
}

.dummy-section h2 {

  font-family: "Cormorant Garamond", serif;

  font-size: 50px;

  letter-spacing: 2px;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1300px) {

  .header-inner,
  .hero-inner,
  .benefits-inner {

    width: min(100% - 100px, 1250px);
  }

  .desktop-nav {

    gap: 65px;

    margin-right: 80px;
  }

  .hero-content {

    left: 40px;

    top: 190px;

    width: 610px;
  }

  .hero-products {

    right: 10px;

    width: 620px;

    height: 610px;
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) and (min-width: 701px) {

  :root {
    --header-height: 105px;
  }

  .header-inner {

    width: calc(100% - 45px);
  }

  .desktop-nav {

    gap: 22px;

    margin-right: 30px;
  }

  .nav-link {

    font-size: 10px;

    letter-spacing: 1px;
  }

  .hero {

    min-height: 750px;
  }

  .hero-inner {

    min-height: 750px;

    width: calc(100% - 45px);
  }

  .hero-content {

    top: 175px;

    left: 0;

    width: 48%;
  }

  .eyebrow {

    font-size: 18px;

    letter-spacing: 5px;
  }

  .hero-content h1 {

    font-size: 90px;

    white-space: normal;
  }

  .hero-description {

    font-size: 17px;
  }

  .hero-products {

    right: -20px;

    bottom: 30px;

    width: 55%;

    height: 500px;
  }

  .benefits-inner {

    width: calc(100% - 35px);
  }

  .benefit-item p {

    font-size: 9px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  :root {
    --header-height: 102px;
  }


  /* ---------------------------------------------
       Header
    --------------------------------------------- */

  .site-header {

    position: fixed;
  }

  .header-inner {

    width: calc(100% - 70px);

    height: 102px;
  }

  .desktop-nav {

    display: none;
  }

  .header-actions {

    gap: 20px;
  }

  .search-button {

    width: 28px;
    height: 28px;

    font-size: 21px;
  }

  .menu-button {

    display: flex;
  }


  /* ---------------------------------------------
       Mobile Nav
    --------------------------------------------- */

  .mobile-nav {

    position: absolute;

    top: 102px;

    left: 20px;
    right: 20px;

    display: flex;

    flex-direction: column;

    background: rgba(247, 237, 227, 0.98);

    border: 1px solid rgba(170, 122, 45, 0.25);

    box-shadow: 0 15px 35px rgba(45, 32, 16, 0.12);

    transform:
      translateY(-15px);

    opacity: 0;

    visibility: hidden;

    transition:
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
  }

  .mobile-nav.active {

    opacity: 1;

    visibility: visible;

    transform:
      translateY(0);
  }

  .mobile-nav a {

    padding: 16px 22px;

    border-bottom: 1px solid rgba(120, 91, 42, 0.12);

    color: #292816;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: 1.8px;
  }

  .mobile-nav a:last-child {

    border-bottom: 0;
  }


  /* ---------------------------------------------
       Hero
    --------------------------------------------- */

  .hero {

    min-height: 820px;

    height: 820px;
  }

  .hero-background {

    background-image: url("../assets/images/banner-mobile.webp");

    background-position: center bottom;

    background-size: cover;
  }

  .hero-inner {

    width: 100%;

    min-height: 820px;

    height: 820px;
  }


  /* ---------------------------------------------
       Hero Content
    --------------------------------------------- */

  .hero-content {

    position: absolute;

    top: 136px;

    left: 20px;

    width: calc(100% - 40px);

    text-align: center;
  }

  .title-ornament {

    margin-bottom: 12px;

    gap: 8px;
  }

  .title-ornament span {

    width: 58px;
  }

  .eyebrow {

    font-size: 17px;

    letter-spacing: 5px;

    margin-bottom: 7px;
  }

  .hero-content h1 {

    font-size: 88px;

    line-height: 0.82;

    white-space: normal;

    margin: 0 auto;

    max-width: 350px;
  }

  .hero-description {

    margin-top: 19px;

    font-size: 15px;

    line-height: 1.45;
  }

  /* ---------------------------------------------
       Mobile Products
    --------------------------------------------- */

  .hero-products {

    position: absolute;

    left: 0;

    right: 0;

    bottom: 23px;

    width: 100%;

    height: 360px;
  }

  /* ---------------------------------------------
       Mobile Badges
    --------------------------------------------- */

  .best-seller {

    width: 58px;
    height: 58px;

    font-size: 9px;
  }

  .best-seller i {

    font-size: 7px;

    margin-top: 3px;
  }

  /* ---------------------------------------------
       Benefits
    --------------------------------------------- */

  .benefits {

    min-height: 205px;
  }

  .benefits-inner {

    width: calc(100% - 35px);

    min-height: 205px;

    padding-top: 23px;

    padding-bottom: 25px;

    display: grid;

    grid-template-columns:
      repeat(6, 1fr);

    grid-template-rows:
      repeat(2, 1fr);

    row-gap: 6px;
  }


  /*
       First row:
       1  2  3
    */

  .benefit-item:nth-child(1) {

    grid-column: 1 / 3;

    grid-row: 1;
  }

  .benefit-item:nth-child(2) {

    grid-column: 3 / 5;

    grid-row: 1;
  }

  .benefit-item:nth-child(3) {

    grid-column: 5 / 7;

    grid-row: 1;
  }


  /*
       Second row:
       4  5
    */

  .benefit-item:nth-child(4) {

    grid-column: 1 / 4;

    grid-row: 2;
  }

  .benefit-item:nth-child(5) {

    grid-column: 4 / 7;

    grid-row: 2;
  }

  .benefit-item:not(:last-child)::after {

    height: 55px;
  }

  /*
       Hide vertical separator after third
       because the second row starts below.
    */

  .benefit-item:nth-child(3)::after {

    display: none;
  }

  .benefit-item:nth-child(4)::after {

    display: none;
  }

  .benefit-icon {

    width: 45px;
    height: 45px;

    font-size: 19px;

    margin-bottom: 7px;
  }

  .benefit-item p {

    font-size: 8.5px;

    line-height: 1.35;

    letter-spacing: 0.15px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .header-inner {

    width: calc(100% - 42px);
  }

  .hero-content {

    top: 132px;
  }

  .hero-content h1 {

    font-size: 76px;
  }

  .eyebrow {

    font-size: 15px;

    letter-spacing: 4px;
  }

  .hero-description {

    font-size: 14px;
  }

  .hero-products {

    height: 335px;
  }

  .benefits-inner {

    width: calc(100% - 20px);
  }

  .benefit-icon {

    width: 41px;
    height: 41px;

    font-size: 17px;
  }

  .benefit-item p {

    font-size: 7.5px;
  }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {

    scroll-behavior: auto !important;

    transition-duration: 0.01ms !important;

    animation-duration: 0.01ms !important;

    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   SHOP BY CATEGORY + PRODUCTS
========================================================= */

.products-section {

  position: relative;

  background:
    linear-gradient(180deg,
      #f7ecdf 0%,
      #f5e8da 100%);

  overflow: hidden;

  color: var(--black);

}


/* =========================================================
   CATEGORY SECTION
========================================================= */

.category-section {

  position: relative;

  padding:
    70px 40px 65px;

  background:
    linear-gradient(180deg,
      #f4e5d5 0%,
      #f5e7d9 100%);

}


/* Decorative leaves */

.category-section::before {

  content: "";

  position: absolute;

  top: -15px;
  left: -15px;

  width: 220px;
  height: 180px;

  background:
    url("../assets/images/decorative-leaves-left.png") no-repeat center / contain;

  opacity: 0.85;

  pointer-events: none;

}


.category-section::after {

  content: "";

  position: absolute;

  top: -15px;
  right: -15px;

  width: 220px;
  height: 180px;

  background:
    url("../assets/images/decorative-leaves-right.png") no-repeat center / contain;

  opacity: 0.85;

  pointer-events: none;

}


/* =========================================================
   PRODUCTS HEADING
========================================================= */

.products-heading {

  position: relative;

  z-index: 2;

  text-align: center;

  margin-bottom: 38px;

}


.heading-ornament {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  margin-bottom: 4px;

}


.heading-ornament span {

  display: block;

  width: 66px;

  height: 1px;

  background:
    var(--gold);

}


.heading-symbol {

  width: 28px;

  height: 28px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: var(--gold);

  font-size: 17px;

}


.heading-small {

  color: var(--black);

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 19px;

  font-weight: 600;

  letter-spacing: 5px;

  line-height: 1;

  margin-top: 2px;

}


.products-heading h2 {

  color:
    var(--gold);

  font-family:
    "Allura",
    cursive;

  font-size:
    clamp(72px,
      7vw,
      105px);

  font-weight: 400;

  line-height: 0.82;

  margin-top: 2px;

}


.heading-description {

  margin-top: 18px;

  color:
    #342b20;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 20px;

  font-weight: 500;

}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {

  position: relative;

  z-index: 3;

  width:
    min(100%,
      1100px);

  margin:
    0 auto;

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap: 30px;

}


/* =========================================================
   CATEGORY CARD
========================================================= */

.category-card {

  border: 0;

  outline: 0;

  background:
    transparent;

  cursor: pointer;

  text-align: center;

  color: var(--black);

  transition:
    transform 0.3s ease;

}


.category-card:hover {

  transform:
    translateY(-7px);

}


/* =========================================================
   CATEGORY IMAGE
========================================================= */

.category-image-wrapper {

  width: 100%;

  aspect-ratio: 1 / 1;

  border:
    2px solid var(--gold);

  border-radius: 50%;

  overflow: hidden;

  background:
    #eee0cf;

  box-shadow:
    0 3px 10px rgba(74,
      48,
      20,
      0.08);

}


.category-image-wrapper img {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.45s ease;

}


.category-card:hover .category-image-wrapper img {

  transform:
    scale(1.06);

}


/* =========================================================
   CATEGORY NAME
========================================================= */

.category-card h3 {

  margin-top: 18px;

  color:
    #292415;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 17px;

  font-weight: 600;

  letter-spacing: 4px;

}


/* =========================================================
   CATEGORY ORNAMENT
========================================================= */

.category-ornament {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 7px;

  margin-top: 7px;

}


.category-ornament span {

  width: 35px;

  height: 1px;

  background:
    var(--gold);

}


.category-ornament i {

  color:
    var(--gold);

  font-size: 14px;

}


/* =========================================================
   OUR PRODUCTS SECTION
========================================================= */

.our-products-section {

  position: relative;

  padding:
    55px 40px 80px;

  background: var(--gold-more-light);

}

/* =========================================================
   PRODUCT SEARCH
========================================================= */

.product-search-wrapper {

  position: relative;

  z-index: 5;

  width: min(100%, 600px);

  margin: 0 auto 30px;

}


.product-search-box {

  position: relative;

  width: 100%;

  height: 52px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 0 16px;

  background: rgba(255, 248, 239, 0.82);

  border: 1px solid rgba(166, 121, 61, 0.55);

  border-radius: 28px;

  box-shadow:
    0 5px 18px rgba(76, 49, 24, 0.08);

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;

}


.product-search-box:focus-within {

  border-color: var(--gold);

  box-shadow:
    0 6px 22px rgba(76, 49, 24, 0.13);

}


.product-search-box>i {

  flex-shrink: 0;

  color: var(--gold-dark);

  font-size: 17px;

}


.product-search-box input {

  flex: 1;

  min-width: 0;

  height: 100%;

  border: 0;

  outline: 0;

  background: transparent;

  color: var(--black);

  font-family: "Montserrat", sans-serif;

  font-size: 14px;

}


.product-search-box input::placeholder {

  color: #8a7968;

}

/* =========================================================
   CUSTOM SEARCH CLEAR BUTTON
========================================================= */

.clear-product-search {

  width: 30px;
  height: 30px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;

  background: var(--gold);
  color: #fff;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

/* Show when there is text */
.clear-product-search.visible {

  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* X icon */
.clear-product-search i {

  font-size: 14px;
  line-height: 1;
}

/* Hover */
.clear-product-search:hover {

  background: var(--gold-dark);
  transform: scale(1.05);
}


.clear-product-search.visible {

  opacity: 1;

  visibility: visible;

  pointer-events: auto;

}


.clear-product-search:hover {

  background: var(--gold);

  color: #fff;

}

/* =========================================================
   HIDE BROWSER NATIVE SEARCH CLEAR BUTTON
========================================================= */

/* Chrome / Edge / Safari */
.product-search-box input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

/* Firefox */
.product-search-box input[type="search"] {
  appearance: none;
  -moz-appearance: textfield;
}

/* =========================================================
   SEARCH RESULT MESSAGE
========================================================= */

.product-search-result {

  width: 100%;

  margin: -8px auto 22px;

  text-align: center;

  color: #655547;

  font-family: "Cormorant Garamond", serif;

  font-size: 17px;

  font-weight: 500;

}


/* =========================================================
   MOBILE PRODUCT SEARCH
========================================================= */

@media (max-width: 700px) {

  .product-search-wrapper {

    width: 100%;

    margin-bottom: 25px;

  }


  .product-search-box {

    height: 48px;

    padding: 0 14px;

  }


  .product-search-box input {

    font-size: 13px;

  }


  .product-search-box>i {

    font-size: 15px;

  }

}


@media (max-width: 380px) {

  .product-search-box {

    height: 45px;

  }


  .product-search-box input {

    font-size: 12px;

  }

}

/* =========================================================
   PRODUCTS GRID
========================================================= */

.products-grid {

  width:
    min(100%,
      1120px);

  margin:
    15px auto 0;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 16px;

}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {

  position: relative;

  display: flex;
  flex-direction: column;

  min-width: 0;

  background:
    rgba(255,
      248,
      239,
      0.75);

  border:
    1.5px solid rgba(166,
      121,
      61,
      0.45);

  border-radius: 12px;

  padding: 6px;

  box-shadow:
    0 3px 12px rgba(76,
      49,
      24,
      0.07);

  overflow: hidden;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;

}


.product-card:hover {

  transform:
    translateY(-5px);

  box-shadow:
    0 12px 25px rgba(76,
      49,
      24,
      0.13);

}


/* =========================================================
   PRODUCT IMAGE AREA
========================================================= */

.product-image-area {

  position: relative;

  width: 100%;

  aspect-ratio: 1 / 0.9;

  overflow: hidden;

  border-radius: 8px;

  background:
    #eee0cf;

}


.product-image {

  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.4s ease;

}


.product-card:hover .product-image {

  transform:
    scale(1.035);

}


/* =========================================================
   BEST SELLER
========================================================= */

.product-bestseller {

  position: absolute;

  top: 0;

  left: 10px;

  z-index: 5;

  width: 48px;

  min-height: 64px;

  padding:
    7px 4px 6px;

  background:
    linear-gradient(180deg,
      #e6bd65,
      #c89231);

  color:
    #33230d;

  text-align: center;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 10px;

  font-weight: 700;

  line-height: 0.95;

  clip-path:
    polygon(0 0,
      100% 0,
      100% 100%,
      50% 88%,
      0 100%);

}


.product-bestseller span {

  display: block;

}


.product-bestseller i {

  display: block;

  margin-top: 5px;

  font-size: 10px;

}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 8px 9px 10px;
}


/* =========================================================
   PRODUCT CATEGORY
========================================================= */

.product-category {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 5px;

  padding:
    3px 12px;

  background:
    #eee2d1;

  border-radius:
    20px;

  color:
    #34351d;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 11px;

  font-weight: 600;

}


.product-category i {

  color:
    #596029;

  font-size: 10px;

}


/* =========================================================
   PRODUCT NAME
========================================================= */

.product-name {

  margin-top: 7px;

  color:
    #211d15;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 18px;

  font-weight: 600;

  line-height: 1.1;

}

/* =========================================================
   PRODUCT CAPTION
========================================================= */

.product-caption {
  margin-top: 5px;
  margin-bottom: 7px;

  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.8px;
  text-transform: uppercase;

  color: var(--gold-dark);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.product-description {

  min-height: 42px;

  margin-top: 4px;

  color:
    #3b332a;

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 14px;

  font-weight: 500;

  line-height: 1.2;

}


/* =========================================================
   RATING
========================================================= */

.product-rating {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 5px;

  margin-top: 5px;

}


.stars {

  display: flex;

  gap: 2px;

  color:
    #d28b12;

  font-size: 13px;

}


.review-count {

  color:
    #3c342a;

  font-family: "Montserrat", sans-serif;

  font-size: 12px;

}

/* =========================================================
   SIZE
========================================================= */

.product-size-label {
  flex-shrink: 0;

  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;

  color: var(--text-dark);
}

.product-size {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;

  width: 100%;

  margin-top: 10px;
  margin-bottom: 12px;

  position: static;
}

.product-size-select {
  width: auto;
  min-width: 85px;
  height: 36px;

  padding: 5px 8px;

  font-family: inherit;
  font-size: 13px;
  font-weight: 500;

  border: 1px solid var(--border-color);
  border-radius: 5px;

  background: #fff;
  color: var(--text-dark);

  cursor: pointer;

  /* Important for iPhone / iOS */
  position: static;
  transform: none;
  appearance: auto;
  -webkit-appearance: menulist;
}

/* =========================================================
   PRICE
========================================================= */

.product-price {

  margin-top: 3px;

  color:
    #15140e;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 19px;

  font-weight: 700;

}


/* =========================================================
   ADD TO CART BUTTON
========================================================= */

.add-cart-button {

  position: relative;

  width: 100%;

  height: 46px;

  margin-top: auto;

  border: 0;

  outline: 0;

  cursor: pointer;

  border-radius: 24px;

  background:
    linear-gradient(180deg,
      #4b4c1c 0%,
      #363812 100%);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  font-family:
    "Montserrat",
    sans-serif;

  font-size: 13px;

  font-weight: 600;

  letter-spacing: 0.8px;

  box-shadow:
    inset 0 1px 0 rgba(255,
      255,
      255,
      0.2),
    0 3px 7px rgba(60,
      44,
      15,
      0.18);

  transition:
    transform 0.25s ease,
    filter 0.25s ease;

}

.add-cart-button:hover {

  filter:
    brightness(1.08);

  transform:
    translateY(-2px);

}


.add-cart-button i {

  font-size: 15px;

}


.add-cart-button.added {

  background:
    linear-gradient(180deg,
      #62652a,
      #454819);

}


/* =========================================================
   NO PRODUCTS
========================================================= */

.no-products {

  grid-column:
    1 / -1;

  min-height: 250px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  color:
    var(--gold);

}


.no-products i {

  font-size: 35px;

  margin-bottom: 12px;

}


.no-products p {

  font-family:
    "Cormorant Garamond",
    serif;

  font-size: 20px;

}


/* =========================================================
   IMAGE ERROR
========================================================= */

.image-error {

  opacity: 0.3;

}


/* =========================================================
   TABLET
   3 PRODUCTS
========================================================= */

@media (max-width: 1050px) and (min-width: 701px) {

  .category-section {

    padding:
      60px 25px 55px;

  }


  .category-grid {

    grid-template-columns:
      repeat(5, 1fr);

    gap: 15px;

  }


  .category-card h3 {

    font-size: 14px;

    letter-spacing: 2.5px;

  }


  .products-grid {

    grid-template-columns:
      repeat(3, 1fr);

    gap: 14px;

  }


  .our-products-section {

    padding:
      50px 25px 70px;

  }


  .product-name {

    font-size: 17px;

  }


  .product-description {

    font-size: 13px;

  }

}


/* =========================================================
   MOBILE
   2 PRODUCTS
========================================================= */

@media (max-width: 700px) {

  .category-section {

    padding:
      55px 18px 50px;

  }


  .category-section::before,
  .category-section::after {

    width: 130px;

    height: 120px;

  }


  .products-heading {

    margin-bottom: 28px;

  }


  .heading-ornament span {

    width: 48px;

  }


  .heading-small {

    font-size: 15px;

    letter-spacing: 4px;

  }


  .products-heading h2 {

    font-size: 70px;

  }


  .heading-description {

    margin-top: 13px;

    font-size: 17px;

  }


  /* ---------------------------------------------
     Category
  --------------------------------------------- */

  .category-grid {

    width: 100%;

    display: grid;

    grid-template-columns:
      repeat(2, 1fr);

    gap:
      28px 20px;

  }


  .category-card:nth-child(5) {

    grid-column:
      1 / -1;

    width:
      calc(50% - 10px);

    margin:
      0 auto;

  }


  .category-card h3 {

    margin-top: 12px;

    font-size: 13px;

    letter-spacing: 2.5px;

  }


  .category-ornament span {

    width: 27px;

  }


  /* ---------------------------------------------
     Products
  --------------------------------------------- */

  .our-products-section {

    padding:
      45px 12px 65px;

  }


  .products-grid {

    width: 100%;

    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    gap: 10px;

  }


  .product-card {

    padding: 4px;

    border-radius: 9px;

  }


  .product-info {

    padding:
      7px 4px 7px;

  }


  .product-category {

    padding:
      3px 7px;

    font-size: 9px;

  }


  .product-name {

    font-size: 15px;

    line-height: 1.05;

  }


  .product-description {

    min-height: 45px;

    font-size: 11px;

    line-height: 1.15;

  }


  .stars {

    font-size: 10px;

  }


  .review-count {

    font-size: 9px;

  }


  .product-price {

    font-size: 16px;

  }


  .add-cart-button {

    height: 38px;

    margin-top: auto;

    gap: 5px;

    font-size: 9px;

    letter-spacing: 0.3px;

  }


  .add-cart-button i {

    font-size: 11px;

  }


  .product-bestseller {

    width: 39px;

    min-height: 52px;

    left: 6px;

    font-size: 8px;

  }


  .product-bestseller i {

    font-size: 8px;

  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

  .category-grid {

    gap:
      22px 12px;

  }


  .category-card h3 {

    font-size: 11px;

    letter-spacing: 1.8px;

  }


  .products-grid {

    gap: 7px;

  }


  .product-name {

    font-size: 13px;

  }


  .product-description {

    font-size: 10px;

  }


  .product-price {

    font-size: 14px;

  }


  .add-cart-button {

    font-size: 8px;

    height: 35px;

  }

}

/* =========================================================
   CART COUNT
========================================================= */

.cart-nav-link {
  position: relative;
}


/* Cart badge */

.cart-count {
  position: absolute;

  top: -8px;
  right: -17px;

  min-width: 18px;
  height: 18px;

  padding: 0 5px;

  display: none;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: var(--gold);
  color: #fff;

  font-family: "Montserrat", sans-serif;

  font-size: 9px;
  font-weight: 700;

  line-height: 1;

  box-shadow:
    0 2px 5px rgba(70, 45, 15, 0.18);

  z-index: 5;
}


/* When cart has items */

.cart-count.has-items {
  display: flex;
}


/* Bigger numbers */

.cart-count.large {
  border-radius: 10px;
  min-width: 21px;
}


/* =========================================================
   MOBILE CART COUNT
========================================================= */

@media (max-width: 700px) {

  .mobile-nav .cart-nav-link {
    display: flex;
    align-items: center;
    position: relative;
  }

  .mobile-nav .cart-count {
    position: static;

    margin-left: 8px;

    min-width: 18px;
    height: 18px;

    font-size: 9px;
  }

}

/* =========================================================
   ABOUT US SECTION
   Natural Beauty / Luxury Botanical Theme
========================================================= */

.about-section {
  position: relative;
  width: 100%;
  max-width: 1450px;
  margin: 0 auto;
  padding: 80px 60px 100px;
  overflow: hidden;

  background:
    linear-gradient(180deg,
      #f8eee0 0%,
      #fffaf3 48%,
      #f5e8d5 100%);

  color: #3f2d1d;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.about-heading {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 2;
}


.about-heading-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 12px;
}


.about-heading-decoration span {
  width: 65px;
  height: 1px;
  background: #b77718;
}


.about-heading-decoration i {
  color: #b77718;
  font-size: 19px;
}


.about-subtitle {
  margin: 0 0 6px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 15px;
  font-weight: 600;

  letter-spacing: 4px;

  color: #303b18;
}

.about-heading h2 {

  color:
    var(--gold);

  font-family:
    "Allura",
    cursive;

  font-size:
    clamp(72px,
      7vw,
      105px);

  font-weight: 400;

  line-height: 0.82;

  margin-top: 2px;

}


.about-heading h2 span {
  font-family: "Great Vibes", cursive;

  font-size: 1.15em;

  font-weight: 400;

  color: #b77718;
}


.about-tagline {
  margin-top: 18px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 20px;

  color: #66513d;
}


/* =========================================================
   ABOUT CONTENT
========================================================= */

.about-content {
  position: relative;
  z-index: 2;

  max-width: 1180px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(350px, 0.9fr) minmax(400px, 1.1fr);

  gap: 85px;

  align-items: center;
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.about-image {
  position: relative;
  padding: 15px;
}


.about-image-frame {
  position: relative;

  padding: 10px;

  background: rgba(255, 250, 243, 0.8);

  border: 1px solid rgba(183, 119, 24, 0.45);

  box-shadow:
    0 12px 35px rgba(75, 50, 20, 0.12);

  transform: rotate(-1.5deg);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}


.about-image-frame:hover {
  transform: rotate(0deg) translateY(-5px);

  box-shadow:
    0 20px 45px rgba(75, 50, 20, 0.18);
}


.about-image-frame::before {
  content: "";

  position: absolute;

  inset: 5px;

  border: 1px solid rgba(183, 119, 24, 0.25);

  pointer-events: none;

  z-index: 2;
}


.about-image-frame img {
  display: block;

  width: 100%;

  height: 480px;

  object-fit: cover;
}


/* =========================================================
   2017 BADGE
========================================================= */

.about-year-badge {
  position: absolute;

  right: -35px;
  bottom: 35px;

  width: 120px;
  height: 120px;

  border-radius: 50%;

  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  text-align: center;

  background: #303b18;

  color: #fffaf3;

  border: 4px solid #f8eee0;

  outline: 1px solid #b77718;

  box-shadow:
    0 10px 25px rgba(40, 45, 20, 0.2);

  z-index: 5;
}


.about-year-badge span {
  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 15px;

  letter-spacing: 2px;
}


.about-year-badge strong {
  font-family: "Great Vibes", cursive;

  font-size: 30px;

  line-height: 1;

  color: #e4aa4e;
}


/* =========================================================
   ABOUT INFORMATION
========================================================= */

.about-info {
  padding: 20px 0;
}


.about-small-title {
  margin-bottom: 8px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 17px;

  font-weight: 600;

  letter-spacing: 3px;

  color: #b77718;
}


.about-info h3 {
  margin: 0 0 18px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: clamp(40px, 4vw, 58px);

  line-height: 1;

  font-weight: 500;

  color: #3f2d1d;
}


.about-info h3 span {
  font-family:
    "Allura",
    cursive;

  font-size: 1.15em;

  font-weight: 400;

  color: #b77718;
}


/* =========================================================
   GOLD DIVIDER
========================================================= */

.about-divider {
  display: flex;

  align-items: center;

  gap: 12px;

  margin: 20px 0 25px;
}


.about-divider span {
  width: 45px;
  height: 1px;

  background: #b77718;
}


.about-divider i {
  font-size: 14px;

  color: #b77718;
}


/* =========================================================
   ABOUT PARAGRAPHS
========================================================= */

.about-info>p:not(.about-small-title) {
  margin-bottom: 18px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 19px;

  line-height: 1.55;

  color: #66513d;
}


/* =========================================================
   ABOUT HIGHLIGHTS
========================================================= */

.about-highlights {
  display: flex;

  align-items: center;

  gap: 35px;

  margin-top: 30px;

  padding-top: 25px;

  border-top:
    1px solid rgba(183, 119, 24, 0.25);
}


.about-highlight {
  display: flex;

  align-items: center;

  gap: 12px;
}


.highlight-icon {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #303b18;

  color: #e4aa4e;

  font-size: 18px;
}


.about-highlight div:last-child {
  display: flex;

  flex-direction: column;
}


.about-highlight strong {
  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 18px;

  color: #3f2d1d;
}


.about-highlight small {
  margin-top: 2px;

  font-family: "Poppins", sans-serif;

  font-size: 11px;

  color: #66513d;
}


/* =========================================================
   FOLLOW US SECTION
========================================================= */

.about-follow {
  position: relative;

  z-index: 2;

  max-width: 1100px;

  margin: 125px auto 0;

  padding-top: 70px;

  border-top:
    1px solid rgba(183, 119, 24, 0.25);
    
}


.about-follow-heading {
  text-align: center;

  margin-bottom: 45px;
}


.about-follow-heading h3 {
  color:
    var(--gold);

  font-family:
    "Allura",
    cursive;

  font-size:
    clamp(72px,
      7vw,
      105px);

  font-weight: 400;

  line-height: 0.82;

  margin-top: 2px;
}


.about-follow-heading h3 span {
  font-family: "Great Vibes", cursive;

  font-size: 1.15em;

  font-weight: 400;

  color: #b77718;
}


.about-follow-heading>p:last-child {
  margin-top: 12px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 18px;

  color: #66513d;
}


/* =========================================================
   SOCIAL MEDIA GRID
========================================================= */

.about-social-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 18px;
}


.about-social-card {
  min-height: 95px;

  display: flex;

  align-items: center;

  gap: 15px;

  padding: 18px;

  text-decoration: none;

  background:
    var(--gold-more-light);

  border:
    1px solid rgba(183, 119, 24, 0.3);

  color: #3f2d1d;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}


.about-social-card:hover {
  transform: translateY(-6px);

  background: #fffaf3;

  box-shadow:
    0 12px 30px rgba(75, 50, 20, 0.12);
}


.about-social-icon {
  width: 50px;
  height: 50px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #303b18;

  color: #e4aa4e;

  font-size: 20px;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}


.about-social-card:hover .about-social-icon {
  background: #b77718;

  color: #ffffff;
}


.about-social-info {
  min-width: 0;

  display: flex;

  flex-direction: column;
}


.about-social-info strong {
  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 19px;

  font-weight: 600;
}


.about-social-info small {
  margin-top: 2px;

  font-family: "Poppins", sans-serif;

  font-size: 10px;

  color: #66513d;

  white-space: nowrap;
}


.about-social-card>.fa-arrow-right {
  margin-left: auto;

  flex-shrink: 0;

  color: #b77718;

  font-size: 13px;
}


/* =========================================================
   STATISTICS SECTION
========================================================= */

.about-statistics {
  position: relative;

  z-index: 2;

  max-width: 1100px;

  margin: 120px auto 0;

  padding-top: 70px;

  border-top:
    1px solid rgba(183, 119, 24, 0.25);
}


.about-stat-heading {
  text-align: center;

  margin-bottom: 50px;
}


.about-stat-heading h3 {
  color:
    var(--gold);

  font-family:
    "Allura",
    cursive;

  font-size:
    clamp(72px,
      7vw,
      105px);

  font-weight: 400;

  line-height: 0.82;

  margin-top: 2px;
}


.about-stat-heading h3 span {
  font-family: "Great Vibes", cursive;

  font-size: 1.15em;

  color: #b77718;
}


/* =========================================================
   STATISTICS GRID
========================================================= */

.about-stat-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 25px;
}


/* =========================================================
   STAT CARD
========================================================= */

.about-stat-card {
  position: relative;

  text-align: center;

  padding: 38px 20px;

  overflow: hidden;

  background:
    linear-gradient(145deg,
      rgba(255, 250, 243, 0.95),
      rgba(239, 224, 202, 0.65));

  border:
    1px solid rgba(183, 119, 24, 0.35);

  box-shadow:
    0 8px 25px rgba(75, 50, 20, 0.08);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.about-stat-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  width: 60px;
  height: 2px;

  transform: translateX(-50%);

  background: #b77718;
}


.about-stat-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 15px 35px rgba(75, 50, 20, 0.13);
}


/* =========================================================
   STAT ICON
========================================================= */

.about-stat-icon {
  width: 65px;
  height: 65px;

  margin: 0 auto 18px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #303b18;

  color: #e4aa4e;

  font-size: 25px;
}


/* =========================================================
   COUNTER NUMBER
========================================================= */

.about-stat-number {
  display: flex;

  align-items: baseline;

  justify-content: center;

  color: #b77718;

  font-family: "Great Vibes", cursive;

  font-size: 35px;

  font-weight: 600;

  line-height: 1;
}


.about-stat-number b {
  font-size: 35px;

  font-weight: 600;
}


.about-stat-card h4 {
  margin-top: 12px;

  font-family: "Cormorant Garamond", Georgia, serif;

  font-size: 22px;

  font-weight: 600;

  color: #3f2d1d;
}


.about-stat-card p {
  margin-top: 5px;

  font-family: "Poppins", sans-serif;

  font-size: 12px;

  color: #66513d;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 1000px) {

  .about-section {
    padding: 70px 35px 80px;
  }


  .about-content {
    grid-template-columns:
      minmax(300px, 0.9fr) minmax(350px, 1.1fr);

    gap: 55px;
  }


  .about-image-frame img {
    height: 420px;
  }


  .about-social-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .about-stat-grid {
    gap: 15px;
  }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 700px) {

  .about-section {
    padding: 55px 20px 65px;
  }


  .about-heading {
    margin-bottom: 45px;
  }


  .about-heading-decoration span {
    width: 45px;
  }


  .about-heading h2 {
    font-size: 56px;
  }


  .about-tagline {
    font-size: 17px;
  }


  /* ABOUT CONTENT */

  .about-content {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .about-image {
    width: 90%;

    max-width: 520px;

    margin: 0 auto;
  }


  .about-image-frame img {
    height: 400px;
  }


  .about-year-badge {
    right: -15px;

    bottom: 25px;

    width: 100px;
    height: 100px;
  }


  .about-year-badge strong {
    font-size: 29px;
  }


  .about-info {
    padding: 0 5px;
  }


  .about-info h3 {
    font-size: 44px;
  }


  .about-info>p:not(.about-small-title) {
    font-size: 17px;
  }


  .about-highlights {
    flex-direction: column;

    align-items: flex-start;

    gap: 18px;
  }


  /* FOLLOW */

  .about-follow {
    margin-top: 85px;

    padding-top: 55px;
  }


  .about-social-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .about-social-card {
    min-height: 82px;
  }


  /* STATISTICS */

  .about-statistics {
    margin-top: 85px;

    padding-top: 55px;
  }


  .about-stat-grid {
    grid-template-columns: 1fr;

    gap: 15px;

    max-width: 420px;

    margin: 0 auto;
  }


  .about-stat-card {
    padding: 30px 15px;
  }


  .about-stat-number {
    font-size: 48px;
  }

}


/* =========================================================
   RESPONSIVE - SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .about-section {
    padding-left: 14px;
    padding-right: 14px;
  }


  .about-heading h2 {
    font-size: 48px;
  }


  .about-subtitle {
    font-size: 12px;

    letter-spacing: 3px;
  }


  .about-tagline {
    font-size: 15px;
  }


  .about-image-frame img {
    height: 330px;
  }


  .about-year-badge {
    width: 85px;
    height: 85px;

    right: -10px;
  }


  .about-year-badge span {
    font-size: 12px;
  }


  .about-year-badge strong {
    font-size: 24px;
  }


  .about-info h3 {
    font-size: 39px;
  }


  .about-info>p:not(.about-small-title) {
    font-size: 16px;
  }


  .about-follow-heading h3,
  .about-stat-heading h3 {
    font-size: 45px;
  }


  .about-stat-number {
    font-size: 43px;
  }

}

/*==================================================
FLOATING BUTTONS
==================================================*/

.floating-buttons {

  position: fixed;

  right: 25px;

  bottom: 25px;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 18px;

  z-index: 99999;

}

/*=========================================
MOVE TOP
=========================================*/

.scroll-top {

  width: 58px;

  height: 58px;

  border: none;

  border-radius: 50%;

  background: #310611;

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  font-size: 20px;

  cursor: pointer;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);

  transition: .35s;

  opacity: 0;

  visibility: hidden;

  transform: translateY(15px);

}

.scroll-top.show {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}

.scroll-top:hover {

  transform: translateY(-6px);

  background: #c88a1c;

}

/*=========================================
WHATSAPP
=========================================*/

.whatsapp-float {

  position: relative;

  width: 62px;

  height: 62px;

  border-radius: 50%;

  background: #25D366;

  color: #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  text-decoration: none;

  font-size: 34px;

  box-shadow: 0 12px 30px rgba(37, 211, 102, .35);

  transition: .35s;

}

.whatsapp-float:hover {

  transform: translateY(-6px) scale(1.05);

}

/* Ripple */

.whatsapp-float::before {

  content: "";

  position: absolute;

  inset: -5px;

  border-radius: 50%;

  border: 2px solid rgba(37, 211, 102, .45);

  animation: whatsappRipple 2s infinite;

}

.whatsapp-float::after {

  content: "";

  position: absolute;

  inset: -14px;

  border-radius: 50%;

  border: 2px solid rgba(37, 211, 102, .20);

  animation: whatsappRipple 2s infinite .8s;

}

@keyframes whatsappRipple {

  0% {

    transform: scale(.9);

    opacity: 1;

  }

  100% {

    transform: scale(1.6);

    opacity: 0;

  }

}

/*=========================================
TABLET
=========================================*/

@media(max-width:768px) {

  .floating-buttons {

    right: 18px;

    bottom: 18px;

    gap: 15px;

  }

  .scroll-top {

    width: 54px;

    height: 54px;

    font-size: 18px;

  }

  .whatsapp-float {

    width: 56px;

    height: 56px;

    font-size: 30px;

  }

}

/*=========================================
IPHONE SE
=========================================*/

@media(max-width:375px) {

  .floating-buttons {

    right: 14px;

    bottom: 14px;

  }

  .scroll-top {

    width: 48px;

    height: 48px;

    font-size: 17px;

  }

  .whatsapp-float {

    width: 52px;

    height: 52px;

    font-size: 28px;

  }

}

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonial-section {
    width: 100%;
    padding: 75px 24px 45px;
    background: var(--gold-more-light);
    overflow: hidden;
}


/* =========================================================
   HEADING
========================================================= */

.testimonial-heading {
    text-align: center;
    margin-bottom: 48px;
}

.testimonial-heading-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
}

.testimonial-heading-line span {
    width: 65px;
    height: 1px;
    display: block;
    background: #bd7c13;
}

.testimonial-heading-line i {
    color: #bd7c13;
    font-size: 16px;
    transform: rotate(-18deg);
}

.testimonial-eyebrow {
    margin-bottom: 3px;

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;

    letter-spacing: 6px;
    color: #222;
}

.testimonial-heading h2 {
    margin: 0;

    font-family: "Allura", "Dancing Script", cursive;
    font-size: clamp(52px, 6vw, 76px);
    font-weight: 400;
    line-height: 1;

    color: #bd7c13;
}

/* =========================================================
   TESTIMONIAL PHOTO GALLERY
   ========================================================= */

.testimonial-gallery {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Mobile-style gallery card */
.testimonial-gallery__viewport {
    position: relative;

    width: min(430px, 100%);
    aspect-ratio: 1 / 1;

    overflow: hidden;

    background: #fff;

    /* Thick white rounded stroke */
    border: 10px solid #fff;
    border-radius: 30px;

    box-sizing: border-box;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);

    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

/* Sliding track */
.testimonial-gallery__track {
    display: flex;

    width: 100%;
    height: 100%;

    transition: transform 0.35s ease;

    will-change: transform;
}

/* Individual slide */
.testimonial-gallery__slide {
    flex: 0 0 100%;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 20px;

    background: #f5f5f5;
}

/* Testimonial image */
.testimonial-gallery__slide img {
    display: block;
    width: 100%;
    height: 100%;

    /* Show the complete image */
    object-fit: contain;

    pointer-events: none;
    -webkit-user-drag: none;
}

/* =========================================================
   PREVIOUS / NEXT BUTTONS
   ========================================================= */

.testimonial-gallery__nav {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    border: 0;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.95);
    color: #111;

    font-size: 20px;

    cursor: pointer;

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.18);

    z-index: 10;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;

    /* Touch friendly */
    min-width: 52px;
    min-height: 52px;

    -webkit-tap-highlight-color: transparent;
}

/* Position */
.testimonial-gallery__nav--prev {
    left: 14px;
}

.testimonial-gallery__nav--next {
    right: 14px;
}


/* Hover */
.testimonial-gallery__nav:hover {
    background: #ffffff;

    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.25);

    transform: translateY(-50%) scale(1.05);
}


/* Press */
.testimonial-gallery__nav:active {
    transform: translateY(-50%) scale(0.92);
}


/* Remove default focus outline and add accessible focus */
.testimonial-gallery__nav:focus-visible {
    outline: 3px solid rgba(0, 0, 0, 0.25);
    outline-offset: 2px;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .testimonial-gallery {
        padding: 12px;
    }

    .testimonial-gallery__viewport {
        width: 100%;
        max-width: 430px;

        border-width: 10px;
        border-radius: 28px;
    }

    .testimonial-gallery__slide {
        border-radius: 19px;
    }

    .testimonial-gallery__nav {
        width: 50px;
        height: 50px;

        min-width: 50px;
        min-height: 50px;

        font-size: 18px;
    }

    .testimonial-gallery__nav--prev {
        left: 10px;
    }

    .testimonial-gallery__nav--next {
        right: 10px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .testimonial-gallery {
        padding: 8px;
    }

    .testimonial-gallery__viewport {
        border-width: 8px;
        border-radius: 24px;
    }

    .testimonial-gallery__nav {
        width: 46px;
        height: 46px;

        min-width: 46px;
        min-height: 46px;

        font-size: 16px;
    }

    .testimonial-gallery__nav--prev {
        left: 8px;
    }

    .testimonial-gallery__nav--next {
        right: 8px;
    }
}


/* =========================================================
   REDUCE MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .testimonial-gallery__track {
        transition: none;
    }

    .testimonial-gallery__nav {
        transition: none;
    }
}

/* =========================================================
   SLIDER WRAPPER
========================================================= */

.testimonial-slider-wrapper {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    overflow: hidden;
}


/* =========================================================
   SLIDER
========================================================= */

.testimonial-slider {
    display: flex;
    gap: 30px;

    width: 100%;

    transition: transform 0.45s ease;
    will-change: transform;
}


/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card {
    /*
       3 cards on desktop
    */

    flex: 0 0 calc(
        (100% - 60px) / 3
    );

    min-height: 370px;

    padding: 40px 36px 34px;

    box-sizing: border-box;

    background: #fff7dd;

    border: 1px solid #fff7dd;
    border-radius: 28px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.035);

    display: flex;
    flex-direction: column;
}


/* =========================================================
   CARD TOP
========================================================= */

.testimonial-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 22px;
}


/* =========================================================
   STARS
========================================================= */

.testimonial-stars {
    color: var(--gold);

    font-size: 18px;
    letter-spacing: 2px;

    line-height: 1;
}


/* =========================================================
   QUOTE
========================================================= */

.testimonial-quote {
    color: #eee7d7;

    font-size: 42px;

    line-height: 0.8;
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.testimonial-text {
    margin: 0;

    font-family: "Montserrat", sans-serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.75;

    color: #161616;
}


/* =========================================================
   CUSTOMER DETAILS
========================================================= */

.testimonial-customer {
    margin-top: auto;

    padding-top: 28px;
}

.testimonial-customer h3 {
    margin: 0 0 5px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 27px;
    font-weight: 700;

    line-height: 1.2;

    color: var(--gold-dark);
}

.testimonial-customer span {
    font-family: "Montserrat", sans-serif;

    font-size: 15px;
    font-weight: 400;

    color: #858585;
}


/* =========================================================
   NAVIGATION
========================================================= */

.testimonial-navigation {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 40px;
}


.testimonial-nav-button {
    width: 56px;
    height: 56px;

    padding: 0;

    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--olive-dark);
    color: var(--gold-light);

    font-size: 18px;

    cursor: pointer;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        opacity 0.25s ease;
}


.testimonial-nav-button:hover {
    transform: translateY(-3px);
}


.testimonial-nav-button:active {
    transform: translateY(0);
}


.testimonial-nav-button:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}


/* =========================================================
   TABLET
   2 CARDS
========================================================= */

@media (max-width: 991px) {

    .testimonial-section {
        padding: 65px 20px 40px;
    }


    .testimonial-slider {
        gap: 24px;
    }


    .testimonial-card {

        /*
           2 cards on tablet
        */

        flex: 0 0 calc(
            (100% - 24px) / 2
        );

        min-height: 350px;

        padding: 34px 30px 30px;
    }


    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
    }


    .testimonial-customer h3 {
        font-size: 25px;
    }

}


/* =========================================================
   MOBILE
   1 CARD
========================================================= */

@media (max-width: 600px) {

    .testimonial-section {
        padding: 55px 15px 35px;
    }


    .testimonial-heading {
        margin-bottom: 35px;
    }


    .testimonial-heading-line {
        gap: 10px;
    }


    .testimonial-heading-line span {
        width: 45px;
    }


    .testimonial-eyebrow {
        font-size: 11px;
        letter-spacing: 4px;
    }


    .testimonial-heading h2 {
        font-size: 55px;
    }


    .testimonial-slider {
        gap: 15px;
    }


    .testimonial-card {

        /*
           1 card on mobile
        */

        flex: 0 0 100%;

        min-height: 340px;

        padding: 30px 25px 28px;

        border-radius: 24px;
    }


    .testimonial-top {
        margin-bottom: 20px;
    }


    .testimonial-stars {
        font-size: 16px;
        letter-spacing: 1.5px;
    }


    .testimonial-quote {
        font-size: 38px;
    }


    .testimonial-text {
        font-size: 14px;
        line-height: 1.75;
    }


    .testimonial-customer {
        padding-top: 25px;
    }


    .testimonial-customer h3 {
        font-size: 24px;
    }


    .testimonial-customer span {
        font-size: 13px;
    }


    /* Navigation */

    .testimonial-navigation {
        margin-top: 30px;
        gap: 15px;
    }


    .testimonial-nav-button {
        width: 52px;
        height: 52px;

        font-size: 16px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .testimonial-section {
        padding-left: 12px;
        padding-right: 12px;
    }


    .testimonial-card {
        padding-left: 22px;
        padding-right: 22px;
    }


    .testimonial-heading h2 {
        font-size: 48px;
    }

}

#testimonialSlider {
    touch-action: pan-y;
    cursor: grab;
}

#testimonialSlider:active {
    cursor: grabbing;
}

/* =========================================================
   CONTACT SECTION
   SAME NATURAL LUXURY THEME
========================================================= */

.contact-section {

  position: relative;

  width: 100%;

  max-width: 1450px;

  margin: 0 auto;

  padding: 80px 60px 100px;

  overflow: hidden;

  background:
    linear-gradient(180deg,
      #f8eee0 0%,
      #fffaf3 48%,
      #f5e8d5 100%);

  color: #3f2d1d;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.contact-section::before {

  content: "";

  position: absolute;

  top: -150px;
  left: -150px;

  width: 400px;
  height: 400px;

  background:
    radial-gradient(circle,
      rgba(183, 119, 24, 0.08),
      transparent 65%);

  pointer-events: none;
}


.contact-section::after {

  content: "";

  position: absolute;

  right: -180px;
  bottom: -180px;

  width: 450px;
  height: 450px;

  background:
    radial-gradient(circle,
      rgba(83, 96, 46, 0.08),
      transparent 65%);

  pointer-events: none;
}


/* =========================================================
   CONTACT HEADING
========================================================= */

.contact-heading {

  position: relative;

  z-index: 2;

  text-align: center;

  margin-bottom: 65px;
}


.contact-heading-decoration {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 14px;

  margin-bottom: 12px;
}


.contact-heading-decoration span {

  width: 65px;

  height: 1px;

  background: var(--gold);
}


.contact-heading-decoration i {

  color: var(--gold);

  font-size: 19px;
}


.contact-subtitle {

  margin: 0 0 6px;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 15px;

  font-weight: 600;

  letter-spacing: 4px;

  color: var(--olive);
}


/* =========================================================
   CONTACT US MAIN TITLE
   MATCHES ABOUT STATISTICS HEADING
========================================================= */

.contact-heading h2 {

  color: var(--gold);

  font-family:
    "Allura",
    cursive;

  font-size:
    clamp(72px,
      7vw,
      105px);

  font-weight: 400;

  line-height: 0.82;

  margin-top: 2px;

  margin-bottom: 0;
}


/* Keep "Us" same style as Contact */

.contact-heading h2 span {

  color: var(--gold);

  font-family:
    "Allura",
    cursive;

  font-size: inherit;

  font-weight: 400;
}


.contact-tagline {

  margin-top: 20px;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 20px;

  color: #66513d;
}


/* =========================================================
   MAIN CONTACT CONTAINER
========================================================= */

.contact-container {

  position: relative;

  z-index: 2;

  max-width: 1180px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(350px, 0.9fr) minmax(450px, 1.1fr);

  gap: 65px;

  align-items: stretch;
}


/* =========================================================
   CONTACT INFORMATION
========================================================= */

.contact-information {

  display: flex;

  flex-direction: column;

  gap: 18px;
}


/* =========================================================
   CONTACT INFO CARD
========================================================= */

.contact-info-card {

  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding: 23px 22px;

  background:
    rgba(255, 250, 243, 0.78);

  border:
    1px solid rgba(183, 119, 24, 0.30);

  box-shadow:
    0 7px 22px rgba(75, 50, 20, 0.06);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}


.contact-info-card:hover {

  transform: translateX(6px);

  background: #fffaf3;

  box-shadow:
    0 12px 30px rgba(75, 50, 20, 0.12);
}


/* =========================================================
   CONTACT ICON
========================================================= */

.contact-icon {

  width: 55px;

  height: 55px;

  min-width: 55px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: var(--olive);

  color: #e4aa4e;

  font-size: 20px;

  border:
    1px solid rgba(183, 119, 24, 0.35);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


.contact-info-card:hover .contact-icon {

  background: var(--gold);

  color: #ffffff;

  transform: scale(1.05);
}


/* =========================================================
   CONTACT INFO CONTENT
========================================================= */

.contact-info-content {

  display: flex;

  flex-direction: column;

  padding-top: 2px;

}

.contact-info-content h3 {

  margin: 0 0 5px;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 24px;

  line-height: 1.1;

  font-weight: 600;

  color: #313b19f5;

}


.contact-info-content p {

  margin: 0;

  font-family: "Great Vibes", cursive;

  font-size: 17px;

  line-height: 1.4;

  color: #66513d;
}


.contact-info-content a {

  width: fit-content;

  font-family: "Great Vibes", cursive;

  font-size: 17px;

  color: #66513d;

  text-decoration: none;

  transition:
    color 0.25s ease;
}


.contact-info-content a:hover {

  color: var(--gold);
}


.contact-info-content strong {

  margin-top: 1px;

  font-family: "Great Vibes", cursive;

  font-size: 17px;

  font-weight: 500;

  color: var(--olive);
}

/* =========================================================
   FOLLOW US
========================================================= */

.contact-follow {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  margin-top: 8px;

  padding:
    20px 22px;

  background:
    var(--gold-more-light);

  border:
    1px solid rgba(183, 119, 24, 0.30);

  box-shadow:
    0 7px 22px rgba(75, 50, 20, 0.06);
}


/* =========================================================
   FOLLOW US LABEL
========================================================= */

.contact-follow-label {

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 17px;

  font-weight: 600;

  letter-spacing: 2.5px;

  color: var(--gold-dark);

  white-space: nowrap;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.contact-social-icons {

  display: flex;

  align-items: center;

  gap: 12px;
}


/* =========================================================
   SOCIAL ICON BUTTON
========================================================= */

.contact-social-icons a {

  width: 44px;

  height: 44px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 50%;

  background: var(--olive);

  color: #e4aa4e;

  text-decoration: none;

  font-size: 17px;

  border:
    1px solid rgba(183, 119, 24, 0.35);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}


/* =========================================================
   HOVER
========================================================= */

.contact-social-icons a:hover {

  transform:
    translateY(-5px) scale(1.05);

  background: var(--gold);

  color: #ffffff;

  box-shadow:
    0 8px 18px rgba(183, 119, 24, 0.25);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .contact-follow {

    flex-direction: column;

    justify-content: center;

    text-align: center;

    gap: 14px;

    padding: 20px;
  }


  .contact-follow-label {

    font-size: 15px;

    letter-spacing: 2px;
  }


  .contact-social-icons {

    gap: 14px;
  }


  .contact-social-icons a {

    width: 46px;

    height: 46px;

    font-size: 18px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .contact-follow {

    padding: 17px;
  }


  .contact-social-icons a {

    width: 43px;

    height: 43px;

    font-size: 16px;
  }

}

/* =========================================================
   MAP WRAPPER
========================================================= */

.contact-map-wrapper {

  position: relative;

  min-height: 570px;

  padding: 12px;

  background:
    rgba(255, 250, 243, 0.75);

  border:
    1px solid rgba(183, 119, 24, 0.45);

  box-shadow:
    0 12px 35px rgba(75, 50, 20, 0.12);

  transform: rotate(1deg);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}


.contact-map-wrapper:hover {

  transform:
    rotate(0deg) translateY(-4px);

  box-shadow:
    0 20px 45px rgba(75, 50, 20, 0.17);
}


/* =========================================================
   MAP FRAME
========================================================= */

.contact-map-frame {

  position: relative;

  width: 100%;

  height: 100%;

  min-height: 540px;

  overflow: hidden;

  border:
    1px solid rgba(183, 119, 24, 0.25);
}


.contact-map-frame iframe {

  display: block;

  width: 100%;

  height: 100%;

  min-height: 540px;

  border: 0;

  filter:
    sepia(10%) saturate(80%);
}


/* =========================================================
   MAP CAPTION
========================================================= */

.contact-map-caption {

  position: absolute;

  left: 28px;

  bottom: 25px;

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 12px 18px;

  background:
    rgba(48, 59, 24, 0.96);

  border:
    1px solid rgba(183, 119, 24, 0.55);

  color: #fffaf3;

  box-shadow:
    0 8px 20px rgba(40, 45, 20, 0.2);
}


.contact-map-caption>i {

  color: #e4aa4e;

  font-size: 18px;
}


.contact-map-caption div {

  display: flex;

  flex-direction: column;
}


.contact-map-caption strong {

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 17px;

  font-weight: 600;
}


.contact-map-caption span {

  font-family:
    "Poppins",
    sans-serif;

  font-size: 9px;

  color: #eee2ce;
}


/* =========================================================
   FOOTER
========================================================= */

.contact-footer {

  width: 100%;

  padding:
    30px 20px 35px;

  text-align: center;

  background: var(--olive);

  color: #f8eee0;

  border-top:
    3px solid var(--gold);
}


.contact-footer-decoration {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  margin-bottom: 12px;
}


.contact-footer-decoration span {

  width: 50px;

  height: 1px;

  background: var(--gold);
}


.contact-footer-decoration i {

  color: #dca348;

  font-size: 15px;
}


.contact-footer p {

  margin: 0;

  font-family:
    "Cormorant Garamond",
    Georgia,
    serif;

  font-size: 16px;

  letter-spacing: 0.5px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .contact-section {

    padding:
      70px 35px 80px;
  }


  .contact-container {

    grid-template-columns:
      1fr 1fr;

    gap: 35px;
  }


  .contact-map-wrapper {

    min-height: 540px;
  }


  .contact-map-frame,
  .contact-map-frame iframe {

    min-height: 515px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .contact-section {

    padding:
      55px 20px 65px;
  }


  .contact-heading {

    margin-bottom: 45px;
  }


  .contact-heading-decoration span {

    width: 45px;
  }


  /* Contact title */

  .contact-heading h2 {

    font-size:
      clamp(65px,
        18vw,
        82px);

    line-height: 0.85;
  }


  .contact-tagline {

    font-size: 17px;
  }


  /* Contact information */

  .contact-container {

    grid-template-columns: 1fr;

    gap: 45px;
  }


  .contact-info-card {

    padding: 20px 18px;
  }


  .contact-info-card:hover {

    transform: translateY(-3px);
  }


  .contact-icon {

    width: 50px;

    height: 50px;

    min-width: 50px;

    font-size: 18px;
  }


  .contact-info-content h3 {

    font-size: 22px;
  }


  .contact-info-content p {

    font-size: 16px;
  }


  .contact-info-content a {

    font-size: 17px;
  }


  /* Map */

  .contact-map-wrapper {

    min-height: 430px;

    padding: 8px;

    transform: none;
  }


  .contact-map-wrapper:hover {

    transform: translateY(-3px);
  }


  .contact-map-frame {

    min-height: 415px;
  }


  .contact-map-frame iframe {

    min-height: 415px;
  }


  .contact-map-caption {

    left: 18px;

    bottom: 18px;

    padding: 10px 14px;
  }


  .contact-map-caption strong {

    font-size: 15px;
  }


  .contact-map-caption span {

    font-size: 8px;
  }


  /* Footer */

  .contact-footer {

    padding:
      25px 15px 30px;
  }


  .contact-footer p {

    font-size: 14px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .contact-section {

    padding-left: 14px;

    padding-right: 14px;
  }


  .contact-heading h2 {

    font-size:
      clamp(58px,
        19vw,
        72px);

    line-height: 0.85;
  }


  .contact-subtitle {

    font-size: 12px;

    letter-spacing: 3px;
  }


  .contact-tagline {

    font-size: 15px;
  }


  .contact-info-card {

    gap: 13px;

    padding: 18px 14px;
  }


  .contact-icon {

    width: 46px;

    height: 46px;

    min-width: 46px;

    font-size: 16px;
  }


  .contact-label {

    font-size: 10px;

    letter-spacing: 2px;
  }


  .contact-info-content h3 {

    font-size: 20px;
  }


  .contact-info-content p {

    font-size: 15px;
  }


  .contact-info-content a {

    font-size: 16px;
  }


  .contact-map-wrapper {

    min-height: 360px;
  }


  .contact-map-frame,
  .contact-map-frame iframe {

    min-height: 345px;
  }


  .contact-map-caption {

    left: 12px;

    right: 12px;

    bottom: 12px;
  }


  .contact-footer p {

    font-size: 13px;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .contact-info-card,
  .contact-map-wrapper,
  .contact-icon {

    transition: none;
  }

}