/* .woocommerce-page{
    padding-top: 40px;
} */

.price-section { 
    display: flex;
    gap: 6px;
    flex-wrap: wrap; 
}

.price-section .price-note { 
    white-space: nowrap;
    align-self: center;
}

.price-section .price-option { 
    white-space: normal;
    flex-basis: 100%;
}

.related-products{
    margin-bottom: 60px;
    width: 100vw;
    margin-left: 0;
    padding: 0;
}

.related-products-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 0;
	margin: 0;
	width: 100%;
	height: 852px;
}

/* Related Products - Shop Page Style */
.related-product-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.related-product-card:hover {
  box-shadow: none;
}

.related-product-image-container {
  position: relative;
  overflow: hidden;
}

.related-product-image {
  width: 100%;
  height: 426px;
  margin: 0;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.related-product-image img {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,rgba(252, 248, 247, 0) 0%, rgba(241, 223, 221, 1) 100%);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.related-product-card:hover .related-product-info {
  opacity: 1;
  visibility: visible;
}

.related-product-title {
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 8px 0;
  color: #333;
  font-weight: 500;
  line-height: 1.3;
}

.related-product-price {
  color: #b18d51;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  display: block;
  margin: 0;
}

/* Product badges for related products */
.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 2;
}

.sale-badge {
  background: #ff6b6b;
  color: white;
}

.featured-badge {
  background: #4ecdc4;
  color: white;
}



@media (max-width: 600px) {
  .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
    height: 1000px;
  }

  .related-product-image {
    height: 250px;
  }
}

/* Full width shop header image box */
.shop-header-image {
  display: flex;
  position: relative;
  height: 400px;
  width: 100vw;        /* full viewport width */
  max-width: 100vw;    /* prevent overflow */
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

/* Image styles remain the same */
.shop-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.no-image-bg {
    width: 100%;
    height: 100%;
    background-color: #E9E9E9;
    background-image: linear-gradient(to right, #E9E9E9, white);
}

/* Shop title text overlay remains the same */
.shop-title {
  position: absolute;
  font-family: "TOP_LUXURY-Regular", sans-serif;
  top: 59%;
  left: 3.5%;
  color: black;
  font-size: 44px;
  margin: 0;
  padding: 0 1rem;
  text-align: center;
  max-width: 90%;
	text-transform: uppercase;
}

  
/* Breadcrumb inside shop/category header */
.shop-breadcrumb {
  display: flex;
  position: absolute;
  top: 80%;
  left: 4.5vw;
  gap: 16px;
  /* transform: translateX(-50%); */
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #555;
}
.shop-breadcrumb .crumbs a { color: #333; text-decoration: underline; }
.shop-breadcrumb .crumbs a:hover { color: #8d6f43; }
.shop-breadcrumb .crumb-sep { margin: 0 8px; color: #999; }

.product-count{
  display: flex;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  align-items: flex-end;
  position: relative;
  min-width: 75px;
  text-align: center;
}

.product-count-mob{
  display: none;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  align-items: flex-end;
  position: relative;
  min-width: 75px;
  text-align: center;
}

.custom-product-grid {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  /* padding: 2rem 1rem; */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  box-sizing: border-box;
}

.custom-product-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  text-align: left;
  transition: all 0.3s ease;
  /* margin: 5px; */
  position: relative;
}

.custom-product-card:hover {
  box-shadow: none;
}

.custom-product-image-container {
  position: relative;
  overflow: hidden;
}

.custom-product-image {
    width: 100%;
    height: 426px;
    margin: 0;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.custom-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    min-height: 250px;
}

/* .custom-product-card:hover .custom-product-image img {
    transform: scale(1.05);
} */

.wishlist-heart {
  position: absolute;
  top: 12px;
  left: 12px;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  backdrop-filter: blur(10px);
}

.wishlist-heart:hover {
  transform: scale(1.1);
}

.wishlist-heart svg path{
  transition-duration: 0.6s;
}

.wishlist-heart:hover svg path{
  stroke: #f7b44f !important;
  stroke-width: 2;
  transition-duration: 0.6s;
}

.wishlist-heart.active svg path{
  stroke: #f7b44f !important;
  fill: none;
  stroke-width: 2;
}

.custom-product-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  /* background: linear-gradient(transparent, rgba(241, 223, 221, 0.9)); */
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.custom-product-card:hover .custom-product-info {
  opacity: 1;
  visibility: visible;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    color: #999;
    font-size: 0.9rem;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ececec;
    border-radius: 8px;
}

.custom-product-title {
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 8px 0;
  color: #333;
  font-weight: 500;
  line-height: 1.3;
}

.custom-product-price {
  color: #b18d51;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  display: block;
  margin: 0;
}

.page-numbers{
  display: flex;
  gap: 16px;
}

.shop-pagination{
  justify-content: center;
  display: flex;
  padding-top: 20px;
  padding-bottom: 32px;
}

.page-para{
  font-size: 21px;
  color: #000000;
  font-weight: 300;
  font-family: 'Montserrat';
  text-align: center;
  max-width: 695px;
  margin: 0 auto;
  margin-bottom: 80px;
  line-height: 37px;
}

.coll-cont{
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: 0;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.coll-cont img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 360px;
}

.coll-text{
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.coll-text h1{
  color: white;
  font-weight: 400;
  font-size: 44px;
  font-family: "TOP_LUXURY-REGULAR";
  text-transform: uppercase;
}

.coll-text a{
  color: white;
  font-size: 16px;
  padding-top: 14px;
}

.desktop-hide{
  display: none !important;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .custom-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coll-text h1{
    font-size: 32px;
    max-width: 200px;
  }
  .coll-text{
    top: 35%;
  }
}
@media (max-width: 600px) {
  .custom-product-image {
    min-height: 250px;
    height: fit-content;
  }
}


/* Responsive tweaks */
@media (max-width: 1024px) {
	ul.columns-4 {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
  .desktop-hide{
    display: block !important;
  }
}
@media (max-width: 768px) {
	ul.columns-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
  .shop-breadcrumb{
    left: 9vw;
    top: 40%;
  }
  .shop-title{
    top: 15%;
    font-size: 40px;
  }
  .product-count-mob{
    display: flex;
    position: absolute;
    top: 80%;
    right: 5%;
  }
  .shop-header-image{
    height: 190px;
  }
}
@media (max-width: 480px) {
	ul.columns-4 {
		grid-template-columns: 1fr;
	}
}

/* ******************************************************
                       FAQ Page CSS
****************************************************** */

/* FAQ Section */
.faq-section {
  padding: 40px 0;
  background: #fff;
}

.faq-title {
  font-family: 'TOP_LUXURY-Regular', serif;
  font-size: 2.5rem;
  margin-bottom: 40px;
  text-align: start;
}

.faq-wrapper {
  position: relative;
}

/* Hide radio buttons */
.category-radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.faq-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 100px;
  align-items: start;
}

/* FAQ Categories */
.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: sticky;
  top: 120px;
}

.category-label {
  display: block;
  padding: 15px 0;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  border-bottom: 1px solid #e0e0e0;
  transition: text-shadow 0.4s ease;
}

.category-label:hover {
  text-shadow:
    0 0 1px currentColor,
    0 0 1px currentColor;
}

/* Active category styling */
#order-shipping:checked ~ .faq-content .faq-categories label[for="order-shipping"],
#exchanges-returns:checked ~ .faq-content .faq-categories label[for="exchanges-returns"],
#contact-us:checked ~ .faq-content .faq-categories label[for="contact-us"],
#my-account:checked ~ .faq-content .faq-categories label[for="my-account"],
#care-repair:checked ~ .faq-content .faq-categories label[for="care-repair"],
#warranty:checked ~ .faq-content .faq-categories label[for="warranty"] {
  color: #000;
  font-weight: 600;
}

/* FAQ Questions Groups */
.faq-questions {
  position: relative;
}

.faq-group {
  display: none;
}

/* Show FAQ groups based on selected category */
#order-shipping:checked ~ .faq-content .faq-questions .order-shipping-group {
  display: block;
}

#exchanges-returns:checked ~ .faq-content .faq-questions .exchanges-returns-group {
  display: block;
}

#contact-us:checked ~ .faq-content .faq-questions .contact-us-group {
  display: block;
}

