/* TOP BAR */
/* ================= TOPBAR ================= */
 :root{
  --primary-color:#4E342E;
  --secondary-color:#8D6E63;
  --accent-color:#D7B899;
  --cream:#FAF6F1;
  --light:#FFFDFB;
  --text-dark:#2B2B2B;
  --text-light:#ffffff;
  --border-light:#E8DED5;
}

/* TOPBAR */
.topbar{
  background: linear-gradient(90deg,#4E342E,#6D4C41);
  padding: 10px 0;
  color:#fff;
  font-size:13px;
}

.top-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.topbar-info{
  display:flex;
  align-items:center;
  gap:18px;
}

.topbar-info a{
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.topbar-info a:hover{
  color:var(--accent-color);
}

.topbar-right{
  display:flex;
  align-items:center;
  gap:15px;
}

.topbar-tagline{
  color:#f5e9df;
  font-size:12px;
  letter-spacing:0.5px;
}

/* SOCIAL */
.social-links{
  display:flex;
  gap:8px;
}

.social-links a{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.12);
  color:#fff;
  text-decoration:none;
  transition:0.3s;
}

.social-links a:hover{
  background:var(--accent-color);
  transform:translateY(-3px);
}

/* HEADER */
/* ============================= */
/* PREMIUM DESKTOP HEADER */
/* ============================= */

.main-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(215,184,153,0.25);
  box-shadow: 0 10px 35px rgba(0,0,0,0.06);
}

.header-flex{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}

/* LOGO */
.logo{
  position:relative;
}

.logo img{
  height:74px;
  transition:0.4s ease;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.08));
}

.logo img:hover{
  transform:scale(1.06) rotate(-1deg);
}

/* NAVIGATION */
.nav-menu{
  display:flex;
  align-items:center;
  gap:10px;
  list-style:none;
  margin:0;
  padding:10px;
  background:rgba(255,255,255,0.75);
  border:1px solid rgba(215,184,153,0.18);
  border-radius:60px;
  backdrop-filter:blur(10px);
  box-shadow:0 8px 24px rgba(0,0,0,0.05);
}

.nav-menu li{
  position:relative;
}

.nav-menu a{
  position:relative;
  text-decoration:none;
  color:var(--text-dark);
  font-size:15px;
  font-weight:600;
  padding:13px 22px;
  border-radius:40px;
  overflow:hidden;
  transition:0.35s ease;
  z-index:1;
}

/* HOVER BG EFFECT */
.nav-menu a::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg,#EAD8C7,#D7B899);
  opacity:0;
  transition:0.35s ease;
  z-index:-1;
  border-radius:40px;
}

.nav-menu a:hover::before{
  opacity:1;
}

.nav-menu a:hover{
  color:#4E342E;
  transform:translateY(-2px);
}

