@font-face {
  font-family: "DubaiStyle";
  src: url("./fonts/GveretLevinAlefAlefAlef-Regular.otf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "HeroTitle";
  src: url("./fonts/SecularOne-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "MainFont";
  src: url("./fonts/Rubik[wght].ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap");

:root {
  --navy: #071728;
  --navy2: #0b2238;
  --navy3: #102f4c;
  --gold: #c9a34a;
  --gold2: #e3c56e;
  --goldDark: #9f7d2c;
  --text: #0f1d2f;
  --muted: #667386;
  --line: #e7e2d8;
  --bg: #f4f1eb;
  --card: #ffffff;
  --danger: #a33;
  --shadow: 0 14px 35px rgba(7, 23, 40, 0.12);
  --shadowSoft: 0 8px 22px rgba(7, 23, 40, 0.08);
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: "MainFont", Heebo, Arial, sans-serif;
  color: var(--text);
  padding-bottom: 92px;
  overflow-x: hidden;
}

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

button,
input,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

.topHeader {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  z-index: 10;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  color: #fff;
}

.hamb,
.cartIcon {
  border: 0;
  background: transparent;
  color: var(--gold2);
  font-size: 29px;
  line-height: 1;
}

.topLogo img {
  width: 155px;
  display: block;
}

.cartIcon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
}

.cartIcon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
}

.cartIcon b {
  position: absolute;
  top: -6px;
  right: -7px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: var(--gold2);
  color: var(--navy);
  border: 2px solid rgba(7, 23, 40, 0.25);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.pageHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 84px;
  padding: 0 26px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(227, 197, 110, 0.22);
}

.pageBrand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pageBrand img {
  width: 58px;
  height: auto;
  display: block;
}

.pageBrandText h2 {
  margin: 0;
  color: var(--gold2);
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.pageBrandText p {
  margin: 4px 0 0;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  opacity: 0.88;
}

.cartIcon.dark {
  color: var(--gold2);
}

.hero {
  position: relative;
  min-height: 610px;
  background: url("./img/dubai-bg.jpg") center/cover;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 180px 25px 54px;
  border-radius: 0;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(227, 197, 110, 0.55);
  z-index: 2;
}

.heroOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(5, 16, 29, 0.82),
      rgba(5, 16, 29, 0.36) 45%,
      rgba(5, 16, 29, 0.72)
    ),
    linear-gradient(
      90deg,
      rgba(5, 16, 29, 0.55),
      transparent 48%,
      rgba(5, 16, 29, 0.35)
    );
  z-index: 0;
}

.hero > *:not(.heroOverlay) {
  position: relative;
  z-index: 1;
}

.logoHero {
  width: 170px;
  margin: 0 auto 55px;
  display: block;
}

.hero h1 {
  font-family: "HeroTitle", Heebo, Arial, sans-serif;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.98;
  margin: 0;
  font-weight: 900;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.42);
}

.hero h1 span {
  display: block;
  color: var(--gold2);
  font-family: "DubaiStyle", Heebo, Arial, sans-serif;
  font-size: clamp(50px, 6.3vw, 82px);
  font-weight: 400;
  line-height: 0.9;
  margin-top: 2px;
}

.hero p {
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  font-weight: 600;
}

.goldBtn,
.hero .goldBtn,
.card button,
.listBottom button,
.productPay button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  font-weight: 900;
  padding: 14px 30px;
  font-size: 18px;
  box-shadow: 0 8px 18px rgba(201, 163, 74, 0.24);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease;
}

.goldBtn:hover,
.card button:hover,
.listBottom button:hover,
.productPay button:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 10px 22px rgba(201, 163, 74, 0.3);
}

.section {
  padding: 38px 26px;
}

.waveUp {
  margin-top: 0;
  position: relative;
  z-index: 2;
  background: var(--bg);
  border-radius: 0;
  border-bottom: 1px solid var(--line);
}

.titleLine {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 6px 0 28px;
}

.titleLine span {
  height: 1px;
  width: 48px;
  background: var(--gold);
}

.titleLine h2,
.mainTitle {
  font-size: 30px;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  font-weight: 900;
  color: var(--navy);
}

.circleCats {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;

  scroll-snap-type: x mandatory;

  max-width: 980px;
  margin: 0 auto;

  padding: 8px 16px 18px;

  scrollbar-width: none;
}

.circleCats::-webkit-scrollbar {
  display: none;
}

.circleCats a {
  flex: 0 0 130px;
  scroll-snap-align: center;

  text-align: center;
  font-weight: 800;
  color: var(--navy);
}

.circleCats img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: var(--shadowSoft);
}

.circleCats span {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.productGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
  margin: 22px auto 0;
}

.card {
  background: var(--card);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 29, 47, 0.08);
  box-shadow: var(--shadowSoft);
}

.pic {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.card:hover .pic img {
  transform: scale(1.03);
}

.pic em {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(201, 163, 74, 0.96);
  padding: 5px 12px;
  border-radius: 4px;
  font-style: normal;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
}

.pic i {
  position: absolute;
  top: 10px;
  left: 12px;
  color: #fff;
  font-size: 29px;
  font-style: normal;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
}

.card h3 {
  margin: 0;
  padding: 17px 16px 6px;
  font-size: 20px;
  line-height: 1.3;
  color: var(--navy);
}

.price {
  padding: 0 16px 14px;
  display: flex;
  gap: 9px;
  align-items: end;
}

.price b {
  font-size: 28px;
  line-height: 1;
  color: var(--navy);
}

.price span {
  color: var(--muted);
  font-size: 14px;
}

.card button {
  width: calc(100% - 32px);
  margin: 0 16px 18px;
  padding: 11px;
  font-size: 15px;
}

.benefits {
  max-width: 1120px;
  margin: 28px auto;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px 12px;
  box-shadow: var(--shadowSoft);
  border: 1px solid rgba(227, 197, 110, 0.2);
}

.benefits div {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 10px;
}

.benefits div:last-child {
  border-left: 0;
}

.benefits b {
  display: block;
  color: #fff;
  font-size: 16px;
}

.benefits small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.bottomNav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 78px;
  background: rgba(255, 255, 255, 0.98);
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.1);
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.bottomNav a {
  text-align: center;
  color: #69717d;
  font-size: 24px;
  line-height: 1;
  padding-top: 5px;
}

