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

html,
body {
  overflow-x: clip;
}

body {
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-text-color: #312319;
  --secondary-text-color: #a68268;
  --tertiary-text-color: #ffffff;
  --dark-text-color: #000000;
  --footer-title-color: #7f604a;
  --heart-color: #de0000;
  --some-bg-color: linear-gradient(to bottom, #fff6ef 0%, #ffffff 100%);
  --some-bg-color-secondary: #fff6ef;
  --line-color: #dfcbbd;
  --card-bg: #ffffff;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 18px 34px rgba(0, 0, 0, 0.18);
  --about-bg: #f2f2f2;
}

a {
  text-decoration: none;
  display: inline-block;
}

ul {
  list-style-type: none;
}

.container {
  max-width: 1850px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* GSAP */
.flair {
  width: 30px;
  height: 30px;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  background: rgba(166, 130, 104, 0.35);
  mix-blend-mode: multiply;
  transition: background-color 0.25s ease-out, opacity 0.25s ease-out;
  z-index: 999999;
}

.sparkle {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  opacity: 1;
  transform: scale(1);
  mix-blend-mode: color-dodge;
  transition: background-color 0.15s ease-out;
}

.sparkle-gold {
  background: rgba(166, 130, 104, 0.9);
}

.sparkle-white {
  background: rgba(255, 255, 255, 0.9);
}

/* About Header Section */
.navbar-container {
  max-width: 1480px;
  width: 100%;
  padding-top: 5px;
}

.main-logo {
  width: 158px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  padding-top: 5px;
}

.main-logo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-wrap {
  width: 100%;
  position: relative;
}

.brand-logo > a {
  width: 91px;
}

.brand-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-icons {
  display: flex;
  height: fit-content;
  justify-content: center;
  text-align: center;
  margin: 8px 15px 0 0;
}

.nav-link {
  margin-right: 15px;
  color: var(--primary-text-color);
}

.search-wrap {
  position: relative;
  width: 100%;
  max-width: 220px;
  margin-right: 10px;
}

.search-input {
  padding-left: 42px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--tertiary-text-color);
  border-radius: 12px;
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  font-size: 16px;
  caret-color: #222;
  color: var(--primary-text-color);
}

.search-icon-nav {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.85;
  pointer-events: none;
}

.search-input:focus,
.search-input:not(:placeholder-shown) {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.search-input:focus {
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06),
    0 0 0 4px rgba(0, 114, 245, 0.12);
  border-color: rgba(0, 114, 245, 0.38);
}

.search-input::placeholder {
  color: var(--primary-text-color);
}

.nav-contact {
  margin-right: 100px;
}

.nav-icon-account,
.nav-icon-cart {
  margin-right: 15px;
  cursor: pointer;
}

#heartIcon {
  font-size: 20px;
  cursor: pointer;
  transition: color 0.2s ease;
  cursor: pointer;
}

#heartIcon.liked {
  color: var(--heart-color);
}

#heartIcon:hover {
  transform: scale(1.1);
}

.btn-close {
  --bs-btn-close-color: var(--tertiary-text-color);
  --bs-btn-close-opacity: 1;
  filter: invert(1) brightness(100%);
}

.dropdown-menu {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(0, 0, 0, 0.25) 100%
  );
  border: 2px solid var(--tertiary-text-color);
  border-radius: 10px;
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.2),
    0 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
  padding: 6px 0;
  transform: perspective(800px) translateZ(0);
  animation: dropdownPop 0.3s ease forwards;
}

.dropdown-item {
  color: var(--tertiary-text-color);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  text-align: center;
  position: relative;
  transition: all 0.25s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item:hover {
  background: linear-gradient(
    145deg,
    var(--secondary-text-color) 0%,
    var(--primary-text-color) 100%
  );
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

.dropdown-item:active {
  transform: translateY(1px);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.4),
    0 1px 2px rgba(255, 255, 255, 0.1);
}

.navbar-toggler {
  border: none;
}

.hover-link {
  position: relative;
  display: inline-block;
  color: var(--primary-text-color);
}

.hover-link:hover,
.hover-link.active {
  color: var(--primary-text-color);
}

.hover-link::before,
.hover-link::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  transition: width 0.3s ease;
}

