@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Ephesis&family=Great+Vibes&family=Literata:ital,opsz,wght@0,7..72,200..900;1,7..72,200..900&family=Tangerine:wght@400;700&display=swap');

*{
    font-family: "Montserrat", sans-serif;
    margin: 0; padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .2s linear;
  }

  body {
    background-color: #FFFBF2;  
  }


  .header {
    position: fixed; 
    top: 0;          
    left: 0;       
    width: 100%;    
    background-color: #FFFBF2;
    z-index: 10;    
    transition: background-color 0.4s ease-in-out, opacity 0.4s ease-in-out, color 0.4s ease-in-out;
  }
  
  
  .logo-image {
    height: 30px; 
    width: auto;
  }
  
  
  .header ul {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 0;
   padding: 10px;
  }
  
  .header li {
    height: 50px;
    font-size: 16px;
    font-weight: 500;
  }
  
  .header a {
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #2F3247;
    transition: color 0.4s ease-in-out;
  }
  
  .header a:hover {
    border-bottom: 3px solid #262E19;
    color: #262E19;
  }
  
  .header li:first-child {
    margin-right: auto;
  }
  
  
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    z-index: 999;
    background-color: #FFFBF2;
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
  }
  
  nav .sidebar {
    align-items: flex-start;
    justify-content: flex-start;
    display: none;
  }
  
  .sidebar li {
    width: 100%;
  }
  
  .sidebar a {
    width: 100%;
    padding: 10px 15px;
    text-decoration: none;
    color: #2F3247;
  }
  
  .sidebar a:hover {
    background-color: #262E19;
    color: #FFFBF2;
  }
  
  
  .menu-button {
    display: none;
  }
  
  @media (max-width: 1000px) {
    .hideOnMobile {
      display: none;
    }
    .menu-button { 
      display: block;
    }
  }
  
  @media (max-width: 400px) {
    .sidebar {
      width: 100%;
    }
  }