/* ACTIVE MENU */
.nav-menu a.active{
  background:linear-gradient(135deg,#6D4C41,#3E2723);
  color:#fff;
  box-shadow:0 10px 20px rgba(78,52,46,0.22);
}

/* GLOW EFFECT */
.nav-menu a.active::after{
  content:"";
  position:absolute;
  width:60%;
  height:8px;
  background:rgba(255,255,255,0.35);
  left:20%;
  top:5px;
  border-radius:20px;
}

/* CTA BUTTON */
.btn-cta{
  position:relative;
  background:linear-gradient(135deg,#D7B899,#8D6E63);
  color:#fff;
  padding:13px 28px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:0.3px;
  overflow:hidden;
  transition:0.4s ease;
  box-shadow:
    0 10px 30px rgba(141,110,99,0.28),
    inset 0 1px 1px rgba(255,255,255,0.3);
}

.btn-cta::before{
  content:"";
  position:absolute;
  top:0;
  left:-120%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
  );
  transition:0.6s;
}

.btn-cta:hover::before{
  left:120%;
}

.btn-cta:hover{
  transform:translateY(-3px) scale(1.02);
  color:#fff;
}

/* ============================= */
/* PREMIUM MOBILE MENU */
/* ============================= */

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:14px;
  background:linear-gradient(135deg,#8D6E63,#4E342E);
  color:#fff;
  align-items:center;
  justify-content:center;
  font-size:28px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(78,52,46,0.22);
  transition:0.3s;
}

.menu-toggle:hover{
  transform:scale(1.05);
}

/* MOBILE */
@media(max-width:768px){

  .topbar{
    display:none !important;
  }
  .header-flex{
    padding:12px 0;
  }

  .logo img{
    height:65px;
  }

  .menu-toggle{
    display:flex;
  }

  .btn-cta{
    display:none;
  }

  /* MOBILE DROPDOWN */
  .nav-menu{
    position:absolute;
    top:105%;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding:18px;
    display:none;

    background:rgba(255,255,255,0.82);
    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.4);

    border-radius:26px;

    box-shadow:
      0 20px 60px rgba(0,0,0,0.14),
      inset 0 1px 1px rgba(255,255,255,0.6);

    animation:premiumMenu 0.4s ease;
  }

  .nav-menu.show{
    display:flex;
  }

  /* MENU ITEM */
  .nav-menu a{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:16px 18px;
    border-radius:18px;
    font-size:16px;
    font-weight:600;

    background:rgba(255,255,255,0.55);

    border:1px solid rgba(215,184,153,0.18);

    transition:0.35s ease;
  }

  /* ICON STYLE */
  .nav-menu a::after{
    content:"➜";
    font-size:14px;
    opacity:0;
    transform:translateX(-10px);
    transition:0.3s ease;
  }

  .nav-menu a:hover::after{
    opacity:1;
    transform:translateX(0);
  }

  /* HOVER */
  .nav-menu a:hover{
    background:linear-gradient(135deg,#F7EFE7,#E8D5C4);
    transform:translateX(4px);
    color:#4E342E;
  }

  /* ACTIVE */
  .nav-menu a.active{
    background:linear-gradient(135deg,#6D4C41,#3E2723);
    color:#fff;
    box-shadow:0 10px 20px rgba(78,52,46,0.2);
  }

}

/* ANIMATION */
@keyframes premiumMenu{
  from{
    opacity:0;
    transform:translateX(-50%) translateY(-20px) scale(0.95);
  }
  to{
    opacity:1;
    transform:translateX(-50%) translateY(0) scale(1);
  }
}


/* MODERN HERO SECTION */
/* ===== HERO CAROUSEL ===== */
.hero-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-container {
  position: relative;
  width: 100%;

  /* IMPORTANT FIX */
  height: auto;           /* fixed height hata diya */
  max-height: none;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

/* SLIDE */
.carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGE FULL SHOW (NO CUT) */
.carousel-slide img {
  width: 100%;
  height: auto;          /* IMPORTANT */
  object-fit: contain;   /* full image visible */
  display: block;
}

/* ===== ARROWS ===== */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 10;
  transition: 0.3s;
}

.carousel-btn:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* ===== DOTS ===== */
.carousel-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #fff;
  transform: scale(1.2);
}

/* ===== MOBILE FIX ===== */
@media(max-width: 768px) {

  .carousel-container {
    height: auto;   /* IMPORTANT */
  }

  .carousel-slide img {
    width: 100%;
    height: auto;
    object-fit: contain; /* NO CUT mobile */
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .carousel-dots {
    bottom: 10px;
  }
}
/* Section */
/* ================= CATEGORIES ================= */
.luxury-category-section {
  padding: 50px 0;
  background: linear-gradient(180deg, #ffffff 0%, #fef9f6 100%);
  position: relative;
  overflow: hidden;
}

.category-heading {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.category-heading .small-title {
  color: var(--secondary-color);
  letter-spacing: 6px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 18px;
}

.category-heading h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(38px, 6vw, 56px);
  color: var(--primary-color);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.category-heading h2 span {
  color: var(--accent-color);
  font-style: italic;
  font-weight: 400;
}

.category-heading p {
  font-size: 18px;
  color: var(--secondary-color);
  line-height: 1.8;
  opacity: 0.9;
}

.heading-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  margin: 35px auto 0;
  border-radius: 50px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.luxury-card {
  position: relative;
  height: 540px;
  border-radius: 45px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 60px;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  border: 1px solid rgba(141, 110, 99, 0.08);
  background-color: #3E2723; /* Fallback background */
}

.candle-card, .soap-card { background: none; }

.card-content {
  position: relative;
  z-index: 3;
  max-width: 440px;
  transition: all 0.5s ease;
}

.card-subtitle {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 18px;
  display: block;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.luxury-card h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.luxury-card h2 span { color: var(--accent-color); }

.luxury-card p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: var(--primary-color);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
}

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

.card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.8s ease;
}

/* Elegant Gradient Overlay */
.card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.25) 50%, transparent 100%);
  z-index: 2;
  transition: background 0.5s ease;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover States */
.luxury-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 40px 70px rgba(78, 52, 46, 0.15);
}

.luxury-card:hover .card-content { transform: translateX(15px); }

.luxury-card:hover .card-image {
  transform: none;
}

.luxury-card:hover .card-image::after {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.35) 50%, transparent 100%);
}

.luxury-card:hover .shop-btn {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 15px 35px rgba(78, 52, 46, 0.25);
}

.luxury-card:hover .shop-btn i { transform: translateX(5px); }

/* Media Queries */
@media (max-width: 1200px) {
  .luxury-card { height: 500px; padding: 50px; }
  .luxury-card h2 { font-size: 44px; }
  .card-image { width: 85%; }
}

@media (max-width: 991px) {
  .luxury-category-section { padding: 80px 0; }
  .category-grid { grid-template-columns: 1fr; gap: 30px; }
  .luxury-card { height: 480px; }
}

