:root {
      --bg: #111117;
      --bg-soft: rgba(255, 255, 255, 0.04);
      --surface: rgba(20, 26, 38, 0.92);
      --ink: #f5f5f5;
      --muted: #b3bac4;
      --brand: #d97706;
      --brand-deep: #9a3412;
      --accent: #76d6c4;
      --accent-deep: #1f6f5f;
      --accent-soft: rgba(31, 111, 95, 0.16);
      --line: rgba(255, 255, 255, 0.08);
      --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
      --radius-xl: 34px;
      --radius-lg: 26px;
      --radius-md: 20px;
    }

    html[data-theme="light"] {
      --bg: #eef5ff;
      --bg-soft: rgba(15, 23, 42, 0.04);
      --surface: rgba(255, 255, 255, 0.92);
      --ink: #0f172a;
      --muted: #475569;
      --brand: #0f766e;
      --brand-deep: #115e59;
      --accent: #0ea5a4;
      --accent-deep: #0f766e;
      --accent-soft: rgba(14, 165, 164, 0.14);
      --line: rgba(15, 23, 42, 0.12);
      --shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
    }

    body {
      font-family: "Manrope", sans-serif;
      color: #f5f5f5;
      background:
        radial-gradient(circle at top left, rgba(217, 119, 6, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(31, 111, 95, 0.12), transparent 26%),
        #111117;
      min-height: 100vh;
      padding-top: 76px;
    }

    html[data-theme="light"] body {
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(217, 119, 6, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(31, 111, 95, 0.12), transparent 26%),
        linear-gradient(180deg, #fbf7f0 0%, #f4efe6 46%, #efe8dc 100%);
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: "Sora", sans-serif;
    }

    a {
      text-decoration: none;
    }

    .home-shell {
      padding: 1.4rem 0 3rem;
    }

    .glass-panel,
    .feature-card,
    .category-card,
    .spotlight-card,
    .floating-photo,
    .store-card,
    .product-card-home,
    .story-panel,
    .cta-banner {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: var(--shadow);
    }

    html[data-theme="light"] .glass-panel,
    html[data-theme="light"] .feature-card,
    html[data-theme="light"] .category-card,
    html[data-theme="light"] .spotlight-card,
    html[data-theme="light"] .floating-photo,
    html[data-theme="light"] .store-card,
    html[data-theme="light"] .product-card-home,
    html[data-theme="light"] .story-panel {
      background: rgba(255, 255, 255, 0.84);
      border-color: rgba(15, 23, 42, 0.12);
    }

    .hero-panel {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      padding: 2rem;
      min-height: 640px;
      background: rgba(255, 255, 255, 0.04);
    }

    html[data-theme="light"] .hero-panel {
      background: rgba(255, 255, 255, 0.86);
    }

    .hero-panel::before,
    .hero-panel::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-panel::before {
      width: 260px;
      height: 260px;
      top: -110px;
      right: -70px;
      background: rgba(217, 119, 6, 0.16);
    }

    .hero-panel::after {
      width: 220px;
      height: 220px;
      bottom: -110px;
      left: -60px;
      background: rgba(31, 111, 95, 0.12);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      padding: .6rem .9rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.78);
      color: var(--brand-deep);
      font-size: .84rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .hero-title {
      font-size: clamp(2.5rem, 5vw, 5.4rem);
      line-height: 1;
      margin: 1.2rem 0 1rem;
      max-width: 10ch;
    }

    html[data-theme="light"] .hero-title,
    html[data-theme="light"] .section-head h2,
    html[data-theme="light"] .story-panel h2,
    html[data-theme="light"] .product-card-home h4,
    html[data-theme="light"] .store-card h4,
    html[data-theme="light"] .category-card h4{
      color: var(--ink);
    }

    .hero-copy,
    .section-copy,
    .feature-card p,
    .category-card p,
    .store-card p,
    .story-panel p,
    .cta-banner p {
      color: var(--muted);
    }

    .hero-actions,
    .hero-stats,
    .quick-links,
    .category-row {
      display: flex;
      flex-wrap: wrap;
      gap: .9rem;
    }

    .btn-brand,
    .btn-soft {
      border-radius: 999px;
      padding: .92rem 1.3rem;
      font-weight: 800;
      border: none;
    }

    .btn-brand {
      color: #fff;
      box-shadow: 0 14px 28px rgba(154, 52, 18, 0.2);
    }

    .btn-soft {
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.14);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    html[data-theme="light"] .btn-soft {
      color: #0f172a;
      background: rgba(15, 23, 42, 0.06);
      border-color: rgba(15, 23, 42, 0.14);
    }

    .hero-stat {
      min-width: 150px;
      padding: 1rem 1.1rem;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    html[data-theme="light"] .hero-stat {
      background: rgba(255, 255, 255, 0.72);
      border-color: rgba(15, 23, 42, 0.12);
    }

    .hero-stat strong {
      display: block;
      font-size: 1.4rem;
      font-family: "Sora", sans-serif;
    }

    .hero-visual {
      position: relative;
      min-height: 560px;
    }

    .main-photo {
      width: 100%;
      height: 560px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .floating-photo {
      position: absolute;
      border-radius: 24px;
      overflow: hidden;
      padding: .55rem;
    }

    .floating-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 18px;
      display: block;
    }

    .floating-photo.top {
      width: 180px;
      height: 200px;
      top: 28px;
      right: -10px;
    }

    .floating-photo.bottom {
      width: 220px;
      height: 170px;
      left: -18px;
      bottom: 28px;
    }

    .spotlight-card {
      position: absolute;
      left: 28px;
      bottom: 30px;
      padding: 1rem 1.1rem;
      border-radius: 24px;
      max-width: 250px;
    }

    .spotlight-badge {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      padding: .35rem .7rem;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-size: .8rem;
      font-weight: 800;
    }

    .section-block {
      margin-top: 1.8rem;
      content-visibility: auto;
      contain-intrinsic-size: auto 900px;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .feature-card,
    .category-card,
    .store-card,
    .story-panel,
    .product-card-home {
      border-radius: var(--radius-lg);
      padding: 1.3rem;
      height: 100%;
    }

    .feature-icon,
    .category-icon {
      width: 52px;
      height: 52px;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      border-radius: 16px;
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .feature-icon {
      color: #fff;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    }

    .category-icon {
      color: var(--brand-deep);
      background: rgba(217, 119, 6, 0.12);
    }

    .category-card,
    .store-card,
    .product-card-home {
      transition: transform .25s ease;
    }

    .category-card:hover,
    .store-card:hover,
    .product-card-home:hover {
      transform: translateY(-6px);
    }

    .store-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 20px;
      margin-bottom: 1rem;
    }

    .story-panel {
      background: rgba(255, 255, 255, 0.06);
    }

    .story-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 1rem;
    }

    .story-gallery img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: var(--shadow);
    }

    .product-card-home .thumb {
      height: 170px;
      background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.04) 100%);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: 1rem;
    }

    .product-card-home .thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .price-line {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: .75rem;
      margin-bottom: .75rem;
    }

    .price-main {
      font-size: 1.2rem;
      font-weight: 800;
      font-family: "Sora", sans-serif;
    }

    .price-old {
      color: rgba(255, 255, 255, 0.64);
      text-decoration: line-through;
      opacity: .8;
      font-weight: 700;
    }
    html[data-theme="light"] .price-old {
      color: rgba(15, 23, 42, 0.64);
    }
    .meta-pill {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      padding: .45rem .75rem;
      border-radius: 999px;
      /* background: linear-gradient(135deg, #2e5e7b 0%, #1f3744 100%); */
      background: linear-gradient(135deg, #124335 0%, #1f6a55 100%);
      color: #fff;
      font-size: .84rem;
      font-weight: 700;
    }
    html[data-theme="light"] .meta-pill {
      background: linear-gradient(135deg, #c97d27 0%, #dc7e36 100%);
    }
    .cta-banner {
      border-radius: var(--radius-xl);
      padding: 1.8rem;
      overflow: hidden;
      position: relative;
    }

    .cta-banner::before {
      content: "";
      position: absolute;
      width: 240px;
      height: 240px;
      top: -110px;
      right: -70px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
    }

    .cta-banner.orange {
      color: #fff;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
      border: none;
    }
    html[data-theme="light"] .ad-banner.orange,
    html[data-theme="light"] .cta-banner.orange {
        background: linear-gradient(135deg, #d97706 0%, #9a3412 100%);
        border: 1px solid rgba(15, 23, 42, 0.12);
    }
    .cta-banner.orange p {
      color: rgba(255, 255, 255, 0.75);
    }

    .footer-note {
      text-align: center;
      color: var(--muted);
      margin-top: 2rem;
    }

  
.image-container{
    width:100%;
    height:300px;
    overflow:hidden;
    border-radius:12px;
}

.image-container img{
    width:100%;
    height:100%;
    object-fit:cover;
}

    @media (max-width: 991.98px) {
      .home-shell {
        padding: 1rem 0 2.25rem;
      }

      .hero-panel {
        min-height: auto;
        padding: 1.5rem;
      }

      .hero-title {
        max-width: none;
      }

      .hero-visual {
        min-height: auto;
      }

      .main-photo {
        height: 430px;
      }

      .section-head {
        align-items: flex-start;
      }

      .floating-photo.top,
      .floating-photo.bottom,
      .spotlight-card {
        position: static;
        margin-top: 1rem;
      }
    }

    @media (max-width: 767.98px) {
      .home-shell {
        padding: 0.85rem 0 2rem;
      }

      .hero-panel {
        border-radius: 22px;
        padding: 1.15rem;
      }

      .eyebrow {
        font-size: 0.76rem;
        letter-spacing: 0.06em;
      }

      .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.45rem);
        line-height: 1.1;
        margin: 0.9rem 0 0.75rem;
      }

      .hero-copy {
        font-size: 0.96rem;
      }

      .hero-actions,
      .quick-links {
        gap: 0.65rem;
      }

      .hero-actions .btn,
      .quick-links .btn,
      .section-head .btn {
        display: inline-flex;
        align-items: center;
        width: 100%;
        justify-content: center;
      }

      .hero-stats {
        gap: 0.6rem;
      }

      .hero-stat {
        width: 100%;
        min-width: 0;
        padding: 0.85rem 0.95rem;
      }

      .main-photo {
        height: 330px;
      }

      .floating-photo.top,
      .floating-photo.bottom {
        width: 100%;
        height: 190px;
      }

      .spotlight-card {
        max-width: none;
        width: 100%;
      }

      .section-block {
        margin-top: 1.25rem;
      }

      .section-head {
        flex-direction: column;
        gap: 0.7rem;
        margin-bottom: 0.85rem;
      }

      .story-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .image-container {
        height: 160px;
      }

      .story-gallery img {
        height: 160px;
      }

      .store-card img {
        height: 165px;
      }

      .product-card-home .thumb {
        height: 160px;
      }

      .cta-banner {
        padding: 1.3rem;
      }
    }

    @media (max-width: 575.98px) {
      body {
        padding-top: 72px;
      }

      .container-fluid {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
      }

      .hero-panel {
        border-radius: 18px;
        padding: 1rem;
      }

      .hero-title {
        font-size: clamp(1.7rem, 8.8vw, 2.1rem);
      }

      .hero-stat strong {
        font-size: 1.15rem;
      }

      .main-photo {
        height: 270px;
      }

      .floating-photo.top,
      .floating-photo.bottom {
        height: 160px;
      }

      .story-gallery {
        grid-template-columns: 1fr;
      }

      .image-container {
        height: 220px;
      }

      .story-gallery img {
        height: 220px;
      }
    }

    @media (max-width: 360px) {
      body {
        overflow-x: clip;
      }

      .container-fluid {
        padding-left: 0.62rem !important;
        padding-right: 0.62rem !important;
      }

      .hero-panel {
        padding: 0.9rem;
      }

      .eyebrow {
        font-size: 0.68rem;
        padding: 0.5rem 0.72rem;
      }

      .hero-title {
        font-size: clamp(1.55rem, 9vw, 1.9rem);
        margin: 0.75rem 0 0.6rem;
      }

      .hero-copy {
        font-size: 0.9rem;
        line-height: 1.55;
      }

      .hero-actions,
      .quick-links {
        gap: 0.55rem;
      }

      .hero-actions .btn,
      .quick-links .btn,
      .section-head .btn {
        padding: 0.62rem 0.95rem;
        font-size: 0.92rem;
      }

      .hero-stat {
        padding: 0.75rem 0.85rem;
      }

      .hero-stat strong {
        font-size: 1.02rem;
      }

      .hero-stat span {
        font-size: 0.86rem;
      }

      .main-photo {
        height: 235px;
      }

      .floating-photo.top,
      .floating-photo.bottom {
        height: 140px;
      }

      .spotlight-card {
        padding: 0.85rem 0.9rem;
      }

      .category-card,
      .store-card,
      .product-card-home,
      .story-panel {
        padding: 1rem;
      }

      .store-card p,
      .product-card-home p {
        overflow-wrap: anywhere;
      }

      .price-main {
        font-size: 1.05rem;
      }

      .cta-banner {
        padding: 1.05rem;
      }

      .image-container,
      .story-gallery img {
        height: 180px;
      }
    }