.hover-link::before {
  top: 0;
  left: 0;
  background: var(--footer-title-color);
  transition: width 0.4s cubic-bezier(0.51, 0.18, 0, 0.88) 0.1s;
}

.hover-link::after {
  bottom: 0;
  right: 0;
  background: var(--primary-text-color);
  transition: width 0.3s cubic-bezier(0.29, 0.18, 0.26, 0.83);
}

.hover-link:hover::before,
.hover-link:hover::after,
.hover-link.active::before,
.hover-link.active::after {
  width: 100%;
}

.hover-link:hover::before,
.hover-link.active::before {
  left: 0;
}
.hover-link:hover::after,
.hover-link.active::after {
  right: 0;
}

.nav-icons i {
  color: var(--primary-text-color);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, color;
}

.nav-icons i:hover {
  color: var(--secondary-text-color);
  transform: translateY(-4px) scale(1.12);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.nav-icons i:active {
  transform: scale(0.95);
  opacity: 0.8;
}

/* About Banner Section */
.about-banner-copy {
  background: url("../assets/about-page-images/about-banner-background.png")
    no-repeat center/cover;
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
  min-height: clamp(320px, 42vw, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 40px;
}

.about-banner-inner {
  text-align: center;
  color: var(--tertiary-text-color);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
  animation: ab-fadeUp 0.6s ease both;
}

@keyframes ab-fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-banner-title {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 150px;
  letter-spacing: 0.5px;
  color: var(--tertiary-text-color);
}

.about-banner-links {
  display: inline-flex;
  align-items: center;
}

.about-banner-links a,
.about-banner-links span {
  margin: 0 8px;
  font-size: clamp(14px, 2.2vw, 20px);
  line-height: 1;
}

.about-banner-links a {
  position: relative;
  color: var(--tertiary-text-color);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 24px;
}

.about-banner-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--tertiary-text-color);
  border-radius: 2px;
  transition: width 0.3s ease;
  transform-origin: left;
}

.about-banner-links a:hover {
  color: var(--tertiary-text-color);
  transform: translateY(-1px);
}

.about-banner-links a:hover::after {
  width: 100%;
}

.about-banner-links span {
  color: var(--tertiary-text-color);
}

/* Items Section */
.items-section {
  padding: 28px 0 56px;
}

.filters-col {
  background: var(--card-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.filters-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.filter-card {
  border: 1px solid var(--secondary-text-color);
  border-radius: 20px;
  padding: 20px;
}

.pill-title {
  display: inline-flex;
  align-items: start;
  padding: 5px 14px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #f4e9e0;
  color: var(--primary-text-color);
  font-size: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
  width: 100%;
}

.search-input-outer {
  position: relative;
}

.filter-search {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 6px 12px;
  font-size: 12px;
}

.filter-search::placeholder {
  color: var(--secondary-text-color);
  text-align: start;
}

.search-icon {
  position: absolute;
  left: 88%;
  top: 50%;
  transform: translateY(-50%);
}

.filter-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.filter-list li {
  padding: 8px 4px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin: 10px 0 20px 0;
  color: var(--primary-text-color);
}

.range-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 13px;
  border-radius: 20px;
}

.btn-small {
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #f4e9e0;
  color: var(--primary-text-color);
  font-size: 12px;
}

.range-wrap .range {
  width: 100%;
  appearance: none;
  height: 2px;
  border-radius: 4px;
  background: #f4e9e0;
  outline: none;
  transition: background 0.3s ease;
}

.range-wrap .range::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 1px solid var(--secondary-text-color);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 20px;
}