.bottomNav span {
  display: block;
  margin-top: 7px;
  font-size: 15px;
  line-height: 1.1;
  font-weight: normal;
  font-family: "HeroTitle", sans-serif;
}
.bottomNav .active,
.bottomNav .active span {
  color: var(--goldDark);
  font-weight: 900;
}

.pageWrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 100px 24px 34px;
}

.pageTitle {
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--navy);
}

.pageSub {
  text-align: center;
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 24px;
}

.categoryGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.catBox {
  background: #fff;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 29, 47, 0.08);
  box-shadow: var(--shadowSoft);
}

.catBox img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}

.catBox h3 {
  font-size: 24px;
  margin: 16px 18px 3px;
  color: var(--navy);
}

.catBox p {
  margin: 0 18px 20px;
  color: var(--muted);
}

.categoryHero {
  position: relative;
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 95px 24px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(227, 197, 110, 0.28);
}

.categoryHero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-top: 18px;
  display: block;
  border-radius: 0;
}

.categoryHero h1 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0;
}

.categoryHero p {
  font-size: 18px;
  margin: 7px 0 0;
  opacity: 0.9;
}

.back {
  position: absolute;
  top: 50px;
  right: 20px;
  color: white;
  font-size: 42px;
}

.roundedTop {
  margin-top: 0;
  position: relative;
  background: var(--bg);
  border-radius: 0;
}

.filtersRow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.filterBtn,
select {
  background: white;
  border: 1px solid #d8d4ca;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 16px;
  color: var(--text);
}

.listProducts {
  display: grid;
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}

.listCard {
  background: white;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 29, 47, 0.08);
  box-shadow: var(--shadowSoft);
  overflow: hidden;
}

.listCard a {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 16px;
  padding: 12px;
}

.listCard img {
  width: 170px;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
}

.listCard h3 {
  margin: 0;
  font-size: 22px;
  color: var(--navy);
}

.listCard h3 span {
  float: left;
  color: #aaa;
}

.listCard p {
  margin: 8px 0;
  color: #4e5a68;
}

.listCard small {
  color: var(--goldDark);
  font-weight: 800;
}

.listBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.listBottom b {
  font-size: 27px;
  color: var(--navy);
}

.listBottom button {
  font-size: 14px;
  padding: 9px 18px;
}

.productHeroImg {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.productInfo {
  background: white;
  border-radius: 0;
  margin: 0 auto;
  position: relative;
  padding: 30px 26px;
  box-shadow: var(--shadowSoft);
  max-width: 940px;
  border: 1px solid rgba(15, 29, 47, 0.08);
}

.productInfo h1 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0;
  color: var(--navy);
}

.productInfo p {
  font-size: 19px;
  color: #4e5a68;
}

.rating {
  color: var(--goldDark);
  font-weight: 900;
  margin: 12px 0 20px;
}

.productInfo label {
  display: block;
  font-weight: 900;
  margin-top: 14px;
  color: var(--navy);
}

.productInfo input,
.productInfo select,
.searchBox {
  width: 100%;
  border: 1px solid #d8d4ca;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 15px;
  font-size: 17px;
  margin-top: 7px;
}

.productPay {
  position: sticky;
  bottom: 92px;
  background: white;
  padding-top: 18px;
}

.productPay b {
  font-size: 34px;
  margin-left: 12px;
  color: var(--navy);
}

.productPay a {
  display: block;
  margin-top: 12px;
  background: var(--navy);
  color: white;
  text-align: center;
  border-radius: var(--radius);
  padding: 14px;
  font-weight: 900;
}

.cartItem {
  display: grid;
  grid-template-columns: 98px 1fr 64px;
  gap: 13px;
  background: white;
  padding: 12px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadowSoft);
  border: 1px solid rgba(15, 29, 47, 0.08);
  align-items: center;
}

.cartItem img {
  width: 98px;
  height: 98px;
  object-fit: cover;
  border-radius: 4px;
}

.cartItem h3 {
  margin: 0;
  color: var(--navy);
}

.cartItem p {
  margin: 4px 0;
  color: var(--muted);
}

.cartItem button {
  border: 1px solid #ddd;
  background: #f4f4f4;
  border-radius: var(--radius);
  padding: 10px;
  font-weight: 800;
}

.cartSummary,
.emptyBox {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadowSoft);
  border: 1px solid rgba(15, 29, 47, 0.08);
}

.cartSummary {
  padding: 22px;
}

.payLinks a {
  display: block;
  margin-top: 10px;
  background: var(--gold);
  color: #111;
  padding: 14px;
  border-radius: var(--radius);
  font-weight: 900;
  text-align: center;
}

.emptyBox {
  padding: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 19px;
}

.floatWa {
  position: fixed;
  right: 18px;
  bottom: 96px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  z-index: 30;
  font-size: 28px;
  box-shadow: var(--shadow);
}

.popupShade {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 22px;
}

.waPopup {
  background: #fff;
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  text-align: center;
  padding: 26px;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  border-top: 4px solid var(--gold);
}

.waPopup button {
  position: absolute;
  top: 10px;
  left: 14px;
  border: 0;
  background: transparent;
  font-size: 34px;
  font-weight: 900;
}

.waPopup h3 {
  font-size: 20px;
  margin: 18px 0 4px;
}

.waPopup h2 {
  font-size: 34px;
  line-height: 1.1;
  margin: 0;
  color: var(--navy);
}

.waPopup p {
  font-size: 18px;
  color: #444;
}

.waPopup img {
  width: 150px;
  display: block;
  margin: 12px auto;
}

.confetti {
  color: var(--gold);
  font-size: 28px;
}

.accountBox {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadowSoft);
  border: 1px solid rgba(15, 29, 47, 0.08);
  max-width: 520px;
  margin: 26px auto;
}

