:root {
  --primary: #f89521; /* Elegant Camel/Wood tone */
  --text-main: #231f20;
  --text-muted: #737373;
  --bg-white: #ffffff;
  --border-subtle: #dddbdb;
  --header-h: 90px;
}

* {
  margin: 0;
  /* padding: 0; */
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
  color: var(--text-main);
  background-color: var(--bg-white);
}

.content-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Container */
.container-fluid {
  width: 100%;
  padding-right: 5%;
  padding-left: 5%;
  max-width: 1920px;
  margin: 0 auto;
}

/* Header */
header {
  /* height: var(--header-h); */
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
}

.header-scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid transparent;
  /* height: 80px; */
}

.brand-icon {
  background-color: var(--primary);
  color: var(--bg-white);
}

/* Top Nav Links */
.nav-link {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.15em;
  font-size: 15px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 35px 0px;
}
.nav-link:hover {
  color: #f89521;
}
.header-scrolled .nav-link,
.header-scrolled .logo-text {
  color: #fff !important;
}

.header-scrolled .header-action {
  color: #fff !important;
}

/* Mega Menu Dropdown */
.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  background: var(--bg-white);
  color: var(--text-main);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-top: 1px solid var(--border-subtle);
  transform-origin: top;
  padding: 0px;
}

.mega-menu-dropdown.mini-dropdown {
  width: 300px;
  padding: 25px;
  left: unset;
}

.mega-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.mega-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
}

.mega-link {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.mega-link::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--primary);
  transition: all 0.3s ease;
}

.mega-link:hover {
  color: var(--text-main);
}

.mega-link:hover::before {
  width: 15px;
  margin-right: 12px;
}

.shop-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-main);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 4px;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.shop-all-link i {
  transition: transform 0.3s ease;
}

.shop-all-link:hover i {
  transform: translateX(4px);
}

/* Actions */
.header-action {
  font-size: 1.3rem;
  color: #fff;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
}

.header-action:hover {
  color: var(--primary) !important;
  transform: translateY(-2px);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Promos & Visuals */
.promo-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px; /* Slightly sharper edges for luxury */
}

.promo-card img {
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-card:hover img {
  transform: scale(1.08);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.2) 60%,
    transparent 100%
  );
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.promo-card:hover .promo-overlay {
  opacity: 0.8;
}

.promo-card h4,
.promo-card p {
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.promo-card:hover h4 {
  transform: translateY(0) !important;
}
.promo-card:hover p {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

[x-cloak] {
  display: none !important;
}

.product-category.text-sm.font-light {
  color: #919191;
}

.product-cart-discount-left {
  background: #f89521;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  font-size: 14px;
}

/* Product Slider Adjustments */
.common-slider-title-card {
  border-right: 1px solid var(--border-subtle);
}

.common-product-card {
  border-right: 1px solid var(--border-subtle);
  padding-left: 30px;
  padding-right: 30px;
}

.swiper-slide:last-child .common-product-card {
  border-right: none;
}
.common-slider-headding {
  padding-top: 40px;
}
i.lni {
  display: inline-flex;
}

.btn {
  cursor: pointer;
  display: inline-flex;
  padding: 10px 40px;
  border-radius: 50px;
}
.btn-transparant-dark {
  background: transparent;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
}
.btn-transparant-light {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.btn-lg {
  padding: 20px 60px;
}

.common-product-card,
.common-slider-title-card {
  padding-bottom: 60px;
}
.single-showcase-card {
  height: 400px;
  padding: 40px 70px;
}
.info-icon-section {
  border-bottom: 1px solid var(--border-subtle);
}
.info-icons:not(:last-child) {
  border-right: 1px solid var(--border-subtle);
}
.info-icons {
  padding: 15px 0px;
}
.info-icons:not(:first-child) {
  padding-left: 40px;
}

button {
  cursor: pointer;
}
.showcase-full-section {
  height: 675px;
  padding: 80px 0px;
}

.color-category-section h3 {
  padding: 40px 0px;
}

.empty-color-set {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  content: "";
  display: block;
}
.color-category-list {
  padding-left: 40px;
}

.sec-padding {
  padding: 50px 0px;
}

.strock-outline-text {
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1em;
  -webkit-text-stroke-width: 1px;
  stroke-width: 1px;
  -webkit-text-stroke-color: #ccc;
  stroke: #ccc;
  color: #fff;
}
.heading-container {
  margin-bottom: 140px;
}

.heading-container h2 {
  margin-bottom: 20px;
}
.review-slider {
  height: 300px;
  padding-top: 30px;
}
.blog-wrapper {
  padding: 50px 20px;
  border-left: 1px solid var(--border-subtle);
}
section.blog-section {
  transform: translateX(-1px);
}
.overview-box:not(:last-child) {
  border-right: 1px solid var(--border-subtle);
}
.overview-box {
  padding: 40px 0px;
}
.overview-box:not(:first-child) {
  padding-left: 40px;
}
.instagram-slider {
  position: relative;
  overflow: hidden;
}

.instagram-slider .overy-icon {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 10;
}

.instagram-slider:hover .overy-icon {
  opacity: 1;
}

.instagram-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.instagram-slider:hover img {
  transform: scale(1.1);
}

.bottom-instagram-sliders {
  padding: 0;
  overflow: hidden;
}

.bottom-instagram-sliders .swiper-slide {
  height: auto;
  aspect-ratio: 1 / 1;
}
.why-chooose-us {
  background: #e6e7ea;
  padding: 80px 0px;
}
.who-trust-us {
  padding: 80px 0px;
}
.box-1 {
  padding: 30px;
}
.mx-auto {
  margin-inline: auto;
}

/* Marquee Effect */
.partners-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.partners-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.partner-item {
  padding: 0 50px;
  flex-shrink: 0;
}

.partner-item img {
  height: 60px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.partner-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.main-footer {
  padding-top: 80px;
  background:
    linear-gradient(#ffffffdf, #ffffffdf),
    url(../img/footer-bg.jpg) center / cover no-repeat;
  background-attachment: fixed;
  border-top: 1px solid var(--border-subtle);
}

.footer-box h3 {
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.social-box h3 {
  margin-bottom: 5px;
}
.footer-box ul li a {
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-flex;
}

.footer-box ul li a:hover {
  color: var(--text-main) !important;
  transform: translateY(-3px);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  font-size: 1.1rem;
  background: transparent;
}

.social-icon:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(193, 154, 107, 0.3);
}
.social-icon:hover i {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 60px;
}

/* Shop Page Grid Borders */
.shop-grid {
  border-top: 1px solid var(--border-subtle);
  border-left: 1px solid var(--border-subtle);
}
.shop-grid .common-product-card {
  border-bottom: 1px solid var(--border-subtle);
}
.shop-grid .common-product-card:nth-child(4n) {
  border-right: none;
}
/* Remove bottom border for the last row if it's perfectly filled (e.g. 8 items) */
.shop-grid .common-product-card:nth-last-child(-n + 4) {
  border-bottom: none;
}

.live-chat-button {
  width: 50px;
  height: 50px;
  z-index: 99999;
  bottom: 50px;
  right: 40px;
  border-radius: 50px;
  background: #f89521;
  cursor: pointer;
  scale: 1.4;
}
.live-chat-button svg {
  fill: #fff;
}
