@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Radio+Canada:ital,wght@0,300..700;1,300..700&display=swap");
body {
  font-family: "Poppins", sans-serif;
}

h3 {
  font-family: "Allura", cursive;
}

h1 {
  font-family: "Cinzel", serif;
}

.navbar {
  background-color: #262626;
  padding: 0.8rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.navbar .navbar-brand {
  font-weight: 600;
  font-size: 1.5rem;
  color: #d1ae3f;
}
@media (max-width: 768px) {
  .navbar .navbar-brand {
    width: 100%;
  }
}
.navbar .navbar-brand .logo-img {
  width: 84px;
}
.navbar .navbar-nav .nav-link {
  font-weight: 500;
  margin: 0 12px;
  color: #ffffff;
  position: relative;
  transition: color 0.3s ease;
}
.navbar .navbar-nav .nav-link:hover, .navbar .navbar-nav .nav-link.active {
  color: #d1ae3f;
}
.navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #d1ae3f;
  left: 50%;
  bottom: -6px;
  transition: 0.3s ease;
  transform: translateX(-50%);
}
.navbar .navbar-nav .nav-link:hover::after, .navbar .navbar-nav .nav-link.active::after {
  width: 100%;
}
.navbar .navbar-toggler {
  border: 1px solid #d1ae3f;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  filter: invert(1);
}
.navbar .language a {
  font-size: 14px;
  margin-left: 5px;
  transition: color 0.3s ease;
}
.navbar .language a:hover {
  color: #d1ae3f;
}
.navbar .language .language-dropdown {
  font-weight: 500;
  color: #ffffff;
}
.navbar .language .language-dropdown:hover {
  color: #d1ae3f;
}
.navbar .language .language-dropdown::after {
  margin-left: 6px;
}
.navbar .language .dropdown-menu {
  border-radius: 0px;
  padding: 0.5rem;
  min-width: 160px;
}
.navbar .language .dropdown-menu .dropdown-item {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  transition: background 0.2s ease;
  color: #d1ae3f;
}
.navbar .language .dropdown-menu .dropdown-item:hover {
  color: #090707;
  background-color: transparent;
}