@media (max-width: 767px) {
  .luxury-category-section { padding: 60px 15px; }
  .category-heading { margin-bottom: 40px; }
  .category-heading h2 { font-size: 30px; }
  .category-heading p { font-size: 15px; }
  .category-grid { gap: 20px; }

  .luxury-card {
    height: 400px;
    padding: 30px 25px;
    border-radius: 25px;
    align-items: flex-end;
  }

  .luxury-card h2 { 
    font-size: 32px; 
    margin-bottom: 12px;
  }

  .luxury-card p {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .card-image::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  }

  .card-content { 
    max-width: 100%; 
    margin-bottom: 0; 
    transform: none !important; 
  }

  .shop-btn {
    padding: 12px 24px;
    font-size: 13px;
  }

  .card-image { position: absolute; transform: none !important; }
  .card-image img { filter: none; }
}
/* PREMIUM TRUST BAR SECTION */
/* ===== TRUST BAR (FIXED) ===== */
.premium-trust-bar {
  background: linear-gradient(to bottom, #ffffff, #fdfaf8);
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);

  /* IMPORTANT FIX */
  margin-top: 0;              /* overlap hata diya */
  border-radius: 0;           /* cut issue remove */
  box-shadow: none;           /* clean look */

  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* remove top glow issue */
.premium-trust-bar::before {
  display: none;
}

/* ===== MARQUEE ===== */
.trust-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* IMPORTANT: smooth infinite scroll fix */
.trust-track {
  display: flex;
  align-items: center;
  gap: 25px;
  width: max-content;
  animation: trustScroll 15s linear infinite;
}

/* ===== CARD ===== */
.trust-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
  padding: 16px 20px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(122, 62, 43, 0.08);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

/* hover */
.trust-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== ICON ===== */
.trust-icon-container {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon-container i {
  font-size: 18px;
  color: #fff;
}

/* ===== TEXT ===== */
.trust-info h6 {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.trust-info p {
  margin: 0;
  font-size: 12px;
  color: #777;
  margin-top: 2px;
  line-height: 1.3;
}

/* ===== SCROLL ANIMATION (SMOOTH FIX) ===== */
@keyframes trustScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  .premium-trust-bar {
    padding: 16px 0;
    margin-top: 0;      /* IMPORTANT */
    border-radius: 0;   /* IMPORTANT */
  }

  .trust-track {
    gap: 12px;
    width: max-content;
    animation: trustScroll 18s linear infinite;
  }

  .trust-card {
    min-width: 200px;
    padding: 12px;
  }

  .trust-icon-container {
    width: 40px;
    height: 40px;
  }

  .trust-icon-container i {
    font-size: 14px;
  }

  .trust-info h6 {
    font-size: 13px;
  }

  .trust-info p {
    font-size: 11px;
  }
}

.about-banner {
  width: 100%;
  height: 350px; /* Slightly taller banner */
  background: url('../../assets/img/about1.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

/* Dark overlay for text readability */
.banner-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  display: flex;
  align-items: center;
}

/* Text Styling */
.about-banner h1 {
  color: white;
  font-size: 48px; /* Larger heading for impact */
  font-weight: 600;
  margin-bottom: 6px;
}

.about-banner h1 span {
  color: var(--accent-color);
  font-family: "Josefin Sans", sans-serif;
}

.about-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 520px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
  .about-banner {
    height: 250px;
  }

  .about-banner h1 {
    font-size: 28px;
  }

  .about-banner p {
    font-size: 14px;
  }
}

/* Story */
/* PREMIUM ARTISAN SECTION */
/* ========================= */
/* LUXURY ABOUT SECTION */
/* ========================= */

.luxury-about-section{
  padding:50px 0;
  background:
  linear-gradient(to bottom,#fff,#fdf7f2);
  overflow:hidden;
  position:relative;
}

/* BACKGROUND GLOW */
.luxury-about-section::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:
  radial-gradient(circle,
  rgba(215,184,153,0.18),
  transparent 70%);
  top:-150px;
  right:-120px;
}

/* ========================= */
/* IMAGE AREA */
/* ========================= */

.about-visual-wrap{
  position:relative;
  max-width:560px;
  margin:auto;
  padding-bottom:70px;
}

/* MAIN IMAGE */
.main-visual{
  position:relative;
  overflow:hidden;
  border-radius:40px;
  z-index:2;
  box-shadow:
  0 30px 60px rgba(0,0,0,0.12);
}

.main-visual img{
  width:100%;
  display:block;
  transition:0.5s ease;
}

.main-visual:hover img{
  transform:scale(1.05);
}

/* FLOATING IMAGE */
.floating-visual{
  position:absolute;
  right:-30px;
  bottom:0;
  width:240px;
  border-radius:30px;
  overflow:hidden;
  border:8px solid #fff;
  z-index:3;
  box-shadow:
  0 20px 40px rgba(0,0,0,0.12);
}

.floating-visual img{
  width:100%;
  display:block;
}

/* EXPERIENCE */
.experience-badge{
  position:absolute;
  left:-30px;
  top:60px;
  width:140px;
  height:140px;
  background:#fff;
  border-radius:30px;
  z-index:5;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;

  box-shadow:
  0 15px 40px rgba(0,0,0,0.1);

  border:1px solid rgba(215,184,153,0.25);
}

.experience-badge h2{
  font-size:46px;
  margin:0;
  color:#4E342E;
  font-weight:800;
  line-height:1;
}

.experience-badge p{
  margin:8px 0 0;
  text-align:center;
  color:#6D4C41;
  font-size:13px;
  line-height:1.5;
  font-weight:600;
}

/* FLOATING CIRCLE */
.floating-circle{
  position:absolute;
  width:130px;
  height:130px;
  border-radius:50%;
  background:
  linear-gradient(135deg,#F8E5D4,#EFD3B8);
  right:-50px;
  top:-40px;
  z-index:1;
  opacity:0.7;
}

/* ========================= */
/* CONTENT */
/* ========================= */

.about-content{
  padding-left:40px;
}

.about-label{
  display:inline-block;
  color:#8D6E63;
  letter-spacing:4px;
  font-size:13px;
  font-weight:800;
  margin-bottom:20px;
}

.about-content h2{
  font-size:clamp(38px,5vw,60px);
  line-height:1.1;
  color:#3E2723;
  font-weight:800;
  margin-bottom:25px;
  font-family:'Josefin Sans',sans-serif;
}

.about-content h2 span{
  color:#B08968;
}

.about-description{
  font-size:17px;
  line-height:1.9;
  color:#6D4C41;
  margin-bottom:40px;
}

/* ========================= */
/* FEATURE GRID */
/* ========================= */

.about-feature-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.about-feature-box{
  background:#fff;
  border-radius:24px;
  padding:22px;
  display:flex;
  gap:16px;
  transition:0.4s ease;
  border:1px solid rgba(215,184,153,0.15);

  box-shadow:
  0 10px 30px rgba(0,0,0,0.04);
}

.about-feature-box:hover{
  transform:translateY(-8px);
  box-shadow:
  0 20px 40px rgba(0,0,0,0.08);
}

.feature-icon{
  width:56px;
  height:56px;
  min-width:56px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:18px;

  background:
  linear-gradient(135deg,#F6E4D5,#EACDB0);

  color:#6D4C41;
  font-size:24px;
}

.about-feature-box h5{
  font-size:17px;
  font-weight:700;
  margin-bottom:8px;
  color:#3E2723;
}

.about-feature-box p{
  font-size:14px;
  line-height:1.7;
  color:#777;
  margin:0;
}

/* ========================= */
/* BUTTONS */
/* ========================= */

.about-btn-wrap{
  margin-top:45px;
  display:flex;
  align-items:center;
  gap:28px;
}

.discover-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  background:
  linear-gradient(135deg,#6D4C41,#3E2723);

  color:#fff;
  text-decoration:none;
  padding:16px 36px;
  border-radius:60px;
  font-weight:700;

  box-shadow:
  0 15px 30px rgba(78,52,46,0.18);

  transition:0.4s ease;
}

.discover-btn:hover{
  transform:translateY(-4px);
  color:#fff;
}

.contact-link{
  color:#3E2723;
  font-weight:700;
  text-decoration:none;
  display:flex;
  align-items:center;
  gap:10px;
  transition:0.3s ease;
}

.contact-link:hover{
  color:#B08968;
  gap:16px;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:992px){

  .about-content{
    padding-left:0;
    margin-top:20px;
  }

}

@media(max-width:768px){

  .luxury-about-section{
    padding:20px 0;
  }

  .about-visual-wrap{
    padding-bottom:40px;
  }

  .floating-visual{
    width:180px;
    right:0;
    bottom:-10px;
  }

  .experience-badge{
    width:110px;
    height:110px;
    left:0;
    top:20px;
  }

  .experience-badge h2{
    font-size:34px;
  }

  .experience-badge p{
    font-size:11px;
  }

  .about-content h2{
    font-size:40px;
  }

  .about-description{
    font-size:15px;
  }

  .about-feature-grid{
    grid-template-columns:1fr;
  }

  .about-btn-wrap{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }

}

/* ================= BANNER ================= */
/* ================= BANNER ================= */
.section-banner {
  position: relative;
  background: url('../img/3 (1).png') center/cover no-repeat;

  height: 330px;          /* 🔥 fixed height hatao */
  padding: 40px 20px;    /* balanced spacing */

  margin-bottom: 30px;
  border-radius: 12px;

  display: flex;
  align-items: flex-start;   /* 🔥 center se hatao */
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {

  .section-banner {
    padding: 25px 15px;   /* 🔥 less padding */
    border-radius: 10px;
    height: 90px;

    align-items: flex-start;  /* top aligned */
    background-position: center;
  }

}
/*---------------------------------------------
new arrival
-------------------------------------------------*/
/* =========================== */
/* FEATURED COLLECTION SECTION */
/* =========================== */

.featured-collection-section{
  padding:50px 0;
  background:
  linear-gradient(to bottom,#fff,#fdf7f2);
  position:relative;
  overflow:hidden;
}

/* BACKGROUND EFFECT */
.featured-collection-section::before{
  content:"";
  position:absolute;
  width:550px;
  height:550px;
  top:-180px;
  right:-120px;

  background:
  radial-gradient(circle,
  rgba(214,180,145,0.18),
  transparent 70%);
}

/* ====================== */
/* HEADING */
/* ====================== */

.featured-heading{
  margin-bottom:60px;
  position:relative;
  z-index:2;
}

.featured-label{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  letter-spacing:4px;
  color:#9C6B4F;
  margin-bottom:15px;
}

.featured-heading h2{
  font-size:clamp(34px,5vw,56px);
  color:#3E2723;
  font-weight:800;
  line-height:1.2;
  font-family:'Josefin Sans',sans-serif;
}

/* ====================== */
/* GRID */
/* ====================== */

.featured-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  position:relative;
  z-index:2;
}

/* ====================== */
/* CARD */
/* ====================== */

.featured-card{
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  position:relative;
  transition:0.45s ease;

  border:1px solid rgba(210,180,140,0.15);

  box-shadow:
  0 15px 40px rgba(0,0,0,0.05);
}

/* HOVER */
.featured-card:hover{
  transform:translateY(-10px);

  box-shadow:
  0 25px 50px rgba(0,0,0,0.1);
}

/* IMAGE */
.featured-image{
  height:280px;
  overflow:hidden;
  position:relative;
}

.featured-image::after{
  content:"";
  position:absolute;
  inset:0;

  background:
  linear-gradient(to top,
  rgba(0,0,0,0.15),
  transparent 60%);
}

.featured-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.6s ease;
}

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

/* CONTENT */
.featured-content{
  padding:25px 20px 30px;
  text-align:center;
}

/* PRODUCT TITLE */
.featured-content h3{
  font-size:22px;
  font-weight:700;
  line-height:1.4;
  color:#3E2723;
  margin-bottom:22px;
  font-family:'Josefin Sans',sans-serif;
}

/* BUTTON */
.shop-now-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:100%;
  padding:14px 20px;

  border-radius:60px;
  text-decoration:none;

  background:
  linear-gradient(135deg,#7B5244,#3E2723);

  color:#fff;
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;

  transition:0.4s ease;
}

.shop-now-btn:hover{
  color:#fff;
  transform:translateY(-3px);

  background:
  linear-gradient(135deg,#B08968,#6D4C41);
}

/* ====================== */
/* TABLET */
/* ====================== */

@media(max-width:992px){

  .featured-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* ====================== */
/* MOBILE */
/* ====================== */

@media(max-width:768px){

  .featured-collection-section{
    padding:75px 0;
  }

  .featured-heading{
    margin-bottom:40px;
  }

  .featured-heading h2{
    font-size:34px;
  }

  .featured-grid{
    gap:18px;
  }

  .featured-card{
    border-radius:22px;
  }

  .featured-image{
    height:190px;
  }

  .featured-content{
    padding:18px 14px 20px;
  }

  .featured-content h3{
    font-size:16px;
    margin-bottom:15px;
  }

  .shop-now-btn{
    padding:11px 15px;
    font-size:13px;
  }

}

.luxury-why-section{
  padding:50px 0;
  background: linear-gradient(180deg, #fdf8f4 0%, #ffffff 100%);
  position:relative;
  overflow:hidden;
}

.luxury-why-section::before{
  content:"";
  position:absolute;
  width:600px;
  height:600px;
  top:-200px;
  left:-150px;
  background: radial-gradient(circle, rgba(215, 184, 153, 0.15), transparent 70%);
  pointer-events: none;
}

.luxury-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.luxury-why-card {
  background: #fff;
  padding: 45px 25px;
  border-radius: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(176, 137, 104, 0.1);
  box-shadow: 0 15px 35px rgba(78, 52, 46, 0.05);
  position: relative;
  z-index: 1;
}

.luxury-why-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(78, 52, 46, 0.12);
  border-color: var(--accent-color);
}

.luxury-why-card .icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: #fff;
  font-size: 36px;
  box-shadow: 0 10px 20px rgba(78, 52, 46, 0.2);
}

.luxury-why-card h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.luxury-why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #6D4C41;
  margin: 0;
  opacity: 0.85;
}

@media(max-width:1200px){
  .luxury-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px){
  .luxury-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .luxury-why-card {
    padding: 35px 20px;
  }
}
/* ===== SECTION ===== */

/******** PREMIUM FAQ SECTION ********/
.faq-premium {
  padding: 50px 0;
  background: #fdfaf7;
  position: relative;
}

.faq-premium .small-title {
  color: var(--secondary-color);
  letter-spacing: 5px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.faq-premium .main-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(36px, 6vw, 50px);
  color: var(--primary-color);
  font-weight: 800;
}

.faq-premium .main-title span {
  color: var(--accent-color);
  font-style: italic;
  font-weight: 400;
}

.faq-premium .subtitle {
  font-size: 17px;
  color: #7a6a5e;
  margin-top: 15px;
  max-width: 600px;
  margin: 15px auto 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.faq-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 25px;
  border: 1px solid rgba(215, 184, 153, 0.2);
  box-shadow: 0 10px 30px rgba(78, 52, 46, 0.03);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  text-align: left;
}

.faq-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(78, 52, 46, 0.08);
  border-color: var(--accent-color);
}

.faq-icon-top {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  box-shadow: 0 8px 15px rgba(208, 140, 96, 0.2);
}

.faq-card h4 {
  font-size: 19px;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Josefin Sans', sans-serif;
}

.faq-card p {
  font-size: 15px;
  color: #665c56;
  line-height: 1.7;
  margin: 0;
}

@media(max-width:992px){
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:768px){
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq-card {
    padding: 35px 25px;
  }
}


/******** PREMIUM BULK SECTION ********/
.bulk-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--background-light), #ffffff);
  position: relative;
}

/* subtle texture */
.bulk-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(212,163,115,0.08), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(156,102,68,0.08), transparent 60%);
  pointer-events: none;
}