#my-account:checked ~ .faq-content .faq-questions .my-account-group {
  display: block;
}

#care-repair:checked ~ .faq-content .faq-questions .care-repair-group {
  display: block;
}

#warranty:checked ~ .faq-content .faq-questions .warranty-group {
  display: block;
}

/* FAQ Items using Details/Summary */
.faq-item {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 0;
}

.faq-item summary {
  list-style: none;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #333;
  transition: all 0.3s;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: #000;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: sans-serif;
}

.chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] .chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 20px 0;
  animation: fadeIn 0.3s ease-in-out;
}

.faq-answer p {
  font-family: sans-serif;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Collections Section */
.collections-section {
  padding-top: 80px;
  background: #f8f8f8;
}

.related-title {
  font-family: 'TOP_LUXURY-Regular', serif;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.related-mob-title{
  font-family: 'TOP_LUXURY-Regular', serif;
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 20px;
  display: none;
  text-transform: uppercase;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 8px;
}

.collection-item {
  position: relative;
  overflow: hidden;
  /* border-radius: 8px; */
  height: 860px;
}

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

.collection-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: transform 0.5s ease; */
}

.collection-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 40px 30px;
  text-align: center;
}

.collection-overlay h3 {
  font-family: 'TOP_LUXURY-Regular', serif;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.collection-overlay a{
  color: white;
}

/* Focus and Accessibility */
button:focus-visible,
input:focus-visible,
a:focus-visible,
summary:focus-visible,
label:focus-visible {
  outline: 2px solid gray;
  outline-offset: 2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation for FAQ items */
.faq-item {
  transition: all 0.3s ease;
}

.faq-item:hover {
  background-color: #fafafa;
}

/* Focus styles for radio buttons */
.category-radio:focus + .faq-content .faq-categories label {
  outline: 2px solid gray;
  outline-offset: 2px;
}


/* ******************************************************
                Craftsmenship Page CSS
****************************************************** */

/* ===== HERO SECTION ===== */
.craft-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.craft-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.craft-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    0deg,
    rgba(49, 48, 50, 1) 0%,
    rgba(49, 48, 50, 0.3) 37%,
    rgba(49, 48, 50, 0) 100%
  );
}

