/* General Reset and Layout */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}




body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    scroll-behavior: smooth;
    font-family: "firago-mediumitalic";
    font-feature-settings: "case" on;
    overflow-x: hidden;
    
  }



 
  
  h1, h2 {
    text-align: center;
  }
  
  section {
    padding: 0rem;
  }





  /* ScrollBar */

  
/* Custom Scroll Bar CSS */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #6440ff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: #d639d9;
}

  







  /* Navbar */

  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    padding: 1rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000 !important;
  
  }


  .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  nav.sticky {
    background-color: rgba(255, 254, 254, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    transform: translateZ(0); /* <- NEW LINE */
  
    
  }
  
  .logo-photo {

    width: 130px;
    margin-top: -7px;
    
    }


    .logo-menu-mob {
      display: none;
    }
    

  
  .nav .menu {
    list-style: none;
    display: flex;
    gap: 36px;
  }
  
  .menu li a {
    text-decoration: none;
    color: #353535;
    font-family: "firago-mediumitalic";
    font-size: 18px;
  }

  .menu li a:hover {
   
    font-family: "firago-bolditalic";
    
  }
  
  .nav-right button, .nav-right a {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 1rem;
  }


/* cart icons */


.cart-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  cursor: pointer;
}


.cart-count {
  position: absolute;
  top: 12px;
  right: 21px;
  background: #f90774;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 100%;
  display: none;
}






  /* Side Navigation Menu Button CSS */

nav .menu-btn,
.navbar .menu .cancel-btn{
  position: absolute;
  color: #fff;
  right: 30px;
  top: 23px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}
nav .menu-btn{
  color: #ffffff;
  opacity: 90%;
}
nav.sticky .menu-btn{
  color: #301c88;
}
.navbar .menu .menu-btn{
  color: #fff;
}
  
  /* Banner */




  
  /* Benefits */
  .benefits {
    display: flex;
    justify-content: space-around;
    text-align: center;
    background-color: #e0ffe0;
    padding: 2rem;
  }
  
  .benefit {
    font-size: 1.2rem;
    font-weight: bold;
  }
  
  /* Horizontal Scroll */
  .horizontal-scroll .scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
  }
  
  .scroll-container::-webkit-scrollbar {
    display: none;
  }
  
  /* About Section */
  .about-products {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    background-color: #fff;
  }
  
  .about-products img {
    max-width: 300px;
    border-radius: 10px;
  }

  
  

  
  /* Product Grid */





  /* products */



#category1 {
  background-color: #f2f4ff;
  padding-bottom: 4rem;
  
}


.category1-div {
padding: 2rem;
max-width: 1400px;
}



.category1-div .product-item {
  background-color: #ffffff;
  margin-left: auto;
  margin-right: auto;
}



.category1-div .product-actions button:first-child {
  background-color: #e3e7f9;
}

.category1-div .product-actions button:first-child:hover {
   background-color: #c9cee7;
}




.product-grid1,
.product-grid4 {

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}


.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}



.scroll-btn.left img.scroll-arrow {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}


#category2, #category3 {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 5rem;
}


.category2-div .product-item {
  background-color: #f2f4ff;
  box-shadow: none;
 
}

.category2-div .product-actions button:first-child {
  background-color: #ffffff;
}

.category2-div .product-actions button:first-child:hover {
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}



#category2 h2 {
  margin-left: 2rem;
}


#category3 h2 {
  margin-left: 6rem;
}







.category3-div .product-item {
  background-color: #ffffff;
 
}

.category3-div .product-actions button:first-child {
  background-color: #e3e7f9;
}

.category3-div .product-actions button:first-child:hover {
   background-color: #c9cee7;
}


#category3-div {
  width: 100%;
}

#category3 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}


#section-colour {
  background-color: #f2f4ff;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}






.slider-viewport {
  overflow: hidden;
  width: 100%;
  max-width: calc(4 * 290px + 3 * 32px); /* 4 items + 3 gaps */
  margin: 0 auto;
  padding: 0;
  box-sizing: content-box;
}

.slider-track {
  display: flex;
  gap: 32px;
  padding: 0;
  box-sizing: border-box;
}


.slider-viewport.dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}


.scroll-btn img.scroll-arrow {
  width: 50px;
  height: 50px;
  pointer-events: none;
}










/* product item */



.product-item {
  width: 290px;
  height: 460px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s ease;
  text-align: center;
  margin-bottom: 20px;

}


.view-btn {
  color: #363636;
}






