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

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Remove any potential horizontal overflow */
body, html {
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

@font-face {
    font-family: "TOP_LUXURY-Regular";
    src: url("../fonts/TOPLUXURY.otf") format("opentype");
}

/* Hero Section */
.hero-coll {
  position: relative;
  height: 100vh;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-coll::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(0deg,
            rgba(49, 48, 50, 0) 100%,
            rgba(49, 48, 50, 0.3) 30%,
            rgba(49, 48, 50, 1) 0%);
    z-index: 2;
}

.hero-coll-content{
  display: none;
}

.hero-coll-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-coll-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Collection Description */
.collection-description-coll {
  padding: 7rem 2rem 5.2rem;
  text-align: center;
  max-width: 695px;
  margin: 0 auto;
}

.collection-description-coll h2 {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  margin-bottom: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}

.collection-description-coll p {
  font-size: 1.3rem;
  line-height: 2.3rem;
  color: #000000;
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
}

/* Image grid section */

.jewelry-grid-coll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
  box-sizing: border-box;
  width: 100%;
}

.double-space{
  grid-column: span 2;
  height: 270px;
  width: 568px;
}

.double-space img{
  width: 100%;      /* Fill the width of the container */
  height: auto;   
  display: block;   /* Remove inline gap */
  object-fit: cover; /* Optional: cover container nicely without distortion */
  max-height: 268px;
}

/* .grid-item {
  background: #f9f6f6;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(96, 96, 111, 0.06);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
} */

@media (max-width:900px){
  .card-one{
    padding-top: 25px;
  }
}

@media (max-width: 900px) {
  .jewelry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 24px;
  }
  
  .hero-coll::before {
        background: linear-gradient(179deg,rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    }
  
  .craft-hero-title{
    text-align: center;
  }

  .hero-coll-content{
    display: flex;
    color: white;
    font-family: "TOP_LUXURY-REGULAR", sans-serif;
    font-size: 44px;
    font-weight: 400;
    margin-top: 60%;
    text-transform: uppercase;
    z-index: 3;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .hero-text{
    text-align: center;
  }

  .hero-a{
    font-size: 12px;
    font-family: sans-serif;
    color: white;
    margin-top: 2px;
  }
}

@media (max-width: 600px) {
  .jewelry-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .hero-coll-content{
    margin-top: 80%;
  }

}

/* Explore section */
.explorer{
  margin: 0 auto;
}
.explore-more{
  text-align: center;
  font-family: "TOP_LUXURY-Regular", sans-serif;
  font-size: 44px;
  margin-top: 12rem;
  margin-bottom: 4.5rem;
  color: #000;
}

/* Two-column masonry without forcing heights */
.masonry2{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;               /* space between boxes */
}
.col{
  display: flex;
  flex-direction: column;  /* stack in each column */
  gap: 8px;
}

/* Card + image keeps natural height */
.card{
  position: relative;
  overflow: hidden;
}

.card-one{
  padding-top: 425px;
}
.card img{
  display: block;
  width: 100%;
  height: auto;
}


/* Bottom overlay-coll */
.overlay-coll{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  width: 100%;
  padding: 1.25rem 1.25rem 1.5rem;
  background: linear-gradient(180deg, rgba(49, 48, 50, 0) 0%, rgba(49, 48, 50, 0.3) 30%, rgba(49, 48, 50, 1) 90%);
  color: #fff;
  text-align: center;
}
.overlay-coll h3{
  font-family: "TOP_LUXURY-Regular", Helvetica, Arial, sans-serif;
  font-size: 44px;
  margin: 0 0 .75rem 0;
}

/* CTA button */
.cta-button{
  background: transparent;
  color: #fff;
  /* border: 2px solid #fff; */
  /* padding: .7rem 1.3rem; */
  font-size: .95rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-button{ color:white; }

/* Responsive: stack to single column on small screens */
@media (max-width: 900px){
  .masonry2{ grid-template-columns: 1fr; }

  .card-one{
  padding-top: 0px;
}

}


/* categories-coll Section */
.categories-coll {
  padding: 4rem 2rem;
  text-align: center;
  background: #f6f6f6;
}

.categories-coll h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.category-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3/5;
}

.category-item.main {
  grid-column: span 1;
  aspect-ratio: 4/5;
}

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



.category-item h3 {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 1px;
 /* text-shadow: 2px 2px 4px rgba(0,0,0,0.5); */
}

.category-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

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

.dot.active {
  background: #4a4d60;
}

.hvr-udl:hover {
  text-decoration: underline;
  text-underline-offset: 8px;
  transition: all 0.6s ease;
}


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

  
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .category-item.main {
    grid-column: span 1;
  }
  
  .zigzag-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .zigzag-row.reverse {
    direction: ltr;
  }
  
  .zigzag-content {
    text-align: center;
    padding: 1rem;
  }
  
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .categories-coll,
  .zigzag-collections{
    padding: 2rem 1rem;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
}

/* Jewellery Grid Collection Layout */
.jewellery-grid-coll .coll-container {
  margin: 0 auto;
  margin-bottom: 48px;
}

.coll-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* grid-auto-rows: 320px; */
}

