body {
  font-family: "Inter", sans-serif;
  color: #111111;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

.font-playfair {
  font-family: "Playfair Display", serif;
}

.transition-all {
  transition: all 0.3s ease-in-out;
}

.hover-gold:hover {
  color: #C5A059 !important;
}

.nav-link {
  transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: #C5A059 !important;
}

.hero-section .carousel-item {
  height: 85vh;
  min-height: 500px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.hero-section .carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 17, 17, 0.3);
}
.hero-section .carousel-caption {
  bottom: 0;
  z-index: 10;
}
.hero-section .carousel-indicators [data-bs-target] {
  width: 30px;
  height: 2px;
  background-color: #F8F8F8;
  border-top: none;
  border-bottom: none;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.hero-section .carousel-indicators [data-bs-target].active {
  opacity: 1;
  background-color: #C5A059;
}

.btn-luxury {
  border-radius: 0;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 500;
  transition: all 0.4s ease;
}
.btn-luxury.btn-outline-light:hover {
  background-color: #C5A059;
  border-color: #C5A059;
  color: #F8F8F8;
}
.btn-luxury.btn-light {
  color: #111111;
}
.btn-luxury.btn-light:hover {
  background-color: #C5A059;
  color: #F8F8F8;
}

.bg-gold {
  background-color: #C5A059;
}

.category-card img {
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.category-card .category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 17, 17, 0.2);
  transition: all 0.4s ease;
}
.category-card:hover img {
  transform: scale(1.08);
}
.category-card:hover .category-overlay {
  background-color: rgba(17, 17, 17, 0.5);
}

.product-card .product-img-wrap .product-actions {
  position: absolute;
  bottom: -50px;
  left: 0;
  padding: 0 15px 15px 15px;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
}
.product-card .product-img-wrap .wishlist-btn {
  position: absolute;
  top: 15px;
  right: -40px;
  width: 35px;
  height: 35px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 10;
}
.product-card .product-img-wrap .wishlist-btn:hover {
  background-color: #C5A059;
  color: white;
}
.product-card .product-img-wrap img {
  transition: transform 0.8s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}
.product-card:hover .product-img-wrap .product-actions {
  bottom: 0;
  opacity: 1;
}
.product-card:hover .product-img-wrap .wishlist-btn {
  right: 15px;
  opacity: 1;
}

.promo-banner {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.promo-banner .promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(17, 17, 17, 0.65);
  z-index: 1;
}

.service-features {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}
.service-features .feature-icon {
  color: #C5A059;
}
.service-features .feature-icon:hover {
  transform: translateY(-8px);
  color: #111111;
}

footer .form-control:focus {
  box-shadow: none;
  border-color: #C5A059 !important;
}
footer .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}
footer .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}
footer .footer-link {
  transition: all 0.3s ease;
  display: inline-block;
}
footer .footer-link:hover {
  color: #C5A059 !important;
  transform: translateX(5px);
}
footer .border-secondary {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.filter-widget .color-swatches .btn {
  border-radius: 50%;
  position: relative;
}
.filter-widget .color-swatches .btn.active::after, .filter-widget .color-swatches .btn:hover::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 1px solid #111111;
  border-radius: 50%;
}

.pagination-luxury {
  gap: 8px;
}
.pagination-luxury .page-item .page-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111111;
  border: 1px solid #ddd;
  border-radius: 0;
  transition: all 0.3s ease;
}
.pagination-luxury .page-item .page-link:hover {
  background-color: #111111;
  color: #F8F8F8;
  border-color: #111111;
}
.pagination-luxury .page-item.active .page-link {
  background-color: #111111;
  color: #F8F8F8;
  border-color: #111111;
}
.pagination-luxury .page-item.disabled .page-link {
  color: #ccc;
  background-color: transparent;
}

.cursor-pointer {
  cursor: pointer;
}

.product-detail .thumbnail-img {
  transition: all 0.3s ease;
}
.product-detail .thumbnail-img.active-thumb {
  border-color: #111111 !important;
  opacity: 1;
}
.product-detail .hover-opacity-100:hover {
  opacity: 1 !important;
}
.product-detail .quantity-wrapper input[type=number]::-webkit-inner-spin-button,
.product-detail .quantity-wrapper input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-detail .quantity-wrapper .quantity-btn:focus {
  box-shadow: none;
}
.product-detail .custom-accordion .accordion-button:focus {
  box-shadow: none;
}
.product-detail .custom-accordion .accordion-button:not(.collapsed) {
  color: #111111;
  background-color: transparent;
  box-shadow: none;
}