.accountBox h2 {
  margin: 0 0 18px;
  text-align: center;
  color: var(--navy);
}

.accountBox p {
  color: var(--muted);
}

.accountBox input {
  width: 100%;
  border: 1px solid #d8d4ca;
  border-radius: var(--radius);
  padding: 14px 15px;
  font-size: 17px;
  margin-bottom: 12px;
  background: #fff;
}

.authBtn {
  width: 100%;
  border: 1px solid #d8d4ca;
  border-radius: var(--radius);
  padding: 14px 15px;
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 12px;
  background: #fff;
  cursor: pointer;
  color: var(--navy);
}

.authBtn.black {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.goldBtn.full {
  width: 100%;
  margin-bottom: 12px;
}

.orLine {
  text-align: center;
  color: var(--muted);
  margin: 16px 0;
  font-weight: 700;
}

#authBox,
#userBox,
#phoneBox {
  display: none;
}

.notFound h1 {
  font-size: 100px;
  color: var(--gold);
  margin: 0;
}

.notFound h2 {
  font-size: 34px;
  margin: 0 0 10px;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 86px;
  }

  .topHeader {
    top: 35px;
    padding: 16px 20px;
  }

  .topLogo img {
    width: 135px;
  }

  .hero {
    min-height: 585px;
    padding: 165px 18px 44px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero h1 span {
    font-size: 54px;
  }

  .hero p {
    font-size: 18px;
  }

  .section {
    padding: 32px 16px;
  }

  .titleLine h2,
  .mainTitle {
    font-size: 27px;
  }

  .circleCats {
    gap: 14px;
    justify-content: flex-start;
    padding-right: 18px;
    padding-left: 18px;
  }

  .circleCats a {
    flex: 0 0 110px;
    font-size: 14px;
  }

  .circleCats img {
    width: 74px;
    height: 74px;
  }

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

  .pic {
    height: 130px;
  }

  .card h3 {
    font-size: 15px;
    min-height: 58px;
    padding: 12px 10px 4px;
  }

  .price {
    padding: 0 10px 10px;
  }

  .price b {
    font-size: 22px;
  }

  .price span {
    font-size: 12px;
  }

  .card button {
    width: calc(100% - 20px);
    margin: 0 10px 12px;
    padding: 9px;
    font-size: 13px;
  }

  .benefits {
    grid-template-columns: repeat(4, 1fr);
    font-size: 12px;
    margin: 22px 14px;
    padding: 18px 6px;
  }

  .benefits b {
    font-size: 11px;
  }

  .benefits small {
    font-size: 10px;
  }

  .pageHeader {
    height: 78px;
    padding: 0 16px;
  }

  .pageBrand img {
    width: 50px;
  }

  .pageBrandText h2 {
    font-size: 21px;
  }

  .pageBrandText p {
    font-size: 11px;
  }

  .pageWrap {
    padding: 92px 16px 28px;
  }

  .pageTitle {
    font-size: 34px;
  }

  .categoryGrid {
    grid-template-columns: 1fr;
  }

  .catBox img {
    height: 175px;
  }

  .listCard a {
    grid-template-columns: 125px 1fr;
    gap: 12px;
  }

  .listCard img {
    width: 125px;
    height: 145px;
  }

  .listCard h3 {
    font-size: 19px;
  }

  .listCard p {
    font-size: 14px;
  }

  .listBottom b {
    font-size: 23px;
  }

  .listBottom button {
    font-size: 13px;
    padding: 8px 12px;
  }

  .bottomNav {
    height: 76px;
  }

  .bottomNav span {
    font-size: 16px;
    font-weight: 700;
  }

  .productHeroImg {
    height: 320px;
  }

  .productInfo {
    padding: 24px 18px;
  }

  .cartItem {
    grid-template-columns: 88px 1fr 55px;
  }

  .cartItem img {
    width: 88px;
    height: 88px;
  }
}

@media (max-width: 420px) {
  .productGrid {
    gap: 8px;
  }

  .pic {
    height: 118px;
  }

  .card h3 {
    font-size: 14px;
  }

  .goldBtn,
  .hero .goldBtn {
    font-size: 17px;
    padding: 13px 25px;
  }
}

.cookieBox {
  position: fixed;
  right: 22px;
  left: 22px;
  bottom: 92px;
  z-index: 80;

  max-width: 980px;
  margin: 0 auto;

  background: rgba(7, 23, 40, 0.96);
  color: #fff;

  border: 1px solid rgba(227, 197, 110, 0.35);
  border-top: 4px solid var(--gold);

  padding: 18px 20px;
  display: grid;
  grid-template-columns: 62px 1fr 130px;
  align-items: center;
  gap: 18px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.cookieIcon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookieIcon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.cookieText h3 {
  margin: 0 0 5px;
  color: var(--gold2);
  font-size: 21px;
  font-weight: 900;
}

.cookieText p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.6;
  font-weight: 700;
}

.cookieBox button {
  border: 0;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  font-weight: 900;
  padding: 13px 18px;
  font-size: 16px;
  cursor: pointer;
}

.cookieBox button:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .cookieBox {
    right: 14px;
    left: 14px;
    bottom: 86px;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .cookieIcon {
    width: 46px;
    height: 46px;
  }

  .cookieIcon img {
    width: 30px;
    height: 30px;
  }

  .cookieBox button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

.ordersBtn {
  display: block;
  text-align: center;
  text-decoration: none;
  margin: 12px 0;
}

.accountBox {
  max-width: 620px;
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-top: 4px solid var(--gold);
  padding: 34px;
  box-shadow: 0 18px 45px rgba(7, 23, 40, 0.1);
}

.accountBox h2 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 26px;
}

#userBox p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 17px;
}

#userBox p b {
  color: var(--navy);
}

.ordersBtn {
  display: block;
  text-align: center;
  margin: 24px 0 12px;
  background: #fff;
  border: 1px solid var(--gold);
  color: var(--navy);
}

#logoutBtn {
  margin-top: 10px;
}