.range-wrap .range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

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

.recent-item {
  display: flex;
  align-items: center;
  padding: 12px;
  transition: 0.25s;
}

.recent-item:hover {
  transform: translateY(-2px);
}

.recent-thumb {
  width: 80px;
  height: 80px;
  overflow: hidden;
  background: #f4e9e0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

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

.recent-thumb:hover {
  transform: scale(1.06);
}

.recent-name {
  font-size: 10px;
  color: var(--primary-text-color);
  margin-left: 10px;
}

.recent-price {
  font-size: 10px;
  color: var(--secondary-text-color);
  margin-left: 10px;
}

.rating-static {
  display: inline-flex;
  pointer-events: none;       
  user-select: none;         
}

.rating-static i {
  color: #d4a44c;            
  font-size: 14px;
  pointer-events: none;       
}

.rating {
  display: inline-block;
  text-align: center;
  margin-left: 10px;
}

.rating input {
  display: none;
}

.rating label {
  float: right;
  cursor: pointer;
  color: #ccc;
  transition: color 0.3s;
}

.rating label:before {
  content: "\2605";
  font-size: 14px;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
  color: #ffc107;
}

.items-hero {
  width: 100%;
  height: 460px;
  border-radius: 30px;
  margin-bottom: 14px;
  background: url("../assets/product-images/glossy_skin_woman_img.png")
      center/cover no-repeat,
    var(--some-bg-color);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.items-toolbar.under-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0 14px;
  border-bottom: 1px solid var(--line-color);
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.results-info {
  color: var(--secondary-text-color);
  font-size: 13px;
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-filter {
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--card-bg);
  color: var(--primary-text-color);
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: var(--shadow);
}

.btn-filter .btn-filter-label {
  display: inline;
}

.sort-select {
  cursor: pointer;
  appearance: none;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--secondary-text-color);
  background: var(--tertiary-text-color);
  color: var(--secondary-text-color);
  box-shadow: var(--shadow);
  font-size: 12px;
  text-align: center;
}

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

.prod-card {
  border-radius: 16px;
  padding: 30px 12px 14px;
  text-align: center;
}

.prod-thumb {
  background: #f4e9e0;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-thumb img {
  display: block;
  width: 70%;
  height: 80%;
  object-fit: cover;
}

.prod-meta {
  background: transparent;
  padding-top: 10px;
}

.prod-name {
  font-size: 14px;
  color: var(--primary-text-color);
  margin: 20px 0 0;
  font-weight: 400;
}

.prod-price {
  font-size: 13px;
  color: var(--secondary-text-color);
  margin-right: -12px;
}

.prod-meta .rating {
  display: inline-block;
  text-align: center;
}

.filters-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  top: -15%;
}

.filters-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 0.25s ease;
  backdrop-filter: none;
}

.filters-dialog {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -40%) scale(0.96);
  width: min(680px, 92vw);
  max-height: 88vh;
  overflow: auto;
  background: var(--card-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.2, 0.75, 0.25, 1),
    opacity 0.22s ease;
}

.filters-dialog-head {
  position: sticky;
  top: 0;
  background: var(--card-bg);
  z-index: 2; 
}

.filters-dialog-foot {
  position: sticky;
  bottom: 0;
  background: var(--card-bg);
  z-index: 2;
}


.filters-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-color);
}

.filters-dialog-head h3 {
  margin: 0;
  font-size: 18px;
}

.filters-dialog-close {
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.filters-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filters-dialog-foot {
  position: sticky;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--line-color);
  background: var(--card-bg);
}

.filters-dialog-foot button {
  appearance: none;
  border: none;
  outline: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--secondary-text-color);
}