@media (max-width: 992px) {
  .navbar {
    padding: 1rem;
  }
  .navbar .navbar-collapse {
    background-color: #fff;
    margin-top: 10px;
    padding: 1rem;
    border-radius: 0px;
  }
  .navbar .navbar-nav .nav-link {
    margin: 10px 0;
    color: #090707;
  }
  .navbar .d-flex {
    justify-content: center;
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0px;
  }
  .navbar__toggle {
    display: block;
    color: #ffffff;
    margin-left: 20px;
  }
  .navbar__menu {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 10px;
  }
  .navbar__menu li {
    margin: 10px 0;
  }
  .navbar__menu.active {
    display: flex;
  }
  .navbar__cart {
    margin-left: auto;
    order: 3;
    margin-top: 10px;
  }
}
.hero-banner {
  background-image: url("../Images/bannerimage.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  position: relative;
  padding: 60px 20px;
}
.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-banner .hero-content {
  margin-top: 5% !important;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.hero-banner .hero-content .hero-title {
  font-size: 35px;
  font-weight: 600;
  font-family: "Cinzel", serif;
  color: #fff;
  margin-bottom: 30px;
}
.hero-banner .hero-content .hero-subtitle {
  font-size: 33px;
  margin-top: 1rem;
  color: #d1ae3f;
  margin-bottom: 10px;
}
.hero-banner .hero-content .btn-hero {
  background: linear-gradient(45deg, #937E3C, #2D2712);
  border: none;
  border-radius: 0%;
  padding: 0.6rem 1.5rem;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}
.hero-banner .hero-content .btn-hero:hover {
  background: linear-gradient(45deg, #e3c947, #6f6805);
  color: #fff;
}
.hero-banner .hero-content .btn-hero:focus {
  box-shadow: none;
}

.hero-description {
  font-size: 15px;
  color: #918f8f;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 992px) {
  .paragraph {
    padding: 10% 7%;
  }
}
@media (max-width: 768px) {
  .paragraph {
    padding: 10% 5%;
  }
}
.speciality {
  background-image: url("/Images/bg-dark.png");
  background-size: cover;
  background-position: center;
  height: auto;
  margin-bottom: 50px;
}
.speciality .text-side h2 {
  color: #090707;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 30px;
}
.speciality .text-side p {
  font-size: 15px;
  line-height: 1.8;
  color: #ffffff;
  text-align: justify;
  font-weight: 400;
}
.speciality .text-side .btn-hero {
  background: linear-gradient(45deg, #937E3C, #2D2712);
  border: none;
  border-radius: 0%;
  padding: 0.6rem 1.5rem;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s ease;
}
.speciality .text-side .btn-hero:hover {
  background: linear-gradient(45deg, #e3c947, #6f6805);
  color: #fff;
}
.speciality .text-side .btn-hero:focus {
  box-shadow: none;
}
.speciality .card-sec .card {
  border: 2px solid #d1ae3f !important;
  background-color: rgba(102, 102, 102, 0.3411764706);
}
@media (max-width: 768px) {
  .speciality .card-sec .card {
    border-right: none !important;
  }
}
.speciality .card-sec .card i {
  color: #d1ae3f;
  font-size: 27px;
  margin-top: 20px;
}
.speciality .card-sec .card .card-title {
  color: #090707;
  margin-bottom: 18px;
  font-family: "Cinzel", serif;
}
.speciality .card-sec .card .card-text {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 15px;
}

.new-arrival {
  margin-top: 30px;
  margin-bottom: 30px;
}
.new-arrival h2 {
  color: #d1ae3f;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 30px;
}
.new-arrival .product-card {
  background-color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.new-arrival .product-card .image-wrapper {
  position: relative;
}
.new-arrival .product-card .image-wrapper .product-img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 1px solid #eee;
}
.new-arrival .product-card .image-wrapper .fav-btn {
  background-color: #fff;
  color: #dc3545;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
}
.new-arrival .product-card .image-wrapper .fav-btn:hover {
  background-color: #f8f9fa;
}
.new-arrival .product-card .product-info .product-title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}
.new-arrival .product-card .product-info .product-desc {
  font-size: 12px;
  color: #777;
  margin-bottom: 2px;
}
.new-arrival .product-card .product-info .product-price {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}
.new-arrival .product-card .product-info .btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.new-arrival .product-card .product-info .btn-light:focus {
  box-shadow: none;
}
.new-arrival .product-card .product-info .btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.new-arrival .product-card .product-info .btn-sm:focus {
  box-shadow: none;
}

.footer-sec {
  background-color: #1c1c1c;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}
.footer-sec .logo-img {
  width: 100px;
}
.footer-sec a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-sec a:hover {
  color: #e07b39;
}
.footer-sec .footer-topics {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-sec .trust-image {
  width: 100%;
}
.footer-sec ul {
  padding-left: 0;
}
.footer-sec ul li {
  margin-bottom: 0.5rem;
}
.footer-sec ul li a {
  font-size: 0.95rem;
  color: #C0BEBE !important;
  opacity: 0.85;
}
.footer-sec ul li a:hover {
  opacity: 1;
}
.footer-sec input.form-control {
  background-color: #2a2a2a;
  border: none;
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}
.footer-sec input.form-control::-moz-placeholder {
  color: #cccccc;
}
.footer-sec input.form-control::placeholder {
  color: #cccccc;
}
.footer-sec input.form-control:focus {
  background-color: #2a2a2a;
  box-shadow: none;
  border-color: #e07b39;
}
.footer-sec i {
  font-size: 1.2rem;
  color: #ffffff;
  transition: color 0.3s ease;
}
.footer-sec i:hover {
  color: #e07b39;
}
.footer-sec .row:last-child {
  font-size: 0.9rem;
}
.footer-sec .row:last-child a {
  font-size: 14px;
  margin-right: 1rem;
}

.border-bottom {
  border-bottom: 1px solid #4f4f4f;
  width: 100%;
}

.dark-background-section {
  font-family: "Cinzel", serif;
}
.dark-background-section .full-black-bg {
  background-color: #090707;
  color: #fff;
}
.dark-background-section .content-left {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.dark-background-section .section-title {
  font-size: 37;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.dark-background-section .section-subtitle {
  font-size: 33px;
  margin-top: 1rem;
  color: #d1ae3f;
  margin-bottom: 10px;
}
.dark-background-section .section-description {
  font-size: 14px;
  color: #918f8f;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}
.dark-background-section .section-image {
  max-width: 90%;
  border-radius: 0px;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .dark-background-section .section-title {
    font-size: 2rem;
  }
  .dark-background-section .section-description {
    font-size: 0.95rem;
  }
  .dark-background-section .section-image {
    margin-top: 2rem;
  }
}

.wrapper {
  width: 100%;
  padding: 0 5vw;
  display: flex;
  justify-content: center;
}
.wrapper .content-box {
  background: white;
  padding: 3rem 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  text-align: center;
}
.wrapper .content-box .topic {
  font-size: 2rem;
  color: #d1ae3f;
  margin-bottom: 1rem;
}
.wrapper .content-box .text {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.6;
}

.light-background-section .full-white-bg {
  background-color: #ffffff;
}
.light-background-section .content-left {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.light-background-section .section-title {
  font-size: 33px;
  font-weight: 700;
  color: #090707;
  margin-bottom: 20px;
}
.light-background-section .section-subtitle {
  font-size: 33px;
  margin-top: 1rem;
  color: #d1ae3f;
  margin-bottom: 10px;
}
.light-background-section .service-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  font-family: "Segoe UI", sans-serif;
}
.light-background-section .service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 3px;
  font-size: 16px;
  color: #918f8f;
}
.light-background-section .service-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #888;
  font-size: 1.2rem;
}
.light-background-section .section-image {
  max-width: 90%;
  border-radius: 0px;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .light-background-section .section-title {
    font-size: 2rem;
  }
  .light-background-section .section-description {
    font-size: 0.95rem;
  }
  .light-background-section .section-image {
    margin-bottom: 2rem;
  }
}

.contact-sec {
  padding: 1% 5%;
  background-color: #090707;
}
.contact-sec .section-title {
  font-size: 37;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.contact-sec .section-subtitle {
  font-size: 33px;
  margin-top: 1rem;
  color: #d1ae3f;
  margin-bottom: 10px;
}
.contact-sec p {
  color: #918f8f;
}

@media (max-width: 992px) {
  .contact-sec {
    padding: 10% 7%;
  }
}
@media (max-width: 768px) {
  .contact-sec {
    padding: 10% 5%;
  }
}
.info-section .info-card {
  padding: 2rem;
  min-height: 300px;
}
.info-section .info-card .icon {
  font-size: 25px;
  color: #d1ae3f;
  margin-bottom: 1rem;
}
.info-section .info-card .topic {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}
.info-section .info-card .sub-topic {
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  color: #666;
}
.info-section .info-card .desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}
.info-section .info-card.border-divider {
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
@media (max-width: 767px) {
  .info-section .info-card {
    border: none !important;
    border-top: 1px solid #ddd;
  }
  .info-section .info-card:first-child {
    border-top: none;
  }
  .info-section .info-card.border-divider {
    border-left: none;
    border-right: none;
  }
}

.dark-centered-container {
  background-color: #4b4b4b;
  color: #090707;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem;
  min-height: 200px;
  text-align: center;
}
.dark-centered-container .text-container {
  max-width: 700px;
}
.dark-centered-container .text-container .topic {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Cinzel", serif;
}
.dark-centered-container .text-container .description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d1ae3f;
}
@media (max-width: 768px) {
  .dark-centered-container {
    padding: 3rem 1rem;
  }
  .dark-centered-container .topic {
    font-size: 2rem;
  }
  .dark-centered-container .description {
    font-size: 1rem;
  }
}

.category-scroll-section {
  background-color: #f8f9fa;
}
.category-scroll-section i {
  color: #d1ae3f;
  font-size: 20px;
}
.category-scroll-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}
.category-scroll-section .scroll-box {
  max-height: 500px;
  overflow-y: auto;
  padding: 1rem;
  scrollbar-width: thin;
  scrollbar-color: #c5ae91 transparent;
}
.category-scroll-section .scroll-box::-webkit-scrollbar {
  width: 6px;
}
.category-scroll-section .scroll-box::-webkit-scrollbar-thumb {
  background-color: #c5ae91;
  border-radius: 10px;
}
.category-scroll-section .category-card {
  width: 120px;
  background-color: #fff;
  border-radius: 8px;
  padding: 0.8rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}
.category-scroll-section .category-card img {
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}
.category-scroll-section .category-card p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #333;
}
.category-scroll-section .category-card:hover {
  transform: translateY(-4px);
}

.product-sec .section-title {
  font-size: 37;
  font-weight: 700;
  color: #090707;
  margin-bottom: 20px;
}
.product-sec .section-subtitle {
  font-size: 33px;
  margin-top: 1rem;
  color: #d1ae3f;
  margin-bottom: 10px;
}
.product-sec .filter-sidebar .filter-heading {
  color: #d1ae3f;
}
.product-sec .filter-sidebar .search-icon {
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #d1ae3f;
  position: absolute;
  font-size: 1rem;
}
.product-sec .filter-sidebar .form-control {
  border-radius: 20px;
  border-color: #d1ae3f;
  line-height: 0.5 !important;
  color: #d1ae3f;
  font-size: 15px;
  font-weight: 200;
}
.product-sec .filter-sidebar .btn-all {
  border-radius: 20px;
  font-weight: 500;
  color: #d1ae3f;
  border: 1px solid #d1ae3f;
  line-height: 1 !important;
  font-size: 15px;
}
.product-sec .filter-sidebar .filter-list .list-group-item {
  border: none;
  font-size: 0.95rem;
}
.product-sec .filter-sidebar .filter-list .list-group-item .left-icon {
  width: 25px;
  height: 25px;
  background-color: #ededed;
  color: #d1ae3f;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 12px;
}
.product-sec .filter-sidebar .filter-list .list-group-item select {
  min-width: 100px;
  border-radius: 8px;
}
.product-sec .filter-sidebar .filter-list .list-group-item .form-check .form-check-input {
  color: #888;
}
.product-sec .filter-sidebar .filter-list .list-group-item .form-check .form-check-input:checked {
  background-color: #d1ae3f;
  border-color: #a68b6f;
}
.product-sec .dropdown-toggle {
  border-radius: 8px;
  padding: 5px 10px;
  min-width: 120px;
  font-weight: 500;
  gap: 5px;
  border-color: #d1ae3f;
  color: #d1ae3f;
  font-size: 15px;
}
.product-sec .dropdown-toggle:hover {
  color: #ffffff;
  background-color: #d1ae3f;
}
.product-sec .dropdown-toggle:focus {
  box-shadow: none;
}
.product-sec .product-view-card {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.product-sec .product-view-card .main-img img {
  max-height: 350px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-sec .product-view-card .thumbnails {
  margin-right: 1rem;
}
.product-sec .product-view-card .thumbnails .thumb {
  width: 60px;
  height: 60px;
  margin: 0.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.product-sec .product-view-card .thumbnails .thumb:hover {
  border-color: #c5ae91;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .product-sec .product-view-card .thumbnails {
    flex-direction: row !important;
    justify-content: center;
    margin-bottom: 1rem;
    overflow-x: auto;
  }
  .product-sec .product-view-card .thumbnails .thumb {
    margin: 0 0.25rem;
  }
  .product-sec .product-view-card .main-img {
    margin-bottom: 1rem;
  }
}
.product-sec .product-view-card .detail-section .product-title {
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin-top: 10px;
}
.product-sec .product-view-card .detail-section .ask-btn {
  background-color: transparent;
  border: none;
  color: #d1ae3f;
  font-weight: 400;
  padding: 0.4rem;
  border-radius: 0.5rem;
  transition: background 0.3s;
  font-size: 13px;
}
.product-sec .product-view-card .detail-section .ask-btn:hover {
  background-color: rgba(197, 174, 145, 0.1);
}
.product-sec .product-view-card .detail-section .price {
  color: #000;
}
.product-sec .product-view-card .detail-section .add-cart {
  padding: 0.5rem 0.6rem;
  font-size: 14px;
  background-color: #000000;
  color: #ffffff !important;
  transition: all 0.3s ease;
}
.product-sec .product-view-card .detail-section .add-cart:hover {
  background-color: #f1f1f1;
  color: #000 !important;
}
.product-sec .product-view-card .detail-section .add-cart:focus {
  box-shadow: none;
}
.product-sec .product-view-card .detail-section .small-icon-btn {
  padding: 0.5rem 0.6rem;
  font-size: 1rem;
  background-color: #dfdfdf;
  color: #000000;
  transition: all 0.3s ease;
}
.product-sec .product-view-card .detail-section .small-icon-btn:hover {
  background-color: #f1f1f1;
  color: #000;
}
.product-sec .product-view-card .detail-section .small-icon-btn:focus {
  box-shadow: none;
}
.product-sec .product-view-card .detail-section .delivery {
  font-size: 14px;
}
.product-sec .product-view-card .detail-section .info-card {
  font-size: 0.95rem;
  line-height: 1.4;
  border: 1px solid #d1ae3f !important;
}
.product-sec .product-view-card .description {
  font-size: 15px;
  line-height: 1.6;
  color: #6a6a6a;
  padding-top: 30px;
}
.product-sec .slideshow-items {
  width: 500px;
  display: none;
  border: solid var(--light-grey-2) 1px;
}
@media (max-width: 767px) {
  .product-sec .slideshow-items {
    width: 300px;
  }
}
.product-sec .slideshow-items.active {
  display: block;
}
.product-sec .slideshow-thumbnails {
  width: 100px;
  opacity: 0.5;
  border: solid var(--light-grey-2) 1px;
}
.product-sec .slideshow-thumbnails.active {
  opacity: 1;
}
.product-sec #slideshow-items-container {
  display: inline-block;
  position: relative;
}
.product-sec #lens {
  background-color: rgba(233, 233, 233, 0.4);
  position: absolute;
  display: none;
  z-index: 1;
  border: solid var(--light-grey-2) 1px;
}
.product-sec #result {
  position: absolute;
  display: none;
  z-index: 1;
  border: solid var(--light-grey-2) 1px;
}
.product-sec .product-card {
  background-color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.product-sec .product-card .image-wrapper {
  position: relative;
}
.product-sec .product-card .image-wrapper .product-img {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-bottom: 1px solid #eee;
}
.product-sec .product-card .image-wrapper .fav-btn {
  background-color: #fff;
  color: #dc3545;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  width: 36px;
  height: 36px;
}
.product-sec .product-card .image-wrapper .fav-btn:hover {
  background-color: #f8f9fa;
}
.product-sec .product-card .product-info .product-title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 2px;
}
.product-sec .product-card .product-info .product-desc {
  font-size: 12px;
  color: #777;
  margin-bottom: 2px;
}
.product-sec .product-card .product-info .product-price {
  font-size: 13px;
  font-weight: 600;
  color: #000;
}
.product-sec .product-card .product-info .btn-light {
  color: #000;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.product-sec .product-card .product-info .btn-light:focus {
  box-shadow: none;
}
.product-sec .product-card .product-info .btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.2rem;
}
.product-sec .product-card .product-info .btn-sm:focus {
  box-shadow: none;
}

.service-sec h2 {
  color: #090707;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 30px;
}
.service-sec p {
  color: #918f8f;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
.service-sec .content-box {
  padding: 40px;
}
.service-sec .content-box .title {
  font-size: 20px;
  font-weight: 500;
  color: #d1ae3f;
  margin-bottom: 0.75rem;
}
.service-sec .content-box .description {
  color: #918f8f;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 30px;
}
.service-sec .content-box .custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-sec .content-box .custom-list li {
  margin-bottom: 1rem;
}
.service-sec .content-box .custom-list li .list-box {
  background-color: #F1F1F1;
  padding: 10px;
  font-size: 15px;
  color: #090707;
  display: flex;
  align-items: center;
  line-height: 1.5;
  transition: box-shadow 0.3s ease;
}
.service-sec .content-box .custom-list li .list-box::before {
  content: "\f054";
  margin-right: 0.5rem;
  color: #d1ae3f;
  font-weight: bold;
  font-family: "FontAwesome";
  margin-right: 15px;
}
.service-sec .content-box .custom-list li .list-box:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.service-sec .booking-sec {
  color: #090707;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
}
.service-sec .booking-sec .yellow-btn {
  background-color: #d1ae3f;
  color: #090707;
  border: none;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.3s ease;
  padding-right: 30px;
  padding-left: 30px;
  border-radius: 0px;
}
.service-sec .booking-sec .yellow-btn:hover {
  background-color: #090707;
  color: #d1ae3f;
}

.blog-header {
  padding: 1% 5%;
  background-color: #090707;
}
.blog-header .section-title {
  font-size: 37;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.blog-header .section-subtitle {
  font-size: 33px;
  margin-top: 1rem;
  color: #d1ae3f;
  margin-bottom: 10px;
}
.blog-header p {
  color: #918f8f;
}

.modern-card .img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
}
.modern-card .img-wrapper .img-back {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 100%;
  height: 80%;
  background-color: #f1e0a8;
  border-radius: 0px;
  z-index: 0;
}
.modern-card .img-wrapper .main-img {
  position: relative;
  width: 100%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.modern-card .card-body {
  text-align: left;
}
.modern-card .card-body h5 {
  font-weight: 600;
  color: #333;
}
.modern-card .card-body p {
  font-size: 15px;
  color: #918f8f;
  margin-bottom: 1rem;
}
.modern-card .card-body .custom-btn {
  background-color: #d1ae3f;
  color: #000;
  border: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0px;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
}
.modern-card .card-body .custom-btn:hover {
  background-color: #e6c200;
}

.article h1 {
  color: #090707;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 30px;
}
.article h2 {
  font-size: 20px;
  font-weight: 500;
  color: #d1ae3f;
}
.article p {
  color: #918f8f;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 30px;
}

.event-header {
  padding: 1% 5%;
  background-color: #090707;
}
.event-header .section-title {
  font-size: 37;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.event-header .section-subtitle {
  font-size: 33px;
  margin-top: 1rem;
  color: #d1ae3f;
  margin-bottom: 10px;
}
.event-header p {
  color: #918f8f;
}

.event-sec .card-body h5 {
  font-weight: 600;
  color: #333;
}
.event-sec .card-body p {
  color: #918f8f;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 20px;
}
.event-sec .card-body ul {
  margin-bottom: 40px;
}
.event-sec .card-body ul li {
  color: #918f8f;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
.event-sec .card-body .custom-btn {
  background-color: #d1ae3f;
  color: #000;
  border: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 0px;
  padding: 0.5rem 1rem;
  transition: background-color 0.3s ease;
}
.event-sec .card-body .custom-btn:hover {
  background-color: #e6c200;
}

.shipping-policy h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-top: 1rem;
  color: #d1ae3f;
  margin-bottom: 10px;
}

.refund-policy h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-top: 1rem;
  color: #d1ae3f;
  margin-bottom: 10px;
}

.terms-service h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-top: 1rem;
  color: #d1ae3f;
  margin-bottom: 10px;
}

.new-sec h1 {
  font-size: 35px;
  line-height: 35px;
}
.new-sec h3 {
  font-family: "Cinzel", serif;
  font-size: 25px;
  color: #d1ae3f;
}
.new-sec h4 {
  font-size: 19px;
}

.product-related-card h2 {
  color: #d1ae3f;
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 30px;
}

.modal.fade .modal-dialog {
  transform: translateY(-20px);
  transition: all 0.4s ease-in-out;
  opacity: 0;
}

.modal.show .modal-dialog {
  transform: translateY(0);
  opacity: 1;
}

.modern-modal {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  animation: fadeInScale 0.4s ease-in-out;
}

@keyframes fadeInScale {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.modern-input {
  border-radius: 12px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
  background: #f9f9f9;
}
.modern-input:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.2);
  background: #fff;
}

.form-floating > label {
  color: #666;
  transition: all 0.2s ease-in-out;
}

.form-floating .form-control:not(:-moz-placeholder) ~ label {
  color: #c0d6f8;
  font-weight: 400;
}

.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label {
  color: #c0d6f8;
  font-weight: 400;
}
.form-floating .form-control:not(:-moz-placeholder) ~ label:focus {
  box-shadow: none;
}
.form-floating .form-control:focus ~ label:focus,
.form-floating .form-control:not(:placeholder-shown) ~ label:focus {
  box-shadow: none;
}

.form-control {
  color: #a4a7aa;
  font-size: 12px;
}

.form-label {
  margin-bottom: 0.5rem;
  font-size: 14px;
}

.btn-dark:focus {
  box-shadow: none;
}/*# sourceMappingURL=style.css.map */