@import "tailwindcss";
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Koh+Santepheap:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300..700&display=swap');


/* Custom styles that override Tailwind/Bootstrap if needed */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
a:not(#mobileMenuSidebar a):not(.lg\:hidden a){
  color: black !important;
  text-decoration: none!important ;
}


#mobileMenuSidebar a,
#mobileMenuSidebar .accordion-body a,
#mobileMenuSidebar .accordion-item a {
  color: #ffffff !important;
  text-decoration: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

#mobileMenuSidebar .sidebar-signout-btn {
  background-color: #3a0d12 !important;
  display: flex !important;
}

#mobileMenuSidebar .accordion-body a {
  background-color: #3a0d12 !important;
  display: block !important;
}

#mobileMenuSidebar a:hover,
#mobileMenuSidebar .accordion-body a:hover {
  background-color: #5e1022 !important;
  color: #ffffff !important;
}




/* Accordion button style override to prevent Bootstrap defaults */
#mobileMenuSidebar .accordion-button {
  background-color: #4a0717 !important;
  color: white !important;
  box-shadow: none !important;
  border-bottom: 1px solid #5e1022 !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
}

#mobileMenuSidebar .accordion-button::after {
  display: none !important;
  content: none !important;
  background-image: none !important;
}

#mobileMenuSidebar .accordion-button:not(.collapsed) {
  background-color: #5e1022 !important;
  color: white !important;
}

/* Custom rotate logic for arrow indicators */
#mobileMenuSidebar .accordion-button i.fa-chevron-down {
  transition: transform 0.25s ease-in-out !important;
  display: inline-block !important;
}

#mobileMenuSidebar .accordion-button:not(.collapsed) i.fa-[#chevron-down],
#mobileMenuSidebar .accordion-button:not(.collapsed) i.fa-chevron-down {
  transform: rotate(180deg) !important;
}

/* Notification Modal Responsive Override */
#notificationModal .modal-dialog {
  max-width: 500px !important;
  width: 90vw !important;
  margin: 1.75rem auto !important;
}

#notificationModal .modal-content {
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 16px !important;
}

#notificationModal h1 {
  font-size: 1.25rem !important;
  padding-right: 25px !important;
  text-align: center !important;
  word-break: break-word !important;
}

#notificationModal .notif-card {
  width: 100% !important;
  box-sizing: border-box !important;
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
}

#notificationModal .notif-card p {
  white-space: normal !important;
  font-size: 0.85rem !important;
}

@media (max-width: 576px) {
  #notificationModal .modal-dialog {
    max-width: 340px !important;
    width: 88vw !important;
    margin: 0.5rem auto !important;
  }
  #notificationModal .modal-content {
    padding: 4px !important;
  }
}









/* Carusel */
   /* Custom styles for the slider arrows to position them nicely */
        .slider-container {
            position: relative;
            overflow: hidden;
        }

        .slide-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .slide {
            flex: 0 0 100%; /* Important: each slide takes 100% of the container width */
        }

        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            padding: 0.5rem 1rem;
            cursor: pointer;
            color: #ffffff;
            background-color: rgba(0, 0, 0, 0.3);
            border-radius: 9999px;
            transition: background-color 0.2s ease, color 0.2s ease;
            font-weight: 700;
            font-size: 1.25rem;

            border: none;
            outline: none;
        }

        .prev {
            left: 1rem;
        }

        .next {
            right: 1rem;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            
        }



/* Base styles for all indicators */
.indicator {
  display: inline-block;
  width: 25px; /* Adjust width as needed */
  height: 8px; /* Adjust height as needed */
  margin-right: 8px; /* Spacing between indicators */
  border-radius: 999px; /* For a pill shape */
  transition: all 0.3s; /* For smooth transitions on click/swipe */
}

/* Inactive State */
.indicator {
  background-color: #CCCCCC; /* Light Gray */
}

/* Active State */
.indicator.active {
  background-color: #C3A16A; /* Muted Gold/Tan */
  /* If you want the active one to be slightly wider */
  /* width: 35px; */ 
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #b8860b;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9d740a;
}

/* Custom form controls */
.form-control:focus {
    border-color: #b8860b;
    box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.25);
}

/* Custom buttons */
.btn-amber {
    background-color: #b8860b;
    color: white;
    transition: all 0.3s ease;
}