#category4 {
  background-color: #ffffff;
  
}


.category4-div {
padding: 2rem;
max-width: 1400px;
padding-bottom: 5rem;
}



.category4-div .product-item {
  background-color: #f2f4ff;
  box-shadow: none;
}



.category4-div .product-actions button:first-child {
  background-color: #ffffff;

}

.category4-div .product-actions button:first-child:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}








/* Improved Home Page Product Cards */

section {
  padding: 3rem 4rem;
  
  margin: 0 auto;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: left;
  color: #222;
  
  padding-bottom: 0.5rem;
}






.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem; /* adds spacing between icon and text */
}


.add-to-cart-btn img.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}



.product-item img.product-img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 8px;
}

.product-item h3 {
  font-size: 18px;
  margin: 0.5rem 0;
  color: #333;
  font-family: 'firago-semibolditalic';
}

.product-item .p-price {
  font-size: 20px;
  font-family: 'firago-semibolditalic';
  color: #000;
}

.product-item p {
  font-size: 14px;
  color: #555;
  margin: 0.25rem 0;
  text-align: center;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  width: 100%;
}

.product-actions button {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

/* Make "View" button smaller */
.product-actions button:first-child {
  background-color: #f0f0f0;
  flex: 4;
  font-size: 16px;
  border-radius: 12px;
  padding: 0.4rem 0.6rem;
  font-family: "firago-mediumitalic";
  font-feature-settings: "case" on;
  
}


.product-actions button:last-child {
  background-color: #3a1ac7;
  color: white;
  font-size: 16px;
  border-radius: 12px;
  font-family: "firago-mediumitalic";
  font-feature-settings: "case" on;
  flex: 6;
}

.product-actions button:hover {
  opacity: 0.9;
}




.swiper {
  overflow: hidden;
  position: relative;
}
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  flex-shrink: 0;
}






  
  
  



/* Benefits Section */


.benefits-section {
  width: 100%;
  background-color: #24187e;
  padding: 4rem 0;
}

.benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: none;   /* important */
  margin: 0;          /* important */
  padding: 0;         /* remove side gaps */
}

  
  .benefit-box {
    background-color: #3c1f99;
    padding: 2rem;
    border-radius: 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    flex: 1 1 280px;
    max-width: 320px;
    transition: transform 0.3s ease;
  }
  
  .benefit-box:hover {
    transform: translateY(-5px);
  }
  
  .benefit-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  




  /* popup */

  .cart-popup {
    position: fixed;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    background-color: #F8F7FF;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
    max-width: 400px;
    border-radius: 12px;
    display: none;
    align-items: center;
    flex-direction: column;
    z-index: 10000;
    animation: fadeInUp 0.3s ease forwards;
    text-align: center;
    border: 2px solid #E0D9FF;
  }


  .cart-popup p {
    margin-top: 5px;
    font-size: 1.2rem;
    font-family: "firago-mediumitalic";
    color: #2D2D2D;
  }
  
  .cart-popup.show {
    display: flex;
  }
  
  .popup-close {
    position: absolute;
    top: 4px;
    right: 8px;
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #696969;
  }
  
  .view-cart-btn {

  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #3A1AC7;
  color: white;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "firago-mediumitalic";
  gap: 0.4rem;
  max-height: 40px;
  font-size: 1.1rem;
  line-height: 1;

  }

   .view-cart-btn:hover {
     background-color: #5B2EFF;
   }


  .view-cart-btn img.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

  
  @keyframes fadeInUp {
    from {
      transform: translateX(-50%) translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
  }
  



  


  












/* --------------------------------- */


/* Responsive Navbar for Max Width 980px */

.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
    font-style: normal;
  font-family: Arial, sans-serif; /* or any non-italic font */
}

.menu {
  transition: left 0.3s ease;
}

.menu-header {
  display: none; /* hides X by default */
}




/* --------------------------------- */
/* Mobile Nav Structure Adjustments (logo center, burger left, cart right) */

.nav-mobile-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}





/* About-us Section */


.about-us-section {
  max-width: 1300px;
  margin: 6rem auto;
  padding: 0 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
  background-color: #ffffff;
}

.about-header h1 {
  font-size: 50px;
  font-weight: 800;
  margin: 0;
  color: #353535;
}