.whats-new {
    padding: 40px 20px;
    width: 95%;
  }
  
  .whats-new .new-header {
    display: flex;
    font-weight: 450;
    font-size: 25px;
    color: #262E19;
    padding-bottom: 50px;
    justify-content: space-between;
  }
  
  .whats-new .Shop-all-products {
    font-weight: 400;
    font-size: 20px;
    color: #262E19;
  }
  
  


  .whats-new-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .whats-new .whats-new-products-card {
    width: 100%;
  }
  
  .whats-new .whats-new-products-card img {
    width: 100%;
    height: 700px;
    display: block;
    object-fit: cover;
  }
  
  .whats-new .product-name {
    font-size: 15px;
    padding-top: 10px;
  }
  
  .whats-new .product-price {
    font-size: 15px;
    font-weight: 600;
    padding-top: 10px;
  }
  

  .whats-new .nav {
    display: none;
  }
  
  .whats-new .product-image-container {
    position: relative;
    display: inline-block;
  }
  
  .whats-new .icon img {
    width: 24px;
    height: 24px;
  }
  
  .whats-new .icon:hover {
    background: #262E19;
    transform: scale(1.1);
  }
  
  .whats-new .icon:hover img {
    filter: invert(1);
  }
  
  .whats-new .product-image-container:hover .hover-icons {
    opacity: 1;
  }
  
  .whats-new .hover-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .whats-new .icon {
    width: 50px;
    height: 50px;
    background: #FFFBF2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  
  @media screen and (max-width: 992px) {
    .whats-new-products {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  
    .whats-new .whats-new-products-card img {
      height: 500px;
    }
  
    .whats-new .new-header {
      font-size: 22px;
    }
  
    .whats-new .Shop-all-products {
      font-size: 18px;
    }
  
    .whats-new .hover-icons {
      top: 5px;
      right: 15px;
    }
  
    .whats-new .icon {
      width: 35px;
      height: 35px;
    }
  
    .whats-new .icon img {
      width: 18px;
      height: 18px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .whats-new .new-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      font-size: 20px;
    }
  
    .whats-new .Shop-all-products {
      font-size: 16px;
    }
  }
  

  .shop-container {
    display: flex;
    gap: 3rem;
    padding: 60px 40px;
    margin-top: 100px;
  }
  
  .filters {
    width: 30%;
   margin-top: -20px;
    
  }
  
  .filters h2 {
    font-size: 28px;
    color: #262E19;
    margin-bottom: 30px;
    font-weight: 500;
  }
  
.filter-group {
    gap: 25px;
    padding-top: 0px;
}

.filter-group  p {
    font-size: 20px;
    font-weight: 500;
    padding-top: 25px;
    padding-bottom: 25px;
}


  .filter-group .filter {
    margin-bottom: 20px;
  }
  

  
  
  
 
  
  .price-slider {
    width: 100%;
    
    
  }
  
  .price-label {
    margin: auto;
    color: #181616;
  }
  

  @media screen and (max-width: 992px) {
    .shop-container {
      flex-direction: column;
      padding: 40px 20px;
    }
  
    .filters {
      width: 100%;
    }
  }
  
  /* best sellers start */

  .best-sellers {
    padding: 40px 20px;
    width: 95%;
  }
  
  .best-sellers .new-header {
    display: flex;
    font-weight: 450;
    font-size: 25px;
    color: #262E19;
    padding-bottom: 50px;
    justify-content: space-between;
  }
  
  .best-sellers .Shop-all-products {
    font-weight: 400;
    font-size: 20px;
    color: #262E19;
  }
  
  .best-sellers-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .best-sellers .best-sellers-products-card {
    width: 100%;
  }
  
  .best-sellers .best-sellers-products-card img {
    width: 100%;
    height: 700px;
    display: block;
    object-fit: cover;
  }
  
  .best-sellers .product-name {
    font-size: 15px;
    padding-top: 10px;
  }
  
  .best-sellers .product-price {
    font-size: 15px;
    font-weight: 600;
    padding-top: 10px;
  }
  
  .best-sellers .product-image-container {
    position: relative;
    display: inline-block;
  }
  
  .best-sellers .icon img {
    width: 24px;
    height: 24px;
  }
  
  .best-sellers .icon:hover {
    background: #262E19;
    transform: scale(1.1);
  }
  
  .best-sellers .icon:hover img {
    filter: invert(1);
  }
  
  .best-sellers .product-image-container:hover .hover-icons {
    opacity: 1;
  }
  
  .best-sellers .hover-icons {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }
  
  .best-sellers .icon {
    width: 50px;
    height: 50px;
    background: #FFFBF2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  
  @media screen and (max-width: 992px) {
    .best-sellers-products {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  
    .best-sellers .best-sellers-products-card img {
      height: 500px;
    }
  
    .best-sellers .new-header {
      font-size: 22px;
    }
  
    .best-sellers .Shop-all-products {
      font-size: 18px;
    }
  
    .best-sellers .hover-icons {
      top: 5px;
      right: 15px;
    }
  
    .best-sellers .icon {
      width: 35px;
      height: 35px;
    }
  
    .best-sellers .icon img {
      width: 18px;
      height: 18px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .best-sellers .new-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      font-size: 20px;
    }
  
    .best-sellers .Shop-all-products {
      font-size: 16px;
    }
  
    .best-sellers-products {
      display: flex;
      flex-direction: row;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
    }
  
    .best-sellers .best-sellers-products-card {
      flex: 0 0 100%;
      scroll-snap-align: start;
    }
  
    .best-sellers .best-sellers-products-card img {
      height: 700px;
    }
  
    .best-sellers .hover-icons {
      top: 5px;
      right: 15px;
    }
  
    .best-sellers .icon {
      width: 35px;
      height: 35px;
    }
  
    .best-sellers .icon img {
      width: 18px;
      height: 18px;
    }
  }
  
  @media screen and (max-width: 576px) {
    .best-sellers .best-sellers-products-card img {
      height: 500px;
    }
  
    .best-sellers .new-header {
      font-size: 18px;
    }
  
    .best-sellers .Shop-all-products {
      font-size: 14px;
    }
  
    .best-sellers .nav {
      display: none;
    }
  
    .best-sellers .hover-icons {
      top: 5px;
      right: 15px;
    }
  
    .best-sellers .icon {
      width: 35px;
      height: 35px;
    }
  
    .best-sellers .icon img {
      width: 18px;
      height: 18px;
    }
  }

  
 /* questions start */

.questions {
  position: relative;
  width: 94%;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: left;
  margin-top: 50px;
  margin: auto;

}

.questions-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  
}

.questions .content {
  position: relative;
  color: #FFFBF2;
  font-family: 'Literata', serif;
  margin-left: 300px;
  max-width: 600px;
}

.questions .content h1 {
  font-size: 95px;
  font-weight: 200;
}

.questions .content h1 span {
  font-family: 'Great Vibes', cursive;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 7px;
}

.questions .content p {
  width: 100%;
  padding-bottom: 15px;
  line-height: 1.5;
  font-weight: 600;
  padding-bottom: 50px;
}

.btn {
  background-color: white;
  color: #181616;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  padding: 12px 20px;
  cursor: pointer;
}

.btn:hover {
  background-color: #262E19;
  color: #FFFBF2;
}

@media screen and (max-width: 1100px) {
  .questions {
    height: auto;
    justify-content: center;
    text-align: center;
    height: 80vh;
  }

  .questions .content {
    margin-left: 0;
    text-align: center;
  }

  .questions .content h1 {
    font-size: 60px;
  }

  .questions .content p {
    font-size: 12px;
    padding: 0 50px;
    padding-bottom: 20px;
  }

  .btn {
    padding: 8px 12px;
  }
}

@media screen and (max-width: 768px) {
  .questions {
    height: auto;
    height: 80vh;
  }

  .questions .content {
    text-align: center;
  }

  .questions .content h1 {
    font-size: 50px;
  }

  .questions .content p {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .questions .content h1 {
    font-size: 40px;
  }
  .questions {
    height: auto;
    height: 80vh;
  }

  .questions .content p {
    padding-bottom: 20px;
  }
}

/* questions end */

.footer .footer-container {
  background-color: #262E19;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 0;
  margin-top: 50px;
}

.footer-row {
  width: 90%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-colum {
  flex: 1;
  max-width: 25%;
  min-width: 200px;
  padding: 10px;
}

.footer-colum img {
  max-width: 80%;
}

.footer-colum p {
  color: #FFFBF2;
}

.footer-colum ul {
  list-style: none;
  padding: 0;
}

.footer-colum h4 {
  color: #FFFBF2;
  margin-bottom: 30px;
  font-size: x-large;
  font-weight: 300;
}

.footer-colum ul li {
  margin-bottom: 20px;
}

.footer-colum ul li a {
  padding: 10px 0;
  color: #A8ABAA;
  text-decoration: none;
  font-size: 16px;
}

.footer-colum ul li a:hover {
  color: #FFFBF2;
}

.footer-colum input {
  display: block;
  padding-left: 20px;
  margin: 14px 0;
  border: none;
  width: 100%;
  height: 45px;
}

.footer-colum .input-submit {
  padding: 0px 20px;
  background: #FFFBF2;
  border: none;
  color: #262E19;
  cursor: pointer;
}

.Copyright {
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #A8ABAA;
  font-size: 14px;
}



@media only screen and (max-width: 1024px) {
  .footer-row {
    gap: 20px;
    justify-content: center;
  }

  .footer-colum {
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
  }

  .footer-colum h4 {
    font-size: large;
    margin-bottom: 20px;
  }

  .footer-colum ul li a {
    font-size: 14px;
  }

  .footer-container {
    padding: 20px;
  }

  .Copyright {
    font-size: 12px;
  }
}

@media only screen and (max-width: 768px) {
  .footer-row {
    gap: 10px;
    flex-direction: column; 
    justify-content: center;
  }

  .footer-colum {
    max-width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
  }

  .footer-colum h4 {
    font-size: medium;
  }

  .footer-colum ul li a {
    font-size: 12px;
  }

  .footer-container {
    padding: 20px;
  }

  .Copyright {
    font-size: 10px;
  }
}

@media only screen and (max-width: 480px) {
  .footer-row {
    gap: 10px;
    flex-direction: column; 
  }

  .footer-colum {
    padding: 10px;
    margin-bottom: 20px;
    max-width: 100%;
    min-width: 100%;
  }

  .footer-colum h4 {
    font-size: medium;
  }

  .footer-colum ul li a {
    font-size: 12px;
  }

  .footer-container {
    padding: 15px;
  }

  .Copyright {
    font-size: 10px;
  }
}

/* questions end */





.colour-option {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 5px;
  margin-bottom: 25px;
}

.colour-option input[type="radio"] {
  margin-right: 8px;
}


input[type="radio"] {
  appearance: none; 
  width: 16px;
  height: 16px;
  border: 2px solid #262E19; 
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
}

input[type="radio"]:checked {
  border-color: #262E19;
}

input[type="radio"]::before {
  content: "";
  width: 8px; 
  height: 8px;
  background-color: transparent;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.2s ease;
}

input[type="radio"]:checked::before {
  background-color: #262E19; 
}