.btn-amber:hover {
    background-color: #9d740a;
    transform: translateY(-2px);
    color: white;
}

/* Custom card hover effect */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Custom underline animation */
.hover-underline-animation {
    position: relative;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #b8860b;
    transition: width 0.3s ease;
}

.hover-underline-animation:hover::after {
    width: 100%;
}
 .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }

/* Custom loading spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #b8860b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .mobile-center {
        text-align: center;
    }
    
    .mobile-mt-4 {
        margin-top: 1.5rem;
    }
}

/* Custom utility classes */


/* Custom transitions */
.transition-all {
    transition: all 0.3s ease;
}

/* Custom focus styles */
.focus-visible:focus {
    outline: 2px solid #b8860b;
    outline-offset: 2px;
}

/* Custom scroll snap */
.snap-container {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
}

.snap-section {
    scroll-snap-align: start;
    min-height: 100vh;
}


h2 {
  font-family: "koh Santepheap";
  font-weight: 400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  background-color: #fff;
  color: #fff;
}

/* ===== MOBILE BANNER ===== */
.mobile-banner {
  display: none;
  position: relative;
  width: 100%;
  max-width: 1340px;
  height: 308px;
  margin: 20px auto;

  overflow: hidden;
  background-color: #3b0066;
}

.mobile-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.banner-content {
  position: absolute;
  inset: 0;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.25);
}

    /* Modal Size */
        #notif-dialog {
            max-width: 734px !important;
            width: 734px !important;
        }

        #notif-content {
            height: 724px !important;
            max-height: 724px !important;
            overflow: hidden;
        }

        .notif-card:hover {
            background-color: #fafafa;
            transition: 0.2s;
        }
.banner-content h2 {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.sparkle-text {
  font-family: 'Brush Script MT', cursive;
  font-size: 26px;
  color: #00c6d3;
  margin-bottom: 8px;
  display: block;
}

.banner-content p {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 14px;
  padding: 0 8px;
}

.shop-btn {
  display: inline-block;
  text-decoration: none;
  border: 1px solid #fff;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 4px;
  transition: 0.3s;
}

.shop-btn:hover {
  background: #fff;
  color: #3b0066;
}

/* ===== Show only on Mobile & Tablet ===== */
@media (max-width: 1024px) {
  .mobile-banner {
    display: block;
  }
}

@media (min-width: 1025px) {
  .mobile-banner {
    display: none;
  }
}



.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 1540px;
  height: 432px;
  display: block;
}

@media screen and (max-width: 1024px) {
  .slider {
    display: none;
  }
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.4);
  color: white;
  font-size: 26px;
  border: none;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 2;
}

.prev:hover,
.next:hover {
  background-color: rgba(255, 255, 255, 0.7);
  color: #3a0a0d;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.category-section2 {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 30px;
  /* change this to adjust left-right spacing for ALL inner sections */
  box-sizing: border-box;
}

.category-section2 h2 {
  /* max-width: 442px; */
  font-size: 40px;
  font-weight: 400;
  color: #000;
  text-align: center;
  /* margin-bottom: 20px; */
}

.category-section2 .section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
}

@media(max-width:1024px) {
  .category-section2 h2 {
    /* max-width: 442px; */
    font-size: 22px;
    font-weight: 400;
    color: #000;
    text-align: center;
    /* margin-bottom: 20px; */
  }

  h2 {
    font-family: "Koh Santepheap";
  }
}

.category-section2 .card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}


.category-section2 .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.category-section2 .card h3 {
  font-size: 18px;
  margin: 12px 0;
  color: #444;
}


@media (max-width: 1024px) {
  .category-section2 {
    padding: 30px 20px;

    /* reduced side padding in tablet view */
  }

  .category-section2 .section-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .category-section2 {
    padding: 20px 15px;
    /* mobile side padding smaller */
  }

  .category-section2 .section-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .category-section2 .card {
    border-radius: 10px;
  }

  .category-section2 .card h3 {
    font-size: 16px;
  }
}

/*  CATEGORY ICONS SECTION  */
.category-icons {
  background-color: #fff;
  padding: 30px 0;
  border-top: 1px solid #e0e0e0;
  /* border-bottom: 1px solid #e0e0e0; */
  /* width:90%; */
}


