
    body {
      font-family: 'Inter', sans-serif;
    }
    p {line-height: 2; font-size: 18px;}
    .navbar {
      padding: 20px 40px;
    }

    .navbar-brand {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      color: #fff !important;
    }

    .nav-link {
      color: #ccc !important;
      margin: 0 15px;
      letter-spacing: 1px;
      font-size: 13px;
    }

    .nav-link:hover {
      color: #fff !important;
    }

    .explore-btn {
      background-color: #b11226;
      color: #fff;
      padding: 10px 20px;
      font-size: 12px;
      letter-spacing: 1px;
      border: none;
    }

    .explore-btn:hover {
      background-color: #8e0e1e;
    }

    .icons i {
      color: #fff;
      margin-left: 15px;
      cursor: pointer;
    }
    /* Hero Section */
    .hero {
      height: 100vh;
      background: url('../../files/images/hero-woman-Door.jpg') center/cover no-repeat;
      position: relative;
      display: flex;
      align-items: center;
    }

    /* Dark overlay */
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.4);
    }

    .hero-content {
      position: relative;
      color: #fff;
      max-width: 600px;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      line-height: 1.2;
    }

    .hero p {
      font-size: 1.1rem;
      color: #ddd;
    }

    .hero .sub-text {
      font-style: italic;
      margin: 10px 0;
    }

    .btn-cta {
      background: #c8102e;
      color: #fff;
      padding: 12px 24px;
      border: none;
      letter-spacing: 1px;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.2rem;
      }
    }



    
/* Filter Buttons */
.filter-btn {
  border: 1px solid #ddd;
  background: transparent;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 1px;
  margin: 5px;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #000;
  color: #fff;
}

/* Section */
.section-box {
  padding: 80px 0;
}

/* Image */
.img-box img {
  width: 100%;
  height: auto;
  transition: opacity 0.4s ease;
}

/* Content */
.content-box {
  padding-left: 60px;
}

.content-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
}

.content-box p {
  color: #666;
  font-style: italic;
}

/* Button */
.btn-outline-custom {
  border: 1px solid #000;
  padding: 12px 25px;
  font-size: 12px;
  letter-spacing: 1px;
}

.btn-outline-custom:hover {
  background: #000;
  color: #fff;
}

/* Fade animation */
.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}
.filter-scroll {
  scroll-behavior: smooth;
}

.filter-scroll {
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */
}

.filter-scroll::-webkit-scrollbar {
  display: none; /* Chrome */
}

.filter-btn {
  flex: 0 0 auto;
  border: 1px solid #ddd;
  background: transparent;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #000;
  color: #fff;
}
@media(max-width:768px){
  .content-box {
    padding-left: 0;
    margin-top: 30px;
  }
}


/* Scroll container */
.filter-tabs-scroll {
  display: flex;
  justify-content: center;
  gap: 25px;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
  margin-bottom: 40px;
  scrollbar-width: none;
}

.filter-tabs-scroll::-webkit-scrollbar {
  display: none;
}

/* Buttons */
.tab-btn {
  border: none;
  background: none;
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
  position: relative;
  flex: 0 0 auto;
  padding-bottom: 5px;
}

/* Active underline */
.tab-btn.active {
  color: #000;
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #000;
}





/* Tabs */
.filter-tabs {
  text-align: center;
  margin-bottom: 40px;
}

.filter-tabs button {
  border: none;
  background: none;
  margin: 0 15px;
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
  position: relative;
}

.filter-tabs button.active {
  color: #000;
}

.filter-tabs button.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #000;
}


.marquee-section {
  background: #000;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-text {
  display: inline-block;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  padding-right: 50px;
  animation: marquee 12s linear infinite;
  position: relative;
}

/* Duplicate text using pseudo-element */
.marquee-text::after {
  content: attr(data-text);
  padding-left: 100px;
}

/* Smooth infinite scroll */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Product Card */
.product-card {
  margin-bottom: 40px;
}

.product-img {
  overflow: hidden;
}

.product-img img {
  width: 100%;
  transition: transform 0.4s ease;
}

.product-img:hover img {
  transform: scale(1.05);
}

.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  margin-top: 10px;
}

.product-price {
  font-size: 14px;
  color: #777;
}

/* Hide items */
.hide {
  display: none;
}



