@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;1,400&display=swap");

/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --color-dark: #1a1a18;
  --color-text: #1a1a18;
  --color-muted: #6f6f68;
  --color-light-muted: #8c8c85;
  --color-gold: #c59b27;
  --color-cream: #fbf9f5;
  --color-soft: #f4f1ea;
  --color-white: #ffffff;

  --container-width: 1200px;

  --font-body: "DM Sans", sans-serif;
  --font-heading: "Playfair Display", serif;
  --serif: "Playfair Display", serif;

  --transition: 0.3s ease;

  --font-10: 10px;
  --font-12: 14px;
  --font-14: 14px;
  --font-16: 16px;
  --font-18: 18px;
  --font-20: 20px;
  --font-22: 22px;
  --font-24: 24px;
  --font-50: 50px;
  --font-80: 80px;

  --font-weight-800: 800;
  --font-weight-700: 700;
  --font-weight-600: 600;
  --font-weight-500: 500;
  --font-weight-400: 400;
  --font-weight-300: 300;

  --margin-100: 100px;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-white);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
}

/* =========================================================
   COMMON
========================================================= */

.site-wrapper {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  top: 0;
  z-index: 9999;
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  animation: headerSticky 0.45s ease forwards;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

@keyframes headerSticky {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.header-spacer {
  display: none;
}

.header-spacer.is-active {
  display: block;
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo img {
  width: auto;
  height: 48px;
}

.desktop-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.desktop-navigation a,
.nav-contact-button {
  color: var(--color-muted);
  font-size: var(--font-14);
  transition: var(--transition);
}

.desktop-navigation a:hover,
.nav-contact-button:hover {
  color: var(--color-dark);
}

.nav-contact-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: transparent;
}

.nav-contact-button svg {
  width: 13px;
  height: 13px;
}

.mobile-menu-button {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: var(--color-dark);
}

.mobile-menu-button:hover {
  background: var(--color-soft);
}

.mobile-menu-button svg {
  width: 20px;
  height: 20px;
}

.mobile-navigation {
  display: none;
}

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

.hero-section {
  padding: var(--margin-100) 0px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: 64px;
}

.hero-content {
  grid-column: span 5;
}

.hero-visual {
  position: relative;
  grid-column: span 7;
}

/* Hero badge */

.hero-badge {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold);
  font-size: var(--font-10);
  font-weight: var(--font-weight-600);
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-badge svg {
  width: 14px;
  height: 14px;
}

/* Hero title */

.hero-title {
  max-width: 700px;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: var(--font-80);
  font-weight: var(--font-weight-400);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-title em {
  color: var(--color-gold);
  font-style: italic;
  font-weight: var(--font-weight-400);
}

/* Hero description */

.hero-description {
  max-width: 480px;
  margin-top: 28px;
  color: var(--color-muted);
  font-size: var(--font-16);
  line-height: 1.75;
}

/* Hero buttons */

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.primary-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: var(--font-12);
  font-weight: var(--font-weight-600);
  transition:
    transform var(--transition),
    background var(--transition);
}

.primary-button svg {
  width: 15px;
  height: 15px;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: var(--color-gold);
}

.text-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-dark);
  font-size: var(--font-12);
  font-weight: var(--font-weight-600);
  transition: color var(--transition);
}

.text-button svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition);
}

.text-button:hover {
  color: var(--color-gold);
}

.text-button:hover svg {
  transform: translateX(4px);
}

/* Hero note */

.hero-note {
  max-width: 320px;
  margin-top: 48px;
  padding-left: 16px;
  border-left: 1px solid var(--color-gold);
  color: var(--color-light-muted);
  font-size: var(--font-12);
  font-style: italic;
  line-height: 1.8;
}

/* Hero image */

.hero-image-frame {
  position: relative;
  overflow: hidden;
  background: var(--color-soft);
  box-shadow: 0 18px 60px -24px rgba(26, 26, 24, 0.3);
}