.category-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1340px;
  margin: auto;
}

.category-item {
  text-decoration: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 90px;
}

.category-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;

  /* elegant gold tone */
  padding: 5px;
  background-color: #fff;
  object-fit: cover;
}

.category-item p {
  font-family: "Koh Santepheap";
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

@keyframes categoryMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media screen and (max-width: 1024px) {
  .category-icons {
    border-left: none !important;
    border-top: none !important;
    overflow: hidden !important;
    padding: 15px 0 !important;
  }

  div#categoryContainer {
    display: flex !important;
    width: max-content !important;
    flex-wrap: nowrap !important;
    animation: categoryMarquee 25s linear infinite !important;
    overflow: visible !important;
    justify-content: start !important;
    border-left: none !important;
    box-shadow: none !important;
  }

  div#categoryContainer::-webkit-scrollbar {
    display: none !important;
  }
}



/* .category-icons-mobile {
  display: none; 
} */

/* ---------- Rakhi Poster Section ---------- */
.rakhi-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  /* space above & below */
  background: transparent;
  /* place-content: center; */
}

.rakhi-img {
  width: 100%;
  /* left & right gaps */
  /* max-width: 1340px; */
  /* height: auto; */
  max-width: 100%;
  border-radius: 25px;
  overflow: hidden;
  object-fit: contain;
}

.rakhi-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 25px;
  object-fit: contain;

}

@media (max-width: 1024px) {
  .rakhi-img {
    width: 95%;
    height: 400px;
    border-radius: 20px;
  }

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

  section.category-icons {
    overflow: scroll;
  }
}

@media (max-width: 768px) {
  .rakhi-section {
    margin: 25px 0;
  }

  div#categoryContainer {
    /* min-width: 500px; */
    flex-wrap: nowrap;
    overflow: scroll;
    justify-content: start;
  }

  .rakhi-img {
    width: 100%;
    border-radius: 18px;
    height: fit-contain;
    box-shadow: none;
  }

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

/*  Diamond Section  */
.Diamond-section {
  width: 100%;
  max-width: 1340px;
  margin: 80px auto;
  text-align: center;
  font-family: "Koh Santepheap";
}


.section-title {
  font-size: 40px;
  font-weight: 400;
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.section-subtitle {
  font-size: 22px;
  color: #4b4b4b;
  margin-bottom: 50px;
  text-align: center;

}

@media(max-width:1024px) {


  .section-title {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
    margin-bottom: 5px;
  }

  .section-subtitle {
    font-size: 12px;
    color: #4b4b4b;
    margin-bottom: 50px;
    text-align: center;

  }


}

.diamond-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 20px;
  justify-content: center;
  align-items: stretch;
}


.diamond-item.large {
  grid-row: span 2;
  /* occupies 2 rows */
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}


.diamond-item.small {
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}


.diamond-item img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  object-fit: fill;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
}


/* .diamond-item:hover img {
  transform: scale(1.05);
} */

/*  Responsive design diamond */
@media (max-width: 1024px) {
  .diamond-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .diamond-item.large {
    grid-column: span 2;
    height: 400px;
  }

  .diamond-item.small {
    height: 305px;
  }
}

@media (max-width: 768px) {
  .diamond-grid {
    grid-template-columns: 1fr;
  }

  .diamond-item.large {
    height: 320px;
  }

  .diamond-item.small {
    height: 220px;
  }

}

/* ---------- Gold Collection Section ---------- */
.Gold-section {
  width: 100%;
  max-width: 1340px;
  margin: 80px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}



.gold-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.gold-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 400px;
  /* equal height for both */
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}


.gold-item img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
/* .gold-item:hover img {
  transform: scale(1.05);
} */


@media (max-width: 1024px) {
  .Gold-section {
    width: 100%;
  }

  .gold-item {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .gold-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gold-item {
    height: 300px;
  }

  .section-goldtitle {
    font-size: 24px;
  }

  .section-goldsubtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .gold-item {
    height: 250px;
  }
}

/*  Earring Section/CARD 2 */
.Earring {
  width: 100%;
  max-width: 1340px;
  margin: 80px 0;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}


.earring-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  justify-content: center;
  align-items: center;
}


.earring-item {
  /* border-radius: 18px; */
  overflow: hidden;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 2.2;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}


