/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Smooch&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  --first-color: hsl(34, 52%, 54%);
  --first-color-light: hsl(34, 52%, 64%);
  --first-color-lighten: hsl(34, 52%, 68%);
  --black-color: hsl(0, 0%, 4%);
  --body-font: "Montserrat", sans-serif;
  --second-font: "Smooch", cursive;
  --biggest-font-size: 6rem;
  --h3-font-size: 1rem;
  --normal-font-size: 0.938rem;
  --small-font-size: 0.813rem;
  --font-regular: 400;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}

.swiper {
  margin-inline: initial;
}

.home {
  background: #0f0f11;
  overflow: hidden;
  position: relative;
}

.home::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center,
    rgba(220,185,100,0.08) 0%,
    rgba(220,185,100,0.03) 45%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.home__container {
  min-height: 100vh;
  padding-block: 6rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.home__content {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  width: 460px;
  height: 460px;
  border: 1px solid rgba(220,185,100,0.14);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.home__subcircle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  border: 1px solid rgba(220,185,100,0.08);
  border-radius: 50%;
}

.home__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -42%);
  font-size: var(--biggest-font-size);
  font-family: var(--second-font);
  font-weight: var(--font-regular);
  color: #dcb964;
  white-space: nowrap;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
  letter-spacing: 4px;
}

.home__swiper {
  width: 100%;
  padding-block: 2.5rem 0.5rem;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.home__article {
  text-align: center;
  opacity: 0.35;
  transform: scale(0.65);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), opacity 0.5s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home__article.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.home__article.swiper-slide-prev,
.home__article.swiper-slide-next {
  opacity: 0.5;
  transform: scale(0.75);
}

.home__img {
  width: 200px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.7));
  margin: 0 auto 1rem;
  transition: width 0.5s ease, filter 0.5s ease;
}

.swiper-slide-active .home__img {
  width: 330px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.9)) drop-shadow(0 0 40px rgba(220,185,100,0.10));
}