.hero-image {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

/* Hero image caption */

.hero-image-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-image-caption span,
.hero-image-caption strong {
  font-size: var(--font-10);
}

.hero-image-caption span {
  color: var(--color-light-muted);
  font-weight: var(--font-weight-600);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-image-caption i {
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.hero-image-caption strong {
  color: var(--color-dark);
  font-weight: var(--font-weight-500);
}

/* Floating note */

.hero-floating-note {
  position: absolute;
  right: -24px;
  bottom: -20px;
  padding: 16px 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--color-white);
  box-shadow: 0 12px 35px -18px rgba(26, 26, 24, 0.3);
  animation: floatSoft 4s ease-in-out infinite;
}

.hero-floating-note p {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: var(--font-18);
  font-style: italic;
}

/* =========================================================
   COLLECTION SECTION
========================================================= */

.collection-section {
  padding: var(--margin-100) 0;
  background: #f5f5f2;
}

.collection-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 55px;
}

.collection-intro {
  max-width: 620px;
}

.section-eyebrow {
  margin-bottom: 12px;
  color: var(--color-gold);
  font-size: var(--font-10);
  font-weight: var(--font-weight-600);
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-title {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: var(--font-50);
  font-weight: var(--font-weight-400);
  /* line-height: 1.1; */
}

.section-description {
  max-width: 550px;
  margin-top: 18px;
  color: var(--color-muted);
  font-size: var(--font-14);
  /* line-height: 1.75; */
}

/* =========================================================
   COLLECTION CONTROLS
========================================================= */

.collection-controls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  flex-shrink: 0;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  width: 280px;
}

.search-box svg {
  position: absolute;
  left: 14px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--color-muted);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.search-box input {
  width: 100%;
  height: 42px;
  padding: 0 14px 0 42px;
  border: 1px solid #deded8;
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-dark);
  font-size: 13px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.search-box input::placeholder {
  color: #96968f;
}

.search-box input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(197, 155, 39, 0.1);
}

.category-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.category-button {
  padding: 9px 13px;
  border: 1px solid #dcdcd5;
  border-radius: 0;
  background: transparent;
  color: var(--color-muted);
  font-size: 11px;
  font-weight: var(--font-weight-600);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.category-button:hover {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.category-button.active {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: var(--color-white);
}

/* =========================================================
   PRODUCT GRID
========================================================= */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.product-card {
  width: 100%;
  background: var(--color-white);
  border: 1px solid #e7e7e2;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.product-card.is-hidden {
  display: none;
}

.product-image-frame {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #f0f0ec;
}

.product-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image-frame img {
  transform: scale(1.03);
}

.product-tag,
.product-image-frame .product-category {
  position: absolute;
  top: 14px;
  padding: 7px 10px;
  background: var(--color-white);
  font-size: var(--font-10);
  font-weight: var(--font-weight-600);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-tag {
  left: 14px;
  color: var(--color-dark);
}

.product-image-frame .product-category {
  right: 14px;
  color: var(--color-gold);
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  min-height: 225px;
  padding: 24px;
}

.product-info h3 {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: var(--font-22);
  font-weight: var(--font-weight-400);
  line-height: 1.3;
}

.product-info p {
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.7;
}

.product-price {
  color: var(--color-dark);
  font-size: var(--font-18);
  font-weight: var(--font-weight-600);
}

.view-details-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 48px);
  margin: 0 24px 24px;
  padding: 13px 20px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: var(--font-12);
  font-weight: var(--font-weight-600);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.view-details-button:hover {
  background: var(--color-gold);
}

.view-details-button:active {
  transform: translateY(1px);
}

.view-details-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   PRODUCT COUNT
========================================================= */

.collection-count {
  margin-top: 30px;
  color: var(--color-light-muted);
  font-size: var(--font-12);
  text-align: center;
}

/* =========================================================
   PRODUCT MODAL
========================================================= */

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.product-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-modal-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1024px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transform: translateY(10px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.product-modal.is-open .product-modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-image-wrapper {
  width: 100%;
  min-height: 280px;
  height: 100%;
  overflow: hidden;
  background: #f0f0ec;
}

.product-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.product-content {
  display: flex;
  flex-direction: column;
  padding: 40px;
}

.product-header .product-category {
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: var(--font-10);
  font-weight: var(--font-weight-600);
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-title {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: var(--font-weight-400);
  line-height: 1.2;
}

.product-description {
  padding-top: 12px;
  color: var(--color-muted);
  font-size: var(--font-14);
  line-height: 1.7;
}

.product-content .product-price {
  margin-top: 24px;
  color: var(--color-dark);
  font-size: var(--font-18);
  font-weight: var(--font-weight-600);
  line-height: 1.4;
}

.product-specifications {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--color-light-muted);
  font-size: var(--font-12);
  line-height: 1.7;
}

.product-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-top: 32px;
  padding: 10px 14px;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: var(--font-12);
  font-weight: var(--font-weight-600);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.product-contact-btn:hover {
  background: var(--color-gold);
}

.product-contact-btn:active {
  transform: translateY(1px);
}

.product-contact-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-dark);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.product-close-btn:hover {
  background: #f1f1ef;
  color: #000000;
}

.product-close-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   STORY
========================================================= */

.story-section {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--margin-100) 40px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 64px;
}

.story-copy {
  grid-column: span 5;
}

.story-body {
  grid-column: 7 / span 6;
}

.story-body > p:first-child {
  color: var(--color-muted);
  font-size: var(--font-16);
  line-height: 2;
}

.story-signature {
  margin-top: 32px;
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: var(--font-24);
  font-style: italic;
}

/* =========================================================
   CONTACT BAND
========================================================= */

.contact-band {
  padding: var(--margin-100) 0px;
  background: var(--color-dark);
  color: var(--color-white);
}

.contact-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
}

