* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root{
  --primary-color: #fedb0c;
}

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

.primary-text{
  color: var(--primary-color);
}

.clean-link{
  color: inherit;
  text-decoration: none;
}

.text-xs{
  font-size: 13px !important;
}

.bg-overlay{
  background-color: rgba(0, 0, 0, 0.5);
}

.w-90{
  width: 90% !important;
}


.cursor-pointer{
  cursor: pointer;
}

.header-top {
  overflow: hidden;
}

.marquee-wrapper {
  width: 100%;
  overflow: hidden;
}

.header-marquee-content {
  display: flex;
  width: max-content;
  gap: 60px;
  animation: scrollMarquee 25s linear infinite;
}

.header-marquee-content span {
  white-space: nowrap;
  font-size: 14px;
}

@keyframes scrollMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.header-top:hover .header-marquee-content {
  animation-play-state: paused;
}


/* Header appear animation */
.header-animate {
  animation: headerSlideDown 0.8s ease forwards;
}

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


.header-bottom span {
  opacity: 0;
  transform: translateY(10px);
  animation: navFade 0.6s forwards;
}

.header-bottom span:nth-child(1){animation-delay:.2s}
.header-bottom span:nth-child(2){animation-delay:.4s}
.header-bottom span:nth-child(3){animation-delay:.6s}
.header-bottom span:nth-child(4){animation-delay:.8s}
.header-bottom span:nth-child(5){animation-delay:1s}

@keyframes navFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.outline-none:focus {
  outline: none;
}

.offcanvas-start {
  width: 320px;
}

.offcanvas-end {
  width: 360px;
}

.cart-item-container{
  max-height: 250px;
  overflow-y: scroll;
}

.search-mobile-product-container{
  overflow-x: auto;
  white-space: nowrap;
}

.search-mobile-product-item{
  max-width: 240px;
  flex: 0 0 auto;
}

.celebrity-fragrance-title-container::before,
.celebrity-fragrance-title-container::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #333;
}

.best-seller-title-container::before,
.best-seller-title-container::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid #333;
}

.celebrity-fragrance-item {
  position: relative;
  overflow: hidden;
}

.quick-add-overlay {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(2px);
  border-radius: 8px;
}

.quick-add-box {
  border-top: 1px solid #eee;
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.size-btn.active-size {
  background-color: #000;
  color: #fff;
  border-color: #000;
}



/* ── Search Mega Menu ── */
/* ── Search Mega Menu ── */
 .search-mega-menu {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: 560px;
  background: #fff;
  border: 1px solid #eee;
  padding: 24px 12px;
  
} 

.header-animate {
  will-change: transform;
}

.trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trending-tags span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #ddd;
  /* border-radius: 20px; */
  padding: 5px 14px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}


.trending-tags span:hover {
  background: #f5f5f5;
}

.product-card {
  position: relative;
  background: #f8f8f8;
  border-radius: 8px;
  text-align: center;
}

.product-card .offer {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--primary-color);
  /* color: #fff; */
  color: black;
  font-size: 13px;
  padding: 2px;
}

/* Make header relatively positioned so mega menu aligns correctly */
/* header {
  position: relative;
	
}
header,
.container,
.row {
  overflow: visible !important;
}

.header-animate {
  position: relative;
  z-index: 999999;
}
.col-4:last-child {
  position: relative;
} */

/* ── Image crossfade ── */

.cf-img-wrapper {
  height: 260px;
  overflow: hidden;
}

@media screen and (max-width: 526px) {
  .cf-img-wrapper {
    height: 160px;
    overflow: hidden;
  }
}
/* 
.cf-img-default,
.cf-img-hover {
  transition: opacity 0.4s ease;
}

.cf-img-hover {
  opacity: 0;
  background: #f8f8f8;
}

.cf-card:hover .cf-img-default {
  opacity: 0;
}

.cf-card:hover .cf-img-hover {
  opacity: 1;
} */


.customer-container{
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
}

/* hide scrollbar */
.customer-container::-webkit-scrollbar{
  display: none;
}

.customer-item{
      min-height: 331px;
      
  max-width: 188px;
  flex-shrink: 0;
}

/* section */
.testimonial-section{
overflow:hidden;
}

/* slider rows */
.testimonial-row{
display:flex;
gap:20px;
width:max-content;
}

/* animation */
.scroll-left{
animation:scrollLeft 30s linear infinite;
}

.scroll-right{
animation:scrollRight 30s linear infinite;
}

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

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

/* card */
.testimonial-card{
width:320px;
background:#fff;
border-radius:15px;
display: flex;
flex-direction: column;
justify-content: space-between;
padding:25px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
transition:all .3s ease;
cursor:pointer;
}

.testimonial-card:hover{
transform:translateY(-10px);
box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* quote icon */
.quote{
font-size:30px;
margin-bottom:10px;
}

/* profile */
.profile{
margin-top:20px;
}


.profile-name{
font-weight:600;
font-size:14px;
}

.profile-role{
font-size:12px;
color:#777;
}



/* pause animation on hover */
.pause:hover .scroll-left,
.pause:hover .scroll-right{
animation-play-state:paused;
}





.footer-section {
  background: #0c1b17;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  text-decoration: none;
  color: #ddd;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-input {
  background: transparent;
  border: 1px solid #888;
  color: #fff;
}

.footer-input::placeholder {
  color: #ccc;
}

/* ================= HEADER OVERRIDE ================= */

header,
.container,
.row{
  overflow: unset !important;
}

.header-animate{
  position: relative !important;
  z-index: 1000 !important;
  background: #fff !important;
}

.header-top{
  background: #000 !important;
  overflow: hidden !important;
}

.header-marquee-content{
  display: flex !important;
  gap: 40px !important;
  width: max-content !important;
}

.header-marquee-content span{
  white-space: nowrap !important;
  font-size: 12px !important;
  color: #fff !important;
}

#menuCanvas{
  width: 280px !important;
  background: #fff !important;
  z-index: 999999 !important;
}

#menuCanvas .offcanvas-header{
  padding: 20px !important;
  border-bottom: 1px solid #eee !important;
}

#menuCanvas .offcanvas-body{
  padding: 20px !important;
}

.mobile-menu,
.mobile-menu-list{
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mobile-menu li,
.mobile-menu-list li{
  margin-bottom: 22px !important;
}

.mobile-menu li a,
.mobile-menu-list li a{
  text-decoration: none !important;
  color: #111 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  display: block !important;
}

.offcanvas-backdrop.show{
  opacity: .4 !important;
}