.home__product {
  font-size: 1.05rem;
  font-weight: var(--font-semi-bold);
  color: #f0ece4;
  margin-bottom: 0.25rem;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.home__price {
  font-size: 0.95rem;
  color: #dcb964;
  margin-bottom: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease 0.15s;
  font-weight: 600;
}

.swiper-slide-active .home__product,
.swiper-slide-active .home__price {
  opacity: 1;
}

.home__add-btn {
  display: inline-block;
  background: transparent;
  color: #dcb964;
  border: 1.5px solid #dcb964;
  padding: 9px 28px;
  border-radius: 30px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  font-family: var(--body-font);
}

.home__add-btn:hover {
  background: #dcb964;
  color: #0f0f11;
  transform: scale(1.05);
}

.home__article:not(.swiper-slide-active) .home__add-btn {
  padding: 6px 16px;
  font-size: 0.72rem;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-prev,
.swiper-button-next {
  top: initial;
  bottom: 1.5rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(220,185,100,0.35);
  border-radius: 50%;
  font-size: 1.2rem;
  color: #dcb964;
  background: rgba(220,185,100,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(220,185,100,0.15);
  border-color: #dcb964;
}

.swiper-button-prev {
  left: calc(50% - 5rem);
}

.swiper-button-next {
  right: calc(50% - 5rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
a,
span,
div,
nav,
footer,
.header {
  color: antiquewhite;
}

body {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', sans-serif;
  background: radial-gradient(circle at top, #1f1f24 0%, #0f0f11 45%, #050506 100%);
}

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

a:hover {
  text-decoration: underline;
}

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

h1 {
  font-size: 35px;
  line-height: 50px;
  margin-bottom: 25px;
}

h2 {
  text-align: center;
  margin-top: 25px;
}

h4 {
  font-weight: normal;
}

.header {
  background: rgba(16, 16, 18, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 185, 100, 0.12);
}

.navbar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  min-height: 84px;
}

nav {
  flex: 1;
  text-align: right;
}

nav ul {
  display: inline-flex;
  align-items: center;
  gap: 22px;
}

nav ul li {
  display: inline-block;
  margin-right: 0;
}

.nav-item a {
  color: #f0ece4;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-item a:hover {
  color: #dcb964;
  text-decoration: none;
}

.toggle {
  display: none;
}

.toggle i {
  font-size: 28px;
}

.container {
  max-width: 1300px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.child {
  margin: 30px auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}

.halfchild {
  flex-basis: 50%;
  min-width: 300px;
  margin-top: 20px;
}

.halfchild img {
  max-width: 100%;
  padding: 50px 0;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #dcb964, #b58a36);
  color: #0f0f11;
  padding: 10px 26px;
  margin: 24px 0;
  border-radius: 999px;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  font-weight: 700;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(220, 185, 100, 0.2);
  filter: brightness(1.05);
  text-decoration: none;
}

.line1 {
  margin: 15px auto;
  border-radius: 10px;
  width: 90px;
  height: 5px;
  background-color: antiquewhite;
}

.small-container {
  max-width: 1380px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.childprods {
  flex-basis: calc(25% - 22px);
  padding: 16px;
  min-width: 220px;
  margin-bottom: 28px;
  background: rgba(16, 16, 18, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.childprods img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: radial-gradient(circle at top, rgba(220, 185, 100, 0.12), transparent 65%), #19191d;
  border-radius: 16px;
  padding: 18px;
}

.childprods h4 {
  margin-top: 16px;
  font-size: 0.98rem;
  text-transform: capitalize;
}

.childprods p {
  margin-top: 8px;
  font-size: 15px;
  text-align: left;
  color: #dcb964;
  font-weight: 700;
}

.rating .fa {
  color: #5fa387;
}

.childprods:hover {
  cursor: pointer;
  transform: translateY(-7px);
  border-color: rgba(220, 185, 100, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.ohhh {
  background: linear-gradient(rgb(67, 68, 66), rgb(82, 81, 81));
}

.more {
  background-color: rgb(53, 53, 53);
  margin: 0 auto 40px;
  display: flex;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  width: 9em;
  height: 2em;
}

.offer {
  background-color: #555;
  border-radius: 200px;
}

.halfchild .offer-img {
  padding: 50px;
}

.halfchild select,
.halfchild option,
.halfchild input {
  color: #333;
}

.testimonial {
  margin-top: 100px;
}

.testimonial .testchild {
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.5s;
}

.testchild {
  flex-basis: 30%;
  min-width: 250px;
  margin-bottom: 30px;
}

.testimonial .testchild img {
  width: 50px;
  margin-top: 20px;
  border-radius: 50%;
}

.testimonial .testchild:hover {
  transform: translateY(-10px);
}

.fa.fa-quote-left {
  font-size: 40px;
}

.testchild p {
  font-size: 14px;
  margin: 12px 0;
}

.testimonial .testchild h3 {
  font-weight: 600;
  font-size: 16px;
}

.brands {
  margin: 100px auto;
}

.logo {
  width: 160px;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
}

.cart {
  width: 24px;
  height: 24px;
}

.footer {
  background-color: #121214;
  font-size: 14px;
  padding: 60px 0 20px;
}

.footer h3 {
  margin-bottom: 1em;
}

.belowfooter {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2em;
  color: #9b968f;
}

.footerChild1,
.footerChild2 {
  min-width: 250px;
  margin-bottom: 20px;
}

.footerChild1 {
  flex: 1.15;
  text-align: center;
}

.footerChild1 img {
  width: 180px;
  margin-bottom: 20px;
}

.footerChild2 {
  flex: 1;
  text-align: center;
}

.footerChild2 img {
  width: 250px;
  height: auto;
}

.footerChild2 a {
  display: block;
}

.footerChild2 a img {
  width: 100%;
  height: auto;
  display: block;
}

.footerChild2 p {
  text-align: right;
  font-size: 14px;
}

.child-2 {
  justify-content: space-between;
  gap: 20px;
  margin: 64px auto 36px;
}

.child-2 h2 {
  margin-top: 0;
  text-align: left;
}

select,
select option {
  border: 1px solid rgba(255,255,255,0.12);
  color: #f0ece4;
  padding: 10px 12px;
  background: #16161a;
  border-radius: 12px;
}

.page-btn {
  margin-bottom: 35px;
  text-align: center;
}

.page-btn span {
  display: inline-block;
  background-color: black;
  margin-left: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}

.page-btn span:hover {
  background-color: #040404;
  border: 1px solid rgb(241, 241, 241);
}

.single-product {
  margin-top: 80px;
}

.single-product .halfchild img {
  padding: 0;
}

.single-product .halfchild {
  padding: 20px;
}

.single-product h4 {
  margin: 20px 0;
  font-size: 22px;
  font-weight: bold;
}

.single-product select {
  display: inline-block;
  padding: 10px;
  margin-top: 20px;
}

.single-product input {
  width: 50px;
  height: 38px;
  margin: 10px 35px 10px 10px;
  text-align: center;
  font-size: 16px;
  border: 1px solid black;
}

select,
input {
  outline: none;
}

.single-product .fa {
  color: black;
  margin-left: 10px;
}

.small-img-child {
  display: flex;
  justify-content: space-between;
}

.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
}

.formPage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 120px);
}

.formPage .btn {
  display: block;
  margin: 20px 0;
  text-align: center;
  width: 250px;
  min-height: 44px;
  cursor: pointer;
}

.showForm {
  display: none;
  width: min(100%, 350px);
  min-height: 500px;
  background-color: #333;
  border-radius: 5px;
}

.showForm.active {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.showForm input {
  color: #333;
  border-radius: 15px;
  text-align: center;
  min-height: 44px;
  width: 280px;
}


.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: #dcb964;
  color: #0f0f11;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  z-index: 2000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.inline-link-btn {
  display: inline-block;
  width: auto !important;
  margin-bottom: 12px !important;
}

.promo-shell {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.promo-card-reverse {
  direction: rtl;
}

.promo-card-reverse .promo-img-wrap,
.promo-card-reverse .promo-text {
  direction: ltr;
}

.promo-text-shift {
  padding-left: 48px !important;
}

.related-link {
  color: #dcb964;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.breadcrumb-current {
  color: #c0bbb4 !important;
}

:focus-visible {
  outline: 3px solid rgba(220, 185, 100, 0.88);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}
@media only screen and (max-width: 1024px) {
  .childprods {
    flex-basis: calc(33.333% - 22px);
  }
}

@media only screen and (max-width: 768px) {
  .container,
  .small-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .navbar {
    gap: 12px;
    min-height: 76px;
    position: relative;
  }

  .toggle {
    display: block;
    cursor: pointer;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(220, 185, 100, 0.22);
    background: rgba(220, 185, 100, 0.08);
    color: #dcb964;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: rgba(18, 18, 22, 0.98);
    border: 1px solid rgba(220, 185, 100, 0.14);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    text-align: left;
    z-index: 1000;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    display: block;
    text-align: left;
  }

  .nav-item a {
    display: block;
    padding: 14px 16px;
    color: #f0ece4;
    border-radius: 12px;
    font-weight: 600;
  }

  .nav-item a:hover {
    background: rgba(220, 185, 100, 0.08);
    color: #dcb964;
  }

  nav {
    position: static;
    flex: 1;
  }

  nav ul {
    gap: 0;
  }

  .logo {
    width: 136px;
  }

  .child {
    gap: 18px;
  }

  .childprods {
    flex-basis: calc(50% - 14px);
    min-width: 0;
    margin-bottom: 12px;
  }

  .child-2 {
    margin: 36px auto 24px;
    align-items: stretch;
  }

  .child-2 h2,
  .child-2 select {
    width: 100%;
  }

  .footer {
    padding-top: 44px;
  }
}

@media only screen and (max-width: 670px) {
  .child {
    text-align: center;
  }

  .halfchild,
  .testchild,
  .childprods {
    flex-basis: 100%;
  }

  .single-product .child {
    text-align: left;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .showForm input {
    width: 100%;
  }
}