.about-header p {
  margin-top: 10px;
  font-size: 20px;
  color: #353535;
  font-family: "firago-mediumitalic";
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.about-card {
  background: #e8ebf9;
  border-radius: 20px;
  height: 440px;
  padding: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.about-card:hover {
  transform: translateY(-4px);
}

.about-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-size: 28px;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #353535;
}

.about-card p {
  font-size: 18px;
  color: #353535;
  margin-bottom: 1rem;
  line-height: 20px;
  width: 280px;
  font-family: "firago-bookitalic";
}

.about-card a {
  font-weight: bold;
  font-size: 20px;
  color: #353535;
  text-decoration: none;
}

.about-card a:hover {
  text-decoration: underline;
}

/* Specific layout spans */
.card-large {
  grid-column: span 8;
}

.card-large1 {
  grid-column: span 8;
}

.card-large {
  position: relative;
}

.card-large1 {
  position: relative;
}

.card-large img {
  position: absolute;
  bottom: 0.3rem;
  right: 2rem;
  margin-bottom: 0; /* remove original spacing */
  width: 320px;
  height: 340px;
}



/* animations */


.card-large {
   opacity: 0;
  transition: all 1.8s ease 0.4s;
  transform: translateX(0px) translateY(20px);
}



.card-large._active {
  opacity: 100%;
  transform: translate(0px, 0px);

}



.card-small {
   opacity: 0;
  transition: all 1.8s ease 0.4s;
  transform: translateX(0px) translateY(20px);
}



.card-small._active {
  opacity: 100%;
  transform: translate(0px, 0px);

}


.card-large1 {
   opacity: 0;
  transition: all 1.8s ease 0.4s;
  transform: translateX(0px) translateY(20px);
}



.card-large1._active {
  opacity: 100%;
  transform: translate(0px, 0px);

}



.card-small1 {
   opacity: 0;
  transition: all 1.8s ease 0.4s;
  transform: translateX(0px) translateY(20px);
}



.card-small1._active {
  opacity: 100%;
  transform: translate(0px, 0px);

}


.product-grid1 .product-item {
   opacity: 0;
  transition: all 1.8s ease 0.3s;
  transform: translateX(0px) translateY(100px);
}



.product-grid1 .product-item._active {
  opacity: 100%;
  transform: translate(0px, 0px);

}



.product-grid1 .product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.product-grid4 .product-item {
   transition: all 1.8s ease 0.3s;
   opacity: 0;
  transform: translateX(0px) translateY(100px);
}



.product-grid4 .product-item._active {
  
  opacity: 100%;
  transform: translate(0px, 0px);

}

.product-grid4 .product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.product-grid3 .product-item:hover {
  transform: translateY(0px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-grid2 .product-item:hover {
  transform: translateY(0px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}





























.card-large1 img {
  position: absolute;
  bottom: 0.3rem;
  right: 2rem;
  margin-bottom: 0; /* remove original spacing */
  width: 430px;
  height: 310px;
  
}


.card-small {
  grid-column: span 4;
}

.card-small1 {
  grid-column: span 4;
}

.card-small img {
  width: 290px;
  height: 240px;
  margin-left: auto;
  margin-right: auto;

}

.card-small1 img {
  width: 210px;
  height: 210px;
  margin-left: auto;
  margin-right: auto;

}



.close-menu1 {
  display: none;
}



.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.order-confirm-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
      background-color: rgba(255, 254, 254, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  padding: 3rem 3rem 3rem;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  z-index: 10001;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  justify-content: center;
  max-width: 36vw;
  width: 36vw;
}

.order-confirm-popup .popup-icon {
  width: 80px;
  margin-bottom: 1rem;
}

.order-confirm-popup h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #222;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.order-confirm-popup .popup-subtext {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1.5rem;
    position: relative;
  margin-left: auto;
  margin-right: auto;
}

.order-confirm-popup .popup-ok-btn {
  background-color: #3a1ac7;
  color: white;
  padding: 0.6rem 1.2rem;
  font-size: 1.5rem;
  border: none;
  font-family: 'firago-mediumitalic';
  font-feature-settings: "case" on;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}



.order-confirm-popup .popup-ok-btn:hover {
  opacity: 0.9;
}

.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #999;
  cursor: pointer;
}


.shop {
  background-color: #f2f4ff;
  padding-bottom: 0;
  margin-bottom: 0;
}

.product-item:last-child {
  margin-bottom: 0;
}









/* Responsive */
@media (max-width: 980px) {



  /* About-us Section */













  



.close-menu1 {
  display: none;
}













}




@media screen and (max-width: 980px) {


.about-us-section {

}











  #menu.active {
    position: fixed;
    top: 40%;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    background-color: #191919;
    z-index: 9999;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 0;
    margin: 0;
  }

#menu.active li {
  gap: 0px;
}


  #menu.active li a {
    font-size: 1.5rem;
    color: rgb(232, 232, 232);
    text-decoration: none;
   
    
  }


  #menu.active #close-menu {
    position: absolute;
    top: 15px;
    right: 15px;

    font-family: "firago-italic";
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10000;
  }


  .nav .menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    padding-top: 4rem;
    gap: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    z-index: 999;
     transition: left 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  }

 



  .nav .menu.active {
     left: 0;
  opacity: 1;
  pointer-events: auto;
  }

  .nav .menu-header {
    display: block; /* show only on mobile */
    top: 0;
    right: 1rem;
    padding: 1rem;
  }

      .logo-menu-mob {
      display: block;
      position: absolute;
      top: 10%;
      width: 32vw;
    }
    

    .close-menu1 {
  display: block;
}


 

  .hamburger {
    display: block;
  }

  .nav-right {
    display: none;
  }

  .nav .menu li {
    padding: 0 2rem;
  }

  .nav .menu li a {
    font-size: 1.2rem;
    color: #2d2d2d;
  }

  .nav {
    padding: 0.75rem 1rem;
  }

  nav.sticky{
    padding: 0.75rem 1rem;
  }

  .nav .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav .nav-mobile-wrapper {
    position: relative;
  }

  .hamburger {
    z-index: 1001;
  }

  .nav-right {
    display: block;
    z-index: 1001;
  }
}



