@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);
}

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

ul {
  list-style-type: none;
}

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

/* 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 {
  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;
}

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

#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;
}

/* Auth Section */
.auth-section {
  padding: 0 0 60px 0;
}
.from-validate {
  background: url("../assets/other-images/r-l-background.png") no-repeat
    center/cover;
  border-radius: 30px;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  padding: 110px 20px 30px;
}

.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "username email"
    "password register"
    "remember remember"
    "login    login"
    "forgot   forgot";

  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.grid-username {
  grid-area: username;
}
.grid-email {
  grid-area: email;
}
.grid-password {
  grid-area: password;
}
.grid-register {
  grid-area: register;
  display: flex;
  align-items: flex-end;
}
.grid-login {
  grid-area: login;
}
.grid-forgot {
  grid-area: forgot;
  margin: 25px 0 0 15px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: var(--tertiary-text-color);
  letter-spacing: 0.2px;
}

.form-group input {
  width: 100%;
  padding: 14px 16px;
  border: 0;
  outline: 0;
  background: #fff;
  color: #333;
  box-shadow: none;
  margin-bottom: 40px;
}

.grid-username {
  width: 92%;
  margin-left: 20px;
}

.grid-email {
  width: 92%;
  margin-left: 20px;
}

.grid-password {
  width: 92%;
  margin-left: 20px;
}

.hint {
  display: block;
  margin-top: 8px;
  color: #f0e6de;
  font-size: 12px;
  opacity: 0.95;
}

.button {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
  padding-block: 0.45rem;
  padding-inline: 1.5rem;
  background-color: var(--secondary-text-color);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tertiary-text-color);
  border: 2px solid #ffffff40;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  cursor: pointer;
  width: 200px;
  text-align: center;
}

.icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
  color: #fff;
  margin-left: 8px;
}

.button:hover {
  transform: scale(1.05);
  border-color: #fff9;
}

.button:hover .icon {
  transform: translate(4px);
}

.button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.5;
}

.button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

@keyframes shine {
  0% {
    left: -100px;
  }
  60% {
    left: 100%;
  }
  to {
    left: 100%;
  }
}

.button.btn-register {
  height: 50px;
  margin-top: 36px;
  margin-left: 17px;
  width: 250px;
}

.button.btn-login {
  margin-top: 10px;
  margin-left: 15px;
  justify-self: start;
  width: 150px;
  height: 55px;
}

.button.btn-register {
  height: 50px;
  margin-top: 36px;
  margin-left: 17px;
}

.button.btn-login {
  margin-top: 10px;
  justify-self: start;
}

.forgot-password .forgot-link {
  color: var(--tertiary-text-color);
}

.error {
  display: block;
  margin-top: 8px;
  color: #ffe0e0;
  font-size: 12px;
  min-height: 16px;
}

.forgot-password {
  margin: 25px 0 0 15px;
}

.forgot-link {
  position: relative;
  color: var(--tertiary-text-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.forgot-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: var(--tertiary-text-color);
  transition: width 0.3s ease;
}

.forgot-link:hover {
  color: var(--tertiary-text-color);
  transform: translateY(-1px);
}

.forgot-link:hover::after {
  width: 100%;
}

.forgot-link:hover {
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.4);
}

.grid-remember {
  margin-left: -10px;
}
.checkbox-wrapper-12 {
  position: relative;
  margin-left: 20px;
}

.checkbox-wrapper-12 > svg {
  display: none;
}

.checkbox-wrapper-12 * {
  box-sizing: border-box;
}

.checkbox-wrapper-12 input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 0;
  outline: none;
}

.checkbox-wrapper-12 .cbx {
  width: 24px;
  height: 24px;
  position: relative;
}

.checkbox-wrapper-12 .cbx input {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: none;
  transition: all 0.3s ease;
}

.checkbox-wrapper-12 .cbx label {
  width: 24px;
  height: 24px;
  background: none;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.checkbox-wrapper-12 .cbx svg {
  position: absolute;
  top: 5px;
  left: 4px;
  z-index: 1;
  pointer-events: none;
}

.checkbox-wrapper-12 .cbx svg path {
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 19;
  stroke-dashoffset: 19;
  transition: stroke-dashoffset 0.3s ease;
  transition-delay: 0.2s;
}

.checkbox-wrapper-12 .cbx input:checked + label {
  animation: splash-12 0.6s ease forwards;
}

.checkbox-wrapper-12 .cbx input:checked + label + svg path {
  stroke-dashoffset: 0;
}

@keyframes splash-12 {
  40% {
    background: var(--secondary-text-color);
    box-shadow: 0 -18px 0 -8px var(--secondary-text-color),
      16px -8px 0 -8px var(--secondary-text-color),
      16px 8px 0 -8px var(--secondary-text-color),
      0 18px 0 -8px var(--secondary-text-color),
      -16px 8px 0 -8px var(--secondary-text-color),
      -16px -8px 0 -8px var(--secondary-text-color);
  }
  100% {
    background: var(--secondary-text-color);
    box-shadow: none;
  }
}

.checkbox-label {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-left: 10px;
}

.checkbox-label span {
  margin-left: 12px;
}

#authModalOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

#authModalOverlay.show {
  display: flex;
}

#authModalBox {
  background: var(--secondary-text-color);
  color: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 420px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

#authModalMsg {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

#authModalClose {
  width: 160px;
  margin: 12px auto 0 auto;
}

.error {
  display: block;
  margin-top: -30px;
  margin-bottom: 25px;
  color: #ff4d4f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  min-height: 16px;
}

/* 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 */
/* <=1600px */
@media screen and (max-width: 1600px) {
  /* Auth Section */
  .checkbox-label {
    margin-bottom: 20px;
  }
}

/* <=1400px */
@media screen and (max-width: 1400px) {
  /* 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) {
  /* 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;
  }

  /* 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);
    }
  }

  /* Auth Section */
  .auth-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "username"
      "email"
      "password"
      "register"
      "remember"
      "login"
      "forgot";
    justify-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  .grid-username,
  .grid-email,
  .grid-password {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .form-group input {
    width: 100%;
    margin: 0;
  }
  .button.btn-register,
  .button.btn-login {
    width: 100%;
    max-width: 400px;
    margin: 20px auto 0 auto;
  }
  .checkbox-label {
    justify-content: flex-start;
    align-items: center;
    margin: 24px 0 0 0;
  }
  .checkbox-wrapper-12 {
    margin-left: 0;
  }
  .checkbox-wrapper-12 .cbx {
    margin: 0;
  }
  .checkbox-label span {
    margin: 0 0 0 10px;
  }
  .forgot-password {
    margin: 20px 0 0 0;
    text-align: center;
    width: 100%;
  }
  .from-validate {
    padding: 60px 20px;
    min-height: auto;
  }
  .grid-login {
    margin-top: -5px;
  }
  .error {
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 22px;
  }

  /* 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) {
  /* 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) {
  /* Auth Section */
  .grid-username,
  .grid-email,
  .grid-password {
    max-width: 320px;
  }
  .button.btn-register,
  .button.btn-login {
    max-width: 320px;
    width: 100%;
    margin: 16px auto 0 auto;
  }
  .form-group input {
    width: 100%;
    margin: 0;
  }
  .checkbox-label {
    margin-top: 20px;
  }
  .checkbox-wrapper-12 {
    margin-left: 0;
  }
  .checkbox-wrapper-12 .cbx {
    margin: 0;
  }
  .checkbox-label span {
    margin-left: 10px;
  }
  .forgot-password {
    margin: 18px 0 0 0;
    text-align: center;
  }

  /* 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;
  }
}