.filters-reset {
  background: #fff;
  color: var(--primary-text-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filters-reset:hover {
  background: #f7f4f2;
  transform: translateY(-2px);
}

.filters-apply {
  background: var(--secondary-text-color);
  color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.filters-apply:hover {
  background: #a2735f;
  transform: translateY(-2px);
}

.filters-reset:active,
.filters-apply:active {
  transform: translateY(0);
  box-shadow: none;
}

.filters-modal.open {
  pointer-events: auto;
}

.filters-modal.open .filters-backdrop {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
}

.filters-modal.open .filters-dialog {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.items-section .container {
  padding-left: 16px;
  padding-right: 16px;
}

.prod-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4e9e0;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}

.prod-thumb img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: auto;
}

.filters-dialog::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.filters-dialog {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: auto;
}

.filters-dialog-close {
  -webkit-tap-highlight-color: transparent !important;
  outline: none !important;
}

.filters-dialog-close i {
  color: #000000 !important;
}

.prod-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.prod-card:hover {
  transform: translateY(-6px);
}

.prod-thumb {
  position: relative;
  overflow: hidden;
  background: #f4e9e0;
  border-radius: 14px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.prod-thumb img {
  transition: transform 0.6s ease, filter 0.4s ease;
  will-change: transform;
}

.prod-thumb:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: scale(1.02);
}

.prod-thumb:hover img {
  transform: scale(1.08);
  filter: brightness(1.1) contrast(1.05);
}

.prod-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.prod-thumb:hover::after {
  opacity: 1;
}

/* Batch Section */
.batch-section {
  padding: 80px 20px;
}

.batch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin: 0 -12px;
}

.batch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(25% - 24px);
  padding: 6px 0;
  cursor: pointer;
}

.divider {
  flex: 0 0 1px;
  width: 1px;
  min-width: 1px;
  height: 72px;
  align-self: center;
  background: var(--tertiary-text-color);
  background: url("../assets/page-one-images/news-customer-footer/dicider_batch.png")
    no-repeat center/cover;
  background-size: 72px;
}

.ico-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-right: 10px;
  transform-style: preserve-3d;
}

.ico-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.45s;
  justify-content: space-between;
}

.batch:hover .ico-wrap > img {
  transform: translateY(-4px) rotateZ(-2deg) scale(1.06);
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
}

.ico-wrap::after {
  content: "";
  position: absolute;
  inset: -8%;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 65%
  );
  transform: translateX(-120%) rotate(8deg);
  pointer-events: none;
  opacity: 0;
}

.batch:hover .ico-wrap::after {
  animation: shine 900ms ease forwards;
}

.batch {
  transition: transform 0.35s ease, background-color 0.35s ease,
    box-shadow 0.35s ease;
  border-radius: 12px;
}

.batch:hover {
  transform: translateY(-2px);
  animation: wobble 700ms ease both;
}