.earring-item img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
  /* border-radius: 18px; */
  transition: transform 0.3s ease-in-out;
}

/* .earring-item:hover img {
  transform: scale(1.04);
} */


@media (max-width: 1024px) {
  .Earring {
    width: 100%;
  }

  .earring-item {
    aspect-ratio: 4 / 2.4;
  }

  div#earringContainer {
    display: flex;
    flex-flow: column;

  }
}

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

  .earring-item {
    aspect-ratio: 4 / 2.6;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .earring-grid {
    grid-template-columns: 1fr;
  }

  .earring-item {
    aspect-ratio: 4 / 3;
  }

  .Earring .section-title {
    font-size: 24px;
  }

  .Earring .section-subtitle {
    font-size: 14px;
  }
}

/*  Platinum Collection Section  */
.PLATINUM-Section {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}


.section-title {
  font-size: 40px;
  font-weight: 400;
  font-family: "Koh Santepheap";
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.section-subtitle {
  font-family: "mulish";
  font-size: 22px;
  color: #000;
  margin-bottom: 50px;
}

/* ---------- Grid Layout ---------- */
.platinum-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.platinum-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 387px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}


.platinum-item img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  /* height:380px; */

  /* display: block; */
  border-radius: 20px;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect */
/* .platinum-item:hover img {
  transform: scale(1.05);
} */


@media (max-width: 1024px) {

  .platinum-grid {
    grid-template-columns: 1fr 1fr;
    /* 2 columns on tablet */
    gap: 20px;
  }

  .PLATINUM-Section {
    width: 100%;
    height: 100%;
  }

  .platinum-item {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .platinum-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .platinum-item {
    height: 260px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
  }
}


/* Container Styling */
.GOld-jewel {
  max-width: 1340px;
  border-radius: 100px;
  object-fit: cover;
  margin: 80px auto;
  /* only top & bottom */
  padding: 0;
  /* remove side padding */
  width: 100%;
}



.GOld-jewel .section-subtitle {
  font-family: "mulish";
  font-size: 22px;
  color: #000;
  margin-bottom: 50px;
  text-align: center;
}

/* Grid Container */
.GOld-jewel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns */
  gap: 20px;
  padding: 0;
  /* space between items */

}

/* Individual Items */
.GOld-jewel-itm,
.gold-jewel-item {
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.GOld-jewel-itm img,
.gold-jewel-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Optional hover effect */
/* .GOld-jewel-itm img:hover,
.gold-jewel-item img:hover {
  transform: scale(1.05);
} */

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .GOld-jewel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

  }

  .GOld-jewel-itm,
  .gold-jewel-item {
    height: 180px;
  }
}

@media screen and (max-width: 768px) {
  .GOld-jewel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    /* 1 column on very small screens */
  }

  .GOld-jewel-itm,
  .gold-jewel-item {
    height: 70px;
    /* same visual height as gender section cards */
  }
}


/* Container Styling */
.collection-Section {
  padding: 0;
  /* max-width: 1300px; */
  width: 100%;
  margin: 80px auto;
  /* center align container */
}





.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;

}

/* Individual Items */
.collection-item {
  overflow: hidden;
  border-radius: 10px;
}

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Optional hover effect */
/* .collection-item img:hover {
  transform: scale(1.05);
} */

/* Responsive Design */

@media (max-width: 1024px) {
  .collection-grid {
    /* width: 100%; */
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "first first"
      "second third";
    gap: 20px;
  }

  .Collection-first {
    grid-area: first;

  }

  .collection-grid a:nth-child(2) {
    grid-area: second;
  }

  .collection-grid a:nth-child(3) {
    grid-area: third;
  }

  /* Make first image naturally fit without distortion */
  .Collection-first img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 25px;
  }

  .testimonial-slider {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }
}

/* Mobile only */
@media screen and (max-width: 768px) {
  .collection-grid {
    gap: 15px;
  }

  .Collection-first a img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Section Container */
.gender-Section {
  max-width: 1340px;
  width: 100%;
  margin: 80px auto;
  padding: 0;
}

/* Title */
.gender-Section .section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  text-align: center;
}

/* Gender Links */
.gender-links {
  display: flex;
  justify-content: center;
  /* gap: 12px; */
  margin-bottom: 20px;
  flex-wrap: nowrap;

}