.coll-grid-item {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  object-fit: cover;
  max-height: 325px;
}

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


.product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.85);
  /*padding: 0.75rem 1rem;*/
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* Grid Item Placement */
.coll-grid-item:nth-child(1) {
  grid-column: 1 / span 1;
  grid-row: 1;
}
.coll-grid-item:nth-child(2) {
  grid-column: 2 / span 1;
  grid-row: 1;
}
.coll-grid-item:nth-child(3) {
  grid-column: 3 / span 2;
  grid-row: 1;
}
.coll-grid-item:nth-child(4) {
  grid-column: 1 / span 1;
  grid-row: 2;
}
.coll-grid-item:nth-child(5) {
  grid-column: 2 / span 1;
  grid-row: 2;
}
.coll-grid-item:nth-child(6) {
  grid-column: 3 / span 1;
  grid-row: 2;
}
.coll-grid-item:nth-child(7) {
  grid-column: 4 / span 1;
  grid-row: 2;
}
.coll-grid-item:nth-child(8) {
  grid-column: 1 / span 1;
  grid-row: 3;
}
.coll-grid-item:nth-child(9) {
  grid-column: 2 / span 1;
  grid-row: 3;
}
.coll-grid-item:nth-child(10) {
  grid-column: 3 / span 1;
  grid-row: 3;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .coll-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    /* grid-auto-rows: 220px; */
  }
  .coll-grid-item {
    min-height: 380px;
  }
  /* Adjust grid placement for 2 columns */
  .coll-grid-item:nth-child(1),
  .coll-grid-item:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
  }
  .coll-grid-item:nth-child(3) {
    grid-column: 1 / span 2;
    grid-row: auto;
  }
  .coll-grid-item:nth-child(n+4) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  /* .coll-grid-layout {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px; 
    gap: 16px;
  } */
  .coll-grid-item {
    min-height: fit-content;
  }
  .coll-grid-item:nth-child(3) {
    grid-column: 1/ span 2;
    grid-row: auto;
  }

  .explore-more{
    font-size: 24px;
    max-width: 395px;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
  }

  .overlay-coll h3{
    font-size: 24px;
  }

  .cta-button{
    font-size: 12px;
  }
}


/* ******************************************************
                 Collect In Store Page CSS
****************************************************** */

/* Hero Section */
.hero-store {
  padding: 60px 20px;
  text-align: center;
  background-color: #ffffff;
}

.store_title {
  font-family: "TOP_LUXURY-Regular", Helvetica, serif;
  font-weight: 400;
  color: #000000;
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1.2;
}

.store_subtitle {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 300;
  color: #000000;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 28px;
  margin-bottom: 60px;
}