.checkoutBtn {
  width: 100%;
  border: 0;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  padding: 15px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.stripePayBtn {
  background: #08213d;
  color: white;
  border: none;
}

.stripePayBtn:hover {
  background: #0d3159;
  transform: translateY(-2px);
}

.productPay {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}

.productPay button,
.productPay a {
  width: 100%;
  height: 56px;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  transition: 0.2s;
}

.addCartBtn {
  background: #fff;
  color: #08213d;
  border: 2px solid #d4b055 !important;
}

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

.bottomNav a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-bottom: 6px;
  transition: all 0.25s ease;
  filter: grayscale(1) brightness(0.6);
}

.bottomNav a.active img {
  filter: drop-shadow(0 0 8px rgba(212, 176, 85, 0.8)) brightness(0)
    saturate(100%) invert(73%) sepia(34%) saturate(880%) hue-rotate(6deg)
    brightness(101%) contrast(96%);

  transform: scale(1.18);
}

.bottomNav a.active span {
  color: var(--gold);
  font-weight: 700;
}

.bottomNav a:active img {
  transform: scale(1.25);
}

.bottomNav a {
  transition: all 0.25s ease;
}

.notFound {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  padding: 30px;
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(227, 197, 110, 0.22),
      transparent 20%
    ),
    linear-gradient(180deg, #061827 0%, #0b2a34 48%, #071d18 100%);
}

.forestBg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.forestBg::before {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -8px;
  height: 38%;
  background:
    linear-gradient(180deg, transparent 0%, rgba(2, 12, 16, 0.9) 70%),
    radial-gradient(ellipse at 50% 100%, rgba(0, 0, 0, 0.75), transparent 55%);
  z-index: 2;
}

.forestBg::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 28%;
  background: #020c10;
  clip-path: polygon(
    0 65%,
    4% 40%,
    8% 70%,
    12% 35%,
    16% 72%,
    21% 42%,
    25% 76%,
    30% 38%,
    35% 70%,
    40% 45%,
    45% 75%,
    50% 34%,
    55% 72%,
    60% 42%,
    66% 78%,
    72% 36%,
    78% 70%,
    84% 44%,
    90% 75%,
    96% 38%,
    100% 66%,
    100% 100%,
    0 100%
  );
  opacity: 0.96;
  z-index: 3;
}

.forestBg span {
  position: absolute;
  bottom: 0;
  width: 150px;
  height: 420px;
  background: #031017;
  clip-path: polygon(
    50% 0,
    64% 22%,
    57% 22%,
    78% 47%,
    66% 47%,
    92% 74%,
    61% 74%,
    61% 100%,
    39% 100%,
    39% 74%,
    8% 74%,
    34% 47%,
    22% 47%,
    43% 22%,
    36% 22%
  );
  z-index: 4;
  opacity: 0.92;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
}

.forestBg span:nth-child(1) {
  right: 5%;
  height: 460px;
}
.forestBg span:nth-child(2) {
  right: 23%;
  height: 350px;
  opacity: 0.7;
}
.forestBg span:nth-child(3) {
  right: 44%;
  height: 290px;
  opacity: 0.52;
}
.forestBg span:nth-child(4) {
  left: 21%;
  height: 370px;
  opacity: 0.75;
}
.forestBg span:nth-child(5) {
  left: 5%;
  height: 500px;
}

.notFoundCard {
  position: relative;
  z-index: 10;
  max-width: 560px;
  width: 100%;
  padding: 46px 34px;
  background: rgba(7, 23, 40, 0.82);
  border: 1px solid rgba(227, 197, 110, 0.45);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(10px);
}

.notFoundCard h1 {
  margin: 0;
  font-size: clamp(92px, 15vw, 170px);
  line-height: 0.8;
  color: var(--gold2);
  text-shadow: 0 0 30px rgba(227, 197, 110, 0.45);
}

.notFoundCard h2 {
  margin: 20px 0 8px;
  font-size: 32px;
  color: #fff;
}

.notFoundCard p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.siteFooter {
  background: #071728;
  text-align: center;
  padding: 18px 15px 110px;
}

.footerLine {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4b055, transparent);
  margin-bottom: 18px;
}

.footerRights {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
}

.footerDev {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.footerDev a {
  color: #d4b055;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s;
}

.footerDev a:hover {
  color: #e7c76b;
  text-shadow: 0 0 10px rgba(212, 176, 85, 0.5);
}

#sideMenu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

#sideMenu.open {
  pointer-events: auto;
}

.menuShade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: 0.25s;
}

#sideMenu.open .menuShade {
  opacity: 1;
}

.sideMenuBox {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--navy);
  color: white;
  padding: 28px;
  transform: translateX(100%);
  transition: 0.28s ease;
  border-left: 1px solid rgba(227, 197, 110, 0.35);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.35);
}

#sideMenu.open .sideMenuBox {
  transform: translateX(0);
}

.closeMenu {
  position: absolute;
  top: 16px;
  left: 18px;
  border: 0;
  background: transparent;
  color: var(--gold2);
  font-size: 36px;
  font-weight: 900;
}

.sideMenuLogo {
  width: 115px;
  display: block;
  margin: 18px auto 16px;
}

.sideMenuBox h2 {
  text-align: center;
  margin: 0;
  color: var(--gold2);
  font-size: 28px;
}

.sideMenuBox p {
  text-align: center;
  margin: 6px 0 26px;
  color: rgba(255, 255, 255, 0.78);
}

.sideMenuLinks {
  display: grid;
  gap: 10px;
}

.sideMenuLinks a {
  display: block;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 800;
  transition: 0.2s;
}

.sideMenuLinks a:hover {
  background: rgba(227, 197, 110, 0.13);
  border-color: rgba(227, 197, 110, 0.42);
  color: var(--gold2);
  transform: translateX(-4px);
}

.sideMenuWhatsapp {
  display: block;
  margin-top: 22px;
  padding: 15px;
  text-align: center;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  font-weight: 900;
}
.sideMenuBox,
.sideMenuLinks a,
.sideMenuWhatsapp {
  font-family: "MainFont", Heebo, Arial, sans-serif;
}