.bulk-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  border: 1px solid var(--border-light);
  transition: 0.4s ease;
}

/* hover lift */
.bulk-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}

/* LEFT IMAGE */
.bulk-image {
  width: 55%;
  height: 380px;
  position: relative;
  overflow: hidden;
}

.bulk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.bulk-wrapper:hover .bulk-image img {
  transform: scale(1.08);
}

/* soft overlay */
.bulk-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(47,62,70,0.15),
    transparent
  );
}

/* RIGHT CARD */
.bulk-content {
  width: 45%;
  padding: 50px 40px;
  position: relative;
}

/* HEADING */
.bulk-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary-color);
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 10px;
}

/* SUBTITLE */
.bulk-content .subtitle {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* BULLET POINTS */
.bulk-points {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.bulk-points li {
  font-size: 14.5px;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
  color: var(--text-dark);
}

/* premium icon */
.bulk-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  border-radius: 50%;
}

/* CONTACT ROW */
.bulk-contact {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
  font-weight: 600;
  color: var(--primary-color);
}

/* CONTACT TAG STYLE */
.bulk-contact span {
  background: var(--background-light);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
}

/* RESPONSIVE */
@media(max-width: 992px){
  .bulk-wrapper {
    flex-direction: column;
  }

  .bulk-image,
  .bulk-content {
    width: 100%;
  }

  .bulk-image {
    height: 260px;
  }
}

@media(max-width: 600px){
  .bulk-content {
    padding: 30px 20px;
  }

  .bulk-content h2 {
    font-size: 22px;
  }
}

/*------------------------------------------------
About Section
-------------------------------------------------*/
/* ================= ABOUT SECTION ================= */
/* ================= ABOUT SECTION ================= */
.about-new {
  background: var(--background-light);
  padding: 100px 0;
}

/* GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= IMAGE ================= */
.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* floating badge */
.image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;

  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);

  padding: 12px 16px;
  border-radius: 12px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.image-badge span {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary-color);
}