/* Hero Section */
.hero-banner {
  position: relative;
  height: 500px;
  background: url('../../files/images/signature-diamond.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Dark overlay */
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
}

/* Content */
.hero-content {
  position: relative;
  color: #fff;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 12px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  opacity: 0.8;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  margin-bottom: 15px;
}

.hero-desc {
  font-style: italic;
  opacity: 0.8;
  margin-bottom: 25px;
}

/* Button */
.btn-luxury {
  background: #a10f2b;
  color: #fff;
  padding: 12px 30px;
  letter-spacing: 2px;
  border: none;
  transition: 0.3s;
}

.btn-luxury:hover {
  background: #7d0c21;
}

/* Responsive */
@media(max-width:768px){
  .hero-title {
    font-size: 32px;
  }
}




/* Section */
.section {
  padding: 80px 0;
  text-align: center;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 50px;
}

/* Testimonial */
.testimonial {
  max-width: 600px;
  margin: auto;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.quote {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}

.author {
  font-size: 12px;
  letter-spacing: 2px;
  color: #777;
}

/* Carousel controls hidden */
.carousel-control-prev,
.carousel-control-next {
  display: none;
}

/* Indicators */
.carousel-indicators [data-bs-target] {
  background-color: #000;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}






    .hero1 {
      background-color: #8B0000; /* deep luxury red */
      color: #fff;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
    }

    .hero1 h1 {
      font-size: 3rem;
      font-weight: 400;
      letter-spacing: 1px;
    }

    .hero1 p {
      font-size: 1.2rem;
      font-style: italic;
      margin-top: 10px;
      margin-bottom: 30px;
      opacity: 0.85;
    }

    .btn-outline-light {
      padding: 12px 30px;
      letter-spacing: 2px;
      font-size: 0.9rem;
    }




    
    .faq-section {
      padding: 80px 0;
      text-align: center;
    }

    .faq-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      margin-bottom: 50px;
    }

    .accordion {
      max-width: 700px;
      margin: auto;
      text-align: left;
    }

    .accordion-item {
      border: none;
      border-bottom: 1px solid #ddd;
      background: transparent;
    }

    .accordion-button {
      background: transparent;
      font-size: 1rem;
      padding: 20px 10px;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background: transparent;
      color: #000;
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
    }

    .accordion-body {
      padding: 10px 10px 20px;
      color: #555;
    }


    .hero2 {
      padding: 120px 0 80px;
      text-align: center;
      color: #fff;
      background-color: #000;

    }

    .hero2 h1 {
      font-size: 2.8rem;
      font-weight: 400;
      margin-bottom: 30px;
    }

    .btn-custom {
      background-color: #a0001c;
      color: #fff;
      padding: 12px 30px;
      letter-spacing: 2px;
      font-size: 12px;
      border: none;
    }

.btn-custom:hover {
  background: #6f0000;
  color: #fff;
}

    .footer {
      padding: 80px 0 30px;
      background-color: #000;
      color: #fff;
    }

    .footer h6 {
      font-size: 12px;
      letter-spacing: 2px;
      margin-bottom: 20px;
      color: #aaa;
    }

    .footer a {
      display: block;
      color: #ccc;
      text-decoration: none;
      margin-bottom: 8px;
      font-size: 14px;
    }

    .footer a:hover {
      color: #fff;
    }

    .brand {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      margin-bottom: 40px;
      
    }

    .copyright {
      border-top: 1px solid #222;
      margin-top: 40px;
      padding-top: 15px;
      font-size: 12px;
      color: #777;
    }


    /* Inner Pages Code*/
    
.shop-header {
  background:#000; color:#fff; text-align:center; padding:60px 20px;
}
.shop-header h1 { font-size:48px; }

.filter-tabs button {
  border:none; background:none; margin-right:20px;
  font-size:14px; letter-spacing:1px; color:#666;
}
.filter-tabs button.active {
  color:#000; border-bottom:2px solid #000;
}

.product-card { transition:.3s; }
.product-card:hover { transform:translateY(-5px); }

.product-title { font-size:16px; margin-top:10px; }
.product-price { color:#777; font-size:14px; }



/* Breadcrumb */
.breadcrumb {
  background: transparent;
  font-size: 13px;
  letter-spacing: 1px;
}

/* Product Title */
.product-title {
  font-size: 20px;
  font-weight: 500;
}

.product-price {
  font-size: 14px;
  margin: 10px 0;
}

.product-desc {
  color: #777;
  line-height: 1.6;
}

/* Details */
.product-details li {
  margin-bottom: 8px;
  color: #555;
}

/* Button */
.btn-custom {
  background: #8b0000;
  color: #fff;
  padding: 14px;
  letter-spacing: 2px;
  border: none;
}


/* Related */
.related-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.product-card img {
  width: 100%;
}

.product-name {
  margin-top: 10px;
}

.product-price-small {
  color: #777;
}





/* HERO */
.hero3 {
  background: url('../../files/images/story-diamond-detail.jpg') center/cover no-repeat;
  height: 60vh;
  position: relative;
  color: #fff;
}
.hero3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.hero3-content {
  position: relative;
  z-index: 2;
}
.hero3 h1 {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
}
.hero3 p {
  font-size: 14px;
  opacity: 0.8;
}

/* SECTION SPACING */
.section {
  padding: 80px 0;
}

/* STORY */
.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
}
.story-text p {
  font-size: 14px;
  color: #555;
}
.our-story {text-align: left;}
.our-story h2 {        font-size: 2.25rem;
        line-height: 2.5rem;}
/* VALUES */
.values {
  background: #000;
  color: #fff;
  text-align: center;
}
.values h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 50px;
}
.values p {
  font-size: 13px;
  color: #aaa;
}

/* CRAFT */
.craft h2 {
  font-family: 'Playfair Display', serif;
}
.btn-outline-dark {
  letter-spacing: 1px;
  font-size: 12px;
}

/* CTA */
.cta {
  background: #8b0d1a;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.cta h2 {
  font-family: 'Playfair Display', serif;
}
.cta .btn {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 30px;
  font-size: 12px;
}
.cta .btn:hover {
  background: #fff;
  color: #000;
}