.footerLinks {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footerLinks a {
  color: var(--gold2);
  font-weight: 800;
}

.footerLinks a:hover {
  text-decoration: underline;
}

.legalPage {
  max-width: 980px;
  margin: 0 auto;
  padding: 110px 22px 50px;
}

.legalBox {
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-top: 4px solid var(--gold);
  padding: 34px;
  box-shadow: var(--shadowSoft);
}

.legalBox h1 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 38px;
}

.legalBox h2 {
  margin-top: 30px;
  color: var(--goldDark);
  font-size: 22px;
}

.legalBox p,
.legalBox li {
  color: #334155;
  line-height: 1.9;
  font-size: 16px;
}

.legalBox ul {
  padding-right: 22px;
}

.legalDate {
  color: var(--muted);
  margin-bottom: 28px;
}

.accountLoading {
  text-align: center;
}

.loaderRing {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border: 3px solid rgba(201, 163, 74, 0.22);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: omsSpin 0.9s linear infinite;
}

.accountLoading h2 {
  margin-bottom: 8px;
  color: var(--navy);
}

.accountLoading p {
  margin: 0;
  color: var(--muted);
}

@keyframes omsSpin {
  to {
    transform: rotate(360deg);
  }
}

.authMessage {
  max-width: 620px;
  margin: 0 auto 18px;
  padding: 14px 18px;
  background: #fff;
  border-right: 4px solid var(--gold);
  color: var(--navy);
  font-weight: 800;
  box-shadow: var(--shadowSoft);
}

.authMessage.error {
  border-right-color: #b42318;
  color: #b42318;
}

.authMessage.success {
  border-right-color: var(--gold);
  color: var(--navy);
}

.passwordBox {
  position: relative;
}

.passwordBox input {
  padding-left: 50px;
}

.passwordToggle {
  width: 46px;
  border: 0;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  font-size: 18px;
}

.passwordToggle:hover {
  color: #c9a34a;
}

.floatWa img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.successPage {
  min-height: calc(100vh - 90px);
  padding: 110px 18px 40px;
  display: grid;
  place-items: center;
}

.successBox {
  width: 100%;
  max-width: 720px;
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-top: 4px solid #16a34a;
  padding: 34px;
  text-align: center;
  box-shadow: var(--shadowSoft);
}

.successCheck {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 56px;
  font-weight: 900;
  position: relative;
  box-shadow:
    0 0 0 0 rgba(22, 163, 74, 0.28),
    0 18px 40px rgba(22, 163, 74, 0.28);
  animation:
    successPop 1.15s ease forwards,
    successPulse 2.2s ease-in-out infinite 1.1s;
}

.successCheck::before,
.successCheck::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(22, 163, 74, 0.35);
  animation: successRing 1.6s ease-out forwards;
}

.successCheck::after {
  inset: -26px;
  animation-delay: 0.22s;
}