@media (max-width: 768px) {
  .about-us-section {
    margin: 3rem auto;
    padding: 0 1rem;
  }

  .about-header h1 {
    font-size: 36px;
  }

  .about-header p {
    font-size: 18px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .about-card {
    height: auto;
    padding: 1.5rem;
    text-align: left;
    position: relative;
  }

  .about-card h3 {
    font-size: 24px;
    line-height: 26px;
  }

  .about-card p {
    font-size: 16px;
    line-height: 22px;
    width: 50%;
    max-width: none;
  }

  .about-card a {
    font-size: 18px;
  }

  /* Reset all cards to single column on mobile */
  .card-large,
  .card-large1,
  .card-small,
  .card-small1 {
    grid-column: span 1;
  }

  /* Reset image positioning for mobile */
 .card-large img,
.card-large1 img,
.card-small img,
.card-small1 img {
  position: absolute;
  bottom: 20px;
  right: 1.5rem;
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0;
}


.card-large img {
    width: 130px;
    height: 130px;
}

.card-small img {
    width: 150px;
    height: 150px;
}

.card-large1 img {
    width: 150px;
    height: 150px;
}

.card-small1 img {
    width: 150px;
    height: 150px;
}


}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .about-us-section {
    margin: 2rem auto;
    padding: 0 1rem;
    padding-top: 5vh;
    padding-bottom: 8vh;

  }

  .about-header h1 {
    font-size: 8vw;
    line-height: normal;
  }

  .about-header p {
    margin-top: 5px;
     margin-bottom: 15px;
    font-size: 4vw;
    line-height: 18px;
    width: 80vw;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-card {
    padding: 1.3rem;
    min-height: 200px;
    justify-content: space-between;
    
  }

  .about-card p {
    font-size: 3.5vw;
    line-height: 18px;
    width: 45%;
  }

 
   
 


  .card-large img {
    position: absolute;
    width: 140px;
    height: 140px;
    right: 0px;
    top: 30%;

}

.card-small img {
     position: absolute;
    width: 150px;
    height: 150px;
    right: 0px;
    top: 30%;
}

.card-large1 img {
    position: absolute;
    width: 155px;
    height: 155px;
    right: 0px;
    top: 32%;
}

.card-small1 img {
    position: absolute;
    width: 135px;
    height: 135px;
    right: 0px;
    top: 33%;
}

  .about-card h3 {
    font-size: 4.8vw;
    line-height: 22px;
    width: 70vw;
  }



  .about-card a {
    font-size: 3.8vw;
  }
}



@media (max-width: 768px) {
  .slider-viewport {
    max-width: 100%;
    padding: 0 1rem;
    overflow-x: scroll;
    box-sizing: border-box;
  }

  .slider-track {
    gap: 16px;
    padding: 0 1rem;
  }

  .product-item {
    width: 90vw;
    height: auto;
    padding: 1rem;
  }

  
}





/* Small Phones */
@media screen and (max-width: 480px) {
  /* Small mobile screens */



  .logo-photo {

    width: 27vw;
    margin-top: 4px;
    
    }

    .cart-icon {
   margin-top: 6px;
  width: 28px;
  height: 28px;
  object-fit: contain;
  cursor: pointer;
}


.cart-count {
  position: absolute;
  top: 12px;
  right: 1.7vw;
  background: #f90774;
  color: white;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 100%;
  font-family: "firago-mediumitalic";
  display: none;
}



  .cart-popup {
    position: fixed;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    background-color: #F8F7FF;
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    max-width: 90%;
    width: 75%;
    border-radius: 12px;
    display: none;
    align-items: center;
    flex-direction: column;
    z-index: 10000;
    animation: fadeInUp 0.3s ease forwards;
    text-align: center;
    border: 2px solid #E0D9FF;
  }


   .cart-popup p {
    margin-top: 5px;
    font-size: 1.1rem;
    font-family: "firago-mediumitalic";
  }

    .view-cart-btn {

  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
   background-color: #3A1AC7;
  color: white;
  border: none;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "firago-mediumitalic";
  gap: 0.4rem;
  max-height: 40px;
  font-size: 1rem;
  line-height: 1;

  }








 #menu.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 9999;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 25vh;
    padding-bottom: 0px;
    padding-left: 0px;
    padding-right: 0px;
    margin: 0;
    gap: 12px;
  }


 

  #menu.active li a {
    font-size: 5vw;
    font-family: "firago-bookitalic";

  }


  #menu.active #close-menu {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ebebeb !important;
    -webkit-tap-highlight-color: transparent;
    font-family: "firago-italic";
    font-size: 1.4rem;
    cursor: pointer;
    z-index: 10000;
  }


  .nav .menu {
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    padding-top: 4rem;
    gap: 20px;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    z-index: 999;
         transition: left 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  }



  .nav .menu.active {
    left: 0;
  }

  .nav .menu-header {
    display: block; /* show only on mobile */
    top: 0;
    right: 1rem;
    padding: 1rem;



    
    
  }






  /* Categories */




  #category1 {
  background-color: #f2f4ff;
  padding-top: 10vh;
  padding-bottom: 10vh;
  padding-left: 2vw;
  padding-right: 2vw;
  
}