.gender-link {
  cursor: pointer;
  font-family: "mulish";
  font-weight: 600;
  font-weight: bold;
  font-size: 22px;
  padding: 5px 10px;
  transition: all 0.3s ease;
  position: relative;
  color: #000;
  background-color: transparent;
}


.gender-link:hover {
  /* background-color: yellow; */
  color: #ef9104;
}

.gender-link:hover::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: orange;
}

/* Gender Grid */
.gender-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 items in a row */
  gap: 20px;
  padding: 0;
}

/* Gender Items */
.gender-item {
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* .gender-item:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} */

.gender-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.show {
  display: block;
}

.hide {
  display: none;
}

.gender-link.active {
  color: #701934;
  font-weight: 600;
  text-decoration: underline;
}

@media screen and(max-width:1024px) {
  .gender-grid {
    width: 100%;
    height: 320px
  }

}

@media screen and (max-width: 768px) {
  .gender-grid {
    grid-template-columns: repeat(2, 1fr);
    height: 320px
      /* 2 columns */
  }

  .footer-section {
    flex: 1;
  }
}



/* malabar Section Container */
.malabar-Section {
  padding: 0;
  max-width: 1340px;
  width: 100%;
  margin: 80px auto;
}


.malabar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
}

/* Grid Items */
.gender-item,
.malabar-item {
  overflow: hidden;
  border-radius: 10px;
}

.gender-item img,
.malabar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Optional hover effect */
/* .gender-item:hover img,
.malabar-item:hover img {
  transform: scale(1.05);
} */

/* Responsive */
@media screen and (max-width: 1024px) {
  .malabar-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on medium screens */
  }
}

@media screen and (max-width: 768px) {
  .malabar-grid {
    grid-template-columns: repeat(2, 1fr);
    /* 1 column on small screens */
  }
}


.Bride-section {
  max-width: 1340px;
  margin: 80px auto;
  padding: 0 0px;
  box-sizing: border-box;
  text-align: center;
  width: 100%;
}




.Bride-grid {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 
.video-tag img{
  max-width: 150px;
  display: none;
  position: relative;
  width: fit-content;
  height: 100%;
  max-height: 150px;
  z-index: 2;
  object-fit: cover;
  border-radius: 90%;
  overflow: hidden;
  
} */

.Bride-grid img {
  width: 100%;
  max-width: 1340px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media screen and (max-width: 900px) {
  .Bride-grid img {
    max-width: 100%;
  }
}

.testimonial-slider {
  max-width: 1340px;
  margin: 80px auto;
  padding: 0 20 px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  overflow: hidden;
  padding: 60px 0;
  box-sizing: border-box;
  background: #fdfdfd;
}

.testimonial-heading {

  font-size: 40px;
  font-weight: 400;
  font-family: "Koh Santepheap";
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 40px;
  font-family: 'Poppins', sans-serif;
}


.carousel {
  display: flex;
  justify-content: centre;
  transition: transform 0.6s ease;
  width: 100%;
  max-width: 1340px;
  align-items: stretch;
}

.testimonial-card {
  flex: 0 0 calc(33.33% - 20px);
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin: 0 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: all 0.4s ease;
  box-sizing: border-box;
}


.testimonial-card.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
  z-index: 5;
}


.stars span {
  color: #FFD700;
  font-size: 18px;
}

.quote-icon {
  font-size: 24px;
  color: #2C0D12;
  font-weight: bold;
}

.testimonial-text {
  color: #000;
  font-family: "Signika";
  font-weight: 300;
  font-size: 16px;
  font-size: 0.95rem;
  margin: 10px 0 15px;
  line-height: 1.5;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.name {
  font-weight: 600;
  color: #000;
}

.dots-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #2C0D12;
}

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

@media screen and (max-width: 992px) {
  .carousel {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    flex: 0 0 calc(50% -20px);
    margin: 0 10px;
  }
}


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

  .testimonial-card {
    flex: 0 0 100%;
    margin: 0;
  }

  div#categoryContainer {
    /* min-width: 500px; */
    flex-wrap: nowrap;
    overflow: scroll;
    justify-content: start;
  }

  .category-icons {
    overflow: hidden;
  }

  .diamond-grid {
    display: flex;
    flex-flow: column;
  }
}

/* .collection-Section, */