
    :root{
      /* Light theme with brand yellow accents */
      --bg:#f6f7fb;          /* body background fixed (not black) */
      --paper:#ffffff;       /* card/section */
      --ink:#15161a;         /* primary text */
      --muted:#6d7280;       /* secondary text */
      --border:#e7e8ef;
      --brand:#f9c80e;
      --brand-2:#ffd756;
      --link:#0f172a;
      --nav:#ffffff;
      --nav-border:#ececf2;
      --topbar:#0f1117;      /* dark slim topbar */
      --topbar-text:#cbd5e1;
      --accent:#0f1117;
      --ring: rgba(249,200,14,.35);
      --shadow: 0 10px 30px rgba(0,0,0,.07);
    }

    *{box-sizing:border-box}
    html,body{margin:0;padding:0;font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--ink);background:var(--bg)}
    img{display:block;border-radius:10px}
    
    a{color:var(--link);text-decoration:none}
    

    /* Subtle background pattern for body */
    body{
      overflow-x: hidden;
      background:
        radial-gradient(40rem 20rem at 120% -10%, #fff9e6 0, transparent 50%),
        radial-gradient(32rem 16rem at -15% -10%, #e6f7ff 0, transparent 50%),
        var(--bg);
      
      }
    
    
    .container{max-width:1200px;margin:0 auto;padding:0 20px;}

 /* Topbar Base */
.topbar{
  --topbar-bg:#0f1117;
  --topbar-text:#cbd5e1;
  --topbar-border:#1c2230;
  --chip-border:#293245;
  --chip-bg-hover:#141a24;

  background:var(--topbar-bg);
  color:var(--topbar-text);
  font-size:14px;
  border-bottom:1px solid var(--topbar-border);
  padding: 8px 0;
  
  
}

/* Inner Layout */
.topbar .topbar-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;  /* Allows wrapping on small screens */
  gap: 12px;
}

/* Left Cluster: Phone + Email */
.topbar .top-left{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.topbar .top-left a{
  color:#e2e8f0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.topbar .top-left a:hover{ color: #fff; }
.topbar .top-sep{ opacity: .55; }

/* Right Cluster: Social Icons */
.topbar .top-right{
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Social Icon Style */
.topbar .top-right a{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--chip-border);
  border-radius: 50%;
  color: #e2e8f0;
  text-decoration: none;
  font-size: 16px;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.topbar .top-right a:hover{
  background: var(--chip-bg-hover);
  border-color: #39465f;
  color: #f9c80e;  /* brand pop */
  transform: translateY(-1px);
}

/* Focus Styles (for Keyboard Accessibility) */
.topbar a:focus-visible{
  outline: 2px solid #f9c80e;
  outline-offset: 2px;
  border-radius: 8px;
}

/* Container Utility (if not already defined) */
.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 20px; 
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .topbar .topbar-inner {
    flex-direction: column;  /* Stack items vertically */
    align-items: center;  /* Center align */
    padding: 8px 0;
    row-gap: 6px;  /* Vertical spacing */
  }

  .topbar .top-left {
    gap: 10px;
    justify-content: center;
  }

  .topbar .top-right {
    gap: 15px;
    justify-content: center; /* Ensures social icons are centered */
  }

  .topbar .top-right a {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .topbar .top-left {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;  /* Ensures phone/email info is centered */
  }
  .topbar .top-right {
    flex: 1 1 100%;
    justify-content: center;  /* Centers the social icons */
  }
  .topbar .top-left a span {
    font-size: 13px;  /* Slightly smaller labels */
  }
}

 /* ================== HEADER / NAV (desktop base) ================== */
  .fc-header{
    position: sticky; top: 0; z-index: 10;
    background: var(--nav);
    border-bottom: 1px solid var(--nav-border);
    backdrop-filter: saturate(120%) blur(8px);
  }
  .fc-container{
    max-width: 1200px; margin: 0 auto;
    padding: 0 16px;
    display: flex; align-items: center; justify-content: space-between;
    min-height: 68px;
  }
  .fc-logo{ font-weight: 700; font-size: 22px; letter-spacing: .3px; color: #0f1115; text-decoration: none; }

  .fc-nav{ display: flex; align-items: center; }
  .fc-nav-links{ display: flex; list-style: none; margin: 0; padding: 0; gap: 30px; }
  .fc-nav a{
    display: inline-block;
    padding: 10px 12px; border-radius: 12px; color: #0f1115; text-decoration: none;
    transition: background .25s ease;
  }
  .fc-nav a:hover, .fc-nav a.active{ background: #f1f5f9; }

  /* Hamburger (hidden on desktop) */
  .fc-nav-toggle{
    display: none;
    background: none;
    border: 1px solid #d6d9e4;
    border-radius: 10px;
    padding: 8px 10px;
    cursor: pointer;
    transition: border-color .25s ease, background .25s ease;
  }
  .fc-nav-toggle:hover{ background: #f8fafc; }
  .fc-bar{
    display: block; width: 22px; height: 2px; background: #0f1115;
    margin: 5px 0; transition: transform .25s ease, opacity .25s ease;
  }

  /* ================== MOBILE BEHAVIOR ================== */
  @media (max-width: 880px){
    .fc-container{
      min-height: 60px;
    }

    /* Show hamburger, stack nav */
    .fc-nav-toggle{ display: inline-block; }

    /* Turn nav into a collapsible panel */
    .fc-nav{
      position: absolute; left: 0; right: 0; top: 60px;
      background: var(--nav);
      border-bottom: 1px solid var(--nav-border);
      overflow: hidden;
    }

    /* Collapsed by default */
    .fc-nav-links{
      flex-direction: column;
      gap: 0;
      max-height: 0;
      opacity: 0;
      pointer-events: none;
      transition: max-height .3s ease, opacity .25s ease;
    }
    .fc-nav-links li a{
      display: block;
      padding: 14px 20px;
      border-radius: 0;
    }

    /* When open */
    .fc-nav.is-open .fc-nav-links{
      max-height: 420px;  /* enough for all links */
      opacity: 1;
      pointer-events: auto;
    }

    /* Animate hamburger to X when open */
    .fc-nav.is-open ~ .dummy {} /* just to keep order clear */

    .fc-nav.is-open + .nothing{} /* noop */

    /* We’ll toggle a class on the button too */
    .fc-nav-toggle.is-open .fc-bar:nth-child(1){
      transform: translateY(7px) rotate(45deg);
    }
    .fc-nav-toggle.is-open .fc-bar:nth-child(2){
      opacity: 0;
    }
    .fc-nav-toggle.is-open .fc-bar:nth-child(3){
      transform: translateY(-7px) rotate(-45deg);
    }
  }


  /* Active link styles */
.fc-nav-links a.active,
.fc-nav-links a[aria-current="page"]{
  color: #111;
  font-weight: 700;
  position: relative;
}

.fc-nav-links a.active::after,
.fc-nav-links a[aria-current="page"]::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #8a6cff, #272a2b);
}
/* ===== FC FIX: Header fixed, body scroll (append only) ===== */

/* Header ko hamesha top par fix karo */
.fc-header{
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* Content ko header ke niche push karo */
body{
  padding-top: 68px; /* desktop header height */
}

/* Mobile/tablet adjustments */
@media (max-width: 880px){
  /* header ki height 60px hai, uske niche menu dikhana */
  body{ padding-top: 60px; }

  /* Mobile menu ko viewport par fix kar do (header ke niche) */
  .fc-nav{
    position: fixed !important;
    top: 60px;         /* header height on mobile */
    left: 0; right: 0;
  }
}
/* ===================================================================== */


   /* existing */
.home-hero-1{
  padding:56px 0 20px;
}
.home-hero-1-inner{
  display:grid;
     grid-template-columns:1.2fr .8fr; left: text  | right: images */ */ */
  gap:32px;
  align-items:center;
}
.home-hero-1 h1{ font-size:44px; line-height:1.1; margin:0 0 10px; }
.home-hero-1 p{ color:#475569; margin:0 0 18px; }
.cta{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:10px; }
.btn{
  background:black; border:none; color: white; border-radius:12px;
  padding:12px 18px; font-weight:700; cursor:pointer;
  box-shadow:0 0 0 0 var(--ring); transition:.2s box-shadow,.1s transform;
}
.btn:hover{ transform:translateY(-1px); box-shadow:0 0 0 6px var(--ring); }
.btn-secondary{ background:#111827; color:#fff; border:1px solid #111827; }
.usp{ display:flex; gap:16px; flex-wrap:wrap; color:#475569; padding:0; margin:10px 0 0; list-style:none; }

/* RIGHT media: overlap pair */
.home-hero-1-media{
  position: relative;
  border-radius:20px;
  /* overlap dikhane ke liye visible; agar clip chahiye to hidden rakhen */
  overflow: visible;
  box-shadow: var(--shadow);
  border:1px solid var(--border);
  min-height: 360px;      /* canvas height for overlap */
}

/* Shared look for both images */
./* RIGHT media: both images fully visible with slight overlap */
.home-hero-1-media{
  position: relative;
  border-radius:20px;
  overflow: visible;              /* taaki borders ke bahar bhi dikhe */
  box-shadow: var(--shadow);
  border:1px solid var(--border);
  min-height: 420px;              /* enough canvas for both cards */
}

/* common style */
.home-hero-1-media .pair-1,
.home-hero-1-media .pair-2{
  position: absolute;
  display:block;
  width: 56%;                     /* dono chhote, poore dikhen */
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border, #e5e7eb);
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
  background:#fff;
  outline: 6px solid rgba(255,255,255,.7);
  outline-offset: -3px;
}

/* left-bottom card */
.home-hero-1-media .pair-1{
  left: 0;
  bottom: 6%;
  transform: rotate(-2deg);
  z-index: 1;
}

/* right-top card — thoda overlap, par dono poore visible */
.home-hero-1-media .pair-2{
  right: 0;
  top: 6%;
  transform: rotate(2.5deg);
  z-index: 2;
}

/* optional: hover micro-lift */
.home-hero-1-media .pair-1:hover,
.home-hero-1-media .pair-2:hover{
  transform: translateY(-2px) scale(1.01);
}
/* Tablet responsive fix */
@media (min-width: 769px) and (max-width: 1024px) {
  .home-hero-1-inner {
    grid-template-columns: 1.1fr 0.9fr; /* text-left | image-right */
    align-items: center;
    gap: 24px;
  }

  .home-hero-1-media {
    position: relative;
    min-height: 380px;
    margin-top: 0;
  }

  /* images scale & alignment */
  .home-hero-1-media .pair-1,
  .home-hero-1-media .pair-2 {
    width: 70%;                 /* slightly larger for tablet */
    max-width: 320px;
  }

  .home-hero-1-media .pair-1 {
    left: 5%;
    bottom: 8%;
    transform: rotate(-2deg);
  }

  .home-hero-1-media .pair-2 {
    right: 5%;
    top: 8%;
    transform: rotate(2deg);
  }

  /* text side adjustments */
  .home-hero-1 h1 {
    font-size: 36px;
    line-height: 1.2;
  }

  .home-hero-1 p {
    font-size: 16px;
    color: #475569;
  }
}

/* Mobile fallback */
@media (max-width: 768px) {
  .home-hero-1-inner {
    grid-template-columns: 1fr;
  }
  .home-hero-1-media {
    min-height: 360px;
    margin-top: 12px;
    display: flex;
    justify-content: center;
  }
  .home-hero-1-media .pair-1,
  .home-hero-1-media .pair-2 {
    position: relative;
    width: 80%;
    transform: none;
    margin: 10px auto;
  }
}





/* ///----------trendingcollection----------/////////// */


/* === Collections Section: Centered Section Head === */
.section.collections .section-head{
  display: grid;
  grid-template-columns: 1fr auto 1fr;   /* left/right equal gap */
  align-items: center;
  /* padding-block: clamp(16px, 3vw, 32px); */
  margin-block: clamp(16px, 4vw, 40px);
}

.section.collections .section-head h2{
  grid-column: 2;              /* true center */
  margin: 0;
  text-align: center;
  line-height: 1.2;
  font-size: clamp(22px, 3.2vw, 36px);
}

/* If "View all →" is used, it stays right without shifting the center */
.section.collections .section-head .view-all{
  grid-column: 3;
  justify-self: end;
  text-decoration: none;
  font-weight: 600;
}

/* Optional: hide link on very small screens (centering intact) */
@media (max-width: 480px){
  .section.collections .section-head .view-all{ display: none; }
}






/* ============== ABOUT US (SINGLE SECTION) ============== */
/* ================== ABOUT — FULL REFRESH ================== */
/* Works with your existing HTML. No class changes needed.   */
/* Mobile-first, glassy look, dark-mode friendly.            */



 

 .about-section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        .about-container {
            display: flex;
            gap: 50px;
            align-items: center;
            margin-bottom: 50px;
        }

        .about-content {
            flex: 1;
        }

        .about-content h1 {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-content p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .about-image-wrapper {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-image {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 400px;
            border-radius: 15px;
            overflow: hidden;
            /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .cards-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 40px;
        }

        .card {
            background: white;
            padding: 18px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .card-icon {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .card h3 {
            font-size: 1rem;
            color: #2c3e50;
            margin-bottom: 6px;
        }

        .card p {
            font-size: 0.85rem;
            color: #666;
            line-height: 1.5;
        }
        .call-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: black;
            color: white;
            padding: 10px 15px;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .call-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.6);
        }

        .call-button svg {
            width: 24px;
            height: 24px;
        }

        .button-container {
            text-align: center;
            margin-top: 30px;
        }

        /* Tablet Responsive */
        @media (max-width: 1024px) {
            .about-container {
                gap: 40px;
            }

            .about-image {
                width: 100%;
                max-width: 400px;
                height: 350px;
            }

            .about-content h1 {
                font-size: 2rem;
            }

            .cards-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .about-section {
                padding: 40px 15px;
            }

            .about-container {
                flex-direction: column;
                gap: 30px;
            }

            .about-content h1 {
                font-size: 1.8rem;
            }

            .about-content p {
                font-size: 1rem;
            }

            .about-image {
                width: 100%;
                max-width: 300px;
                height: 250px;
            }

            .cards-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .card {
                padding: 25px;
            }

            .call-button {
                width: 100%;
                justify-content: center;
                padding: 16px 30px;
            }
        }

        @media (max-width: 480px) {
            .about-content h1 {
                font-size: 1.5rem;
            }

            .about-content p {
                font-size: 0.95rem;
            }

            .card h3 {
                font-size: 1.1rem;
            }

            .card p {
                font-size: 0.9rem;
            }
        }





/* positions (6 items). adjust angles if you add/remove items */
.about-simple__orbit li:nth-child(1){ transform: translate(-50%, -50%) rotate(0deg)    translate(calc(var(--ring)/2)) rotate(0deg);    top:50%; left:50%; }
.about-simple__orbit li:nth-child(2){ transform: translate(-50%, -50%) rotate(60deg)   translate(calc(var(--ring)/2)) rotate(-60deg); top:50%; left:50%; }
.about-simple__orbit li:nth-child(3){ transform: translate(-50%, -50%) rotate(120deg)  translate(calc(var(--ring)/2)) rotate(-120deg);top:50%; left:50%; }
.about-simple__orbit li:nth-child(4){ transform: translate(-50%, -50%) rotate(180deg)  translate(calc(var(--ring)/2)) rotate(-180deg);top:50%; left:50%; }
.about-simple__orbit li:nth-child(5){ transform: translate(-50%, -50%) rotate(240deg)  translate(calc(var(--ring)/2)) rotate(-240deg);top:50%; left:50%; }
.about-simple__orbit li:nth-child(6){ transform: translate(-50%, -50%) rotate(300deg)  translate(calc(var(--ring)/2)) rotate(-300deg);top:50%; left:50%; }

/* small screens: keep everything neat */
@media (max-width: 640px){
  .about-simple__media--circle{ --size: min(340px, 82vw); --thumb: 46px; }
}

/* ---- Spacing refinements on large viewports ---- */
@media (min-width: 1200px){
  .about-simple{ padding-top: 88px; padding-bottom: 96px; }
  .about-simple__content{ gap: 22px; }
}

/* ---- Dark Mode ---- */
@media (prefers-color-scheme: dark){
  .about-simple{
    --text: #f2f2f6;
    --muted: #adb0bd;
    background:
      radial-gradient(1200px 600px at 100% -20%, rgba(138,108,255,.10), transparent 60%),
      radial-gradient(1000px 520px at -10% 120%, rgba(0,212,255,.10), transparent 55%),
      linear-gradient(180deg, #121218, #0f0f15 60%, #121218);
  }
  .about-simple h1#about-title{
    background: linear-gradient(120deg, #ffffff, #eaeaff 40%, #c3c5ff);
    -webkit-background-clip: text; background-clip: text; color: transparent;
  }
  .about-simple__lead{ color: #c7c9d6; }
  .about-simple__body{ color: #e9e9f2; }

  .about-simple__list li{
    --bg: rgba(22,22,28,.88);
    color: #f0f0f7;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 12px 28px rgba(0,0,0,.45);
  }
  .about-simple__stats > div{
    background: linear-gradient(180deg, #181820, #13131a);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 26px rgba(0,0,0,.45);
  }
  .about-simple__stats span{ color: #b9bcc9; }
}

/* ---- Motion safety ---- */
@media (prefers-reduced-motion: reduce){
  .about-simple__media img,
  .about-simple__list li,
  .about-simple__list li::after,
  .about-simple__stats > div{
    transition: none !important;
  }
}





   /* Collections */
.collections .section-head h2 { margin: 0; }
.collections .view-all { font-weight: 700; color: var(--brand, #caa862); text-decoration: none; }
.collections .view-all:hover { text-decoration: underline; }

/* Grid layout with 2 rows of 3 items each */
.collections-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 items per row */
  gap: 18px;
}

/* Cards */
.collection-card{
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border, #e5e7eb);
  box-shadow: var(--shadow, 0 10px 30px rgba(0,0,0,.08));
  transform: translateZ(0);
}
.collection-card img{
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;           /* tall, premium look */
  object-fit: cover;
  transition: transform .5s ease;
}
/* gradient overlay */
.collection-card::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.00) 40%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  transition: opacity .35s ease;
  opacity: .9;
}
/* label chip */
.collection-name{
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.92);
  color: #111;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
  border: 1px solid var(--border, #e5e7eb);
  backdrop-filter: blur(6px);
}
.collection-card:hover img{ transform: scale(1.06); }
.collection-card:hover::after{ opacity: 1; }

/* Responsive tweak for larger screens */
@media (min-width: 992px){
  .collections-grid{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

@media (max-width: 768px){
  /* Responsive: 2 items per row */
  .collections-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px){
  /* Responsive: 1 item per row */
  .collections-grid{
    grid-template-columns: 1fr;
  }
}




    /* ========== WHY CHOOSE US styles ========== */
    h2{
    text-align: center;
    }
    
.choose-us{
  position: relative;
}
.choose-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.choose-card{
  background:var(--paper);
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position:relative;
  overflow:hidden;
}
.choose-card::after{
  content:"";
  position:absolute; inset:-1px;
  border-radius:18px;
  pointer-events:none;
  background:radial-gradient(300px 140px at 110% -20%, rgba(249,200,14,.12), transparent 60%);
}
.choose-card:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 36px rgba(0,0,0,.10);
  border-color:#e0e3ef;
}
.choose-icon{
  width:56px;height:56px;
  display:grid;place-items:center;
  border-radius:14px;
  background:#fff7cc;
  color:#111827;
  margin-bottom:12px;
  box-shadow:inset 0 0 0 1px #ffe486;
  font-size:22px;
}
.choose-card h3{margin:6px 0 6px;font-size:18px;color:#0f1115}
.choose-card p{margin:0 0 10px;color:#475569;line-height:1.7}
.choose-badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:#f1f5f9;
  border:1px solid #e2e8f0;
  color:#334155;
  font-size:12px;
}

/* Responsive tweaks for new section */
@media (max-width:1024px){
  .choose-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:640px){
  .choose-grid{grid-template-columns:1fr}
}



/* ============== PRICE MATCH GUARANTEE (Furniture) ============== */
:root{
  --pm-bg:#f7f5f2;          /* light neutral for furniture vibe */
  --pm-card:#ffffff;
  --pm-text:#1d1f24;
  --pm-muted:#616570;
  --pm-accent:#c4883a;      /* wood/oak accent */
  --pm-accent-2:#3b63d6;    /* cool counter accent */
  --pm-border:rgba(0,0,0,.10);
}

.price-match{
  /* padding: clamp(48px, 6vw, 84px) 0; */
  background:
    radial-gradient(900px 360px at 0% -10%, rgba(196,136,58,.12), transparent 60%),
    radial-gradient(900px 360px at 100% 0%, rgba(59,99,214,.10), transparent 60%),
    var(--pm-bg);
  color: var(--pm-text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  position: relative;
}

.price-match-container{ width:min(1180px, 92%); margin-inline:auto; position:relative; }

.price-match-ribbon{
  position:absolute; top:10px; right:-10px; transform: rotate(10deg);
  /* background: linear-gradient(90deg, var(--pm-accent), #e3a658); */
  color:#fff; font-weight:800; letter-spacing:.6px;
  padding:6px 14px; border-radius:10px;
  box-shadow:0 8px 22px rgba(0,0,0,.15);
}
.price-match-ribbon span{ display:block; font-size:12px; }

.price-match-head{ text-align:center; margin-bottom:18px; }
.price-match-head h3{ margin:0 0 6px; font-size: clamp(26px,3.2vw,36px); }
.price-match-head p{ margin:0; color:var(--pm-muted); }

.price-match-grid{
  display:grid; grid-template-columns:1fr; gap:14px; margin-top:16px;
}
@media (min-width:900px){
  .price-match-grid{ grid-template-columns: repeat(3, 1fr); gap:18px; }
}

.price-match-card{
  background: var(--pm-card);
  border:1px solid var(--pm-border);
  border-radius:16px;
  padding:16px 16px 14px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
}
.price-match-card h4{ margin:8px 0 6px; font-size:18px; }
.price-match-card p{ margin:0 0 10px; color:var(--pm-muted); }

.price-match-icon{
  width:40px; height:40px; border-radius:12px;
  display:grid; place-items:center; font-weight:800;
  background: linear-gradient(135deg, #ffe7c4, #f6f0e6);
  color:#8a5a16;
  border:1px solid var(--pm-border);
}

.price-match-points{
  margin:0; padding-left:18px; display:grid; gap:6px;
}

.price-match-inline{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:6px;
}
.price-match-small{ color:var(--pm-muted); }

.price-match-terms{
  border:1px dashed var(--pm-border);
  background:#fff; color:var(--pm-text);
  padding:6px 10px; border-radius:10px; font-weight:700; cursor:pointer;
  transition: background .2s ease, transform .2s ease;
}
.price-match-terms:hover{ background:#f2f2f2; transform: translateY(-1px); }

.price-match-compare{
  margin-top:18px;
  background: #fff;
  border:1px solid var(--pm-border);
  border-radius:16px; padding:14px 16px;
  box-shadow:0 8px 18px rgba(0,0,0,.05);
}
.price-match-compare ul{ margin:8px 0 0; padding-left:18px; display:grid; gap:6px; }
.price-match-tag{
  display:inline-block; font-size:12px; font-weight:800; letter-spacing:.4px;
  color:#1f2430; background:linear-gradient(90deg, #ffe8c6, #e9efff);
  padding:6px 10px; border-radius:999px; border:1px solid var(--pm-border);
}

.price-match-cta{
  margin-top:16px; display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
}
.price-match-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border:1px solid var(--pm-border); background:#fff; color:var(--pm-text);
  padding:10px 14px; border-radius:12px; font-weight:800; letter-spacing:.2px; text-decoration:none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.price-match-btn:hover{ transform: translateY(-1px); background:#f4f4f4; }
.price-match-btn--ghost{
  background:transparent; border-style:dashed;
}

/* Terms popover */
.price-match-pop{
  position: fixed; inset: auto 16px 16px 16px;
  max-width: 560px; margin-inline:auto;
  background:#fff; color:var(--pm-text);
  border:1px solid var(--pm-border); border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
  padding:16px; z-index: 60;
}
.price-match-pop h5{ margin:0 0 8px; font-size:16px; }
.price-match-pop ul{ margin:0; padding-left:18px; display:grid; gap:6px; }
.price-match-close{
  margin-top:12px; border:1px solid var(--pm-border); background:#fff; color:var(--pm-text);
  padding:8px 12px; border-radius:10px; font-weight:700; cursor:pointer;
}

/* Hide by default (handled via [hidden] attribute) */
.price-match-pop[hidden]{ display:none; }





/* ========== SHOP BY ROOM styles ========== */
/* ======= 3D Room Cards ======= */
.rooms{ perspective: 1000px; } /* enables 3D for children */

.rooms-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  padding-bottom: 40px;
}

.room-card{
  position:relative; display:block; min-height:240px;
  border-radius:18px; overflow:hidden;
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;     /* allow children to move in Z */
  transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease;
  will-change: transform;
}

/* image layer */
.room-img{
  position:absolute; inset:0;
  background-image: var(--img);     /* set via inline style */
  background-size: cover; background-position: center;
  transform: translateZ(22px) scale(1.05); /* pop toward viewer */
  transition: transform .25s ease;
}

/* soft shadow layer below image for depth */
.room-shadow{
  position:absolute; inset:6px;
  border-radius:16px;
  background: radial-gradient(60% 40% at 50% 100%, rgba(0,0,0,.25), transparent 70%);
  filter: blur(10px);
  transform: translateZ(0);         /* base plane */
  opacity: .35; pointer-events:none;
}

/* label chip with glass effect */
.room-label{
  position:absolute; left:16px; right:16px; bottom:16px;
  background: rgba(255,255,255,.9);
  border:1px solid #e7e9f2; backdrop-filter: blur(8px);
  border-radius:14px; padding:14px 16px;
  transform: translateZ(36px);      /* above image layer */
}
.room-label h3{margin:0 0 4px; font-size:18px; color:#0f1115}
.room-label p{margin:0; color:#475569}

/* Base lighting overlay */
.room-card::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(120% 90% at 110% -10%, rgba(249,200,14,.18), transparent 45%);
  mix-blend-mode: soft-light;
  transform: translateZ(28px);
}

/* Hover states */
.room-card:hover{
  box-shadow:0 16px 44px rgba(0,0,0,.12);
  border-color:#e0e3ef;
}
.room-card:hover .room-img{ transform: translateZ(26px) scale(1.08); }

/* Responsive */
@media (max-width:1024px){ .rooms-grid{grid-template-columns:repeat(2,1fr)} }
@media (max-width:640px){
  .rooms-grid{grid-template-columns:1fr}
  .room-card{min-height:200px}
}





  :root{
    --fh-bg:#0f0f10;
    --fh-card:#18181b;
    --fh-accent:#ffc107; /* warm gold accent (furniture vibe) */
    --fh-text:#f5f5f7;
    --fh-muted:#b3b3b8;
    --fh-ring:rgba(255,193,7,0.35);
    --radius:18px;
    --shadow:0 10px 30px rgba(0,0,0,.35);
  }

  .form-hero{
    position:relative;
    isolation:isolate;
    padding:72px 20px;
    background:
      radial-gradient(80% 60% at 20% 10%, rgba(255,193,7,.12), transparent 60%),
      radial-gradient(70% 50% at 90% 20%, rgba(255,255,255,.06), transparent 60%),
      var(--fh-bg);
    color:var(--fh-text);
    overflow:hidden;
  }
  .form-hero::after{
    content:"";
    position:absolute; inset:-20% -10% auto auto; width:480px; height:480px;
    background:radial-gradient(closest-side, rgba(255,193,7,.12), transparent 70%);
    filter:blur(40px);
    z-index:-1;
  }

  .form-hero__container{
    max-width:1200px; margin:0 auto;
    display:grid; gap:32px;
    grid-template-columns: 1.1fr .9fr;
    align-items:stretch;
  }
  @media (max-width: 980px){
    .form-hero__container{ grid-template-columns: 1fr; }
  }

  .form-hero__content{
    background:linear-gradient(180deg, rgba(24,24,27,.9), rgba(24,24,27,.75));
    border:1px solid rgba(255,255,255,.06);
    border-radius:var(--radius);
    padding:32px;
    box-shadow:var(--shadow);
    backdrop-filter: blur(6px);
  }
  .form-hero__title{
    font-size:clamp(24px, 3.5vw, 36px);
    line-height:1.1; margin:0 0 8px;
    letter-spacing:.2px;
  }
  .form-hero__subtitle{
    color:var(--fh-muted); margin:0 0 24px;
  }

  .form-hero__form{
    display:block;
  }
  .form-hero__grid{
    display:grid; gap:16px;
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .form-hero__field{ display:flex; flex-direction:column; gap:8px; }
  .form-hero__field--full{ grid-column:1/-1; }
  .form-hero__field label{ font-weight:600; font-size:14px; color:#e8e8ea; margin-top: 10px; }
  .form-hero__field input,
  .form-hero__field select,
  .form-hero__field textarea{
    background:#101012;
    color:var(--fh-text);
    border:1px solid rgba(255,255,255,.08);
    border-radius:12px;
    padding:12px 14px;
    outline:none;
    transition: border .2s, box-shadow .2s, transform .04s;
  }
  .form-hero__field input:focus,
  .form-hero__field select:focus,
  .form-hero__field textarea:focus{
    border-color:var(--fh-accent);
    box-shadow:0 0 0 6px var(--fh-ring);
  }
  .form-hero__error{
    display:none; color:#ff6b6b; font-size:12px;
  }

  .form-hero__actions{
    margin-top:10px; display:flex; gap:14px; align-items:center; flex-wrap:wrap;
  }
  .form-hero__btn{
    background:var(--fh-accent);
    color:#1a1200; font-weight:800; letter-spacing:.2px;
    border:0; border-radius:14px;
    padding:12px 18px; cursor:pointer;
    box-shadow:0 8px 20px rgba(255,193,7,.25);
    transition: transform .12s ease, box-shadow .2s ease;
  }
  .form-hero__btn:hover{ transform:translateY(-1px); box-shadow:0 10px 28px rgba(255,193,7,.32); }
  .form-hero__btn:active{ transform:translateY(0); }

  .form-hero__note{ color:var(--fh-muted); font-size:13px; }

  .form-hero__success{
    margin-top:16px;
    padding:12px 14px;
    background:#0f1a0f; border:1px solid #2f6f2f; border-radius:12px;
    color:#b6f3b6; font-weight:600;
  }

  .form-hero__visual{
    position:relative; border-radius:var(--radius); overflow:hidden;
    min-height:360px; background:#0c0c0d; border:1px solid rgba(255,255,255,.06);
    box-shadow:var(--shadow);
  }
  .form-hero__visual img{
    width:100%; height:100%; object-fit:cover; display:block; filter:saturate(1.05) contrast(1.02);
    transform:scale(1.02);
  }
  .form-hero__badge{
    position:absolute; top:16px; left:16px;
    background:rgba(255,193,7,.95); color:#1a1200;
    padding:8px 12px; border-radius:999px; font-weight:800; font-size:12px;
    box-shadow:0 8px 20px rgba(255,193,7,.35);
  }

  @media (max-width:640px){
    .form-hero{ padding:56px 16px; }
    .form-hero__grid{ grid-template-columns:1fr; }
    .form-hero__actions{ flex-direction:column; align-items:flex-start; }
  }


   /* Footer Styles */
/* Footer Styles */
footer {
  background: #0a0a0a;
  color: #e0e0e0;
  padding: 60px 20px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}

/* Footer Brand Section */
.footer-brand .footer-logo {
  width:180px;
  height: 180px;
 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 15px;
}

.footer-brand .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: #b0b0b0;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 1px solid #2a2a2a;
}

.footer-social a:hover {
  background: #00a8e8;
  border-color: #00a8e8;
  transform: translateY(-3px);
}

/* Footer Links */
.footer-links h5,
.footer-contact h5,
.footer-newsletter h5 {
  font-size: 18px;
  margin-bottom: 25px;
  color: #ffffff;
  font-weight: 600;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 15px;
}

.footer-links ul li a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links ul li a:hover {
  color: #00a8e8;
  padding-left: 5px;
}

/* Footer Contact */
.footer-contact ul li {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact ul li i {
  color: #ffffff;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact ul li a:hover {
  color: #00a8e8;
}

.footer-contact ul li span {
  color: #b0b0b0;
}

/* Footer Newsletter */
.footer-newsletter p {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter input {
  padding: 14px 18px;
  border: 1px solid #2a2a2a;
  background: #1a1a1a;
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.newsletter input::placeholder {
  color: #666;
}

.newsletter input:focus {
  outline: none;
  border-color: #00a8e8;
  background: #222;
}

.newsletter button {
  padding: 14px 25px;
  background: #00a8e8;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.newsletter button:hover {
  background: #0096d1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 168, 232, 0.3);
}

/* Footer Bottom */
.footer-bottom {
  padding: 25px 0;
  text-align: center;
  font-size: 14px;
  color: #808080;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-bottom a {
  color: #f9c80e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #0096d1;
}

/* Tablet View */
@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Mobile View */
@media (max-width: 640px) {
  footer {
    padding: 40px 20px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-brand .footer-logo {
    margin: 0 auto 20px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links ul li a,
  .footer-contact ul li {
    justify-content: center;
  }

  .footer-contact ul li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-contact ul li i {
    margin-top: 0;
  }

  .newsletter input,
  .newsletter button {
    width: 100%;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

    /* === GLOBAL: kill horizontal scroll === */
html, body { overflow-x: hidden; }

/* keep content inside the viewport */
.container { width: min(1200px, 92%); margin-inline: auto;  }

/* HERO media must clip rotated/absolute images */
.home-hero-1-media {
  overflow: hidden;          /* was 'visible' -> caused scroll */
  border-radius: 20px;
  position: relative;
  contain: paint;            /* isolate paints; prevents bleed */
  min-height: 420px;         /* keeps enough canvas for overlap */
}

/* sane sizes so image boxes never exceed container */
.home-hero-1-media .pair-1,
.home-hero-1-media .pair-2 {
  max-width: 100%;
  will-change: transform;
}

/* desktop layout */
@media (min-width: 1025px) {
  .home-hero-1-inner { 
    display:grid; 
    grid-template-columns: 1.2fr .8fr; /* left text | right images */
    gap: 32px;
    align-items: center;
  }
  .home-hero-1-media .pair-1 { left: 4%; bottom: 6%; width: 56%; transform: rotate(-2deg); }
  .home-hero-1-media .pair-2 { right: 4%; top: 6%;   width: 56%; transform: rotate(2.5deg); }
}

/* tablet: keep text left, images right, no bleed */
@media (min-width: 769px) and (max-width: 1024px) {
  .home-hero-1-inner { grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: center; }
  .home-hero-1-media { min-height: 380px; }
  .home-hero-1-media .pair-1,
  .home-hero-1-media .pair-2 { position: absolute; width: 66%; max-width: 320px; }
  .home-hero-1-media .pair-1 { left: 3%; bottom: 8%; transform: rotate(-2deg); }
  .home-hero-1-media .pair-2 { right: 6%; top: 8%;   transform: rotate(2deg); }
}

/* mobile: stack, center, remove rotation (avoids spill) */
@media (max-width: 768px) {
  .home-hero-1-inner { grid-template-columns: 1fr; }
  .home-hero-1-media {
    min-height: auto; display: grid; place-items: center; gap: 12px; padding: 12px;
  }
  .home-hero-1-media .pair-1,
  .home-hero-1-media .pair-2 { position: relative; width: 70%; transform: none; margin: 0;padding: 2px; }
}

/* safety: any section should not create horizontal scroll */
.section, .rooms, .price-match, .form-hero { overflow-x: clip; padding-bottom: 30px;}