.category1-div {
margin-left: auto;
margin-right: auto;

}



.category1-div .product-item {
  background-color: #ffffff;
}



.category1-div .product-actions button:first-child {
  background-color: #e3e7f9;
}

.category1-div .product-actions button:first-child:hover {
   background-color: #c9cee7;
}




.product-grid1,
.product-grid4 {

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}


.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
}

.scroll-btn.left {
  left: 10px;
}

.scroll-btn.right {
  right: 10px;
}



.scroll-btn.left img.scroll-arrow {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}


#category2 {
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-top: 6rem;
  padding-bottom: 5rem;
}


.category2-div .product-item {
  background-color: #f2f4ff;
  box-shadow: none;
  width: 75vw;
 
}

.category2-div .product-actions button:first-child {
  background-color: #ffffff;
}

.category2-div .product-actions button:first-child:hover {
   box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}



#category3 {
  background-color: #f2f4ff;
}



.category3-div .product-item {
  background-color: #ffffff;
  width: 75vw

 
}

.category3-div .product-actions button:first-child {
  background-color: #e3e7f9;
}

.category3-div .product-actions button:first-child:hover {
   background-color: #c9cee7;
}






.slider-viewport {
  overflow: hidden;
  width: 75%;
  max-width: calc(4 * 290px + 3 * 32px); /* 4 items + 3 gaps */
  margin: 0 auto;
  padding: 0;
  box-sizing: content-box;
}

.slider-track {
  display: flex;
  gap: 32px;
  padding: 0;
  box-sizing: border-box;
}


.slider-viewport.dragging {
  cursor: grabbing;
  cursor: -webkit-grabbing;
}


.scroll-btn img.scroll-arrow {
  width: 50px;
  height: 50px;
  pointer-events: none;
}













/* product item */



.product-item {
  width: 80vw;
  height: 460px;
  flex-shrink: 0;
  scroll-snap-align: start;
  background: #ffffff;
  padding: 1.2rem;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s ease;
  text-align: center;
  margin-bottom: 20px;

}


.view-btn {
  color: #363636;
}






  #category4 {
  background-color: #ffffff;
  padding-top: 10vh;
  padding-bottom: 10vh;
  padding-left: 2vw;
  padding-right: 2vw;
  
}