.store_image {
  width: 100%;
  max-width: 1163px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Reserve Info Section */
.reserve-info {
  background-color: #f5f5f5;
  padding: 80px 20px;
}

.reserve-info__container {
  max-width: 1007px;
  margin: 0 auto;
  text-align: center;
}

.reserve-info__title {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 28px;
  margin-bottom: 20px;
}

.reserve-info__text {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 300;
  color: #000000;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 28px;
  margin-bottom: 20px;
}

.reserve-info__text:last-child {
  margin-bottom: 0;
}

/* How It Works Section */
.how-it-works {
  padding: 80px 20px;
  background-color: #ffffff;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.2);
}

.how-it-works__title {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 500;
  color: #000000;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0;
  line-height: 28px;
  margin-bottom: 40px;
}

.step {
  max-width: 772px;
  margin: 0 auto 60px;
  text-align: center;
}

.step:last-child {
  margin-bottom: 0;
}

.step__number {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 28px;
  margin-bottom: 20px;
}

.step__title {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 300;
  color: #000000;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 28px;
}

.step__description {
  font-family: "Inter", Helvetica, sans-serif;
  font-weight: 300;
  color: #000000;
  font-size: 15px;
  letter-spacing: 0;
  line-height: 28px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .store_title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-store {
    padding: 40px 20px;
  }

  .store_title {
    font-size: 32px;
  }

  .store_subtitle {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .reserve-info {
    padding: 60px 20px;
  }

  .reserve-info__title {
    font-size: 16px;
  }

  .reserve-info__text {
    font-size: 14px;
  }

  .how-it-works {
    padding: 60px 20px;
  }

  .how-it-works__title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .step {
    margin-bottom: 40px;
  }

  .step__title {
    font-size: 18px;
  }

  .step__description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hero-store {
    padding: 30px 15px;
  }

  .store_title {
    font-size: 28px;
  }

  .store_subtitle {
    font-size: 13px;
    line-height: 24px;
  }

  .reserve-info {
    padding: 40px 15px;
  }

  .reserve-info__title {
    font-size: 15px;
  }

  .reserve-info__text {
    font-size: 13px;
    line-height: 24px;
  }

  .how-it-works {
    padding: 40px 15px;
  }

  .how-it-works__title {
    font-size: 18px;
  }

  .step__number {
    font-size: 14px;
  }

  .step__title {
    font-size: 16px;
  }

  .step__description {
    font-size: 13px;
    line-height: 24px;
  }
}



/* ******************************************************
                Privacy Policy Page CSS
****************************************************** */
/* Main Content */
.main-content {
  max-width: 1040px;
  margin: 0 auto;
  padding: 80px 20px 0px;
}

.privacy-article {
  background: transparent;
}

.privacy-title {
  font-family: "TOP_LUXURY-Regular", Helvetica, serif;
  font-size: clamp(32px, 5vw, 48px);
  text-align: center;
  margin-bottom: 58px;
  font-weight: 400;
}

.content-text {
  font-size: 15px;
  font-family: "Montserrat", Helvetica;
  line-height: 1.8;
  margin-bottom: 40px;
}

.content-text p {
  margin-bottom: 15px;
}

.content-text ol{
  list-style: decimal !important;
  margin-left: 20px !important;
}


.content-text h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 0px;
}

.bullets p {
  position: relative;
  padding-left: 20px;
}

.bullets p::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  line-height: 1;
}

.print-btn {
  background: none;
  border: none;
  font-family: "Montserrat", Helvetica;
  font-size: 11px;
  font-weight: 500;
  text-decoration: underline;
  cursor: pointer;
  color: #000;
  padding: 10px 0;
  display: block;
  margin: 20px 0;
}

.chat-link {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 40px 0;
}

.chat-link img {
  width: 20px;
  height: 18px;
}

.chat-link a {
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  color: #000;
}


@media (max-width: 480px) {
  .main-content {
    padding: 30px 15px;
  }
  
  .page-title {
    font-size: 28px;
  }
  
  .content-text {
    font-size: 14px;
  }
}

@media print {
  .nav-bar,
  .experience-section,
  .newsletter-section,
  .footer,
  .print-btn,
  .chat-link {
    display: none;
  }
  
  .background-overlay {
    display: none;
  }
  
  .main-content {
    max-width: 100%;
  }
}