.image-badge p {
  font-size: 12px;
  margin: 0;
}

/* ================= CONTENT ================= */
.about-content .about-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-weight: 700;
}

.about-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin: 15px 0;
  color: var(--text-dark);
}

.about-content h2 span {
  color: var(--accent-color);
}

.about-highlight {
  font-weight: 600;
  margin-bottom: 15px;
}

.about-text {
  color: #666;
  line-height: 1.7;
}

/* ================= STATS ================= */
.about-stats {
  display: flex;
  gap: 30px;
  margin: 25px 0;
}

.about-stats h4 {
  margin: 0;
  color: var(--secondary-color);
  font-weight: 800;
}

.about-stats span {
  font-size: 12px;
  color: #777;
}

/* ================= BUTTONS ================= */
.about-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary-new {
  background: var(--secondary-color);
  color: #fff;
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline-new {
  border: 2px solid var(--secondary-color);
  padding: 12px 26px;
  border-radius: 40px;
  text-decoration: none;
  color: var(--secondary-color);
  font-weight: 600;
}

.btn-outline-new:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-buttons {
    flex-direction: column;
  }
}

/* ================= PROCESS SECTION ================= */
.process-section {
  background: #fff;
  padding: 30px 0;
}

/* HEADER */
.process-header .process-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--secondary-color);
  font-weight: 700;
}