@keyframes shine {
  0% {
    transform: translateX(-120%) rotate(8deg);
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  100% {
    transform: translateX(120%) rotate(8deg);
    opacity: 0;
  }
}
@keyframes wobble {
  0% {
    transform: translateY(-2px) rotateZ(0deg);
  }
  40% {
    transform: translateY(-2px) rotateZ(-1.5deg);
  }
  70% {
    transform: translateY(-2px) rotateZ(0.8deg);
  }
  100% {
    transform: translateY(-2px) rotateZ(0deg);
  }
}

.copy {
  margin-left: 2px;
}

.copy h5 {
  font-size: 14px;
  font-weight: 400;
  color: #3b2b22;
  margin: 0 0 2px;
}

.copy span {
  font-size: 10px;
  color: #000;
}

/* Footer Section */
.footer-section {
  padding: 40px 0 0;
}

.footer-logo {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-copy {
  position: relative;
  background: #efefef;
  border-radius: 30px 30px 0 0;
  overflow: visible;
  width: 100%;
  padding: 50px 40px 24px;
}

.footer-logo li {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 9999;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brnad {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  line-height: 1.5;
  font-style: italic;
}

.outer {
  font-size: 70px;
  color: var(--primary-text-color);
}

.inner {
  font-size: 100px;
  color: var(--secondary-text-color);
}

.footer-copy .footer-sep {
  all: unset;
  display: block;
  flex-basis: 100%;
  height: 2px;
  margin: 40px 0;
  background: var(--line-color);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  width: 111px;
  height: 111px;
  object-fit: contain;
  cursor: pointer;
}

.footer-grid {
  margin: 0 -14px;
}

.footer-col {
  padding: 0 14px;
}

.footer-about,
.footer-block,
.payments,
.socials,
.footer-bottom {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-block {
  margin-top: 40px;
}

.about-text span {
  display: inline-block;
  color: var(--footer-title-color);
  line-height: 1.7;
  font-size: 14px;
  width: 450px;
}

.block-title > span {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: var(--footer-title-color);
  font-family: "Playfair Display", serif;
}

.payments {
  display: flex;
  align-items: center;
  margin-top: 28px;
}

.payments li {
  margin-right: 14px;
}

.payments li:last-child {
  margin-right: 0;
}

.pay-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 46px;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pay-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(255, 255, 255, 0.15) 38%,
    rgba(255, 255, 255, 0) 55%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

.pay-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.pay-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.socials {
  display: flex;
  align-items: center;
  margin-top: 24px;
  margin-left: -40px;
}

.socials li {
  margin-right: 14px;
}

.socials li:last-child {
  margin-right: 0;
}

.access-span {
  padding-bottom: 20px;
  color: var(--primary-text-color);
}

.faqs-span {
  padding-bottom: 20px;
  color: var(--primary-text-color);
}

.footer-block .access-span a,
.footer-block .faqs-span a {
  color: var(--primary-text-color);
}

.footer-bottom a {
  color: var(--primary-text-color);
}

.soc {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #5a5a5a;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.2s ease;
}

.soc i {
  font-size: 16px;
  line-height: 1;
}

.soc:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.soc[aria-label="LinkedIn"]:hover {
  color: #0a66c2;
}

.soc[aria-label="Facebook"]:hover {
  color: #1877f2;
}

.soc[aria-label="X"]:hover {
  color: #111;
}

.soc[aria-label="Instagram"]:hover {
  color: #e1306c;
}

.soc[aria-label="WhatsApp"]:hover {
  color: #25d366;
}

.footer-block li {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.footer-block li .icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  transition: transform 0.25s ease, filter 0.25s ease;
  margin-top: -12px;
}

.footer-block li .icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(27%) sepia(7%) saturate(419%)
    hue-rotate(2deg) brightness(95%) contrast(90%);
  margin-top: 10px;
}

.footer-block li:hover .icon-wrap {
  transition: color 0.9s ease, transform 0.9s ease;
}
.footer-block li:hover .icon-wrap img {
  filter: brightness(0) saturate(100%) invert(49%) sepia(12%) saturate(1551%)
    hue-rotate(336deg) brightness(90%) contrast(90%);
}

.span-num {
  color: var(--dark-text-color);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.span-num > span {
  color: var(--footer-title-color);
  font-size: 14px;
  font-weight: 900;
}

.span-para {
  font-size: 14px;
  margin-bottom: 20px;
  cursor: pointer;
  color: var(--primary-text-color);
}

.span-para-contact {
  padding-bottom: 20px;
}

.footer-sep {
  height: 1px;
  width: 100%;
  background: #e5e5e5;
  margin: 24px 0 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-bottom li {
  margin: 0;
}

.footer-bottom span {
  color: var(--primary-text-color);
  font-size: 15px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 -14px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 14px;
}

.footer-block a {
  position: relative;
  display: inline-block;
  color: var(--primary-text-color);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-block a::after {
  content: "";
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-block a:hover {
  color: var(--secondary-text-color);
  transform: scale(1.05);
}

.footer-block a:hover::after {
  width: 60%;
}

.span-para-contact:hover {
  color: var(--secondary-text-color);
  transform: scale(1.05);
}

.footer-block li:hover .icon-wrap {
  transform: translateY(-3px) scale(1.1);
  filter: brightness(1.1);
}

.footer-block li.span-para-contact a,
.footer-block li.span-para-contact a:hover,
.footer-block li.span-para-contact a:focus {
  color: var(--primary-text-color) !important;
  transform: none !important;
  text-decoration: none !important;
}
.footer-block li.span-para-contact a::after {
  display: none !important;
}

/* Media Queries */
/* <=1400px */
@media screen and (max-width: 1400px) {
  /* Header Section */
  .nav-contact {
    margin-right: 75px;
  }

  /* Items Section */
  .items-hero {
    height: 420px;
  }
  .prod-thumb {
    height: 380px;
  }

  /* Footer Section */
  .footer-copy {
    padding: 60px 40px 24px;
  }
  .outer {
    font-size: 60px;
  }
  .inner {
    font-size: 86px;
  }
  .about-text span {
    width: 420px;
  }
}

/* <=1200px */
@media screen and (max-width: 1200px) {
  /* GSAP */
  .flair {
    display: none;
  }
  /* About Header Section */
  .nav-link {
    font-size: 12px;
  }
  .main-logo {
    width: 101px;
  }
  .search-input::placeholder {
    font-size: 12px;
  }
  .nav-contact {
    margin-right: 80px;
  }
  .nav-link {
    margin-right: 5px;
  }

  /* Banner Section */
  .about-banner-copy {
    padding: 80px 30px;
  }

  /* Items Section */
  .items-hero {
    height: 360px;
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .search-icon {
    left: 95%;
  }
  .prod-thumb {
    height: 620px;
    width: 400px;
  }
  .prod-thumb img {
    max-width: 84%;
    max-height: 90%;
  }

  /* Footer Section */
  .custom-40,
  .custom-20 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer-grid {
    justify-content: center;
  }
  .footer-col {
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
  }
  .payments,
  .socials {
    justify-content: center;
  }
  .about-text span {
    width: auto;
    max-width: 560px;
  }
  .pay-card {
    width: 78px;
    height: 44px;
  }
}

/* <=992px */
@media screen and (max-width: 991px) {
  /* Header Section */
  .search-wrap {
    max-width: 100%;
  }
  .brand-logo > a {
    width: 71px;
  }
  .offcanvas-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 18px 28px;
  }
  .offcanvas .search-wrap {
    width: 100%;
    max-width: 260px;
    margin: 12px auto 16px;
  }
  .offcanvas .search-input {
    background: var(--tertiary-text-color);
    border: 1px solid rgba(0, 0, 0, 0.18) !important;
    box-shadow: none !important;
  }
  .offcanvas .navbar-nav {
    width: 100%;
    text-align: center;
    padding-left: 0;
    margin: 10px auto 10px;
  }
  .offcanvas .navbar-nav .nav-item {
    display: block;
    margin: 0 auto 10px;
  }
  .offcanvas .navbar-nav .nav-link {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.2;
    padding: 6px 0;
    color: var(--tertiary-text-color);
  }
  .nav-icons {
    margin: 0 auto;
    padding: 30px 30px;
  }
  .nav-icon-account i,
  .nav-icon-cart i {
    margin-right: 60px;
  }
  .nav-icon-account i,
  .nav-icon-cart i,
  .nav-icon-heart i {
    color: var(--tertiary-text-color);
  }
  .offcanvas .navbar-nav .dropdown {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .offcanvas .navbar-nav .dropdown + .nav-item {
    margin-top: 6px;
  }
  .dropdown-menu {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.15) 0%,
      rgba(0, 0, 0, 0.25) 100%
    );
    border: 2px solid var(--tertiary-text-color);
    border-radius: 10px;
    box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.2),
      0 4px 10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    padding: 6px 0;
    transform: perspective(800px) translateZ(0);
    animation: dropdownPop 0.3s ease forwards;
  }
  .dropdown-item {
    color: var(--tertiary-text-color);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    text-align: center;
    position: relative;
    transition: all 0.25s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .dropdown-item:last-child {
    border-bottom: none;
  }
  .dropdown-item:hover {
    background: linear-gradient(
      145deg,
      var(--secondary-text-color) 0%,
      var(--primary-text-color) 100%
    );
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4),
      inset 0 2px 4px rgba(255, 255, 255, 0.15);
    border-radius: 6px;
  }
  .dropdown-item:active {
    transform: translateY(1px);
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.4),
      0 1px 2px rgba(255, 255, 255, 0.1);
  }
  .offcanvas {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(239, 239, 239, 0.35)),
      url("../assets/page-one-images/navbar-banner/offcanvas_background.jpg")
        no-repeat center/cover;
    z-index: 9000;
  }
  .hover-link::before,
  .hover-link::after {
    display: none !important;
  }
  .off-divider {
    position: relative;
    width: 100%;
    height: 2px;
    background: transparent;
    overflow: hidden;
    margin: 6px 0 16px;
  }
  .mb-2 {
    margin-top: -0.5rem !important;
  }
  .off-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #d0a676, #8b5e3c, #d0a676);
    animation: dividerGrow 1.2s ease forwards;
  }
  @keyframes dividerGrow {
    from {
      width: 0;
      opacity: 0.3;
      transform: scaleX(0);
      transform-origin: left;
    }
    to {
      width: 100%;
      opacity: 1;
      transform: scaleX(1);
    }
  }

  /* Banner Section */
  .about-banner-copy {
    padding: 70px 24px;
  }
  .about-banner-title {
    font-size: 100px;
  }

  /* Items Section */
  .items-hero {
    height: 300px;
  }
  .prod-thumb {
    height: 480px;
    width: 300px;
  }
  .prod-thumb img {
    max-width: 86%;
    max-height: 92%;
  }

  /* Batch Section */
  .batch-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  .batch {
    flex: 0 0 calc(33.333% - 24px);
  }
  .divider {
    display: none;
  }
  .batch:nth-of-type(4) {
    margin-top: 40px;
  }

  /* Footer Section */
  .span-para {
    font-size: 12px;
  }
  .span-para-contact > a {
    text-align: start;
  }
  .custom-40 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .custom-20 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
  .footer-grid {
    justify-content: center;
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
  .payments,
  .socials {
    justify-content: center;
  }
  .about-text span {
    width: auto;
    max-width: 680px;
  }
  .span-num > span {
    font-size: 12px;
  }
}

/* <=768px */
@media screen and (max-width: 768px) {
  /* Banner Section */
  .about-banner-copy {
    padding: 60px 20px;
    border-radius: 24px;
  }
  .about-banner-links a,
  .about-banner-links span {
    margin: 0 6px;
  }
  .about-banner-title {
    font-size: 80px;
  }

  /* Items Section */
  .products-grid {
    grid-template-columns: 1fr;
  }
  .items-hero {
    height: 220px;
    border-radius: 20px;
  }
  .results-info {
    flex: 1 0 100%;
  }
  .items-toolbar.under-hero {
    justify-content: center;
  }
  .results-info {
    text-align: center;
  }
  .prod-thumb {
    height: 420px;
    border-radius: 16px;
  }
  .prod-thumb img {
    max-width: 100%;
    max-height: 92%;
  }

  /* Batch Section */
  .batch {
    flex: 0 0 calc(50% - 20px);
    justify-content: center;
    align-items: center;
  }
  .batch:nth-of-type(1) {
    margin-bottom: 40px;
  }
  .batch:nth-of-type(2) {
    margin-bottom: 40px;
  }
  .batch:nth-of-type(4) {
    margin-top: 0;
  }
  .batch-row {
    justify-content: center;
  }

  /* Footer Section */
  .span-para {
    font-size: 12px;
  }
  .span-para-contact > a {
    text-align: start;
  }
  .custom-20 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .custom-20:last-of-type {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-grid {
    justify-content: center;
  }
  .footer-col {
    align-items: center;
    text-align: center;
  }
  .pay-card {
    width: 74px;
    height: 42px;
  }
  .soc {
    width: 38px;
    height: 38px;
  }
  .about-text span {
    width: 550px;
  }
}

/* <=576px */
@media screen and (max-width: 576px) {
  /* Banner Section */
  .about-banner-copy {
    padding: 50px 16px 40px;
    border-radius: 20px;
    min-height: 300px;
  }
  .about-banner-title {
    font-size: 40px;
  }
  .about-banner-links a,
  .about-banner-links span {
    margin: 0 5px;
    font-size: 14px;
  }

  /* Items Section */
  .prod-thumb {
    height: 190px;
  }
  .prod-thumb img {
    max-width: 78%;
  }
  .filters-dialog-foot {
    justify-content: center;
    gap: 10px;
    padding: 14px;
  }
  .filters-dialog-foot button {
    width: 45%;
    font-size: 13px;
    padding: 9px 0;
  }
  .prod-thumb {
    height: 380px;
    width: 250px;
  }
  .prod-thumb img {
    max-width: 90%;
    max-height: 92%;
  }
  .search-icon {
    margin-left: -20px;
  }

  .items-hero {
    height: 190px;
  }
  .search-icon {
    left: 98%;
  }

  /* Batch Section */
  .batch {
    flex: 0 0 calc(100% - 24px);
    justify-content: center;
    text-align: center;
  }
  .batch:nth-of-type(3) {
    margin-bottom: 40px;
  }

  /* Footer Section */
  .footer-block {
    margin-top: 0;
  }
  .span-para {
    font-size: 11px;
  }
  .custom-40,
  .custom-20 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer-copy {
    padding: 70px 20px 40px;
    text-align: center;
  }
  .footer-col {
    width: 100%;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
  }
  .footer-brnad {
    margin-bottom: 10px;
    text-align: center;
  }
  .outer {
    font-size: 40px;
    line-height: 1;
  }
  .inner {
    font-size: 60px;
  }
  .about-text span {
    display: block;
    max-width: 95%;
    margin: 10px auto 24px;
    line-height: 1.6;
  }
  .payments {
    justify-content: center;
    flex-wrap: wrap;
    margin: 10px 0 26px;
  }
  .payments li {
    margin: 6px;
  }
  .pay-card {
    width: 72px;
    height: 40px;
  }
  .footer-block,
  .footer-block li,
  .footer-block a,
  .block-title span {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .footer-block li {
    margin: 8px 0;
  }
  .footer-block a {
    display: inline-block;
    margin: 0 6px;
    color: var(--primary-text-color);
    text-decoration: none;
    transition: color 0.25s ease;
  }
  .footer-block a:hover {
    color: var(--secondary-text-color);
  }
  .block-title span {
    display: block;
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 700;
  }
  .socials {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .socials li {
    margin: 6px 10px;
  }
  .soc {
    width: 38px;
    height: 38px;
  }
  .footer-sep {
    margin: 24px 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 8px;
  }
  .footer-bottom li {
    margin: 6px 0;
  }
  .about-text span {
    width: 250px;
    margin: 20px auto;
  }
  .footer-col {
    margin-bottom: 10px;
  }
  .footer-bottom span {
    font-size: 12px;
  }
}

/* <=320px */
@media screen and (max-width: 320px) {
  /* Items Section */
  .items-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .filters-dialog {
    width: 96vw;
    border-radius: 14px;
  }
}

/* Special Media Queries */
/* <=1200px */
@media screen and (min-width: 1200px) {
  /* Items Section */
  .items-section .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
