  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500&display=swap");

  :root {
    --bw-teal: #00afb8;
    --bw-purple: #842b8f;
    --bw-dark: #232323;
    --bw-muted: #7b7b7b;
  }
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    font-family: "Nunito Sans", sans-serif;
    color: var(--bw-dark);
  }
  h1,
  h2,
  h3,
  h4,
  .brand-font {
    font-family: "Poppins", sans-serif;
  }
  a {
    text-decoration: none;
  }

  .btn-teal {
    background-color: var(--bw-teal);
    border-color: var(--bw-teal);
    color: #fff;
    border-radius: 2rem;
    font-weight: 600;
    padding: 0.6rem 1.6rem;
  }

  .btn-teal span {
    font-size: 18px;
  }
  .btn-outline-light-pill {
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    border-radius: 2rem;
    padding: 0.55rem 1.6rem;
    font-weight: 500;
  }
  .btn-outline-light-pill:hover {
    background: #fff;
    color: var(--bw-dark);
  }
  .section-eyebrow {
    display: inline-block;
    width: 48px;
    height: 5px;
    background: var(--bw-purple);
    border-radius: 3px;
    margin-bottom: 0.75rem;
  }

  /* Navbar */
  .navbar-brand-title {
    font-weight: 800;
    color: var(--bw-purple);
    line-height: 1;
  }

  .navbar-brand-sub {
    font-size: 0.7rem;
    color: var(--bw-teal);
    letter-spacing: 0.05em;
  }

  .nav-link-custom {
    color: var(--bw-purple);
    font-weight: 600;
    font-size: 12px;
  }

  .nav-link-custom:hover {
    color: var(--bw-teal);
  }

  .nav-icon img {
    width: 18px;
    height: 22px;
    display: block;
  }

  .phone-icon {
    width: 87px;
    height: 18px;
    display: block;
  }

  .cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1px;
    text-decoration: none;
  }

  .cart-icon img {
    width: 20px;
    height: 17px;
    display: block;
  }

  .cart-count {
    font-size: 15px;
    line-height: 1;
    color: var(--bw-teal);
    font-weight: 400;
  }

  .navbar-logo {
    width: 185px;
    height: 50px;
  }
  @media (max-width: 767.98px) {
    .header-inner {
      width: 92%;
    }

    .main-navigation {
      gap: 14px;
    }

    .main-navigation a {
      font-size: 8px;
    }
  }
  /* menu responsive */
  @media (max-width: 991.98px) {
    /* Hide when collapsed */
    .navbar-collapse:not(.show) {
      display: none !important;
    }
    /* Show when toggler is clicked */
    .navbar-collapse.show {
      display: block !important;
      padding-top: 15px;
      margin-top: 12px;
      border-top: 1px solid #f0f0f0;
    }

    .navbar-nav {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .navbar-nav .nav-link {
      color: #7952b3 !important;
      font-weight: 500;
      padding: 6px 0;
      text-align: start;
    }

    .justify-content-center {
      margin-left: -126px;
    }
  }
  @media (max-width: 575.98px) {
    .site-header {
      min-height: 55px;
    }

    .header-inner {
      width: 90%;
      min-height: 55px;
    }

    .site-logo {
      width: 62px;
      flex-basis: 62px;
    }

    .site-logo img {
      width: 62px;
      max-width: 62px;
    }

    .header-actions {
      gap: 9px;
    }

    .header-call {
      min-width: 72px;
      height: 23px;
      font-size: 6px;
    }

    .header-call i {
      font-size: 6px;
    }

    .main-navigation {
      gap: 12px;
      margin-top: 8px;
    }

    .main-navigation a {
      font-size: 7px;
    }
  }

  @media (max-width: 380px) {
    .main-navigation {
      gap: 9px;
    }

    .main-navigation a {
      font-size: 6.5px;
    }

    .header-call {
      min-width: 65px;
    }
  }
  /* Hero Section */
  .hero-section {
    position: relative;
    overflow: hidden;
  }

  .hero-section .carousel-item {
    height: 480px;
    position: relative;
  }

  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Gradient Overlay */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.4) 55%,
      rgba(0, 0, 0, 0.68)
    );
  }

  /* Centered Content */
  .hero-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 780px;
    text-align: center;
    color: #ffffff;
    z-index: 2;
  }

  .hero-content h1 {
    margin: 0 0 14px;
    font-size: clamp(28px, 4.5vw, 48px);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.5px;
  }

  .hero-content p {
    margin: 0 0 24px;
    font-size: clamp(13px, 1.8vw, 16px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
  }

  /* Outline Pill Button */
  .outline-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 50px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .outline-btn:hover {
    background: #ffffff;
    color: #1a1a1a;
  }

  /* Left & Right Circular Arrow Buttons */
  .carousel-control-prev,
  .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    margin: 0 20px;
    opacity: 0.8;
    transition: all 0.2s ease;
    z-index: 5;
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    background-color: var(--primary);
    opacity: 1;
  }

  /* Modern Pill Dots */
  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
  }

  .carousel-indicators .active {
    width: 26px;
    border-radius: 10px;
    background-color: var(--primary);
  }

  /* transition */
  #heroCarousel .carousel-inner {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
  }

  /* Stack all slides on top of each other with 0 opacity */
  #heroCarousel .carousel-item {
    display: block !important;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
      visibility 0.8s ease;
    z-index: 1;
  }

  /* Active slide smoothly fades in */
  #heroCarousel .carousel-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }

  #heroCarousel .carousel-item.active img {
    transform: scale(1);
  }

  /* Responsive height for mobile */
  @media (max-width: 767.98px) {
    #heroCarousel .carousel-inner {
      height: 400px;
    }
  }

  /* Mobile responsive */
  @media (max-width: 767.98px) {
    .hero-section .carousel-item {
      height: 400px;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 36px;
      height: 36px;
      margin: 0 10px;
    }
  }

  /* slider overlay */
  .hero-section .hero-overlay-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    z-index: 2;
  }

  .hero-section .carousel-control-prev,
  .hero-section .carousel-control-next,
  .hero-section .carousel-indicators {
    z-index: 4;
  }

  /* category split */
  .category-card {
    position: relative;
    height: 300px;
    overflow: hidden;
  }

  .category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55),
      rgba(0, 0, 0, 0.02) 60%
    );
  }

  .category-content {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    width: 100%;
  }

  .category-content h3 {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 600;
  }

  .small-outline-btn {
    display: inline-flex;
    padding: 6px 14px;
    border: 1px solid #fff;
    border-radius: 15px;
    color: #fff;
    font-size: 7px;
    text-transform: uppercase;
  }

  .small-outline-btn:hover {
    color: #222;
    background: #fff;
  }
  /*  */

  /* matters banner */
  .mattress-banner {
    position: relative;
    height: 330px;
    overflow: hidden;
  }

  .mattress-banner > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .banner-dark {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68), transparent 65%);
  }

  .mattress-content {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    width: 100%;
  }

  .mattress-content h2 {
    font-size: 14px;
    margin: 0 0 10px;
    font-weight: 600;
  }

  /* price promotion */
  .price-card {
    position: relative;
    display: block;
    height: 170px;
    overflow: hidden;
  }

  .price-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }

  .price-card:hover img {
    transform: scale(1.03);
  }

  /* Light darkening over the complete image */
  .price-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    z-index: 1;
  }

  /* Black box specifically behind the text */
  .price-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.65);
    padding: 8px 18px 9px;
    white-space: nowrap;
    z-index: 2;
  }

  .price-text span {
    display: block;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 400;
    letter-spacing: 0;
  }

  .price-text small {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
  }

  /* =========================================================
    COMMON SECTIONS
  ========================================================= */

  .content-section > .container {
    /* max-width: 1030px; */
    max-width: 1180px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .socials-section .section-heading {
    max-width: 1320px;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    padding-right: calc(var(--bs-gutter-x, 1.5rem) * 0.5);
    margin-bottom: 24px;
  }

  .social-heading {
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
  }

  .heading-line {
    display: block;
    width: 41px;
    height: 3px;
    margin-bottom: 7px;
    background: var(--purple);
  }

  .section-heading h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.5px;
  }

  .view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 20px;
    background: var(--primary);
    color: #fff;
    font-size: 7px;
    font-weight: 600;
    white-space: nowrap;
  }

  .view-all-btn:hover {
    color: #fff;
    background: var(--primary-dark);
  }
  :root {
    --popular-container-max: 1320px; /* was referenced but never defined — this was the bug */
  }
  /* =========================================================
    POPULAR PRODUCTS
  ========================================================= */

  .popular-section {
    overflow: hidden;
    padding-top: 100px;
  }

  .heading-line {
    display: block;
    width: 36px;
    height: 4px;
    background-color: var(--accent-purple);
    border-radius: 2px;
    margin-bottom: 12px;
  }

  .popular-title h2 {
    font-size: 32px;
    font-weight: 100;
    color: #1a1a1a;
    margin: 0;
  }

  .shop-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 22px;
    border-radius: 50px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease;
  }

  /* .shop-all-btn:hover {
    background-color: var(--primary-hover);
    color: #ffffff;
  } */

  /* heading + shop-all button + arrows: normal centered container */
  .popular-container {
     margin-left: auto;
  margin-right: auto;
  padding-right: 40px;
  box-sizing: border-box;
  }
  @media (max-width: 767.98px) {
    popular-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .popular-title h2 {
    font-size: 20px;
  }
 .shop-all-btn {
  height: 35px;
  font-size: 10px;
 }
  }

  /* track wrapper: left edge lines up with the container above it,
    right side left open so the row bleeds off the edge of the screen */
  .popular-track-outer {
    width: 100%;
    padding-left: max(
      20px,
      calc((100vw - var(--popular-container-max)) / 2 + 40px)
    );
    padding-right: 0;
    box-sizing: border-box;
  }
  @media (max-width: 767.98px) {
    .popular-track-outer {
      padding-left: 20px;
    }
  }
  .popular-track-outer {
    transition: padding-left 0.35s ease;   /* smooth the shift */
  }

  /* once scrolled off the first card, drop the left offset so cards
    can reach the true edge of the screen — same behavior as Socials/Testimonials */
  .popular-track-outer.is-scrolled {
    padding-left: 0;
  }
  /* CAROUSEL TRACK */
  .popular-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 8px;
    padding-right: 40px; /* right gutter matches container padding */
  }
  .popular-track::-webkit-scrollbar {
    display: none;
  }

  /* CARD SIZING */
  .product-col {
    flex: 0 0 calc(31.5% - 14px);
    scroll-snap-align: start;
  }
  @media (max-width: 991.98px) {
    .product-col {
      flex: 0 0 calc(52% - 14px);
    }
  }
  @media (max-width: 767.98px) {
    .product-col {
      flex: 0 0 68%;
    }
    .popular-track {
      gap: 16px;
    }
  }
  @media (max-width: 575.98px) {
    .product-col {
      flex: 0 0 85%;
    }
    .popular-track {
      gap: 16px;
    }
  }

  /* PRODUCT CARD */
  .product-card {
    background-color: #f5f6f8;
    border-radius: 18px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }
  .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .product-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin: 0 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .product-info .price {
    font-size: 13px;
    color: #333;
    margin-bottom: 14px;
  }
  .product-info .price del {
    color: #999;
    margin-right: 6px;
  }

  .product-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .afterpay-badge {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 50px;
    background-color: #cbfbe9;
    color: #111;
    font-size: 11px;
    font-weight: 700;
  }
  .add-cart-btn {
    height: 30px;
    padding: 0 16px;
    border: none;
    border-radius: 50px;
    background-color: var(--primary);
    color: #ffffff;
    font-size: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }
  .add-cart-btn:hover {
    background-color: var(--primary-hover);
  }

  .product-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .sale-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #ff0c10;
    color: #ffffff;
    font-size: 8px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    line-height: 1;
    margin-bottom: 10px;
    margin-right: 10px;
  }

  .load-more-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
  }
  .load-more-btn {
    min-width: 160px;
    height: 38px;
    padding: 0 30px;
    border: 1px solid #00bcd4;
    border-radius: 30px;
    background: transparent;
    color: #00bcd4;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 100px;
  }
  @media (max-width: 767.98px) {
  .load-more-btn{
    margin-left: 30px;
  }
}

  /* Bottom-right navigation arrows */
  .popular-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 10px;
  }
  .popular-arrows button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    background: transparent;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
  }
  .popular-arrows button:hover {
    background-color: var(--primary);
    color: #ffffff;
  }
  .popular-arrows button:hover svg path {
    stroke: #ffffff;
  }
  .popular-arrows button[disabled] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }
/*  */
.product-col {
    flex: 0 0 420px !important;
    width: 420px !important;
    min-width: 420px !important;
    max-width: 420px !important;

    scroll-snap-align: start;
    box-sizing: border-box;
}

  /* =========================================================
    WHY BUY
  ========================================================= */

  :root {
    --header-offset: 90px; /* gap from top of viewport while pinned */
    --img-h: 460px;
  }
  body {
    font-family: "Poppins", Arial, sans-serif;
  }

  /* ===== existing section styles (kept as-is) ===== */
  .why-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .section-heading {
    margin-bottom: 35px;
  }
  .heading-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--purple);
    margin-bottom: 14px;
  }
  .section-heading h2 {
    font-size: 32px;
    font-weight: 500;
  }

  .story-content h3 {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
  }
  .story-content p {
    margin: 0 0 9px;
    color: #999;
    font-size: 11px;
    line-height: 1.65;
    max-width: 340px;
  }
  .text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin: 3px 0;
    color: var(--purple);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
  }
  .story-content h4 {
    margin: 0 0 7px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
  }
  .story-content .small-copy {
    color: #999;
    font-size: 11px;
    line-height: 1.6;
  }

  /* ===== manual pin: row is the boundary, spacer reserves the layout
      space, the inner element is what actually gets positioned ===== */
  .main-story {
    position: relative; /* containing block for the absolute states */
  }

  /* stays in normal document flow, defines where the image "lives" and
      keeps the row's left column width reserved even once its child is
      taken out of flow (fixed) */
  .story-image-spacer {
    height: var(--img-h);
  }

  .story-image-pin {
    position: absolute;
    /* top / left / width are always set inline by JS, in every state,
        so this element can never fall back to a wrong containing block
        width (that was the full-bleed bug) */
  }
  .story-image-pin.is-fixed {
    position: fixed;
  }

  .story-image {
    position: relative;
    height: var(--img-h);
    border-radius: 6px;
    overflow: hidden;
  }
  .story-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  .story-image img.active {
    opacity: 1;
  }

  .story-item {
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5px;
    opacity: 0.35;
    filter: grayscale(40%);
    transition:
      opacity 0.4s ease,
      filter 0.4s ease;
  }
  .story-item.active {
    opacity: 1;
    filter: grayscale(0%);
  }
  .story-item + .story-item {
    border-top: 1px solid #aaa;
  }

  .story-text-col {
    padding-bottom: 40px;
    padding-left: 50px;
  }
  section.features-section.py-4 {
    padding-top: 70px !important;
  }

  @media (max-width: 991.98px) {
    section.features-section.py-4 {
      padding-top: 10px !important;
    }
  }

  /* mobile: no pinning at all, plain stacked layout */
  @media (max-width: 991.98px) {
    .story-image-spacer {
      height: auto;
      margin-bottom: 20px;
    }
    .story-image-pin {
      position: static !important;
      width: 100%;
    }
    .story-image {
      height: 300px;
    }
    .story-item {
      min-height: 0;
      padding: 24px 5px;
    }
  }

  /* =========================================================
    FEATURES
  ========================================================= */

  

  /* Image Card */
  .feature-image {
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
  }

  .feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Text / Feature Box */
  .feature-box {
    height: 155px;
    background-color: #f5f6f8;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .feature-box i {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 12px;
  }

  .feature-box h3 {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin: 0 0 6px;
    margin-top: 23px;
  }

  .feature-box p {
    font-size: 10px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
  }

  .py-4 {
    padding-top: 2.5rem !important;
  }

  /* Responsive adjustment for small phones */
  @media (max-width: 575.98px) {
    .feature-image {
      height: 220px;
    }

    .feature-box {
      height: auto;
      min-height: 130px;
      padding: 20px 16px;
    }

    .feature-box h3 {
      font-size: 12px !important;
    }

    .feature-box p {
      font-size: 13px !important;
    }
  }

  :root {
    --container-max: 1320px; /* was referenced but never defined — this was the actual bug */
  }

  /* =========================================================
    SOCIAL GALLERY (single consolidated block)
  ========================================================= */

  .section-heading {
    margin-bottom: 50px;
  }
  .heading-line {
    display: block;
    width: 38px;
    height: 4px;
    background-color: var(--accent-purple);
    border-radius: 4px;
    margin-bottom: 12px;
  }
  .section-heading h2 {
    font-size: clamp(26px, 2.5vw, 34px);
    font-weight: 300;
    color: #111;
    letter-spacing: -0.5px;
    margin: 0;
  }

  .socials-section {
    padding: 50px 0 30px;
  }

  /* heading stays inside the normal centered container, same edges as
    the rest of the page */
  .socials-container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
  }
  @media (max-width: 767.98px) {
    .socials-container {
      padding: 0 16px;
    }
  }

  .social-gallery-outer {
    width: 100%;
    padding-left: max(16px, calc((100vw - var(--container-max)) / 2 + 32px));
    padding-right: 0;
    box-sizing: border-box;
    transition: padding-left 0.35s ease;
    overflow: hidden; /* clip anything Bootstrap's negative margins push out */
  }
  @media (max-width: 767.98px) {
    .social-gallery-outer {
      padding-left: 16px;
    }
  }
  .social-gallery-outer.is-scrolled {
    padding-left: 0;
     width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  }

  /* neutralize Bootstrap's .row / .g-3 negative margins + gutter padding,
    which were fighting the offset above */
  .social-gallery.row {
    --bs-gutter-x: 0;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .social-gallery.row > .social-item {
    padding-left: 0;
    padding-right: 0;
  }

  /* Gallery track - scroll/snap carousel */
  .social-gallery.row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar Firefox */
    -ms-overflow-style: none; /* Hide scrollbar Edge */
    gap: 16px;
    margin: 0;
    padding-bottom: 12px;
    padding-right: 32px; /* small right gutter, last card reads as "cut off" not flush */
  }
  .social-gallery.row::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
  }

  /* Card wrapper - holds the image link + caption together */
  .social-item {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .social-gallery a {
    display: block;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }
  .social-gallery a:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  }

  .social-gallery img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
  }

  /* Caption - purple by default, gold when its card is the active one */
  .social-caption {
    margin: 14px 0 0;
    font-size: 15px;
    color: var(--accent-purple);
    transition: color 0.3s ease;
  }
  .social-item.active .social-caption,
  .social-item:hover .social-caption {
    color: var(--accent-gold);
  }

  /* MOBILE (< 768px): exactly 1 full-width card visible */
  @media (max-width: 767.98px) {
    .social-gallery.row {
      gap: 0;
      margin-left: 0;
      margin-right: 0;
    }
    .social-item {
      flex: 0 0 100vw;
      width: 100vw;
      min-width: 100vw;
      max-width: 100vw;
      padding: 0 4px;
      box-sizing: border-box;
    }
    .social-gallery img {
      height: 300px;
      border-radius: 14px;
    }
  }

  /* DESKTOP (>= 768px): 6 cards visible */
  @media (min-width: 768px) {
    .social-item {
      flex: 0 0 16.6667vw;
      min-width: 16.6667vw;
      max-width: 16.6667vw;
      padding: 0 6px;
      box-sizing: border-box;
    }
    .social-gallery img {
      height: 250px;
      border-radius: 12px;
    }
  }

  /* Bottom Right Circular Outline Arrows */
  .social-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
  }

  .social-arrows button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #00afb8;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
  }
  .social-arrows button path {
    transition: stroke 0.2s ease;
  }
  .social-arrows button:hover {
    background-color: #00AFB8;
  }
  .social-arrows button:hover path {
    stroke: #ffffff;
  }

  /* dimmed + not clickable once you've reached that end of the track */
  .social-arrows button[disabled] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }

  .contact-list li svg {
    width: 19px;
    height: 15px;
    flex-shrink: 0;
  }

  /* =========================================================
    TESTIMONIALS
  ========================================================= */

  :root {
    --primary: #00afb8;
    --accent-purple: #7952b3;
    --testimonials-container-max: 1320px;
  }
  html,
  body {
    overflow-x: hidden;
  }
  body {
    font-family: "Poppins", Arial, sans-serif;
    margin: 0;
  }

  .section-heading {
    margin-bottom: 50;
  }
  .heading-line {
    display: block;
    width: 38px;
    height: 4px;
    background-color: var(--accent-purple);
    border-radius: 4px;
    margin-bottom: 12px;
  }
  .section-heading h2 {
    font-size: clamp(26px, 2.5vw, 34px);
    font-weight: 300;
    color: #111;
    letter-spacing: -0.5px;
    margin: 0;
  }

  .testimonials-section {
    padding-top: 28px;
    padding-bottom: 65px;
      overflow: visible !important;
  }

  /* heading + arrows: normal centered container, same edges as rest of page */
  .testimonials-container {
    max-width: var(--testimonials-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
  }
  @media (max-width: 767.98px) {
    .testimonials-container {
      padding-left: 20px;
      padding-right: 20px;
    }
  }
  .testimonials-track-outer {
    width: 100%;
    padding-left: max(
      20px,
      calc((100vw - var(--testimonials-container-max)) / 2 + 40px)
    );
    padding-right: 0;
    box-sizing: border-box;
  }
  @media (max-width: 767.98px) {
    .testimonials-track-outer {
      padding-left: 20px;
    }
  }
  /*  */


  .testimonials-track-outer {
    transition: padding-left 0.35s ease;  
  }
  .testimonials-track-outer.is-scrolled {
    padding-left: 0;
     width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  }
 

  .testimonials-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 20px;
    margin: 0;
    padding-bottom: 12px;
    padding-right: 40px;
  }
  .testimonials-row::-webkit-scrollbar {
    display: none;
  }

  .testimonials-row .testimonial-item {
    scroll-snap-align: start;
  }

  @media (min-width: 992px) {
    .testimonials-row .testimonial-item {
      flex: 0 0 calc(27% - 15px);
    }
  }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .testimonials-row .testimonial-item {
      flex: 0 0 42%;
    }
  }
  @media (max-width: 767.98px) {
    .testimonials-row {
      gap: 16px;
    }
    .testimonials-row .testimonial-item {
      flex: 0 0 88%;
      scroll-snap-stop: always;
    }
  }

  .testimonial-card {
    background: #fafafa;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #edf0f3;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    height: 100%;
    min-height: 155px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
  }
  .testimonial-card .stars {
    color: var(--primary);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  .testimonial-card p {
    margin: 0 0 13px;
    color: #666;
    font-size: 13px;
    line-height: 1.65;
  }
  .testimonial-card strong {
    color: #333;
    font-size: 13px;
    font-weight: 600;
  }

  .popular-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
  }
  .popular-arrows button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
  }
  .popular-arrows button:hover {
    background-color: var(--primary);
  }
  .popular-arrows button:hover path {
    stroke: #fff;
  }
  .popular-arrows button[disabled] {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
  }
  /* =========================================================
    TESTIMONIAL SLIDER - 
    ========================================================= */
  #testimonialsTrack {
      display: flex !important;
      flex-wrap: nowrap !important;
      gap: 20px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-behavior: smooth;
      scroll-snap-type: x mandatory;

      
      align-items: stretch;
  }
  #testimonialsTrack .testimonial-item {
      flex: 0 0 420px !important;
      width: 420px !important;
      min-width: 420px !important;
      max-width: 420px !important;

      transform: none !important;
      scale: 1 !important;

      transition: none !important;

      scroll-snap-align: start;
  }
  #testimonialsTrack .testimonial-item:hover {
      transform: none !important;
      scale: 1 !important;

      width: 420px !important;
      min-width: 420px !important;
      max-width: 420px !important;
  }
  #testimonialsTrack .testimonial-item.active {
      transform: none !important;
      scale: 1 !important;

      width: 420px !important;
      min-width: 420px !important;
      max-width: 420px !important;
  }
  #testimonialsTrack .testimonial-item:focus,
  #testimonialsTrack .testimonial-item:focus-visible {
      transform: none !important;
      scale: 1 !important;
  }

  #testimonialsTrack .testimonial-item > * {
      transform: none !important;
  }
  @media (max-width: 991.98px) {
      #testimonialsTrack .testimonial-item {
          flex: 0 0 360px !important;
          width: 360px !important;
          min-width: 360px !important;
          max-width: 360px !important;
      }

      #testimonialsTrack .testimonial-item:hover,
      #testimonialsTrack .testimonial-item.active {
          width: 360px !important;
          min-width: 360px !important;
          max-width: 360px !important;
          transform: none !important;
          scale: 1 !important;
      }
  }

  @media (max-width: 575.98px) {
      #testimonialsTrack .testimonial-item {
          flex: 0 0 calc(100vw - 40px) !important;
          width: calc(100vw - 40px) !important;
          min-width: calc(100vw - 40px) !important;
          max-width: calc(100vw - 40px) !important;
      }

      #testimonialsTrack .testimonial-item:hover,
      #testimonialsTrack .testimonial-item.active {
          width: calc(100vw - 40px) !important;
          min-width: calc(100vw - 40px) !important;
          max-width: calc(100vw - 40px) !important;
          transform: none !important;
          scale: 1 !important;
      }
  }
  
  /* =========================================================
    FOOTER
  ========================================================= */
  body {
    font-family: "Poppins", sans-serif;
  }

  .site-footer,
  .site-footer a,
  .site-footer li,
  .site-footer p,
  .site-footer h3,
  .site-footer h4 {
    font-family: "Poppins", sans-serif;
  }

  .site-footer {
    background: #fff;
    border-top: 1px solid #eaeaea;
    padding-top: 45px;
  }

  /* Logo & Badge */
  .footer-logo img {
    max-width: 140px;
    height: auto;
    display: block;
    margin-bottom: 16px;
  }

  .footer-badge {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
  }

  /* Headings */
  .site-footer h3 {
    font-size: 15px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
  }

  /* Links */
  .site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .site-footer ul li {
    margin-bottom: 10px;
    font-size: 10.5px;
  }

  .site-footer ul li a {
    color: #555555;
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .site-footer ul li a:hover {
    color: var(--primary);
  }

  .contact-col {
    max-width: 220px;
  }

  .site-footer ul.contact-list {
    list-style: none !important;
    padding: 0 !important;
    padding-left: 0 !important;
    margin: 0 !important;
  }

  .contact-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 10.5px !important;
    color: #555555;
    margin-bottom: 14px !important;
    line-height: 1 !important;
    text-align: left !important;
  }

  .contact-list i {
    font-size: 13px !important;
    color: #111111;
    margin-top: 3px !important;
    width: 16px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
  }

  .contact-list div strong {
    display: block;
    color: #111111;
    font-weight: 600;
    font-size: 13.5px;
    margin-bottom: 2px;
  }

  .contact-list a {
    color: #555555;
    text-decoration: none;
    font-size: 11.5px;
    transition: color 0.2s ease;
  }

  .contact-list a:hover {
    color: var(--primary);
  }

  /* Newsletter Column */
  .newsletter-col {
    width: 100%;
    max-width: 250px;
  }

  .newsletter-col p {
    font-size: 12.5px;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .newsletter-form input {
    width: 100%;
    height: 36px;
    background-color: #f2f2f2;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
    outline: none;
  }

  .newsletter-form input:focus {
    background-color: #fff;
    border-color: var(--primary);
  }

  .newsletter-form button {
    height: 34px;
    padding: 0 20px;
    background-color: var(--primary);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .newsletter-form button:hover {
    background-color: #008f8f;
  }

  /* Copyright */
  .copyright {
    border-top: 1px solid #eaeaea;
    margin-top: 40px;
    padding: 18px 0;
    text-align: center;
  }

  .copyright p {
    margin: 0;
    color: #666;
    font-size: 11px;
  }
  .contact-list li:nth-child(3) svg {
    width: 14px;
    height: 14px;
  }
  .contact-list svg {
    width: 14px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .contact-list svg path {
    fill: #111111;
  }
  /* =========================================================
    MOBILE VIEW (< 992px): Clean Stacked List
  ========================================================= */
  @media (max-width: 991.98px) {
    .site-footer {
      padding-top: 36px;
    }
    .site-footer .footer-col {
      width: 100% !important;
      max-width: 100% !important;
      text-align: left !important;
    }

    .site-footer h3 {
      font-size: 16px;
      font-weight: 700;
      margin-top: 6px;
      margin-bottom: 14px;
      text-align: left;
    }

    .site-footer ul li {
      margin-bottom: 12px;
      font-size: 14px;
    }

    .contact-col {
      max-width: 100% !important;
      text-align: left !important;
    }

    .site-footer ul.contact-list {
      padding-left: 0 !important;
    }

    .contact-list li {
      font-size: 14px !important;
      margin-bottom: 14px !important;
    }

    .newsletter-col {
      max-width: 100% !important;
    }

    .newsletter-form input,
    .newsletter-form button {
      width: 100%;
    }
    /* second-logo */
    .footer-col:has(.footer-logo),
    .footer-col:first-child {
      display: flex !important;
      flex-direction: row !important; 
      align-items: center !important;
      gap: 16px !important;
    }

    .footer-logo {
      display: inline-block !important;
    }

    .footer-logo img {
      width: 100px !important;
      margin-bottom: 0 !important;
    }

    .footer-badge {
      margin-top: 0 !important;
    }
    .contact-list li svg {
      width: 19px;
      height: 15px;
      flex-shrink: 0;
    }
  }
  /* listing */
  .hero-banner {
    position: relative;
    background:
      url('../images/Group\ 2015.jpg') center/cover no-repeat;
  
      width: 100%;
      min-height: 60px;
          padding: 33px 20px;
      text-align: center;
      color: #fff;
      box-sizing: border-box;
  }
  
  .hero-heading {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
  }
  
  .hero-crumbs {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .hero-crumbs a {
    color: #C2C2C2;
  }
  
  .hero-crumbs a:hover {
    text-decoration: underline;
  }
  .shop-sidebar {
    padding-right: 18px;
  }
  
  .sidebar-title {
    color: var(--bw-teal);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    border-bottom: 1.2px solid #000000;
    padding-bottom: 10px;
  }
  
  .product-count {
    color: #999;
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .sidebar-section {
    margin-bottom: 28px;
  }
  
  .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .category-list li {
    font-size: 12px;
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .category-list li a {
    color: #000000;
    text-decoration: none;
    font-size: 12px;
  }
  
  .category-list li a:hover {
    color: var(--bw-teal);
  }
  
  .category-parent {
    background: #f4f4f4;
    padding: 8px !important;
    font-weight: 800;
    border-radius: 10px 10px 0px 0px;
  }
  
  .category-sub {
    padding-left: 10px !important;
    /* font-size: 11px !important; */
    background-color: #F4F4F4;
  }
  /* =========================
      CATEGORY ACCORDION (plus / minus dropdown)
    ========================= */
  .category-list li.category-parent-item {
    display: block;
    padding: 0 !important;
  }
  
  .category-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    cursor: pointer;
  }
  
  .category-parent-item.is-open .category-row {
    background: #f4f4f4;
    padding: 8px !important;
    font-weight: 800;
    border-radius: 10px 10px 0px 0px;
  }
  
  .cat-toggle-btn {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  
  .cat-toggle-btn img {
    width: 12px;
    height: 12px;
    display: block;
  }
  
  .cat-toggle-btn .icon-minus {
    display: none;
  }
  
  .category-parent-item.is-open .cat-toggle-btn .icon-plus {
    display: none;
  }
  
  .category-parent-item.is-open .cat-toggle-btn .icon-minus {
    display: block;
  }
  
  .category-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  
  .category-parent-item.is-open .category-sub-list {
    max-height: 1000px;
  }
  
  .category-sub-list .category-sub {
    padding: 8px 0 8px 10px !important;
  }
  /* Price range */
  
  .price-range-slider {
      position: relative;
      width: 100%;
      height: 22px;
      margin-bottom: 8px;
  }
  
  /* Gray line */
  
  .slider-track {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      height: 2px;
      background: #d9d9d9;
      transform: translateY(-50%);
  }
  
  /* Black selected line */
  .slider-fill {
      position: absolute;
      top: 50%;
      left: 9.9%;
      width: 40.1%;
      height: 2px;
      background: #000;
      transform: translateY(-50%);
  }
  
  /* Slider */
  
  .range-input {
      position: absolute;
      top: 0;
      left: 0;
  
      width: 100%;
      height: 22px;
  
      margin: 0;
      padding: 0;
  
      background: transparent;
      pointer-events: none;
  
      appearance: none;
      -webkit-appearance: none;
  }
  .range-input::-webkit-slider-runnable-track {
      height: 22px;
      background: transparent;
  }
  
  .range-input::-webkit-slider-thumb {
      appearance: none;
      -webkit-appearance: none;
  
      width: 3px;
      height: 18px;
  
      margin-top: 2px;
  
      background: #000;
      border: 0;
      border-radius: 0;
  
      pointer-events: auto;
      cursor: pointer;
  }
  /* Firefox */
  .range-input::-moz-range-track {
      height: 22px;
      background: transparent;
  }
  .range-input::-moz-range-thumb {
      width: 3px;
      height: 18px;
  
      background: #000;
      border: 0;
      border-radius: 0;
  
      pointer-events: auto;
      cursor: pointer;
  }
  /* Layering */ 
  .range-min {
      z-index: 3;
  }
  .range-max {
      z-index: 2;
  }
  /* Price values */
  .price-values {
      display: flex;
      justify-content: space-between;
  
      width: 100%;
  
      font-size: 14px;
      color: #000;
  }
  /* shop top bar */
  .shop-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .shop-total {
    font-size: 14px;
    color: #141313;
  }
  
  .sort-box {
    border: 0;
    color: #141313;
    font-size: 14px;
    outline: none;
    background: transparent;
  }
  /* catalog product cart */
  .catalog-product-card {
    background: #F4F4F4;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    position: relative;
    transition: 0.3s ease;
  }
  
  .catalog-product-card:hover {
    transform: translateY(-3px);
  }
  
  .catalog-product-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }
  
  .catalog-product-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    color: #141313;
  }
  
  .catalog-product-price {
    font-size: 12px;
    color: #141313;
    margin-bottom: 10px;
  }
  
  .catalog-product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
  }
  
  .catalog-product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .catalog-product-badge img {
    width: 60px;
    padding: 4px;
    height: auto;
    display: block;
  }
  
  .catalog-add-cart {
    background: var(--bw-teal);
    border: none;
    color: #fff;
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 8px;
  }
  
  .catalog-sale-badge {
    position: absolute;
    right: 18px;
    bottom: 18px;
    background-color: #FF0C10;
    color: #ffffff;
    font-size: 8px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 50px;
    line-height: 1;
    margin-bottom: 10px;
    margin-right: 10px;
  }
  
  .catalog-sale-badge img {
    width: 33.33px;
    height: 16px;
  }
  /* mob filter button */
  .mobile-filter-btn {
    display: none;
  }
  .catalog-section {
    padding-top: 50px !important;
  }
  /* tab */
  @media (max-width: 991.98px) {
  
    .shop-section {
      padding: 30px 0;
    }
  
    .shop-sidebar {
      padding-right: 10px;
    }
  
    .catalog-product-image {
      height: 200px;
    }
  
    .sidebar-title {
      font-size: 17px;
    }
  }
  /* mob */
  @media (max-width: 767.98px) {
  
    .shop-section {
      padding: 20px 12px;
    }
  
    /* Hide desktop sidebar */
    .desktop-sidebar {
      display: none;
    }
  
    /* Mobile filter */
    .mobile-filter-btn {
      display: flex;
      width: 100%;
      justify-content: space-between;
      align-items: center;
      background: var(--bw-teal);
      color: #fff;
      border: none;
      border-radius: 5px;
      padding: 12px 15px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 15px;
    }
  
    .mobile-filter-btn:focus {
      box-shadow: none;
    }
  
    .mobile-filter-content {
      background: #f7f7f7;
      padding: 18px;
      border-radius: 5px;
      margin-bottom: 20px;
    }
  
    .shop-topbar {
      margin-bottom: 15px;
    }
  
    .shop-total {
      font-size: 12px;
    }
  
    .sort-box {
      font-size: 12px;
    }
  
    .catalog-product-image {
      height: 230px;
    }
  
    .catalog-product-name {
      font-size: 13px;
    }
  
    .catalog-product-price {
      font-size: 11px;
    }
  
    .catalog-product-card {
      padding: 9px;
    }
  }
  /*small mob*/
  @media (max-width: 400px) {
  
    .shop-section {
      padding-left: 8px;
      padding-right: 8px;
    }
  
    .catalog-product-image {
      height: 200px;
    }
  
    .shop-topbar {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
  }
  /* product details */

  .product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px 24px;
    align-items: start;
  }
  .product-gallery {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  .gallery-main {
    aspect-ratio: 4/3.4;
  }
  .gallery-thumb {
    width: 100%px;
    height: 400px; 
    border: 1px solid #eaeaea;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .fit-image {
    width: 100%;
    height: 100%;
    object-fit: contain; 
  }
  .gallery-main img {
    width: 100%;
    height: 450px;
    object-fit: contain;
  }
  .bedframe-diagram {
    width: 80%;
    height: auto;
  }

  .product-info .sku {
    color: var(--bw-teal);
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 0 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }
  .product-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000000;
  }
  .d-price-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    border-bottom: 1px solid #000000;
    margin-bottom: 22px;
  }
  .d-price {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--bw-teal);
  }
  .stock-badge {
    background: var(--bw-teal);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
  }
  .field-group {
    margin-bottom: 22px;
    padding-bottom: 25px;
    border-bottom: 1px solid #000;
  }

  .field-group > label {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--bw-teal);
    margin-bottom: 8px;
  }
  .size-select {
    width: 220px;
    max-width: 100%;
    padding: 11px 16px;
    border: 1px solid var(--bw-purple);
    border-radius: 25px;
    color: var(--bw-purple);
    font-weight: 00;
    background: var(--white);
    appearance: none;
    background-image: url("../images/Vector 245.svg");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 15px 7px;
  }
  .qty-cart-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid var(--bw-purple);
    border-radius: 25px;
    overflow: hidden;
  }
  .qty-btn {
    background: none;
    border: none;
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--bw-purple);
  }
  .qty-stepper input {
    width: 36px;
    border: none;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-body);
    color: var(--bw-purple);
  }
  .add-to-cart {
    background: var(--bw-purple);
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    padding: 10px 26px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
  }
  /* ACCORDION */
  .accordion {
    width: 100%;
    margin-top: 20px;
  }

  .accordion details {
    border-bottom: 1px solid #ddd;
  }

  .accordion summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 0;
    cursor: pointer;
    list-style: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--bw-teal);
  }

  .accordion summary::-webkit-details-marker {
    display: none;
  }

  .accordion summary::marker {
    display: none;
  }

  .accordion-arrow {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    object-fit: contain;
    transition: transform 0.3s ease;
  }

  .accordion details[open] .accordion-arrow {
    transform: rotate(180deg);
  }

  .accordion-body {
    padding: 0 0 18px 0;
  }

  .accordion-body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #000000;
  }
  .tabs-section {
    padding: 8px 24px 56px;
    border-bottom: 1px solid #000;
  }
  .tabs-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-top: 1px solid #000;
    padding-top: 26px;
    margin-bottom: 34px;
  }
  .tab-btn {
    background: none;
    border: none;
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--grey-text);
    cursor: pointer;
    padding-bottom: 10px;
    border-bottom: 2px solid transparent;
  }
  .tab-btn.active {
    color: var(--bw-teal);
    border-bottom-color: var(--bw-teal);
  }
  .tab-panel h2 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-weight: 700;
  }
  .tab-panel h3 {
    font-size: 14px;
    margin-top: 24px;
    font-weight: 600;
  }
  .tab-panel p {
    color: #000000;
    max-width: 900px;
    font-size: 14px;
  }
  .tab-panel ul {
    color: #000000;
    padding-left: 20px;
    margin-top: 10px;
    font-size: 14px;
  }
  .tab-panel li {
    margin-bottom: 6px;
    max-width: 850px;
  }
  .specs-table {
    border-collapse: collapse;
    width: 100%;
    max-width: 700px;
  }
  .specs-table th,
  .specs-table td {
    text-align: left;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
  }
  .specs-table th {
    color: var(--purple);
    width: 200px;
    font-family: var(--font-head);
  }

  @media (max-width: 768px) {
    .product-section {
      grid-template-columns: 1fr;
      gap: 24px;
      padding: 30px 16px;
    }
  }