@keyframes successPop {
  0% {
    transform: scale(0.25) rotate(-18deg);
    opacity: 0;
  }

  45% {
    transform: scale(1.18) rotate(6deg);
    opacity: 1;
  }

  70% {
    transform: scale(0.94) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

@keyframes successRing {
  0% {
    transform: scale(0.45);
    opacity: 0;
  }

  35% {
    opacity: 1;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes successPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(22, 163, 74, 0.18),
      0 18px 40px rgba(22, 163, 74, 0.28);
  }

  50% {
    box-shadow:
      0 0 0 14px rgba(22, 163, 74, 0.08),
      0 22px 48px rgba(22, 163, 74, 0.34);
  }
}
.updateShade {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.62);
  display: grid;
  place-items: center;
  padding: 22px;
}

.siteUpdateBox {
  max-width: 520px;
  width: 100%;
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 30px 26px;
  text-align: center;
  position: relative;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.updateBadge {
  display: inline-flex;
  background: var(--navy);
  color: var(--gold2);
  padding: 8px 18px;
  font-weight: 900;
  margin-bottom: 18px;
}

.siteUpdateBox h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 30px;
}

.siteUpdateBox p {
  color: #334155;
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 24px;
}

.popupClose {
  position: absolute;
  top: 10px;
  left: 14px;
  border: 0;
  background: transparent;
  color: var(--goldDark);
  font-size: 34px;
  font-weight: 900;
}

.updateSuccess {
  margin-top: 15px;
  padding: 14px;
  background: linear-gradient(135deg, #1f8f4a, #26b35d);
  color: #fff;
  font-weight: 800;
  text-align: center;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.35s;
  pointer-events: none;
  box-shadow: 0 10px 25px rgba(38, 179, 93, 0.35);
}

.updateSuccess.show {
  opacity: 1;
  transform: translateY(0);
}

.generalDiscountBanner {
  background: var(--navy);
  color: #fff;
  border-top: 4px solid var(--gold);
  padding: 18px;
  margin-bottom: 18px;
  text-align: center;
  box-shadow: var(--shadowSoft);
}

.generalDiscountBanner b {
  display: block;
  color: var(--gold2);
  font-size: 20px;
  margin-bottom: 5px;
}

.generalDiscountBanner span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.couponBox {
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-top: 4px solid var(--gold);
  padding: 18px;
  margin-bottom: 18px;
}

.couponBox h3 {
  margin: 0 0 12px;
  color: var(--navy);
}

.couponRow {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
}

.couponRow input {
  border: 1px solid #d8d4ca;
  padding: 14px;
  font-size: 16px;
  font-family: inherit;
}

.couponRow button,
.removeCouponBtn {
  border: 0;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  font-weight: 900;
  cursor: pointer;
}

.removeCouponBtn {
  width: 100%;
  padding: 13px;
  margin-top: 10px;
  background: var(--navy);
  color: #fff;
}

.couponMessage {
  margin-top: 10px;
  font-weight: 900;
}

.couponMessage.success {
  color: #15803d;
}

.couponMessage.error {
  color: #b42318;
}

.cartTotalBox {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.cartTotalBox p {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}

.discountLine {
  color: #15803d !important;
  font-weight: 900;
}

@media (max-width: 600px) {
  .couponRow {
    grid-template-columns: 1fr;
  }

  .couponRow button {
    padding: 13px;
  }
}

.homeDiscountBanner {
  max-width: 1120px;
  margin: 26px auto 0;
  background: var(--navy);
  color: #fff;
  border-top: 4px solid var(--gold);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: var(--shadowSoft);
}

.homeDiscountBanner span {
  color: var(--gold2);
  font-weight: 900;
  font-size: 15px;
}

.homeDiscountBanner h2 {
  margin: 6px 0;
  font-size: 28px;
  color: #fff;
}

.homeDiscountBanner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.homeDiscountBanner a {
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  padding: 14px 24px;
  font-weight: 900;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .homeDiscountBanner {
    margin: 18px 16px 0;
    flex-direction: column;
    text-align: center;
  }

  .homeDiscountBanner a {
    width: 100%;
    text-align: center;
  }
}

.discountPrice {
  align-items: center;
}

.discountPrice > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.oldPrice {
  color: #b42318 !important;
  font-size: 16px !important;
  font-weight: 900;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: #b42318;
}

.discountPrice b {
  color: #071728;
  font-size: 30px;
  font-weight: 900;
}

.listBottom .price {
  padding: 0;
}

.listBottom .discountPrice {
  display: flex;
  align-items: center;
  gap: 8px;
}

#resetBox p {
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.confirmShade {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 22px;
}

.confirmBox {
  max-width: 460px;
  width: 100%;
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 28px;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
}

.confirmBox h2 {
  margin: 0 0 10px;
  color: var(--navy);
}

.confirmBox p {
  color: var(--muted);
  line-height: 1.7;
}

.confirmActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.confirmActions .authBtn,
.confirmActions .goldBtn {
  margin: 0;
  width: 100%;
}

.userOrderCard {
  background: #fff;
  border: 1px solid rgba(201, 163, 74, 0.35);
  border-top: 4px solid var(--gold);
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: var(--shadowSoft);
}

.userOrderCard h3 {
  margin: 0 0 12px;
  color: var(--navy);
}

.userOrderCard p {
  margin: 6px 0;
  color: var(--muted);
}

.userOrderItem {
  margin-top: 10px;
  padding: 12px;
  background: #f8f6f0;
  border: 1px solid var(--line);
}

.userOrderItem b,
.userOrderItem span {
  display: block;
}

.productGallery {
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden;
  background: #071728;
}

.galleryArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(7, 23, 40, 0.75);
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
}

.galleryPrev {
  right: 18px;
}

.galleryNext {
  left: 18px;
}

.galleryArrow:hover {
  background: #c9a34a;
  color: #071728;
}

@media (max-width: 700px) {
  .productGallery {
    height: 280px;
  }

  .galleryArrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}

.productTotal {
  background: #f8f6f0;
  border: 1px solid var(--line);
  padding: 16px;
  margin-bottom: 14px;
}

.productTotal span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 6px;
}

.productTotal b {
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
}

.childPriceText {
  display: block;
  color: var(--gold);
  font-weight: 900;
  margin-top: 8px;
}

.siteMessage {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 99999;
  background: #071728;
  color: #fff;
  border-right: 4px solid #c9a34a;
  padding: 16px 20px;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

.productGallery {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productGallery::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: var(--gallery-bg);
  background-size: cover;
  background-position: center;

  filter: blur(22px);
  transform: scale(1.15);
  opacity: 0.55;
}

.productGallery img {
  position: relative;
  z-index: 2;

  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;

  object-fit: contain;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.galleryArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(7, 23, 40, 0.75);
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  cursor: pointer;
}

.galleryPrev {
  right: 18px;
}

.galleryNext {
  left: 18px;
}

.galleryArrow:hover {
  background: #c9a34a;
  color: #071728;
}

@media (max-width: 700px) {
  .productGallery {
    height: 280px;
  }

  .galleryArrow {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }
}
.productExtraInfo {
  max-width: 940px;
  margin: 26px auto 0;
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 30px 28px;
  box-shadow: var(--shadowSoft);
}

.productExtraInfo h2 {
  margin: 0 0 26px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 900;
}

.extraInfoGrid {
  display: none;
}

.extraInfoContent {
  color: #334155;
  font-size: 17px;
  line-height: 1.7;
  font-weight: 600;
}

.extraInfoBlock {
  margin: 0;
}

.extraInfoBlock h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 23px;
  font-weight: 900;
}

.extraInfoBlock p {
  margin: 0;
  color: #4e5a68;
  font-weight: 700;
  line-height: 1.7;
}

.goldText {
  color: var(--gold);
  font-weight: 900;
}

.infoDivider {
  width: 100%;
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.productMapBox {
  margin-top: 24px;
  width: 100%;
  height: 320px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.productMapBox iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 800px) {
  .productExtraInfo {
    margin: 20px 14px 0;
    padding: 24px 18px;
  }

  .productMapBox {
    height: 260px;
  }
}
.cartSummary:empty {
  display: none;
}

#cartItems .emptyBox {
  max-width: 720px;
  margin: 0 auto 24px;
  border-top: 4px solid var(--gold);
}

.galleryDots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;

  z-index: 20;
}

.galleryDots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;

  background: rgba(255, 255, 255, 0.55);
}

.galleryDots button.active {
  background: var(--gold);
  transform: scale(1.3);
}

.galleryDots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.55);
  padding: 0;
}

.galleryDots button.active {
  background: var(--gold);
  transform: scale(1.3);
}

.imageLightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.imageLightbox.show {
  display: flex;
}

.imageLightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.imageLightbox.zoomed img {
  transform: scale(1.8);
}

.closeLightbox {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}

.productGallery {
  position: relative;
}

.reviewBox {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 28px;
  box-shadow: var(--shadowSoft);
}

.reviewBox h1,
.reviewBox h2 {
  color: var(--navy);
}