.contact-title {
  max-width: 700px;
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--font-50);
  font-weight: var(--font-weight-400);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.contact-button {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-dark);
  font-size: var(--font-12);
  font-weight: var(--font-weight-600);
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition);
}

.contact-button svg {
  width: 15px;
  height: 15px;
}

.contact-button:hover {
  transform: translateY(-2px);
  background: var(--color-gold);
  color: var(--color-white);
}

/* =========================================================
   CONTACT MODAL
========================================================= */

.contact-us-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease;
}

.contact-us-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-us-modal-content {
  position: relative;
  width: 100%;
  max-width: 512px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  padding: 40px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  transform: translateY(10px) scale(0.96);
  opacity: 0;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.contact-us-modal.is-open .contact-us-modal-content {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-modal-eyebrow {
  margin-bottom: 8px;
  color: var(--color-gold);
  font-size: var(--font-10);
  font-weight: var(--font-weight-600);
  line-height: 1.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-modal-title {
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: var(--font-weight-400);
  line-height: 1.2;
}

.contact-modal-description {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: var(--font-14);
  line-height: 1.7;
}

.contact-us-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 26px;
}

.contact-form-group label {
  display: block;
  color: var(--color-dark);
  font-size: var(--font-12);
  font-weight: var(--font-weight-600);
}

.contact-form-group input,
.contact-form-group textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0;
  background: transparent;
  color: var(--color-dark);
  font-size: var(--font-14);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form-group input {
  height: 38px;
}

.contact-form-group textarea {
  min-height: 112px;
  resize: none;
}

.contact-form-group input:focus,
.contact-form-group textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 2px rgba(197, 155, 39, 0.1);
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  border: 0;
  border-radius: 0;
  background: var(--color-dark);
  color: var(--color-white);
  font-size: var(--font-12);
  font-weight: var(--font-weight-600);
  cursor: pointer;
  transition: background 0.25s ease;
}

.contact-submit-btn:hover {
  background: var(--color-gold);
}

.contact-submit-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-dark);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.contact-modal-close:hover {
  background: #f1f1ef;
  color: #000000;
}

.contact-modal-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.site-footer {
  padding: 0 40px 32px;
  background: var(--color-dark);
  color: var(--color-white);
}

.footer-inner {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-10);
  font-weight: var(--font-weight-600);
  letter-spacing: 0.22em;
}

.footer-tagline,
.footer-copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--font-12);
}

/* =========================================================
   SCROLLBARS
========================================================= */

.product-modal-content::-webkit-scrollbar,
.contact-us-modal-content::-webkit-scrollbar {
  width: 5px;
}

.product-modal-content::-webkit-scrollbar-track,
.contact-us-modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.product-modal-content::-webkit-scrollbar-thumb,
.contact-us-modal-content::-webkit-scrollbar-thumb {
  background: #cfcfc8;
  border-radius: 10px;
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes riseUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.animate-rise {
  animation: riseUp 0.7s ease both;
}
.mobile-menu-button{
  display: none;
}