.process-header h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 15px 0;
  color: var(--text-dark);
}

.process-header p {
  color: #666;
  max-width: 500px;
  margin: auto;
}

/* GRID */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

/* CARD */
.process-card {
  background: var(--background-light);
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid var(--border-light);
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* ICON NUMBER */
.process-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  margin: auto;
  margin-bottom: 15px;
}

/* TEXT */
.process-card h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 13px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
/*-------------------------------------------------
Contact Section
-------------------------------------------------*/
/* ================= CONTACT BANNER ================= */
/* ================= BANNER ================= */
.contact-banner {
  position: relative;
  background: url('../img/about3.png') center/cover no-repeat;
  padding: 60px 0 60px;
  overflow: hidden;
}

/* overlay */
.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 40, 50, 0.85),
    rgba(20, 30, 35, 0.75)
  );
  z-index: 1;
}

/* subtle glow */
.contact-banner::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-color), transparent);
  opacity: 0.1;
  z-index: 1;
}

/* content */
.banner-overlay {
  position: relative;
  z-index: 2;
}

.banner-content {
  max-width: 600px;
}

/* tag */
.banner-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 10px;
}

/* heading */
.banner-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.banner-content h1 span {
  color: var(--accent-color);
}

/* subtitle */
.banner-subtitle {
  color: rgba(255,255,255,0.75);
  margin-bottom: 18px;
  font-size: 14px;
}

/* breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}

.breadcrumb-item a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--accent-color);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .contact-banner {
    padding: 100px 0 60px;
  }

  .banner-content h1 {
    font-size: 32px;
  }
}
/* ================= CONTACT SECTION ================= */
.themed-contact {
  background: linear-gradient(to bottom, var(--background-light), #fff);
  padding: 100px 0;
}

/* ================= TITLE ================= */
.contact-title {
  font-weight: 800;
  color: var(--text-dark);
}

.contact-title span {
  color: var(--accent-color);
}

.contact-subtitle {
  color: #6b6b6b;
  max-width: 550px;
}

/* ================= INFO CARDS ================= */
.contact-info-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);

  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;

  border: 1px solid var(--border-light);
  transition: 0.4s ease;

  height: 100%;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

/* hover */
.contact-info-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* icon */
.contact-info-card i {
  font-size: 38px;
  color: var(--secondary-color);
  margin-bottom: 18px;
}

/* heading */
.contact-info-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

/* ================= MAP ================= */
.map-box {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.map-box iframe {
  filter: grayscale(0.2) contrast(1.05);
}

/* ================= FORM ================= */
.themed-form {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);

  padding: 40px;
  border-radius: 20px;

  border: 1px solid var(--border-light);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.themed-form h3 {
  color: var(--text-dark);
}

/* ================= INPUT ================= */
.themed-input {
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  padding: 14px 16px;
  background: #fafafa;
  transition: 0.3s ease;
  font-size: 14px;
}

/* focus effect */
.themed-input:focus {
  border-color: var(--accent-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212,163,115,0.2);
}

/* textarea resize */
textarea.themed-input {
  resize: none;
}

/* ================= BUTTON ================= */
.btn-submit-themed {
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  color: #fff;

  padding: 14px;
  border-radius: 50px;

  font-weight: 600;
  letter-spacing: 1px;

  border: none;
  transition: 0.3s ease;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* hover */
.btn-submit-themed:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* ================= SMALL DETAILS ================= */
.title-divider {
  border-radius: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .themed-contact {
    padding: 70px 0;
  }

  .themed-form {
    padding: 25px;
  }
}
/*---------------------------------------------
Shop Section
--------------------------------------------*/
/* ================= SHOP SECTION ================= */
/* ================= SHOP SECTION ================= */
.shop-section {
  background: linear-gradient(to bottom, #faf7f4, #ffffff);
  padding: 40px 0;
}

/* ================= HEADER ================= */
.shop-header .badge-outline {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.shop-header h2 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 800;
  color: var(--text-dark);
  font-family: "Josefin Sans", sans-serif;
}

/* ================= FILTER ================= */
.shop-filters {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 45px 0;
  position: relative;
  z-index: 20;
}

.filter-btn {
  padding: 10px 24px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  position: relative;
  z-index: 25;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ================= GRID ================= */
#productGrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

/* ================= CARD ================= */
.product-card {
  position: relative;
}

.product-box {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.35s ease;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  position: relative;
}

.product-card:hover .product-box {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ================= IMAGE ================= */
.product-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: #f5f5f5;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

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

/* ================= OVERLAY ================= */
.hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: 0.35s ease;
}

.product-card:hover .hover-overlay {
  opacity: 1;
}

/* ================= BUY BUTTON ================= */
.buy-btn {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    var(--secondary-color)
  );

  color: #fff;
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 1px;

  transform: translateY(20px);
  transition: all 0.35s ease;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.product-card:hover .buy-btn {
  transform: translateY(0);
}

.buy-btn:hover {
  transform: scale(1.05);
  color: #fff;
}

/* ================= INFO ================= */
.product-info {
  padding: 20px 15px;
  text-align: center;
}

.product-info h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.4;
  font-family: "Josefin Sans", sans-serif;
}

/* ================= BORDER GLOW ================= */
.product-box::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: 0.3s ease;
  pointer-events: none;
}

.product-card:hover .product-box::before {
  border-color: rgba(208,140,96,0.4);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  #productGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-img {
    height: 220px;
  }

  .product-info h5 {
    font-size: 14px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}
/*-------------------------------------------------
product detail page
-----------------------------------------------*/

/* PRODUCT DETAILS SECTION */
.product-details-section {
  background: var(--ivory);
  padding: 60px 20px;
}

/* CONTAINER */
.product-details-section .container {
  max-width: 1200px;
  margin: auto;
}

/* GRID LAYOUT */
.product-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT IMAGE */
.product-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}

.product-image img:hover {
  transform: scale(1.04);
}

/* RIGHT INFO */
.product-info {
  color: var(--charcoal);
}

/* CATEGORY TAG */
.product-category {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 6px;
}

/* PRODUCT NAME */
.product-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* DESCRIPTION */
.product-description {
  line-height: 1.7;
  font-size: 15px;
  color: #555;
}

/* META DETAILS */
.product-meta {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.product-meta strong {
  color: var(--charcoal);
}

/* ENQUIRY BUTTON */
.btn-enquiry {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  background: var(--terracotta);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s ease;
}

.btn-enquiry:hover {
  background: var(--charcoal);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .product-details-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-title {
    font-size: 26px;
  }

  .btn-enquiry {
    padding: 10px 22px;
    font-size: 13px;
  }
}




/* Footer */
/* ================= FOOTER ================= */
/* ================= PREMIUM FOOTER ================= */
footer, .main-footer {
  position: relative;
  background: linear-gradient(135deg, #2D1B17 0%, #4E342E 100%);
  color: rgba(255,255,255,0.9);
  padding: 50px 0 40px;
  overflow: hidden;
  border-top: 1px solid rgba(215, 184, 153, 0.15);
}

/* ===== TEXTURE OVERLAY (fabric feel) ===== */
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

/* ===== SOFT GLOW ===== */
footer::after {
  content: "";
  position: absolute;
  top: -150px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(215, 184, 153, 0.15), transparent 70%);
  opacity: 0.2;
  border-radius: 50%;
  z-index: 0;
}

.main-footer::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(215, 184, 153, 0.1), transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  z-index: 0;
}

footer::before,
footer::after {
  pointer-events: none;   /* 🔥 MOST IMPORTANT FIX */
}
/* ================= GRID ================= */
.footer-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 45px;
  max-width: 1200px;
  margin: auto;
}

