/**************************/
/* HEADER */
/**************************/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;

  /* Because we want header to be sticky later */
  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}

.logo {
  height: 4.2rem;
}

/**************************/
/* NAVIGATION */
/**************************/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4.8rem;
}

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: #111;
}

.main-nav-link.nav-cta:link,
.main-nav-link.nav-cta:visited {
  padding: 1.2rem 2.4rem;
  color: #fff;
  background-color: #000;
}

.main-nav-link.nav-cta:hover,
.main-nav-link.nav-cta:active {
  background-color: #fff;
  color: #000;
}

/* MOBILE */
.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/* STICKY NAVIGATION */
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 8rem;
  padding-top: 1.8rem;
  padding-bottom: 0;
  background-color: rgba(255, 255, 255, 0.97);
  z-index: 999;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}

.sticky .section-hero {
  margin-top: 9.6rem;
}

/**************************/
/* HERO SECTION */
/**************************/

.section-hero {
  background-color: #ffffff;
  padding: 2rem 0 9.6rem 0;
  margin-bottom: 25rem;
}

.hero {
  width: 100%;
  height: 100vh; /* make it fill the entire viewport height */
  display: grid;
  grid-template-columns: 1fr;
  gap: 9.6rem;
  align-items: center;
  margin: 0;
  padding: 0 3.2rem;
  max-width: 100%; /* allow full width */
}

.hero-description {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
}

.hero-secondary {
  width: 100%;
}



/**************************/
/* HOW IT WORKS SECTION */
/**************************/


.video-wrap {
  position: relative;
  overflow: hidden;
}

/* Smooth transition setup */
.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 1.2s cubic-bezier(0.25, 0.1, 0.25, 1); /* smoother and slower easing */
}

/* Gentle zoom-in on hover */
.video-wrap:hover video {
  transform: scale(1.08);
}

/**************************/
/* NEW ARRIVALS INDEX SECTION */
/**************************/


.uk-container {
  max-width: 1200px;
  margin: 5rem auto;
  overflow-x: hidden;
  padding: 0 15px;

}



/* Keeps all images uniform in grid cells */
.img-wrap {
  position: relative;
  overflow: hidden;
  gap: 3rem;
}

/* Force consistent height and prevent stretching */
.img-wrap::before {
  content: "";
  display: block;
  padding-top: 125%; /* adjust ratio: 100% = square, 125% = portrait */
}

/* Base image */
.img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease-in-out;
  border-radius: 0;
}

/* Hover image (hidden by default) */
.img-wrap img:nth-child(2) {
  opacity: 0;
}

/* Fade in hover image only */
.img-wrap:hover img:nth-child(2) {
  opacity: 1;
}

/* White overlay with subtle opacity */
.img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0; /* match your image positioning */
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25); /* adjust opacity here (0.1–0.4 looks nice) */
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none; /* keeps hover effect working */
}

/* Show overlay on hover */
.img-wrap:hover::after {
  opacity: 5;
}


.img-wrap.tapped img:nth-child(2),
.img-wrap.tapped::after {
  opacity: 1;
}

.img-caption {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.2rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 0.3px;
  text-align: left;
  line-height: 1.4rem;
}

.new-arrivals-price {
  display: flex;
  /* justify-content: space-between; */
  flex-direction: column;
  
}




.price {
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;

}





/**************************/
/* NEW ARRIVALS HTML SECTION */
/**************************/

.section-new-arrivals {
  padding: 9.6rem 0;
}


.new-arrivals-page-price {
font-weight: 500;
font-size: 1.5rem;
}

.new-arrivals-title {
  font-size: 2rem;
  font-style: italic;
}

.color-list {
  display: flex;
  align-items: center;
  list-style:square;
  gap: 2rem;
  margin-left: 2.8rem;
  font-size: 5rem;
}

.black {
  color: #000;
}

.white {
  color: #f6f6f6;
}

.beige {
  color: #f3e0bc;
  
}

.salmon {
  color: #ff9b9c;
}

.yellow {
  color: #fbe171;
}

.sizes-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 5rem;
}




.new-arrivals-description {
  font-size: 1.8rem;
  line-height: 1.8;
}

.new-arrivals-img-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

}

.new-arrivals-img-box::before,
.new-arrivals-img-box::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.new-arrivals-img-box::before {
  width: 60%;
  /* height: 60%; */

  /* 60% of parent's width */
  padding-bottom: 60%;
  z-index: -2;
}

.new-arrivals-img-box::after {
  width: 45%;
  padding-bottom: 45%;
  z-index: -1;
}

.new-arrivals-img {
  width: 100%;
  /* z-index: 10; */
}

/* .explore {
  display: inline;
  vertical-align: middle;
  font-size: 1.3rem;
  color: #000;
} */

a:hover {
  color: #000;
}


/**************************/
/* ITEMS HTML */
/**************************/

.section-items {
  padding: 9.6rem 0;
}

.items-heading {
  text-transform: uppercase;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 5rem;
}

 .uk-card {
      border-radius: 3px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .uk-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .uk-card img {
      object-fit: cover;
      height: 100%;
      width: 100%;
    }

/**************************/
/* TERMS HTML */
/**************************/

.terms {
  display: flex;
  flex-direction:column;
  margin-top: 8rem;
}

.terms-disclaimer {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  margin-left: 2rem;
  font-style: italic;
}

.terms-heading {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  text-transform: uppercase;
}

.terms-description {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  margin-left: 2rem;
}

.terms-list {
  display: flex;
  flex-direction: column;
}

.terms-title {
  margin-left: 1.8rem;
  font-size: 1.5rem;
}


/**************************/
/* FAQ HTML */
/**************************/

.faq-section {
  background-color: white;
}

.faq-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
}

.uk-text-center {
  font-size: 1.3rem;
}

.uk-accordion-title {
  font-size: 1.8rem;
}

.uk-accordion-content {
  font-size: 1.5rem;
  line-height: 1.5;
}





/**************************/
/* CTA SECTION */
/**************************/

.section-cta {
  /* top / right / bottom / left */
  /* padding: 9.6rem 0 12.8rem 0; */

  /* top / horizontal / left */
  padding: 5rem 0 12.8rem;
  margin-top: 10rem;
}

.cta {
  display: grid;
  /* 2/3 = 66.6% + 1/3 = 33.3% */
  grid-template-columns: 2fr 1fr;
  /* background-color: #e67e22; */
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 0;

  background-image: linear-gradient(to right bottom, #fff);
  overflow: hidden;
}

.cta-heading {
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: 600;
}

.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: #000;
}

.cta .heading-secondary {
  /* color: #45260a; */
  color: inherit;
  margin-bottom: 3.2rem;
}

.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
}

.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(0, 0, 0, 0),
      rgba(255, 255, 255, 0.473)
    ),
    url("../img/cta.jpg");
  background-size: cover;
  background-position: center;
}

.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}

.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  background-color: #f6f6f6;
  border-radius: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-form input::placeholder {
  color: #aaa;
}

.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgb(0, 0, 0);
}

/**************************/
/* FOOTER */
/**************************/

.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}

.grid--footer {
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}

.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}

.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #555;
  margin-top: auto;
}

.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4rem;
}

.contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
}

.address {
  margin-bottom: 2.4rem;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #555;
  transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
  color: #555;
}