.category4-div {
margin-left: auto;
margin-right: auto;

}


.category4-div .product-item {
  background-color: #f2f4ff;
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
}



.category4-div .product-actions button:first-child {
  background-color: #ffffff;

}

.category4-div .product-actions button:first-child:hover {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}








/* Improved Home Page Product Cards */

section {
  padding: 3rem 4rem;
  
  margin: 0 auto;
}





h2 {
  font-size: 9vw;
  margin-bottom: 3rem;
  text-align: left;
  color: #222;
  
  padding-bottom: 0.5rem;
}


.category2-div h2{
  margin-left: 3.5rem;
}

.category3-div h2{
  margin-left: 3.5rem;
}




.product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}






.add-to-cart-btn img.btn-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}



.product-item img.product-img {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 8px;
}

.product-item h3 {
  font-size: 18px;
  margin: 0.5rem 0;
  color: #333;
  font-family: 'firago-semibolditalic';
}

.product-item .p-price {
  font-size: 20px;
  font-family: 'firago-semibolditalic';
  color: #000;
}

.product-item p {
  font-size: 14px;
  color: #555;
  margin: 0.25rem 0;
  text-align: center;
}

.product-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  width: 100%;
}

.product-actions button {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

/* Make "View" button smaller */
.product-actions button:first-child {
  background-color: #f0f0f0;
  flex: 4;
  font-size: 16px;
  padding: 0.4rem 0.6rem;
  font-family: "firago-mediumitalic";
  font-feature-settings: "case" on;
  
}


.product-actions button:last-child {
  background-color: #3a1ac7;
  color: white;
  font-size: 16px;
  font-family: "firago-mediumitalic";
  font-feature-settings: "case" on;
  flex: 6;
}

.product-actions button:hover {
  opacity: 0.9;
}




.swiper {
  overflow: hidden;
  position: relative;
}
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  flex-shrink: 0;
}






.order-confirm-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
      background-color: rgba(255, 254, 254, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  padding: 2rem 2rem 2rem;
  text-align: center;
  font-size: 1.2rem;
  border-radius: 25px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  z-index: 10001;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  justify-content: center;
  max-width: 85vw;
  width: 85vw;
}

.order-confirm-popup .popup-icon {
  width: 70px;
  margin-bottom: 0.5rem;
}

.order-confirm-popup h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #222;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.order-confirm-popup .popup-subtext {
  font-size: 1rem;
  color: #666;
  margin-bottom: 1.5rem;
    position: relative;
  margin-left: auto;
  margin-right: auto;
}

.order-confirm-popup .popup-ok-btn {
  background-color: #3a1ac7;
  color: white;
  padding: 0.6rem 1.2rem;
  font-size: 1.3rem;
  border: none;
  font-family: 'firago-mediumitalic';
  font-feature-settings: "case" on;
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}



.order-confirm-popup .popup-ok-btn:hover {
  opacity: 0.9;
}

.popup-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #999;
  cursor: pointer;
}










/* animations */


/* animations */


.card-large {
   opacity: 0;
  transition: all 1.8s ease 0.7s;
  transform: translateX(0px) translateY(20px);
}



.card-large._active {
  opacity: 100%;
  transform: translate(0px, 0px);

}



.card-small {
   opacity: 0;
  transition: all 1.8s ease 0.7s;
  transform: translateX(0px) translateY(70px);
}



.card-small._active {
  opacity: 100%;
  transform: translate(0px, 0px);

}


.card-large1 {
   opacity: 0;
  transition: all 1.8s ease 0.7s;
  transform: translateX(0px) translateY(70px);
}



.card-large1._active {
  opacity: 100%;
  transform: translate(0px, 0px);

}



.card-small1 {
   opacity: 0;
  transition: all 1.8s ease 0.7s;
  transform: translateX(0px) translateY(70px);
}



.card-small1._active {
  opacity: 100%;
  transform: translate(0px, 0px);

}


.product-grid1 .product-item {
   opacity: 0;
  transition: all 1.8s ease 0.3s;
  transform: translateX(0px) translateY(70px);
}



.product-grid1 .product-item._active {
  opacity: 100%;
  transform: translate(0px, 0px);

}



.product-grid1 .product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.product-grid4 .product-item {
   transition: all 1.8s ease 0.3s;
   opacity: 0;
  transform: translateX(0px) translateY(100px);
}



.product-grid4 .product-item._active {
  
  opacity: 100%;
  transform: translate(0px, 0px);

}

.product-grid4 .product-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}






}