.craft-hero-content {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.craft-hero-title {
  font-family: 'TOP_LUXURY-REGULAR', sans-serif;
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 2px;
}


/* ===== CRAFTSMANSHIP SECTION ===== */

.craftsmanship {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.section-title {
  font-family: 'TOP_LUXURY-REGULAR', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  text-align: center;
  margin: 61px auto;
  letter-spacing: 3px;
}

.section-description {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  color: #333;
}

/* Craftsmanship Gallery - Exact Figma Layout */
.craftsmanship-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-column-center {
  padding-top: 90px;
  position: relative;
}

/* Decorative line above center column */
.gallery-column-center::before {
  content: '';
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 95px;
  background: #898989;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  /* border-radius: 8px; */
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s ease; */
}

/* .gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

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


/* ===== QUOTE SECTION ===== */
.quote-section {
  position: relative;
  padding: 200px 0 300px 0;
  overflow: hidden;
}

.quote-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.quote-content {
  position: relative;
  z-index: 2;
  text-align: right;
  max-width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}

.quote-text {
  font-family: 'TOP_LUXURY-REGULAR', sans-serif;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #000;
}

.quote-author {
  font-family: 'TOP_LUXURY-REGULAR', sans-serif;
  font-size: clamp(1rem, 3vw, 2.3rem);
  font-weight: 400;
  color: #666;
  font-style: italic;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .faq-content {
    grid-template-columns: 250px 1fr;
    gap: 40px;
  }
  
  .collections-grid {
    grid-template-columns: 1fr;
  }
  
  .experience-content,
  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .craftsmanship-gallery {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .faq-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .faq-categories {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .category-label {
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.8rem;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .faq-title {
    font-size: 2rem;
  }

  .craft-hero {
    min-height: 500px;
  }
  
  .craft-hero-content {
    bottom: 15%;
    padding: 0 20px;
  }
  
  .craftsmanship {
    padding: 60px 0;
  }
  
  /* Mobile Gallery Layout */
  .craftsmanship-gallery {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .gallery-column-center {
    padding-top: 0;
  }
  
  .gallery-column-center::before {
    display: none;
  }

  .quote-section {
    padding: 80px 0;
  }

  .quote-content{
    max-width: 100%;
  }

  .related-title{
    display: none;
  }

  .related-mob-title{
    display: block;
  }

}

@media (max-width: 480px) {

   .section-description {
    font-size: 16px;
  }
  
  .craftsmanship-gallery {
    padding: 0 15px;
  }
}


/* ******************************************************
                Contact us Page CSS
****************************************************** */

.contact-container {
      display: flex;
      flex-wrap: wrap;
      margin: 0 auto;
      padding: 0;
    }
    /* Main Section */
    .image-section {
      min-width: 290px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 40px;
    }
    .image-section img {
      max-width: 1280px;
      width: 623px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.09);
      background: #f4efe9;
    }
    .contact-section {
      text-align: center;
      flex: 1 1 410px;
      padding: 24px 18px 36px 36px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .contact-section h2 {
      font-family: 'TOP_LUXURY-REGULAR', sans-serif;
      font-size: 2.2rem;
      font-weight: 400;
      margin-bottom: 16px;
      letter-spacing: 0.02rem;
    }
    .contact-section p {
      font-family: "Montserrat", sans-serif;
      font-size: 1rem;
      max-width: 595px;
      text-align: center;
      justify-content: center;
      margin: 0 auto 70px auto;
      color: #000000;
      line-height: 1.8;
    }
    .contact-options {
      margin: 0 auto 120px auto;
      width: 100%;
      max-width: 560px;
      padding: 0 12px;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
    }

    .contact-action-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 100%;
    }

    .contact-action {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 14px 16px;
      background: #ffffff;
      border-bottom: 1px solid rgba(0, 0, 0, 0.2);
      text-decoration: none;
      color: inherit;
    }

    .contact-action > .contact-icon,
    .contact-action > svg.contact-icon {
      flex: 0 0 24px;
      width: 24px;
      height: 24px;
      display: inline-block;
      color: #262626;
    }

    .contact-action .contact-text {
      flex: 1 1 auto;
      font-family: "Montserrat";
      font-size: 11px;
      font-weight: 500;
      margin-left: 12px;
      text-align: left;
      color: #222;
      text-decoration: underline;
      text-underline-offset: 2px;
      text-transform: uppercase;
    }

    .contact-action img{
      width: 25px;
      height: 23px;
    }

    .contact-action .arrow-ico{
      width: 7px;
      height: 11px;
    }

    /* arrow on the right */
    .contact-action .contact-arrow {
      flex: 0 0 16px;
      width: 16px;
      height: 16px;
      color: #aaa;
      min-width: 16px;
    }

    .contact-option-list {
      list-style: none;
    }
    .contact-option-list li {
      display: flex;
      align-items: center;
      padding: 13px 0;
      border-bottom: 1px solid #eee;
      cursor: pointer;
      transition: background 0.11s;
    }
    .contact-option-list li:last-child {
      border-bottom: none;
    }
    .contact-icon {
      font-size: 1.35rem;
      margin-right: 22px;
      min-width: 32px;
      text-align: center;
      color: #262626;
    }
    .contact-text {
      font-size: 1rem;
      font-weight: 500;
      flex: 1;
      transition: color 0.15s;
    }
    .contact-option-list li:hover .contact-text {
      color: #8d6f43;
    }
    .contact-arrow {
      font-size: 1.08rem;
      margin-left: 18px;
      color: #aaa;
    }
    /* FAQ Section */
    .con-faq-section {
      font-family: sans-serif;
      width: 100%;
      text-align: center;
      margin: 30px 0 120px 0;
    }
    .con-faq-section a {
      color: #282626;
      text-decoration: underline;
      text-underline-offset: 2px;
      font-size: 0.7rem;
      letter-spacing: 0.04em;
      font-weight: 500;
    }
    /* Newsletter Section */
    .con-newsletter-section {
      width: 100%;
      text-align: center;
      margin: 45px 0 70px 0;
    }
    .con-newsletter-section h3 {
      font-family: "Montserrat", sans-serif;
      font-size: 1.3rem;
      font-weight: 500;
      margin-bottom: 72px;
    }
    .con-newsletter-form {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      max-width: 600px;
      margin: 0 auto;
    }
    .con-newsletter-form input[type="email"] {
      padding: 8px 0px;
      font-size: 1rem;
      width: 375px;
      border: none;
      border-bottom: 1px solid #000;
      outline: none;
      font-family: "Montserrat";
      box-shadow: none;
      -webkit-appearance: none;
      appearance: none;
    }

    .con-newsletter-form input[type="email"]::placeholder { color: #D9D9D9; opacity: 1; }

    .con-newsletter-form button {
      background: #222;
      color: #fff;
      border: none;
      padding: 10px 44px;
      font-family: "Montserrat", sans-serif;
      font-size: 0.95rem;
      font-weight: 400;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
      transition: background 0.18s;
    }
    .con-newsletter-form button:hover {
      background: #8d6f43;
      color: #fff;
    }

    /* Responsive Styles */
    @media (max-width: 900px) {
      .contact-container {
        flex-direction: column;
        padding: 24px 6px 0 6px;
      }
      .image-section, .contact-section {
        min-width: 240px;
        padding: 0;
      }
      .contact-section {
      padding: 18px 12px 26px 12px;
      }
      .contact-options {
        margin-bottom: 90px;
        max-width: 480px;
      }
      .contact-action {
        padding: 12px 12px;
      }
      .contact-action .contact-text { font-size: 0.98rem; }
    }
    @media (max-width: 550px) {
      .contact-container {
        flex-direction: column;
        padding: 24px 6px 0 6px;
      }
      .image-section, .contact-section {
        min-width: 240px;
        padding: 0;
      }
      .contact-section {
        padding-top: 18px;
      }
      .contact-options {
        margin: 0 auto 60px;
        padding: 0 6px;
        max-width: 100%;
      }
      .contact-action {
        padding: 10px 10px;
        gap: 10px;
      }
      .contact-action > .contact-icon { width: 20px; height: 20px; }
      .contact-action .contact-text { font-size: 0.95rem; margin-left: 10px; }

      .contact-section h2 {
        font-size: 1.3rem;
      }
      .contact-section p {
        font-size: 0.96rem;
      }
      .con-newsletter-section h3 {
        font-size: 1rem;
      }
      .con-newsletter-form input[type="email"] {
        font-size: 0.91rem;
      }
      .con-newsletter-form button {
        font-size: 0.96rem;
        padding: 9px 22px;
      }
    }

/* ==========================================
   Owl Carousel custom styles
   - Product gallery (.owl-gallery)
   - Category grid (.owl-categories)
========================================== */
.owl-gallery { position: relative; padding: 0 56px; }
.owl-gallery .owl-nav {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.3;
  z-index: 3;
}
.owl-gallery .owl-nav button.owl-prev,
.owl-gallery .owl-nav button.owl-next {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #cecece !important;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}
.owl-gallery .owl-nav button.owl-prev { left: 25px; }
.owl-gallery .owl-nav button.owl-next { right: 65px; }
.owl-gallery .owl-nav button span { font-size: 22px; line-height: 1; }

/* Keep nav visible even when Owl would disable it */
.owl-gallery .owl-nav.disabled { display: block !important; }

/* Center gallery images within each slide */
.owl-gallery .woocommerce-product-gallery__image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.owl-gallery .woocommerce-product-gallery__image img {
  width: auto;
  max-width: 60%;
  height: auto;
  max-height: 85vh;
}

/* Thumbnails under product gallery */
.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: -12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  z-index: 10;
}
.product-thumb {
    border: 2px solid transparent;
    padding: 0;
    background: none;
    cursor: pointer;
    width: 180px;
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}
.product-thumb img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.product-thumb.is-active {
  border-color: #bdbdbd;
}

.owl-categories {
  position: relative;
  padding: 0 60px; /* Increased padding for better spacing */
  width: 100vw !important; /* Force full viewport width */
  max-width: none !important; /* Remove any max-width constraints */
  margin-left: calc(-50vw + 50%); /* Full width centering */
}

/* Remove arrow navigation completely */
.owl-categories .owl-nav {
  display: none !important;
}

/* Enhanced dot navigation styles */
.owl-categories .owl-dots {
  text-align: center;
  padding: 0 20px;
  display: block !important; /* Force dots to always be visible */
  visibility: visible !important;
  opacity: 1 !important;
}

.owl-categories .owl-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4A4D60; /* Inactive dot color */
  margin: 0 8px; /* Increased spacing between dots */
  transition: all 0.4s ease;
  cursor: pointer;
  opacity: 0.7;
}

.owl-categories .owl-dot.active {
  background: #E6A791; /* Active dot color */
  transform: scale(1.3);
  opacity: 1;
  box-shadow: 0 2px 8px rgba(230, 167, 145, 0.4);
}

.owl-categories .owl-dot:hover {
  background: #E6A791;
  transform: scale(1.2);
  opacity: 0.9;
}

/* Category carousel styling for center mode and active slide with 5-slide layout */
.owl-categories .category-item {
  padding: 0 10px; /* Max 20px gap between slides (10px each side) */
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.4; /* More dramatic opacity difference for 5 slides */
  /* transform: scale(0.75); */ /*Non-active slides are smaller */
}

.owl-categories .category-item:hover {
  opacity: 0.7;
}

/* Active slide styling - 20% larger and fully visible */
.owl-categories .owl-item.center .category-item {
  opacity: 1;
  transform: scale(1.2); /* Active slide is 20% larger */
  z-index: 3;
}

/* Center slide (no scale change) handled elsewhere if needed */
.owl-categories .owl-item.slide-prev .category-item,
.owl-categories .owl-item.slide-next .category-item {
  /* opacity: 0.7; */
  transform: scale(0.85);
  z-index: 2;
}

.owl-categories .owl-item.slide-prev2 .category-item,
.owl-categories .owl-item.slide-next2 .category-item {
  /* opacity: 0.5; */
  transform: scale(0.75);
  z-index: 1;
}

/* Stage for proper center alignment */
.owl-categories .owl-stage {
  display: flex;
  align-items: center;
  padding: 20px 0; /* Extra padding for the larger active item */
}

/* Force dots to always be visible - override Owl Carousel defaults */
.owl-categories .owl-dots,
.owl-categories .owl-carousel .owl-dots {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  text-align: center !important;
  padding: 0 20px !important;
}

/* Ensure individual dots are visible */
.owl-categories .owl-dot,
.owl-categories .owl-carousel .owl-dot {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Override any disabled state for dots */
.owl-categories .owl-dots.disabled,
.owl-categories .owl-carousel .owl-dots.disabled {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Lightbox styles */
.dp-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.dp-lightbox.is-open { 
  display: flex; 
  align-items: flex-start;
}
.dp-lightbox-image { max-width: 95vw; max-height: 95vh; }
.dp-lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.dp-no-scroll { overflow: hidden; }

/* Hide Woo default zoom/search icon if present */
.woocommerce-product-gallery .woocommerce-product-gallery__trigger { display: none !important; }

@media (max-width:1024px) {
  .product-thumb{
    width: unset;
    height: unset;
  }
  .owl-nav{
    top: 35%;
  }
  .owl-gallery .owl-nav button.owl-prev{
    left: 0;
  }
  .owl-gallery .owl-nav button.owl-next{
    right: 0;
  }
  .dp-lightbox.is-open{
    padding-top: 100px;
  }
}

.woocommerce-product-gallery__image { overflow: hidden; position: relative; }
  .woocommerce-product-gallery__image img {
    transition: transform .25s ease-out;
    transform-origin: 50% 50%;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: block;
    max-width: none; /* ensure transform behaves consistently */
  }
  @media (hover: hover) and (pointer: fine) {
    .woocommerce-product-gallery__image img.zoom-enabled { cursor: zoom-in; }
  }
  @media (max-width: 768px) {
    .woocommerce-product-gallery__image img { transition: none; transform: none !important; }
  }


/* ===========================
       About Us Page
   =========================== */
.about-hero {
  position: relative;
  height: 915px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-title {
  position: relative;
  z-index: 1;
  font-family: "TOP_LUXURY-REGULAR", sans-serif;
  font-size: 69px;
  color: white;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
}

/* ===========================
   About Section
   =========================== */
.about-section {
  position: relative;
  padding: 100px 20px;
  min-height: 1281px;
  background: linear-gradient(309deg, rgba(255, 255, 255, 1) 0%, rgba(247, 236, 234, 1) 100%);
  overflow: hidden;
}

.about-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(309deg, rgba(255, 255, 255, 1) 0%, rgba(247, 236, 234, 1) 100%);
  z-index: 0;
}

.founder-img {
  position: absolute;
  bottom: 0;
  right: 0;
  top: 50%;
  width: 60%;
  max-width: 918px;
  height: auto;
  z-index: 1;
  opacity: 0.8;
}

.seal-img{
  margin-top: -80%;
}

.about-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.about-text {
  max-width: 783px;
  margin-bottom: 100px;
}

.about-description {
  font-family: 'TOP_LUXURY-REGULAR', sans-serif;
  font-size: 32px;
  line-height: 50px;
  letter-spacing: 0;
  margin-bottom: 30px;
}

.about-description .highlight {
  color: black;
}

.about-description.muted,
.about-description .muted {
  color: #B7B7B7;
}

.founder-card {
  text-align: center;
  max-width: 407px;
  margin: 0 auto;
}


/* ===========================
   Milestones Section
   =========================== */
.milestones-section {
  position: relative;
  min-height: 757px;
  padding: 150px 20px;
  margin-top: 120px;
  overflow: hidden;
}

.milestones-section input[type="radio"] {
  display: none;
}

.milestones-bg-container {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 100%;
}

.milestones-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#milestone-2015:checked ~ .milestones-bg-container .milestone-bg-2015,
#milestone-2017:checked ~ .milestones-bg-container .milestone-bg-2017,
#milestone-2019:checked ~ .milestones-bg-container .milestone-bg-2019,
#milestone-2022:checked ~ .milestones-bg-container .milestone-bg-2022,
#milestone-2025:checked ~ .milestones-bg-container .milestone-bg-2025 {
  opacity: 1;
}

.milestones-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 274px;
  background: linear-gradient(0deg, rgba(49, 48, 50, 1) 0%, rgba(49, 48, 50, 0.3) 37%, rgba(49, 48, 50, 0) 100%);
  pointer-events: none;
}

.milestones-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.milestones-title {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  font-family: "TOP_LUXURY-REGULAR", sans-serif;
  top: 0px;
  text-align: center;
  color: #222;
  background: transparent;
  font-size: 2.8rem; 
  letter-spacing: 0.05em;
}

.milestones-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.milestone-info-container {
  /* position: relative; */
  max-width: 497px;
  flex: 1;
  min-height: 250px;
}

.milestone-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 497px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#milestone-2015:checked ~ .milestones-container .milestone-info-2015,
#milestone-2017:checked ~ .milestones-container .milestone-info-2017,
#milestone-2019:checked ~ .milestones-container .milestone-info-2019,
#milestone-2022:checked ~ .milestones-container .milestone-info-2022,
#milestone-2025:checked ~ .milestones-container .milestone-info-2025 {
  opacity: 1;
  visibility: visible;
}

.milestone-year-label {
  font-weight: 300;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
}

.milestone-heading {
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  line-height: 45px;
}

.milestone-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
  padding-top: 20px;
  border-top: 1px solid var(--color-primary);
}

.milestone-years {
    display: flex;
    position: absolute;
    font-family: "Montserrat", sans-serif;
    gap: 20px;
    top: 200%;
    flex-shrink: 0;
    justify-content: center;
    width: 100%;
}

.milestone-btn {
  font-weight: 600;
  font-size: 20px;
  line-height: 45px;
  color: white;
  padding: 10px 20px;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  display: block;
}

.milestone-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

.milestone-btn:hover::after {
  width: 100%;
}

#milestone-2015:checked ~ .milestones-container .milestone-years label[for="milestone-2015"],
#milestone-2017:checked ~ .milestones-container .milestone-years label[for="milestone-2017"],
#milestone-2019:checked ~ .milestones-container .milestone-years label[for="milestone-2019"],
#milestone-2022:checked ~ .milestones-container .milestone-years label[for="milestone-2022"],
#milestone-2025:checked ~ .milestones-container .milestone-years label[for="milestone-2025"] {
  font-weight: 700;
}

#milestone-2015:checked ~ .milestones-container .milestone-years label[for="milestone-2015"]::after,
#milestone-2017:checked ~ .milestones-container .milestone-years label[for="milestone-2017"]::after,
#milestone-2019:checked ~ .milestones-container .milestone-years label[for="milestone-2019"]::after,
#milestone-2022:checked ~ .milestones-container .milestone-years label[for="milestone-2022"]::after,
#milestone-2025:checked ~ .milestones-container .milestone-years label[for="milestone-2025"]::after {
  width: 100%;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 56px;
  }
  
  .about-decoration {
    width: 80%;
    opacity: 0.5;
  }
  
  .milestones-content {
    flex-direction: column;
  }
  
  .milestone-years {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .nav-icons {
    gap: 15px;
  }
  
  .nav-icons img {
    height: 18px;
  }
  
  
  .hero-title {
    font-size: 36px;
  }

  .about-title{
    font-size: 44px;
  }
  
  .about-section {
    padding: 60px 20px;
    min-height: auto;
  }
  
  .about-description {
    font-size: 20px;
    line-height: 32px;
  }
  
  .founder-name {
    font-size: 36px;
  }
  
  .milestones-section {
    padding: 60px 20px;
  }
  
  .milestones-title {
    font-size: 28px;
  }
  
  .milestone-btn {
    font-size: 16px;
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .about-description {
    font-size: 16px;
    line-height: 26px;
  }
  
  .founder-name {
    font-size: 28px;
  }
  
  .milestones-title {
    font-size: 24px;
  }
  
  .milestone-years {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}


/* ******************************************************
                Login Page CSS
****************************************************** */

.login-info {
  position: relative;
  width: 100%;
  max-width: 583px;
  min-height: 937px;
  background-color: #ffffff;
  padding: 20px;
  margin: 0 auto;
}

.log-rectangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
}

.log-div {
  margin-top: 13px;
  margin-left: 28px;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 20px;
}

.log-text-wrapper {
  margin-top: 31px;
  margin-left: 25px;
  margin-bottom: 25px;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 20px;
}

.log-line-2 {
  position: absolute;
  top: 66px;
  left: 0;
  width: 100%;
  height: 2.2px;
  background: #000000;
  object-fit: cover;
}

.log-line-3{
  border: 1px solid #E0E0E0;
  height: 0;
  width: 100%;
  position: relative;
  top: 16px;
}

.log-p {
  margin: 0 25px 46px;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 21.8px;
}

.login-form {
  position: relative;
  margin: 0 25px;
}

.log-form-group {
  position: relative;
  margin-bottom: 36px;
}

.log-form-group label {
  display: block;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #bcbcbc;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
  margin-bottom: 8px;
}

.log-form-group input {
  width: 100%;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
  border: none;
  background: transparent;
  outline: none;
  padding: 8px 0;
}

.log-form-group input::placeholder {
  color: #bcbcbc;
}

.log-form-group .img,
.log-form-group .line-3 {
  width: 100%;
  height: 1px;
  margin-top: 8px;
  object-fit: cover;
}

.log-text-wrapper-6 {
  display: inline-block;
  margin: 13px 0 19px;
  font-family: "Montserrat", Helvetica;
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
}

.log-text-wrapper-6:hover {
  text-decoration: underline;
}

.log-rememebr-mee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.log-group-9 {
  position: relative;
  width: 16px;
  height: 15.33px;
}

.log-rectangle-3 {
  position: absolute;
  top: 3px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  border: 1px solid #000000;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
  margin: 0;
}

.log-rectangle-3:checked {
  background-color: #000000;
}

.log-rectangle-3:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.log-rectangle-4 {
  position: absolute;
  top: 0;
  left: 15px;
  width: 1px;
  height: 2px;
  background-color: #d9d9d9;
  border-radius: 4px;
}

.log-text-wrapper-12 {
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
  cursor: pointer;
}

.log-in {
  display: flex;
  width: 229px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 33px;
  background-color: #000000;
  border: 1px solid #000000;
  cursor: pointer;
  transition: background-color 0.2s;
}

.login-success{
  padding: 0px 4.5%;
  color: #f7b44f !important;
}

.log-in:hover {
  background-color: #333333;
}

.log-text-wrapper-7 {
  font-family: "Raleway", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.log-line {
  width: 100%;
  max-width: 429px;
  height: 1px;
  margin: 0 auto 26px;
  display: block;
  object-fit: cover;
}

.log-group {
  margin: 0 57px 60px;
}

.log-text-wrapper-9 {
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 21.8px;
  margin-bottom: 36px;
}

.log-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.log-group-2,
.log-group-3,
.log-group-4,
.log-group-6 {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: "Montserrat", Helvetica;
}

.log-frame {
  display: flex;
  align-items: center;
  width: 23px;
  height: 22px;
}

.HEART {
  width: 23px;
  height: 22px;
  object-fit: cover;
}

.log-create-your-wishlist,
.log-div-wrapper,
.log-early-releases {
  display: flex;
  align-items: center;
  padding: 10px;
}

.log-text-wrapper-10 {
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 21.8px;
}

.log-frame-2 {
  width: 19px;
  height: 19px;
}

.log-group-5 {
  width: 25px;
  height: 24px;
}

.log-group-wrapper {
  display: flex;
  align-items: center;
}

.log-group-7 {
  width: 21.37px;
  display: flex;
}

.log-group-8 {
  width: 23.37px;
  height: 23.24px;
  position: relative;
}

.log-rectangle-2 {
  position: absolute;
  width: 91.44%;
  top: 8px;
  left: 0;
  height: 16px;
}

.log-ellipse {
  position: absolute;
  width: 26.89%;
  height: 15.47%;
  top: -2.15%;
  left: 30.13%;
}

.log-text-wrapper-11 {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 5px;
  font-family: "Montagu Slab", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 13.6px;
}

.log-craete-account {
  width: 229px;
  height: 48px;
  margin: 0 auto 48px;
}

.log-create-account {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  background-color: transparent;
  transition: background-color 0.2s;
}

.log-create-account:hover {
  background-color: #f5f5f5;
}

.log-text-wrapper-8 {
  font-family: "Raleway", Helvetica;
  font-weight: 500;
  color: #000000;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.log-cross {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 31px;
  height: 31px;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 0;
}

.log-cross:hover {
  opacity: 0.7;
}

.log-rectangle-5 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
}

.log-line-4,
.log-line-5 {
  width: 38.78%;
  height: 38.78%;
  position: absolute;
  object-fit: cover;
}

.log-line-4 {
  top: 30.65%;
  left: 31.29%;
}

.log-line-5 {
  top: 30.58%;
  left: 28.99%;
}

@media (max-width: 768px) {
  .log-login-info {
    max-width: 100%;
    padding: 15px;
    min-height: auto;
  }

  .login-success{
  padding: 0px 2.5%;
  }

  .log-div,
  .log-text-wrapper {
    font-size: 18px;
    margin-left: 15px;
  }

  .log-p {
    margin: 0 15px 60px;
    font-size: 15px;
  }

  .login-form {
    margin: 0 15px;
  }

  .log-group {
    margin: 0 30px 60px;
  }

  .log-text-wrapper-9,
  .log-text-wrapper-10 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .login-info {
    padding: 10px;
  }

  .log-div,
  .log-text-wrapper {
    font-size: 16px;
    margin-left: 10px;
  }

  .log-p {
    margin: 0 10px 40px;
    font-size: 14px;
  }

  .login-form {
    margin: 0 10px;
  }

  .log-form-group {
    margin-bottom: 28px;
  }

  .log-in {
    width: 120px;
    height: 42px;
  }

  .log-text-wrapper-7 {
    font-size: 16px;
  }

  .log-group {
    margin: 0 20px 50px;
  }

  .log-text-wrapper-9,
  .log-text-wrapper-10 {
    font-size: 14px;
  }

  .log-craete-account {
    width: 200px;
    height: 42px;
  }

  .log-text-wrapper-8 {
    font-size: 16px;
  }

  .log-cross {
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
  }
}

/* ******************************************************
                Store Locator Page CSS
****************************************************** */

/* Hero Header */
.store-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.store-title {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  color: #FFFFFF;
  font-family: 'TOP_LUXURY-REGULAR', serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 400;
  z-index: 1;
}

/* Stores Section */
.stores-section {
  background-color: #F5F5F5;
  padding: 8rem 2rem;
}

.stores-container {
  max-width: 1024px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  justify-items: center;
}

.store-card {
  background-color: #FFFFFF;
  font-family: "Montserrat", Helvetica;
  padding: 2rem;
  height: 200px;
  width: 468px;
}

.store-name {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.store-type {
  font-size: 11px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 4rem;
  text-transform: capitalize;
}

.store-address {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.store-address p {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5;
  color: #000000;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: #575757;
}

/* --- CATEGORY SLIDER: EVEN GAPS FOR SCALED CENTER ITEM --- */
.owl-categories .category-item {
  margin-left: 6px;
  margin-right: 6px;
}
/* Center slide gets extra margin to balance increased visual size due to scaling (scale: 1.2, width: 194px, add ~25px each side) */
.owl-categories .owl-item.slide-center .category-item {
  margin-left: 25px;
  margin-right: 25px;
}

/* --- CATEGORY SLIDER: 9:16 RECTANGULAR IMAGE SIZE --- */
.owl-categories .category-image-container {
  width: 246px;
  height: 338px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* removed border-radius! */
  background: #f8f8f8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.owl-categories .category-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 750px) {
  .owl-categories .category-image-container {
    width: 65px;
    height: 115px;
    min-width: 48px;
  }
}


/* ******************************************************
                Craftsmenship Page CSS
****************************************************** */

/* ===== HERO SECTION ===== */
.craft-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.craft-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.craft-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(
    0deg,
    rgba(49, 48, 50, 1) 0%,
    rgba(49, 48, 50, 0.3) 37%,
    rgba(49, 48, 50, 0) 100%
  );
}

.craft-hero-content {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
}

.craft-hero-title {
  font-family: 'TOP_LUXURY-REGULAR', sans-serif;
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 2px;
}


/* ===== CRAFTSMANSHIP SECTION ===== */

.craftsmanship {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.section-title {
  font-family: 'TOP_LUXURY-REGULAR', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  text-align: center;
  margin: 61px auto;
  letter-spacing: 3px;
}

.section-description {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  color: #333;
}

/* Craftsmanship Gallery - Exact Figma Layout */
.craftsmanship-gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gallery-column-center {
  padding-top: 90px;
  position: relative;
}

/* Decorative line above center column */
.gallery-column-center::before {
  content: '';
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 95px;
  background: #898989;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  /* border-radius: 8px; */
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.5s ease; */
}

/* .gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

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


/* ===== QUOTE SECTION ===== */
.quote-section {
  position: relative;
  padding: 200px 0 300px 0;
  overflow: hidden;
}

.quote-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.quote-content {
  position: relative;
  z-index: 2;
  text-align: right;
  max-width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}

.quote-text {
  font-family: 'TOP_LUXURY-REGULAR', sans-serif;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #000;
}

.quote-author {
  font-family: 'TOP_LUXURY-REGULAR', sans-serif;
  font-size: clamp(1rem, 3vw, 2.3rem);
  font-weight: 400;
  color: #666;
  font-style: italic;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .faq-content {
    grid-template-columns: 250px 1fr;
    gap: 40px;
  }
  
  
  .collections-grid {
    grid-template-columns: 1fr;
  }
  
  .experience-content,
  .newsletter-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .craftsmanship-gallery {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  
  .logo img {
    height: 50px;
  }
  
  .nav-icons {
    gap: 15px;
  }
  
  .nav-icons img {
    height: 18px;
  }
  
  
  .hero-title {
    font-size: 36px;
  }

  .about-title{
    font-size: 44px;
  }
  
  .about-section {
    padding: 60px 20px;
    min-height: auto;
  }
  
  .about-description {
    font-size: 20px;
    line-height: 32px;
  }
  
  .founder-name {
    font-size: 36px;
  }
  
  .milestones-section {
    padding: 60px 20px;
  }
  
  .milestones-title {
    font-size: 28px;
  }
  
  .milestone-btn {
    font-size: 16px;
    padding: 8px 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .about-description {
    font-size: 16px;
    line-height: 26px;
  }
  
  .founder-name {
    font-size: 28px;
  }
  
  .milestones-title {
    font-size: 24px;
  }
  
  .milestone-years {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}


/* ******************************************************
                Login Page CSS
****************************************************** */

.login-info {
  position: relative;
  width: 100%;
  max-width: 583px;
  min-height: 937px;
  background-color: #ffffff;
  padding: 20px;
  margin: 0 auto;
}

.log-rectangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: -1;
}

.log-div {
  margin-top: 13px;
  margin-left: 28px;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 20px;
}

.log-text-wrapper {
  margin-top: 31px;
  margin-left: 25px;
  margin-bottom: 25px;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 20px;
}

.log-line-2 {
  position: absolute;
  top: 66px;
  left: 0;
  width: 100%;
  height: 2.2px;
  background: #000000;
  object-fit: cover;
}

.log-line-3{
  border: 1px solid #E0E0E0;
  height: 0;
  width: 100%;
  position: relative;
  top: 16px;
}

.log-p {
  margin: 0 25px 46px;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 21.8px;
}

.login-form {
  position: relative;
  margin: 0 25px;
}

.log-form-group {
  position: relative;
  margin-bottom: 36px;
}

.log-form-group label {
  display: block;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #bcbcbc;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
  margin-bottom: 8px;
}

.log-form-group input {
  width: 100%;
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
  border: none;
  background: transparent;
  outline: none;
  padding: 8px 0;
}

.log-form-group input::placeholder {
  color: #bcbcbc;
}

.log-form-group .img,
.log-form-group .line-3 {
  width: 100%;
  height: 1px;
  margin-top: 8px;
  object-fit: cover;
}

.log-text-wrapper-6 {
  display: inline-block;
  margin: 13px 0 19px;
  font-family: "Montserrat", Helvetica;
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
}

.log-text-wrapper-6:hover {
  text-decoration: underline;
}

.log-rememebr-mee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.log-group-9 {
  position: relative;
  width: 16px;
  height: 15.33px;
}

.log-rectangle-3 {
  position: absolute;
  top: 3px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 4px;
  border: 1px solid #000000;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
  margin: 0;
}

.log-rectangle-3:checked {
  background-color: #000000;
}

.log-rectangle-3:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 5px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.log-rectangle-4 {
  position: absolute;
  top: 0;
  left: 15px;
  width: 1px;
  height: 2px;
  background-color: #d9d9d9;
  border-radius: 4px;
}

.log-text-wrapper-12 {
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 19px;
  cursor: pointer;
}

.log-in {
  display: flex;
  width: 229px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 33px;
  background-color: #000000;
  border: 1px solid #000000;
  cursor: pointer;
  transition: background-color 0.2s;
}

.login-success{
  padding: 0px 4.5%;
  color: #f7b44f !important;
}

.log-in:hover {
  background-color: #333333;
}

.log-text-wrapper-7 {
  font-family: "Raleway", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.log-line {
  width: 100%;
  max-width: 429px;
  height: 1px;
  margin: 0 auto 26px;
  display: block;
  object-fit: cover;
}

.log-group {
  margin: 0 57px 60px;
}

.log-text-wrapper-9 {
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 21.8px;
  margin-bottom: 36px;
}

.log-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.log-group-2,
.log-group-3,
.log-group-4,
.log-group-6 {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-family: "Montserrat", Helvetica;
}

.log-frame {
  display: flex;
  align-items: center;
  width: 23px;
  height: 22px;
}

.HEART {
  width: 23px;
  height: 22px;
  object-fit: cover;
}

.log-create-your-wishlist,
.log-div-wrapper,
.log-early-releases {
  display: flex;
  align-items: center;
  padding: 10px;
}

.log-text-wrapper-10 {
  font-family: "Montserrat", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 21.8px;
}

.log-frame-2 {
  width: 19px;
  height: 19px;
}

.log-group-5 {
  width: 25px;
  height: 24px;
}

.log-group-wrapper {
  display: flex;
  align-items: center;
}

.log-group-7 {
  width: 21.37px;
  display: flex;
}

.log-group-8 {
  width: 23.37px;
  height: 23.24px;
  position: relative;
}

.log-rectangle-2 {
  position: absolute;
  width: 91.44%;
  top: 8px;
  left: 0;
  height: 16px;
}

.log-ellipse {
  position: absolute;
  width: 26.89%;
  height: 15.47%;
  top: -2.15%;
  left: 30.13%;
}

.log-text-wrapper-11 {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 5px;
  font-family: "Montagu Slab", Helvetica;
  font-weight: 400;
  color: #000000;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 13.6px;
}

.log-craete-account {
  width: 229px;
  height: 48px;
  margin: 0 auto 48px;
}

.log-create-account {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid #000000;
  background-color: transparent;
  transition: background-color 0.2s;
}

.log-create-account:hover {
  background-color: #f5f5f5;
}

.log-text-wrapper-8 {
  font-family: "Raleway", Helvetica;
  font-weight: 500;
  color: #000000;
  font-size: 18px;
  letter-spacing: 0;
  line-height: normal;
}

.log-cross {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 31px;
  height: 31px;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  padding: 0;
}

.log-cross:hover {
  opacity: 0.7;
}

.log-rectangle-5 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
}

.log-line-4,
.log-line-5 {
  width: 38.78%;
  height: 38.78%;
  position: absolute;
  object-fit: cover;
}

.log-line-4 {
  top: 30.65%;
  left: 31.29%;
}

.log-line-5 {
  top: 30.58%;
  left: 28.99%;
}

@media (max-width: 768px) {
  .log-login-info {
    max-width: 100%;
    padding: 15px;
    min-height: auto;
  }

  .login-success{
  padding: 0px 2.5%;
  }

  .log-div,
  .log-text-wrapper {
    font-size: 18px;
    margin-left: 15px;
  }

  .log-p {
    margin: 0 15px 60px;
    font-size: 15px;
  }

  .login-form {
    margin: 0 15px;
  }

  .log-group {
    margin: 0 30px 60px;
  }

  .log-text-wrapper-9,
  .log-text-wrapper-10 {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .login-info {
    padding: 10px;
  }

  .log-div,
  .log-text-wrapper {
    font-size: 16px;
    margin-left: 10px;
  }

  .log-p {
    margin: 0 10px 40px;
    font-size: 14px;
  }

  .login-form {
    margin: 0 10px;
  }

  .log-form-group {
    margin-bottom: 28px;
  }

  .log-in {
    width: 120px;
    height: 42px;
  }

  .log-text-wrapper-7 {
    font-size: 16px;
  }

  .log-group {
    margin: 0 20px 50px;
  }

  .log-text-wrapper-9,
  .log-text-wrapper-10 {
    font-size: 14px;
  }

  .log-craete-account {
    width: 200px;
    height: 42px;
  }

  .log-text-wrapper-8 {
    font-size: 16px;
  }

  .log-cross {
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
  }
}