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

 /* Cart start */



  
/*Home Start*/

  .home {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-image: url('Images/Hero image.png'); 
    background-size: cover; 
    background-position: center top;  
    background-repeat: no-repeat;
    margin-top: 70px;
    
}

/*Home responsive*/

@media (max-width: 1340px) {
  .home {
      background-size: cover;  
      background-position: center center;  
  }
}


@media (max-width: 480px) {
  .home {
      background-size: cover;  
      background-position: center center;  
  }
}
/*Home responsive*/

/*Home end*/


/*logo Start*/

.hero-logo {
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%); 
  max-width: 720px; 
}

/*logo responsive*/

@media (max-width: 768px) {
  .hero-logo {
    top: 50%;  
    max-width: 90%;  
  }
}


@media (max-width: 480px) {
  .hero-logo {
    top: 50%; 
    max-width: 90%; 
  }
}

/*logo responsive*/

/*logo end*/

/*PROMO CARD START*/


.sub_hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  margin-left: 10px;
  margin-right: 10px;
  
}

.promo {
  position: relative;
  width: 30%;
  min-width: 250px;
  
}

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

.promo button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: #181616;
  border: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  padding: 12px 20px;
  cursor: pointer;
}

.promo button::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #181616;
  margin-top: 5px; 
}

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


.promo button:hover::after {
  background-color: #FFFBF2;
}

/*PROMO CARD END*/

/*PROMO CARD RESPONSIVE START*/

@media (max-width:1024px) {
  .promo {
    width: 45%;
  }
  
}

@media (max-width:768px) {
  .promo {
    width: 100%;
  }
  .sub_hero {
    gap: 20px;
    
  }
}


/*whats new  Start*/
.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 .carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 100%;
}

.whats-new .carousel::-webkit-scrollbar {
  display: none;
}

.whats-new-products {
  display: flex;
  gap: 20px;
}

.whats-new .whats-new-products-card {
  flex: 0 0 calc(25% - 15px);
}

.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 {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.whats-new .left-btn,
.whats-new .right-btn {
  background-color: #FFFBF2;
  font-size: 15px;
  color: #262E19;
  padding: 12px 15px;
  stroke: none;
  border: #262E19;
}

.whats-new .counter {
  color: #262E19;
  font-size: 15px;
}

.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 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .whats-new-products::-webkit-scrollbar {
    display: none;
  }

  .whats-new .whats-new-products-card {
    flex: 0 0 calc(33.33% - 10px);
  }

  .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-products {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .whats-new .whats-new-products-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .whats-new .nav {
    display: none;
  }

  .whats-new .new-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 20px;
  }

  .whats-new .Shop-all-products {
    font-size: 16px;
  }
}


/*whats new  end*/

.seasons{
  background: url(Images/Summer\ collection.png);
  width: 94%;
  height: 80vh;
  background-size: cover; 
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: left;
  text-align: center;
  position: relative;
}


.seasons-showcase h1 {
  text-align: left;
  
  color: #FFFBF2;
  font-family: 'Literata', serif;
  font-size: 95px;
  font-weight: 200;
}

.seasons-showcase h1 span {
  color: #FFFBF2;
  text-align: left;
  font-family: 'Great Vibes', cursive;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 7px;
}

.seasons-showcase p{
  width: 40%;
  color: #FFFBF2;
  text-align: left;
  padding-bottom: 15px;
  line-height: 1.5;
  font-weight: 600;
}

.seasons-showcase {
  text-align: left;  
  margin-left: 300px;
}

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

.seabtn::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #181616;
  margin-top: 5px; 
  transition: background-color 0.3s ease;
}

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


.seabtn:hover::after {
  background-color: #FFFBF2;
}


@media screen and (max-width: 1100px) {
  .seasons {
    height: auto;
    background-position: right;
  }

  .seasons-showcase {
    margin: 0;
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    text-align: center;
  }


  .seasons-showcase h1 {
    font-size: 30px;
   text-align: center;
   font-size: 60px;
   line-height: 0.7;
   padding-bottom: 20px;

  }

  .seasons-showcase p {
    width: 100%;
    font-size: 12px;
   padding-top: 0;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
  }

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

@media screen and (max-width: 768px) {
  .seasons {
    height: auto;
    background-position: right;
  }

  .seasons-showcase{
    margin: 0px;
    height: 80vh;
    justify-content: center;
    align-content: center;
    
  }


  .seasons-showcase h1 {
    font-size: 30px;
   text-align: center;
   font-size: 60px;
   line-height: 0.7;
   padding-bottom: 20px;

  }

  .seasons-showcase p {
    width: 100%;
    font-size: 12px;
    margin-left: 0px;
    text-align: center;
  }

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


@media screen and (max-width: 480px) {
  .seasons {
    height: auto;
    background-position: right;
  }

  .seasons-showcase{
    margin: 0px;
    height: 80vh;
    justify-content: center;
    align-content: center;
    
  }


  .seasons-showcase h1 {
    font-size: 30px;
   text-align: center;
   font-size: 60px;
   line-height: 0.7;
   padding-bottom: 20px;

  }

  .seasons-showcase p {
    width: 100%;
    font-size: 12px;
    margin-left: 0px;
    text-align: center;
  }

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





/* gallery start */

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

.gent-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 10px;
  width: 80%;
  align-content: center;
  
}

.gent-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  
  
}


.col-1 {
  grid-column: span 1;
  
}

.tall-image {
  grid-row: span 2;
  max-height: 1141px;
  object-fit: contain;
  
  
}

.col-2 {
  grid-column: span 1;
}


.gallery-header {
  display: flex;
  font-weight: 450;
  font-size: 25px;
  color: #262E19;
}


@media (max-width: 1024px) {
  .gent-gallery {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 768px) {
  .gent-gallery {
    grid-template-columns: repeat(1, 1fr); 
    
  }

  .tall-image {
    grid-row: span 1; 
  }
}

.gallery-header {
  display: flex;
  font-weight: 450;
  font-size: 25px;
  color: #262E19;
  justify-content: center;
  margin-bottom: 20px;
}


/* gallery end */


/* 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 .carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none; 
  scrollbar-width: none; 
  width: 100%;
}

.best-sellers .carousel::-webkit-scrollbar {
  display: none; 
}

.best-sellers-products {
  display: flex;
  gap: 20px;
}

.best-sellers .best-sellers-products-card {
  flex: 0 0 calc(25% - 15px);
}

.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 .nav {
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.best-sellers .left-btn,
.best-sellers .right-btn {
  background-color: #FFFBF2;
  font-size: 15px;
  color: #262E19;
  padding: 12px 15px;
  stroke: none;
  border: #262E19;
}

.best-sellers .counter {
  color: #262E19;
  font-size: 15px;
}

.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 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none; 
    scrollbar-width: none;
  }

  .best-sellers-products::-webkit-scrollbar {
    display: none;
  }

  .best-sellers .best-sellers-products-card {
    flex: 0 0 calc(33.33% - 10px);
  }

  .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-products {
    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 .new-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 20px;
  }

  .best-sellers .Shop-all-products {
    font-size: 16px;
  }
  .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;
  }
  
}

/* best sellers end */


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

}

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