.reviewProductCard {
  background: #f8f6f0;
  border: 1px solid var(--line);
  padding: 18px;
  margin-bottom: 16px;
}

.reviewProductCard h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.reviewProductCard p {
  margin: 0 0 12px;
  color: var(--muted);
}

.starsBox {
  display: flex;
  gap: 8px;
  direction: ltr;
  justify-content: center;
}

.starsBox button {
  border: 0;
  background: transparent;
  color: #d8d4ca;
  font-size: 38px;
  cursor: pointer;
}

.starsBox button.active {
  color: var(--gold);
}

.reviewForm textarea {
  width: 100%;
  min-height: 130px;
  border: 1px solid #d8d4ca;
  padding: 14px;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 16px;
}

.reviewBox {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 28px;
  box-shadow: var(--shadowSoft);
}

.reviewProductCard {
  background: #f8f6f0;
  border: 1px solid var(--line);
  padding: 18px;
  margin-bottom: 16px;
}

.starsBox {
  display: flex;
  gap: 8px;
  direction: ltr;
  justify-content: center;
}

.starsBox button {
  border: 0;
  background: transparent;
  color: #d8d4ca;
  font-size: 40px;
}

.starsBox button.active {
  color: var(--gold);
}

.reviewForm textarea {
  width: 100%;
  min-height: 130px;
  border: 1px solid #d8d4ca;
  padding: 14px;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 16px;
}

.reviewThanks {
  text-align: center;
}

.realRatingBtn {
  border: 0;
  background: transparent;
  color: var(--gold);
  font-weight: 900;
  cursor: pointer;
  padding: 0;
}

#reviewsModal {
  display: none;
}

#reviewsModal.show {
  display: block;
}

.reviewsShade {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
}

.reviewsBox {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, calc(100% - 28px));
  max-height: 80vh;
  overflow-y: auto;
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 24px;
  box-shadow: var(--shadowSoft);
}

.reviewsClose {
  position: absolute;
  top: 12px;
  left: 12px;
  border: 0;
  background: var(--navy);
  color: #fff;
  width: 38px;
  height: 38px;
  font-size: 26px;
  font-weight: 900;
}

.reviewItem {
  background: #f8f6f0;
  border: 1px solid var(--line);
  padding: 16px;
  margin-bottom: 12px;
}

.reviewItem strong {
  color: var(--gold);
  font-size: 22px;
}

.reviewItem h3 {
  margin: 8px 0;
  color: var(--navy);
}

.reviewItem p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.realRatingText {
  display: inline-block;
  margin: 6px 0 10px;
  color: var(--gold);
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
}

.realRatingText:hover {
  text-decoration: underline;
}

.catScrollBar {
  width: 120px;
  height: 4px;
  background: rgba(201, 163, 74, 0.22);
  border-radius: 999px;
  margin: 14px auto 0;
  overflow: hidden;
}

#catScrollThumb {
  height: 100%;
  background: var(--gold);
  border-radius: 999px;
  transition: transform 0.08s linear;
}

#inquiryModal {
  display: none;
}

#inquiryModal.show {
  display: block;
}

.inquiryShade {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
}

.inquiryBox {
  position: fixed;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(520px, calc(100% - 28px));
  background: #fff;
  border-top: 4px solid var(--gold);
  padding: 24px;
  box-shadow: var(--shadowSoft);
}

.inquiryClose {
  position: absolute;
  top: 12px;
  left: 12px;
  border: 0;
  background: var(--navy);
  color: #fff;
  width: 36px;
  height: 36px;
  font-size: 24px;
}

.inquiryBox input,
.inquiryBox textarea {
  width: 100%;
  border: 1px solid #d8d4ca;
  padding: 13px;
  margin-bottom: 10px;
  font-family: inherit;
}

.inquiryBox textarea {
  min-height: 100px;
}

.authSwitchText {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
}

.authSwitchText button {
  border: 0;
  background: transparent;
  color: #c9a34a;
  font-family: inherit;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.authSwitchText button:hover {
  color: #ddb85b;
}

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
  display: none;
}

input[type="password"]::-webkit-credentials-auto-fill-button {
  display: none !important;
}

input::-ms-reveal {
  display: none;
}

.googleBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.googleBtn img {
  width: 22px;
  height: 22px;
}

.accountBox .authBtn,
.accountBox .goldBtn,
.accountBox #emailLogin {
  background: linear-gradient(180deg, var(--gold2), var(--gold)) !important;
  color: #111 !important;
  border: 0 !important;
  font-weight: 900;
}

.googleLoginBtn {
  width: 100%;
  height: 50px;
  border: 1px solid var(--gold);
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  margin-bottom: 14px;
}

.passwordBox {
  position: relative;
  width: 100%;
}

.passwordBox input {
  width: 100%;
  padding-left: 52px !important;
}

.passwordToggle {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 18px;
  display: grid;
  place-items: center;
}

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

input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear,
input::-ms-reveal {
  display: none;
}

.googleBtn img,
.googleLoginBtn img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
  flex: 0 0 22px;
}

.notFoundDubai {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 40px 18px;
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(255, 221, 120, 0.45),
      transparent 18%
    ),
    linear-gradient(180deg, #7fc9ff 0%, #cfefff 38%, #f4d6a0 72%, #cfa45f 100%);
}

.nfSun {
  position: absolute;
  top: 72px;
  left: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff8c8 0%,
    #ffd66b 46%,
    #f5a623 72%,
    rgba(245, 166, 35, 0) 73%
  );
  box-shadow:
    0 0 45px rgba(255, 214, 107, 0.8),
    0 0 110px rgba(255, 214, 107, 0.55);
  transition: transform .05s linear;
  z-index: 1;
}

.nfPlane {
  position: absolute;
  left: -90px;
  color: rgba(7, 23, 40, 0.72);
  z-index: 3;
  pointer-events: none;
}

.nfPlane1 {
  top: 130px;
  font-size: 42px;
  animation: nfPlaneFly1 9s linear infinite;
}

.nfPlane2 {
  top: 210px;
  font-size: 30px;
  opacity: 0.55;
  animation: nfPlaneFly2 13s linear infinite 2s;
}