.cart-table th {
  border-top: none;
}
.cart-table .remove-item-btn {
  transition: all 0.3s ease;
}
.cart-table .remove-item-btn:hover {
  transform: scale(1.2) rotate(90deg);
}

.checkout-form .form-control:focus, .checkout-form .form-select:focus {
  border-color: #C5A059 !important;
  box-shadow: none;
}

.form-check-input:checked {
  background-color: #C5A059;
  border-color: #C5A059;
}

.payment-methods .payment-desc {
  position: relative;
}
.payment-methods .payment-desc::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 15px;
  width: 10px;
  height: 10px;
  background: white;
  border-top: 1px solid #dee2e6;
  border-left: 1px solid #dee2e6;
  transform: rotate(45deg);
}

@media (min-width: 768px) {
  .auth-section .border-end-md {
    border-right: 1px solid #dee2e6 !important;
  }
}
.auth-section .form-check-input:checked {
  background-color: #111111;
  border-color: #111111;
}

.border-gold {
  border-color: #C5A059 !important;
}

.team-card .team-img {
  filter: grayscale(100%);
}
.team-card .team-social {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}
.team-card .team-social a {
  transition: all 0.3s ease;
}
.team-card .team-social a:hover {
  background-color: #C5A059 !important;
  color: #F8F8F8 !important;
}
.team-card:hover .team-img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.team-card:hover .team-social {
  opacity: 1;
  transform: translateY(0);
}

.contact-form .form-control:focus {
  border-color: #C5A059 !important;
  box-shadow: none;
}

.contact-map {
  line-height: 0;
}
.contact-map iframe {
  width: 100%;
  filter: grayscale(100%) contrast(1.2) opacity(0.8);
  transition: all 0.5s ease;
}
.contact-map iframe:hover {
  filter: grayscale(50%) contrast(1) opacity(1);
}

.blog-card .blog-img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.sidebar-widget .form-control:focus {
  border-color: #C5A059 !important;
}
.sidebar-widget .btn-outline-secondary:hover {
  background-color: #C5A059;
  border-color: #C5A059 !important;
  color: #F8F8F8 !important;
}

.article-content {
  line-height: 1.8;
}
.article-content .custom-blockquote {
  border-left: 3px solid #C5A059;
}
.article-content .custom-blockquote .blockquote-footer {
  color: #C5A059;
}
.article-content .custom-blockquote .blockquote-footer::before {
  color: #C5A059;
}

.author-box {
  border-color: #eeeeee !important;
}

.reply-form .form-control:focus {
  border-color: #C5A059 !important;
}

.blog-list-item .blog-img-wrap {
  height: 250px;
}
@media (min-width: 992px) {
  .blog-list-item .blog-img-wrap {
    height: 280px;
  }
}
.blog-list-item .blog-img-wrap img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.blog-list-item:hover .blog-img-wrap img {
  transform: scale(1.05);
}

.error-page-section .error-title {
  font-size: 8rem;
  letter-spacing: 10px;
  line-height: 1;
  color: #111111;
  text-shadow: 4px 4px 0px rgba(197, 160, 89, 0.2);
}
@media (min-width: 768px) {
  .error-page-section .error-title {
    font-size: 12rem;
  }
}

.navbar-nav .dropdown-menu {
  border-top: 2px solid #C5A059 !important;
}
.navbar-nav .dropdown-menu .dropdown-item {
  font-size: 0.9rem;
  color: #111111;
  transition: all 0.3s ease;
}
.navbar-nav .dropdown-menu .dropdown-item:hover, .navbar-nav .dropdown-menu .dropdown-item:focus {
  background-color: transparent;
  color: #C5A059;
  padding-left: 1.5rem;
}
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: fadeIn 0.3s ease-in;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#searchOffcanvas {
  background-color: rgba(255, 255, 255, 0.98);
}
#searchOffcanvas .form-control::-moz-placeholder {
  color: #dddddd;
  font-size: 1.5rem;
  font-weight: 300;
}
#searchOffcanvas .form-control::placeholder {
  color: #dddddd;
  font-size: 1.5rem;
  font-weight: 300;
}