/* ================= LOGO ================= */
.footer-logo img {
  height: 90px;
  margin-bottom: 25px;
  transition: 0.4s ease;
}

.footer-logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

/* ================= TEXT ================= */
footer p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 280px;
}

/* ================= HEADINGS ================= */
footer h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 14px;
  margin-bottom: 25px;
  font-weight: 700;
  color: #fff;
  position: relative;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* stylish underline */
footer h4::after {
  content: "";
  width: 35px;
  height: 3px;
  background: var(--accent-color);
  position: absolute;
  bottom: -10px;
  left: 0;
}

/* ================= LINKS ================= */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin-bottom: 14px;
}

footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

footer a:hover {
  color: #fff;
  transform: translateX(8px);
  text-shadow: 0 0 10px rgba(215, 184, 153, 0.4);
}
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 2;
}
/* ================= CONTACT ================= */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

footer i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
}

/* ================= SOCIAL ================= */
.footer-social {
  margin-top: 25px;
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(215, 184, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.35s ease;
}

/* hover glow */
.footer-social a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(215, 184, 153, 0.2);
}

/* ================= FOOTER BOTTOM ================= */
.footer-bottom {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;

  max-width: 1200px;
  margin: auto;

  font-size: 13px;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* highlight */
.footer-bottom strong {
  color: var(--accent-color);
}

/* credits */
.footer-bottom a {
  color: var(--secondary-color);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: var(--accent-color);
}

/* ================= SCROLL TOP ================= */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 25px;

  width: 44px;
  height: 44px;

  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  color: #fff;

  border-radius: 50%;
  font-size: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;

  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px) scale(1.08);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  footer p {
    margin: auto;
  }

  .footer-contact li {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}