.nfPlane3 {
  top: 82px;
  font-size: 24px;
  opacity: 0.42;
  animation: nfPlaneFly3 16s linear infinite 5s;
}

@keyframes nfPlaneFly1 {
  0% {
    transform: translateX(0) translateY(0) rotate(8deg);
  }

  50% {
    transform: translateX(55vw) translateY(-28px) rotate(3deg);
  }

  100% {
    transform: translateX(115vw) translateY(8px) rotate(8deg);
  }
}

@keyframes nfPlaneFly2 {
  0% {
    transform: translateX(0) translateY(0) rotate(5deg);
  }

  50% {
    transform: translateX(60vw) translateY(22px) rotate(1deg);
  }

  100% {
    transform: translateX(120vw) translateY(-8px) rotate(5deg);
  }
}

@keyframes nfPlaneFly3 {
  0% {
    transform: translateX(0) translateY(0) rotate(10deg);
  }

  50% {
    transform: translateX(62vw) translateY(-14px) rotate(6deg);
  }

  100% {
    transform: translateX(125vw) translateY(4px) rotate(10deg);
  }
}

.nfSkyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 130px;
  height: 260px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  opacity: 0.72;
  pointer-events: none;
}

.nfSkyline span {
  width: 54px;
  background: linear-gradient(180deg, #123655, #071728);
  border: 1px solid rgba(227, 197, 110, 0.18);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
}

.nfSkyline span::before {
  content: "";
  position: absolute;
  inset: 12px 10px;
  background: repeating-linear-gradient(
    180deg,
    rgba(227, 197, 110, 0.65) 0 3px,
    transparent 3px 16px
  );
  opacity: 0.55;
}

.nfSkyline span:nth-child(1) {
  height: 120px;
}

.nfSkyline span:nth-child(2) {
  height: 190px;
}

.nfSkyline span:nth-child(3) {
  height: 250px;
  width: 70px;
  border-radius: 999px 999px 0 0;
}

.nfSkyline span:nth-child(4) {
  height: 160px;
}

.nfSkyline span:nth-child(5) {
  height: 220px;
  width: 48px;
}

.nfSkyline span:nth-child(6) {
  height: 135px;
}

.nfCard {
  position: relative;
  z-index: 5;
  width: min(680px, 100%);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-top: 5px solid var(--gold);
  padding: 44px 34px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(7, 23, 40, 0.22);
}

.nfBadge {
  font-size: clamp(86px, 14vw, 150px);
  line-height: 0.82;
  font-weight: 900;
  color: var(--navy);
  text-shadow:
    4px 4px 0 var(--gold),
    0 18px 35px rgba(7, 23, 40, 0.16);
  margin-bottom: 22px;
}

.nfCard h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 900;
}

.nfCard p {
  max-width: 520px;
  margin: 16px auto 28px;
  color: #334155;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 700;
}

.nfActions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 430px;
  margin: 0 auto;
}

.nfActions .goldBtn {
  width: 100%;
  padding: 14px 18px;
  font-size: 16px;
}

.nfGhostBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  background: rgba(255, 255, 255, 0.62);
  color: var(--navy);
  font-weight: 900;
  padding: 14px 18px;
  transition: 0.2s;
}

.nfGhostBtn:hover {
  background: var(--navy);
  color: var(--gold2);
}

.nfSand {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -60px;
  height: 200px;
  z-index: 4;
  background:
    radial-gradient(
      ellipse at 20% 30%,
      rgba(255, 255, 255, 0.22),
      transparent 32%
    ),
    radial-gradient(
      ellipse at 80% 10%,
      rgba(255, 255, 255, 0.18),
      transparent 34%
    ),
    linear-gradient(180deg, #d7ad62, #b88336);
  border-radius: 50% 50% 0 0;
  box-shadow: 0 -18px 40px rgba(117, 77, 28, 0.16);
}

@media (max-width: 640px) {
  .nfSun {
    width: 105px;
    height: 105px;
    right: 8%;
    top: 62px;
  }

  .nfSkyline {
    bottom: 98px;
    transform: scale(0.8);
  }

  .nfCard {
    padding: 34px 22px;
  }

  .nfActions {
    grid-template-columns: 1fr;
  }
}

.nextOrderBanner {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  margin: 24px auto 0;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at top right, rgba(227, 197, 110, 0.18), transparent 36%),
    linear-gradient(135deg, #061827, #0b2745);
  color: #fff;
  border: 1px solid rgba(227, 197, 110, 0.32);
  border-right: 6px solid var(--gold);
  box-shadow: 0 18px 45px rgba(7, 23, 40, 0.22);
  transition: 0.25s;
}

.nextOrderBanner:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(7, 23, 40, 0.3);
}

.nextOrderBanner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: 0.9s;
}

.nextOrderBanner:hover::before {
  transform: translateX(120%);
}

.nextOrderBanner > div,
.nextOrderBanner strong {
  position: relative;
  z-index: 2;
}

.nextOrderBanner span {
  display: block;
  color: var(--gold2);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 8px;
}

.nextOrderBanner b {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 900;
}

.nextOrderBanner small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 700;
}

.nextOrderBanner strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  padding: 15px 22px;
  background: linear-gradient(180deg, var(--gold2), var(--gold));
  color: #111;
  font-weight: 900;
  white-space: nowrap;
}

.nextOrderBanner strong::after {
  content: "←";
  margin-right: 10px;
  transition: 0.2s;
}

.nextOrderBanner:hover strong::after {
  transform: translateX(-5px);
}

@media (max-width: 700px) {
  .nextOrderBanner {
    margin: 18px 16px 0;
    padding: 22px 18px;
    flex-direction: column;
    text-align: center;
  }

  .nextOrderBanner b {
    font-size: 22px;
  }

  .nextOrderBanner strong {
    width: 100%;
  }
}

.iti {
  width: 100%;
}

.iti__country-container {
  direction: ltr;
}

.iti input {
  width: 100% !important;
  height: 56px;
}