/* ==========================================================================
   Face Paint SuperStore Funtopia — Custom global CSS
   Bootstrap 5 handles grid/layout/responsiveness. This file only holds
   brand-specific styling Bootstrap doesn't provide: color tokens, custom
   fonts, decorative effects, and component looks unique to this design.
   ========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Judson:wght@400;700&display=swap");

:root {
    --color-teal: #189692;
    --color-teal-light: #8cd4d2;
    --color-teal-bg: #eafffe;
    --color-purple: #9d5abc;
    --color-purple-bg: #fcf4ff;
    --color-dark-teal: #295150;
    --color-text: #5b5b5b;
    --color-text-muted: #919090;
    --fp-purple: #8f43b2;
    --fp-teal: #189692;
    --border-bottom: #d9d9d9;

    --font-heading: "Judson", serif;
    --font-body: Arial, sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.link-with-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-purple);
    font-weight: 500;
}

.link-with-arrow img {
    width: 18px;
}

.section-title {
    font-size: clamp(28px, 4vw, 67px);
    color: var(--color-teal-light);
    line-height: 0.89;
}

.section-title span,
.section-title.purple {
    color: var(--color-purple);
}

/* ---------- Header ---------- */

.site-header {
    padding: 20px 0;
}

.logo img {
    height: 50px;
    object-fit: contain;
}

.btn-teal {
    background-color: var(--color-teal);
    color: #ffffff;
    border-radius: 9px;
    padding: 12px 20px;
    font-weight: 500;
    border: none;
}

/* .btn-teal:hover {
  opacity: 0.85;
  color: #ffffff;
} */

/* ---------- Header nav row (single line on desktop) ---------- */
.header-nav-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: nowrap;
}

.nav-row-left {
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.main-nav .main-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
    flex-wrap: nowrap;
}

.main-nav .main-menu li {
    list-style: none;
}

.main-nav .main-menu a {
    display: inline-block;
    padding: 8px 12px;
    white-space: nowrap;
    color: var(--color-teal);
    font-weight: 500;
}

.main-nav .main-menu a:hover {
    color: var(--color-purple);
}

.nav-search {
    flex: 1 1 auto;
    min-width: 0;
}

.nav-right {
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .header-nav-row {
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        order: 5;
        background: #fff;
        padding: 10px 0;
    }

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

    .main-nav a {
        width: 100%;
        padding: 10px 4px;
    }
}

/* ---------- My account dropdown ---------- */
.box-dropdown-cart {
    position: relative;
}

.dropdown-account {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    min-width: 150px;
    padding: 8px 0;
    z-index: 1000;
    /* margin-top: 8px; */
}

.box-dropdown-cart:hover .dropdown-account,
.box-dropdown-cart:focus-within .dropdown-account {
    display: block;
}

.dropdown-account ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dropdown-account ul li {
    list-style: none;
}

.dropdown-account ul li a {
    display: block;
    padding: 8px 18px;
    color: var(--color-teal);
    font-size: 14px;
    white-space: nowrap;
}

.dropdown-account ul li a:hover {
    background: var(--color-teal-bg);
    color: var(--color-purple);
}

/* ---------- Nav right list ---------- */
.nav-right {
    list-style: none;
}

.search-bar {
    background-color: #f6f6f6;
    border-radius: 9px;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    color: var(--color-text);
}

.search-bar input:focus {
    box-shadow: none;
}

.nav-right a {
    color: var(--color-teal);
    font-weight: 500;
}

.cart-icon-wrap {
    position: relative;
    width: 24px;
    height: 24px;
    display: inline-block;
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
}

.cart-count-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
}

/* ---------- Hero ---------- */
.hero-banner {
  background-image: url('../images/banner.png');
  background-size: cover;
  background-position: center;
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
}

@media (min-width: 992px) {
    .hero-banner {
        min-height: 670px;
    }
}
.hero-content{
      position: absolute;
    /* left: 7%; */
    top: -78px;

}
.hero-content h1 {
    font-size: clamp(36px, 6vw, 72px);
    color: #ffffff;
    line-height: 0.89;
}

.hero-content .link-with-arrow {
    color: #ffffff;
}

.hero-content .link-with-arrow img {
    filter: brightness(0) invert(1);
}

/* ---------- Categories ---------- */
.section-desc {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.category-card .img-wrapper {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card h3 {
    font-size: clamp(20px, 2vw, 28px);
    color: var(--color-purple);
}

/* about ------------------------------------------------------------------ */

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

.about-stage {
    position: relative;
    width: 100%;
    /* max-width: 1100px; */
    aspect-ratio: 828 / 390;
    margin: 0 auto;
    background: #FCF4FF;
    /* overflow: hidden; */
    overflow: visible !important;
}

.el-about {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.el-about img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Left portrait */
.img-left-about {
    left: 8.7%;
    top: 14.7%;
    width: 23.9%;
    height: 50.6%;
}

/* Top right  */
.img-top-right-about {
    left: 70.5%;
    top: -7.25%;
    width: 16.8%;
    height: 35.2%;
}

.img-bottom-right-about {
       left: 70.5%;
    top: 25.4%;
    width: 20.8%;
    height: auto;
}

.img-brush-set-about {
    left: 15.1%;
    top: 57.5%;
    width: 14.9%;
    height: 33%;
    border-radius: 10px;
}

/* Text block */
.text-block-about {
    position: absolute;
    left: 37.6%;
    top: 11.5%;
    width: 29%;
}

.headline-about {
  font-weight: 700;
  font-size: clamp(18px, 4.5vw, 10vw);
  line-height: 0.89;
  margin-bottom: 1rem;
}

.headline-about span {
    display: block;
}

.headline-about .l1,
.headline-about .l2 {
    color: #9d5abc;
}

.headline-about .l3 {
    color: #8cd4d2;
}
.text-block-about span.subtitle-about {
    color: #8F43B2;
    font-family: "ariral", sans-serif;
    font-weight: 400;
    position: absolute;
    top: -5%;
    font-size: 18px;
}

.body-text-about {
  font-size: clamp(8px, 0.95vw, 16px);
  line-height: 1.45;
  color: #919090;
  margin-bottom: 1.4em;
  margin-top: 3em;
}
.text-block-about ul{
     font-size: clamp(8px, 0.95vw, 16px);
  line-height: 1.45;
  color: #919090;
  margin-bottom: 1.4em;
  font-family: "arial", sans-serif;
}

.shop-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(8px, 1vw, 17px);
    font-weight: 400;
    color: #8f43b2;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.text-block-about .shop-link{
    font-size: 18px;
    margin-top: 1em;
}
 @media (min-width: 1920px) and (max-width: 2559px){
.text-block-about .shop-link{
    margin-top: 5em;
}
 }
/* ---------- About section: mobile responsive ---------- */
@media (max-width: 767.98px) {
    .about-stage {
        aspect-ratio: auto;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        gap: 14px;
        padding: 24px 18px;
        background: #FCF4FF;
    }

    .el-about,
    .text-block-about {
        position: static;
        height: auto;
    }

    .img-left-about {
        order: 1;
        width: 100%;
        max-width: 280px;
        aspect-ratio: 3 / 4;
        margin: 0 auto;
    }

    .text-block-about {
        order: 2;
        width: 100%;
        text-align: center;
        padding: 0 8px;
    }

    .text-block-about span.subtitle-about {
        position: static;
        display: block;
        margin-bottom: 8px;
    }

    .headline-about {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 0.8rem;
    }

    .body-text-about {
        font-size: 13px;
        margin-top: 0.5em;
        margin-bottom: 1rem;
    }

    .text-block-about ul {
        text-align: left;
        max-width: 420px;
        margin: 0 auto 1rem;
        padding-left: 1.1rem;
    }

    .text-block-about .shop-link {
        font-size: 15px;
        margin-top: 0.5em;
        justify-content: center;
    }

    .img-brush-set-about,
    .img-bottom-right-about {
        width: calc(50% - 7px);
        aspect-ratio: 1 / 1;
        height: auto;
    }

    .img-brush-set-about {
        order: 3;
    }

    .img-bottom-right-about {
        order: 4;
    }
    section#featured-products {
    margin-top: 30px;
    margin-bottom: 30px;
}
section#best-selling {
    margin-top: 30px;
    margin-bottom: 30px;
}
}

@media (max-width: 575.98px) {
    .headline-about {
        font-size: clamp(24px, 9vw, 32px);
    }

    .body-text-about,
    .text-block-about ul {
        font-size: 12px;
    }
}

.shop-link:hover {
    border-color: #8cd4d2;
}

.shop-link svg {
    width: 1em;
    height: 1em;
    color: #8cd4d2;
}

/* ---------- Products ---------- */
.product-img {
    border: 1px solid #d9d9d9;
    border-radius: 15px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-title {
    font-size: 14px;
    color: #295150;
    line-height: 1.4;
    min-height: 2.8em;
}

.product-price {
    font-size: 20px;
    color: var(--color-purple);
    font-weight: 600;
}

.add-btn {
    background: none;
    border: none;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.add-btn:hover {
    transform: scale(1.1);
}

.add-btn img {
    width: 100%;
    height: 100%;
}

/* Right Brush ------------------------------------------------------------------ */

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

.stage {
    position: relative;
    width: 100%;
    /* max-width: 1100px; */
    aspect-ratio: 828 / 390;
    margin: 0 auto;
    background: #eafffe;
    border-radius: 24px;
    /* overflow: hidden; */
    overflow: visible !important;
}

.el {
    position: absolute;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
}

.el img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Left portrait */
.img-left {
    left: 8.7%;
    top: 14.7%;
    width: 21.9%;
    height: 65.6%;
}

/* Top right  */
.img-top-right {
    left: 70.5%;
    top: -7.25%;
    width: 16.8%;
    height: 35.2%;
}

.img-bottom-right {
    left: 70.5%;
    top: 34.4%;
    width: 16.8%;
    height: 31.9%;
}

.img-brush-set {
    left: 35.1%;
    top: 74.5%;
    width: 16.9%;
    height: 35%;
    border-radius: 10px;
}

/* Text block */
.text-block {
    position: absolute;
    left: 37.6%;
    top: 11.5%;
    width: 26%;
}

.headline {
  font-weight: 700;
  font-size: clamp(18px, 4.5vw, 10vw);
    line-height: 0.89;
  margin-bottom: 1rem;
}

.headline span {
    display: block;
}

.headline .l1,
.headline .l2 {
    color: #9d5abc;
}

.headline .l3 {
    color: #8cd4d2;
}

.body-text {
  font-size: clamp(8px, 0.95vw, 16px);
  line-height: 1.45;
  color: #919090;
  margin-bottom: 1.4em;
}

.shop-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: clamp(8px, 1vw, 17px);
    font-weight: 400;
    color: #8f43b2;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.shop-link:hover {
    border-color: #8cd4d2;
}

.shop-link svg {
    width: 1em;
    height: 1em;
    color: #8cd4d2;
}

/* ---------- Bold Colors ---------- */
.bold-text-top span {
    color: #8cd4d2;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 0.89;
    font-family: judson;
}

.bold-bg {
    background-color: #000000;
    color: #ffffff;
}

.bold-text-area {
    padding: 60px 20px;
}

.bold-cards-carousel {
    position: relative;
}

.bold-cards-carousel .carousel-item {
    padding: 0 10px;
}

.bold-cards-carousel .b-card {
    width: 100%;
}

/* Push nav arrows below the card content instead of overlapping the middle */
.bold-cards-carousel .carousel-control-prev,
.bold-cards-carousel .carousel-control-next {
    top: auto;
    bottom: -45px;
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
}

.bold-cards-carousel .carousel-control-prev {
    left: calc(50% - 50px);
}

.bold-cards-carousel .carousel-control-next {
    right: calc(50% - 50px);
}

.bold-cards-carousel .carousel-indicators {
    position: static;
    margin-top: 55px;
}

.bold-cards-carousel .carousel-indicators button {
    background-color: #000;
}

@media (min-width: 992px) {
    .bold-text-area {
        padding: 100px 60px;
    }
}

.bold-text-top h2 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 0.89;
    color: #ffffff;
}

.bold-text-top p {
    font-size: 14px;
    line-height: 1.8;
    color: #d2d2d2;
}

.bold-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 320px;
}

.carousel-indicators {
    bottom: -55px !important;
}

.b-card {
    background-color: var(--color-teal-light);
    padding: 20px;
}

.b-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.b-card-info h4 {
    font-family: var(--font-body);
    color: var(--color-text);
    font-size: 12px;
    font-weight: 400;
}

.shop-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8f43b2;
    font-weight: 400;
    font-size: 12px;
}

.shop-link img {
    width: 12px;
    height: 12px;
}
 .b-card-info a.shop-link {
    color: #000;
}
.imagination-banner {
  background-image: url('../images/cat-face.png');
  background-size: cover;
  background-position: center 20%;
  aspect-ratio: 16 / 9;
  position: relative;
  /* min-height: 320px; */
}

@media (min-width: 992px) {
    .imagination-banner {
        aspect-ratio: 1.8 / 1;
        min-height: 480px;
    }
}

.imagination-content h2 {
  color: #8cd4d2;
font-size: clamp(1.75rem, 3.2vw, 5.9rem);
  line-height: 0.89;
  font-weight: 500;
  /* position: absolute;
    left: 10%;
    top: 38%; */
}

.imagination-right p {
    color: #3a3a3a;
    font-size: 0.89rem;
    line-height: 1.5;
    max-width: 220px;
}

.imagination-right .link-with-arrow {
    color: #8f43b2;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.imagination-right .link-with-arrow img {
    width: 14px;
    height: 14px;
}

.imagination-bar {
    height: 14px;
    background-color: #8cd4d2;
    width: 100%;
}

@media (max-width: 767.98px) {
    .imagination-bar {
        height: 10px;
    }

    .imagination-content h2 {
        font-size: clamp(1.5rem, 3.2vw, 2.9rem);
    }

    .imagination-right p {
        font-size: 15px;
    }

    .imagination-banner {
        aspect-ratio: 16 / 7;
        background-size: cover;
        background-position: center 20%;
    }
}

.site-footer {
    background-color: #8cd4d2;
    padding-top: 3rem;
    padding-bottom: 2rem;
}

.footer-col h4 {
  color: #295150;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
    font-family: "arial", sans-serif;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-col ul li a {
      color: #295150;
    font-size: 0.89rem;
    text-decoration: none;
    font-weight: 500;
}

.footer-col ul li a:hover {
  text-decoration: none;
}

.newsletter-col p {
  color: #295150;
  font-size: 0.89rem;
  line-height: 1.5;
  max-width: 320px;
}

.subscribe-form {
    display: flex;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    max-width: 340px;
}

.subscribe-form input {
    flex: 1;
    border: none;
    padding: 0.7rem 1rem;
    font-size: 0.85rem;
    outline: none;
}

.subscribe-form button {
    border: none;
    background: transparent;
    color: #295150;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.7rem 1.1rem;
    cursor: pointer;
}

/* .social-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #295150;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-icon-circle img {
  width: 14px;
  height: 14px;
} */

.footer-bottom {
    border-top: 1px solid rgba(41, 81, 80, 0.35);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
  color: #295150;
  font-size: 14px;
}

.footer-bottom a {
    color: #295150;
    text-decoration: underline;
}

.categories-slider,
.products-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 90px;
}

.categories-slider.no-padding,
.products-slider.no-padding {
    padding-left: 0;
}

@media (max-width: 1400px) {
    .categories-slider,
    .products-slider {
        padding-left: 6%;
    }
}

.categories-track,
.products-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-left: calc((100vw - 1320px) / 2 + 12px);
    padding-right: 100px;
    padding-bottom: 2px;
    scroll-padding-left: calc((100vw - 1320px) / 2 + 12px);
        touch-action: pan-x;

}

.categories-track::-webkit-scrollbar,
.products-track::-webkit-scrollbar {
    display: none;
}

.category-slide,
.product-slide {
    flex: 0 0 320px;
    scroll-snap-align: start;
    min-width: 0;
}

@media (max-width: 767.98px) {
    .category-slide,
    .product-slide {
        flex: 0 0 260px;
    }
}

/* Controls: pinned centered, independent of the parent's padding shifts */
.categories-slider-controls,
.slider-controls {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1320px;
    /* padding: 0 12px; */
    display: flex;
    justify-content: end;
    gap: 1rem;
    pointer-events: none; /* let clicks pass through the wrapper... */
}

.categories-slider-controls .slider-arrow,
.slider-controls .slider-arrow {
    pointer-events: auto; /* ...but the buttons themselves stay clickable */
}

/* featured  */
/* Slider frame (shared pattern) ------------------------------------------- */
.products-slider {
    display: flex;
    flex-direction: column;
}

.products-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
}

.products-track::-webkit-scrollbar {
    display: none;
}

.product-slide {
    flex: 0 0 78%;
    scroll-snap-align: start;
    min-width: 0;
}

@media (min-width: 576px) {
    .product-slide {
        flex-basis: 46%;
    }
}

@media (min-width: 768px) {
    .product-slide {
        flex-basis: 31%;
    }
}

@media (min-width: 992px) {
    .product-slide {
        flex-basis: 23%;
    }
}

@media (min-width: 1200px) {
    .product-slide {
        flex-basis: 18.4%;
    }

    /* ~5 visible on wide screens */
}

.slider-controls {
    display: flex;
    justify-content: end;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border:none;
    background-color: #FBF4FF;
    color: #8f43b2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
     touch-action: manipulation;
}

.slider-arrow:hover:not(:disabled) {
    background-color: #8f43b2;
    color: #fff;
}

.slider-arrow:disabled {
    opacity: 0.35;
    cursor: default;
}

@media (max-width: 575.98px) {
    .slider-arrow {
        width: 36px;
        height: 36px;
    }
}

/* Equal-size product cards (kept from before) ------------------------------ */
.product-card {
    height: 100%;
}

.product-img {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    line-height: 1.4em;
    margin-bottom: 4px;
    font-family: arial;
}

.add-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #8f43b2;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.add-btn img {
    width: 14px;
    height: 14px;
}

/* listing */

.breadcrumb-bar {
    border-bottom: 1px solid var(--border-bottom);
    border-top: 1px solid var(--border-bottom);
}

.page-title {
    color: #fff;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-family: "arial", sans-serif !important;
}

.breadcrumb-trail {
    color: #ff;
    font-size: 0.95rem;
}

.breadcrumb-trail a {
    color: #fff;
    text-decoration: none;
        margin-right: 5px;
    margin-left: 5px;
}

.breadcrumb-trail .current {
    color: #fff;
    font-weight: 500;
}

.breadcrumb-trail .sep {
    margin: 0 0.5rem;
    color: #b7b7b7;
}

/* Sidebar */
.shop-sidebar h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #295150;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-bottom);
    margin-bottom: 1rem;
    font-family: Arial, sans-serif;
}

.shop-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.shop-sidebar ul li {
    margin-bottom: 0.9rem;
}

.shop-sidebar ul li a {
    color: #295150;
    text-decoration: none;
    font-size: 0.9rem;
}

.shop-sidebar ul li a:hover,
.shop-sidebar ul li a.active {
    color: var(--fp-teal);
}

/* Toolbar */
.shop-toolbar {
    color: #b7b7b7;
    font-size: 0.95rem;
}

.sort-select {
    color: #b7b7b7;
    background: transparent;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
}

/* Product grid (reuses .product-card styling from the site, in a static grid) */
.shop-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 575px) {
    .shop-products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    position: relative;
}

.save-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--fp-purple);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
}

.product-price-was {
    color: #b9b3c0;
    text-decoration: line-through;
    font-size: 0.9rem;
    margin-left: 0.4rem;
}

.load-more-btn {
    display: block;
    margin: 3rem auto 0;
    padding: 0.65rem 3rem;
    border: 1px solid #b7b7b7;
    border-radius: 999px;
    background: #fff;
    color: #b7b7b7;
}

.load-more-btn:hover {
    border-color: var(--fp-teal);
    color: var(--fp-teal);
}

#breadcrumb {
    font-family: Arial, sans-serif;
}

/* listing  over*/
/* product info */
#breadcrumb,
#product,
#product-tabs {
    font-family: "arial", sans-serif;
}

.breadcrumb-bar {
    border-bottom: 1px solid #d9d9d9;
}

.page-title {
    font-family: "arial", sans-serif;
    color: #fff;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.breadcrumb-trail {
    color: #b7b7b7;
    font-size: 0.95rem;
}

.breadcrumb-trail a {
    color: #fff;
    text-decoration: none;
        margin-right: 5px;
    margin-left: 5px;
}

.breadcrumb-trail .current {
    color: #fff !important;
    font-weight: 500;
    margin-left: 5px !important;
}

.breadcrumb-trail .sep {
    margin: 0 0.5rem;
    color: #b7b7b7;
    font-size: 0.75rem;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

/* Gallery */
.product-gallery img {
    width: 100%;
    border-radius: 10px;
    /* border: 1px solid #d9d9d9; */
    margin-bottom: 1.5rem;
}

/* Info panel */
.product-sku {
    color: #b7b7b7;
    font-size: 0.95rem;
}

.product-name {
    color: var(--fp-purple);
    font-weight: 400;
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0.5rem 0 1.25rem;
    font-family: "Arial", sans-serif;
}

.price-row {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 1.25rem;
}

.price-was {
    display: block;
    color: #b9b3c0;
    text-decoration: line-through;
    font-size: 1.1rem;
}

.price-now {
    color: var(--fp-purple);
    font-weight: 400;
    font-size: 2rem;
    margin-right: 0.75rem;
}

.save-pill {
    background: var(--fp-purple);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    display: inline-block;
}

.stock-pill {
    background: var(--fp-teal);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 400;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    display: inline-block;
}

.product-meta-label {
    color: #b9b3c0;
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.product-size-row {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #d9d9d9;
    margin-bottom: 1.25rem;
}

.product-size-value {
    color: var(--fp-purple);
    font-weight: 500;
}

.qty-row {
    padding-bottom: 1.5rem;
    margin-bottom: 0;
}

.qty-stepper {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.qty-btn {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 1px solid var(--fp-purple);
    background: #fff;
    color: var(--fp-purple);
    font-size: 1.1rem;
    line-height: 1;
}

.qty-input {
    width: 3.5rem;
    height: 2.5rem;
    text-align: center;
    border: 1px solid #8f43b2;
    border-radius: 999px;
}

.add-to-cart-btn {
    background: var(--fp-teal);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.75rem 2.25rem;
    font-weight: 400;
        margin-top: 19px;
}
.price-row .save-pill,
.price-row .stock-pill {
  transform: translateY(-10px);
}

.add-to-cart-btn:hover {
    opacity: 0.92;
    color: #fff;
}

/* Accordion */
/* .product-accordion .accordion-item {
    border: none;
    border-top: 1px solid #eceaef;
}

.product-accordion .accordion-item:last-child {
    border-bottom: 1px solid #d9d9d9;
}

.product-accordion .accordion-button {
    color: #B7B7B7;
    font-weight: 400;
    background: transparent;
    box-shadow: none;
    padding: 1rem 0;
    font-family: "arial" , sans-serif;
}

.product-accordion .accordion-button:not(.collapsed) {
    color: #B7B7B7;
}

.product-accordion .accordion-button::after {
    font-size: 0.85rem;
}

.product-accordion .accordion-body {
    padding: 0 0 1.25rem;
    color: #2b2438;
}

.product-accordion .accordion-body ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.product-accordion .accordion-body li {
    margin-bottom: 0.5rem;
} */
/* ---------- Product Accordion (redesigned) ---------- */
.product-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.product-accordion .accordion-item {
    border: 1px solid #e5e5e5;
    border-radius: 0 !important;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.2s ease;
}

.product-accordion .accordion-item:hover {
    border-color: var(--fp-purple);
}

.product-accordion .accordion-header {
    background: none !important;
}

.product-accordion .accordion-button {
    color: #b9b3c0;
    font-weight: 600;
    font-size: 1rem;
    background: #faf8fb;
    box-shadow: none;
    padding: 1rem 1.25rem;
    border-radius: 0 !important;
    font-family: "arial", sans-serif;
    transition: background 0.2s ease, color 0.2s ease;
}

.product-accordion .accordion-button:not(.collapsed) {
    color: var(--fp-purple);
    background: var(--color-purple-bg);
}

.product-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.product-accordion .accordion-button::after {
    width: 14px;
    height: 14px;
    background-size: 14px;
    transition: transform 0.25s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%238f43b2' d='M1.5 5.5 8 12l6.5-6.5-1-1L8 10 2.5 4.5z'/%3E%3C/svg%3E");
}

.product-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.product-accordion .accordion-body {
    padding: 1.1rem 1.25rem 1.25rem;
    color: #5b5b5b;
    font-size: 0.92rem;
    line-height: 1.6;
    border-top: 1px solid #eceaef;
}

.product-accordion .accordion-body ul {
    padding-left: 1.1rem;
    margin-bottom: 0;
}

.product-accordion .accordion-body li {
    margin-bottom: 0.5rem;
}
/* Tabs */
#product-tabs {
    border-top: 1px solid #eceaef;
}

.info-tabs .nav-link {
    color: #B7B7B7;
    font-weight: 500;
    border: none;
    border-bottom: 5px solid transparent;
}
#productDescription p {
    margin-bottom: 0px !important;
}
/* .product-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23B7B7B7D5' d='M1.5 5.5 8 12l6.5-6.5-1-1L8 10 2.5 4.5z'/%3E%3C/svg%3E");
} */
.info-tabs .nav-link.active {
    color: #295150;
    border-bottom-color: var(--fp-purple);
    background: transparent;
}

.tab-details-title {
    color: var(--fp-purple);
    font-weight: 700;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-family: "arial" , sans-serif;
}

.tab-details-body ul {
    padding-left: 1.1rem;
}

.tab-details-body li {
    margin-bottom: 0.6rem;
}

.tab-details-subhead {
    color: var(--fp-purple);
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
    display: block;
}

/* ;;;;;;;;;;;;;;; */

@media (max-width: 640px) {
    .headline {
        font-size: clamp(14px, 5vw, 22px);
    }

    .body-text {
        font-size: clamp(7px, 1.8vw, 10px);
    }
}

@media (max-width: 767.98px) {
    .stage {
        aspect-ratio: auto;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        align-content: flex-start;
        gap: 14px;
        padding: 24px 18px;
    }

    .el,
    .text-block {
        position: static;
        height: auto;
    }

    .img-left {
        order: 1;
        width: 100%;
        max-width: 260px;
        aspect-ratio: 3 / 4;
        margin: 0 auto;
    }

    .text-block {
        order: 2;
        width: 100%;
        text-align: center;
        padding: 0 8px;
    }

    .text-block .headline {
        font-size: clamp(22px, 6vw, 30px);
        margin-bottom: 0.8rem;
    }

    .text-block .body-text {
        font-size: 13px;
        margin-bottom: 1rem;
    }

    .text-block .shop-link {
        font-size: 13px;
    }

    .img-top-right,
    .img-bottom-right,
    .img-brush-set {
        width: calc(33.333% - 10px);
        aspect-ratio: 1 / 1;
    }

    .img-top-right {
        order: 3;
    }

    .img-bottom-right {
        order: 4;
    }

    .img-brush-set {
        order: 5;
    }
}
/* ---------- Mobile responsive header ---------- */
@media (max-width: 991.98px) {
    .header-nav-row {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .nav-row-left {
        order: 1;
    }

    .nav-search {
        order: 2;
        width: 100%;
    }

    .main-nav {
        order: 3;
        width: 100%;
    }

    .nav-right {
        order: 1;
        margin-left: auto;
    }

    /* Nav links become a dropdown panel triggered by hamburger */
    .main-nav .main-menu {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 10px 0;
        margin-top: 6px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

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

    .main-nav .main-menu a {
        width: 100%;
        padding: 10px 16px;
    }

    .main-nav .main-menu li {
        width: 100%;
    }

    .navbar-toggler {
        font-size: 1.4rem;
        color: var(--color-teal);
        line-height: 1;
    }
}

/* Small mobile: shrink the "All Categories" button to icon-only */
@media (max-width: 575.98px) {
    .btn-teal {
        padding: 10px 14px;
        font-size: 0;
    }

    .btn-teal .navbar-toggler-icon-inline {
        font-size: 16px;
    }

    .nav-right {
        gap: 12px !important;
    }

    .nav-right span.d-none.d-sm-inline {
        display: none !important;
    }

    .search-bar.nav-search {
        display: none !important;
    }
}

.category-card .img-wrapper {
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}
@media (max-width: 1400px) {
  .categories-track,
  .products-track {
    /* padding-left: 5%; */
    scroll-padding-left: 5%;
  }
}

.categories-track::-webkit-scrollbar,
.products-track::-webkit-scrollbar {
    display: none;
}
section#categories {
    margin-top: 80px;
}
section#featured-products {
    margin-top: 80px;
    margin-bottom: 80px;
}
section#best-selling {
    margin-top: 220px;
    margin-bottom: 80px;
}
section#imagination {
    margin-top: 80px;
}
/* .col-12.col-lg-4.offset-lg-2.imagination-right{
  position: absolute;
    right: -2%;
    margin-left: 0px !important;
    margin-top: 156px;
} */
 /* Restrict the absolute positioning trick to large screens only */
@media (min-width: 992px) {
    .col-12.col-lg-4.offset-lg-2.imagination-right {
        position: absolute;
        right: -2%;
        margin-left: 0px !important;
        margin-top: 156px;
    }
}

/* ---------- Imagination section: mobile responsive ---------- */
@media (max-width: 991.98px) {
    .imagination-banner {
        min-height: auto;
        padding: 40px 0;
        align-items: flex-start;
    }

    .imagination-content {
        text-align: center;
    }

    .imagination-content h2 {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
        margin-bottom: 1.5rem;
    }

    .imagination-right {
        position: static;
        margin: 0 auto !important;
        max-width: 100%;
    }

    .imagination-right p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .imagination-right .link-with-arrow {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .imagination-banner {
        aspect-ratio: 16 / 9;
        min-height: auto;
    }

    .imagination-content {
        display: none;
    }
}
@media (min-width: 1200px) and (max-width: 1421px){
  .categories-slider-controls, .slider-controls{
     position: absolute;
  bottom: 0;
  left: 46%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1320px;
  /* padding: 0 12px; */
  display: flex;
  justify-content: end;
  gap: 1rem;
  pointer-events: none;
  }
}
/* ---------- All Categories dropdown ---------- */
.all-categories-dropdown {
  position: relative;
}

.all-categories-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  min-width: 240px;
  max-height: 400px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.all-categories-panel.show {
  display: block;
}

.all-categories-panel ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}

.all-categories-panel li {
  list-style: none;
}

.all-categories-panel li a {
  display: block;
  padding: 10px 18px;
  color: var(--color-dark-teal);
  font-size: 14px;
  white-space: nowrap;
}

.all-categories-panel li a:hover {
  background: var(--color-teal-bg);
  color: var(--color-purple);
}

@media (max-width: 575.98px) {
  .all-categories-panel {
    left: 0;
    right: auto;
    min-width: 200px;
  }
}
.product-category-header {
    border-top: 1px solid #e5e5ea;
    border-bottom: 1px solid #e5e5ea;
    padding: 32px 0;
}

.category-header-inner {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0 24px;
}
.table-responsive.d-none.d-md-block.mb-3 {
    border-radius: 0.375rem !important;
}
.category-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-teal); /* purple */
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.category-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #9a9aa5; /* muted gray */
}

.breadcrumb-home {
    color: #9a9aa5;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-home:hover {
    color: var(--color-teal);
}

.breadcrumb-arrow {
    font-size: 11px;
    color: #c4c4cc;
    display: flex;
    align-items: center;
}

.breadcrumb-current {
    color: var(--color-teal);
    font-weight: 500;
}
.text-primary {
    color: var(--color-teal) !important;
}
button#proceed-next-btn {
    background-color: var(--color-teal) !important;
}
.header-nav-row .btn:hover{
    background: #8F43B2;
    color: #fff;
}
.header-nav-row .btn:active{
    background: #8F43B2;
    color: #fff;
}
/* ---------- Mobile sidebar trigger (hamburger icon) ---------- */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 26px;
    height: 22px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-teal);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 991.98px) {
    .mobile-menu-btn {
        display: flex;
    }
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Mobile sidebar panel ---------- */
.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-sidebar-overlay.show {
    display: block;
    opacity: 1;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.12);
}

.mobile-sidebar.show {
    transform: translateX(0);
    background: #FCF4FF;
}

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.mobile-sidebar-logo img {
    height: 36px;
    object-fit: contain;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: var(--color-dark-teal);
    cursor: pointer;
}

.mobile-sidebar-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.mobile-sidebar-menu li {
    list-style: none;
}

.mobile-sidebar-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--color-teal);
    font-weight: 500;
}

.mobile-sidebar-menu a:hover {
    color: var(--color-purple);
    background: var(--color-teal-bg);
}

/* .mobile-sidebar-categories {
    padding: 16px 20px;
}

.mobile-sidebar-categories h6 {
    color: var(--color-dark-teal);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 10px;
}

.mobile-sidebar-categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-sidebar-categories li a {
    display: block;
    padding: 8px 0;
    color: var(--color-text);
    font-size: 0.9rem;
}

.mobile-sidebar-categories li a:hover {
    color: var(--color-purple);
} */
.mobile-sidebar-account {
    padding: 10px 0;
}

.mobile-sidebar-account ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-sidebar-account li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--color-dark-teal);
    font-size: 0.95rem;
}

.mobile-sidebar-account li a i {
    width: 16px;
    text-align: center;
    color: var(--color-teal);
}

.mobile-sidebar-account li a:hover {
    color: var(--color-purple);
    background: var(--color-teal-bg);
}

.mobile-sidebar-account li a:hover i {
    color: var(--color-purple);
}
/* Prevent background scroll bleed-through while sidebar is open */
body.mobile-sidebar-open {
    overflow: hidden;
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
}
/* ---------- Hero Carousel ---------- */
.hero-carousel .hero-banner {
    background-size: cover;
    background-position: center;
}

.hero-carousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.hero-carousel-indicators {
    bottom: 24px;
    margin-bottom: 0;
}

.hero-carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    opacity: 1;
    margin: 0 5px;
}

.hero-carousel-indicators button.active {
    background-color: #ffffff;
}

.hero-carousel-control {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    opacity: 1;
}

.hero-carousel-control.carousel-control-prev {
    left: 24px;
}

.hero-carousel-control.carousel-control-next {
    right: 24px;
}

.hero-carousel-icon {
    color: #ffffff;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .hero-carousel-control {
        width: 36px;
        height: 36px;
    }

    .hero-carousel-control.carousel-control-prev {
        left: 12px;
        top: 62%;
    }

    .hero-carousel-control.carousel-control-next {
        right: 12px;
        top: 62%;
    }

    .hero-carousel-icon {
        font-size: 14px;
    }

    .hero-carousel-indicators {
        bottom: 14px;
    }
    section#best-selling{
        margin-top: 0px;
        margin-bottom: 0px;
    }
}
.hero-carousel .hero-banner {
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-carousel .hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-carousel .hero-banner .container {
    position: relative;
    z-index: 2;
}
/* ---------- Bold Colors carousel: 3-up, smaller cards ---------- */
.bold-cards-carousel .b-card {
    padding: 14px;
}

.bold-cards-carousel .b-card img {
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 6px;
}

.bold-cards-carousel .b-card-info h4 {
    font-size: 13px;
}

.bold-cards-carousel .b-card-info .shop-link {
    font-size: 13px;
}

@media (max-width: 575.98px) {
    .bold-cards-carousel .b-card {
        padding: 8px;
    }

    .bold-cards-carousel .b-card-info h4 {
        font-size: 11px;
    }

    .bold-cards-carousel .b-card-info .shop-link {
        font-size: 11px;
    }
}

/* ---------- Product price: old (struck) + current ---------- */
.product-price {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
}

.product-price .price-current {
    color: var(--color-purple);
    font-weight: 600;
}

.product-price .price-old {
    color: #b9b3c0;
    font-weight: 400;
    font-size: inherit;
}

.product-price .price-old del {
    text-decoration: line-through;
}
/* ---------- Product gallery: pinned column, scrolls independently (desktop) ---------- */
.pdp-gallery-col {
    position: sticky;
    top: 20px;
    align-self: flex-start;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: none;
}

.pdp-gallery-col::-webkit-scrollbar {
    display: none;
}

.pdp-mobile-gallery {
    display: none;
}

@media (max-width: 991.98px) {
    .pdp-gallery-col {
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    /* Hide the desktop stacked images, show main+thumbs instead */
    .pdp-gallery-col > .gallery-image-block {
        display: none;
    }

    .pdp-mobile-gallery {
        display: block;
    }

    .pdp-mobile-main {
        width: 100%;
        aspect-ratio: 1 / 1;
        border-radius: 10px;
        border: 1px solid #d9d9d9;
        overflow: hidden;
        margin-bottom: 12px;
    }

    .pdp-mobile-main img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .pdp-mobile-thumbs {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pdp-mobile-thumbs::-webkit-scrollbar {
        display: none;
    }

    .pdp-mobile-thumb {
        flex: 0 0 64px;
        width: 64px;
        height: 64px;
        border-radius: 8px;
        border: 2px solid #e5e5e5;
        overflow: hidden;
        cursor: pointer;
        transition: border-color 0.2s ease;
    }

    .pdp-mobile-thumb.active {
        border-color: var(--fp-purple);
    }

    .pdp-mobile-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

@media (max-width: 575.98px) {
    .pdp-mobile-thumb {
        flex: 0 0 56px;
        width: 56px;
        height: 56px;
    }
}
@media (max-width: 767.98px) {
  .footer-col .row.g-3 {
    display: block !important;
    --bs-gutter-y: 0; /* kill Bootstrap's row gutter that's causing the uneven gap */
  }

  .footer-col .row.g-3 .col-4 {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    padding-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .footer-col .row.g-3 .col-4 ul {
    margin: 0 !important;
    gap: 7px;
  }

  .footer-col .row.g-3 .col-4 ul li a {
    font-size: 14px;
  }
}
/* 50% Zoom (~2560px) and up */
@media (min-width: 2560px) {

    .imagination-content h2 {
        font-size: 3rem;
    }

    .imagination-right p {
        max-width: 340px;
        font-size: 1.05rem;
    }

    .imagination-right .link-with-arrow {
        font-size: 1.15rem;
    }
}
.breadcrumb-bar {
    background-image: url('../images/breadcrumb-bannner.png');
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
}
.stock-pill.out-of-stock {
    background: #e74c3c;
}
/* ---------- Header search suggestions dropdown ---------- */
.header-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  max-height: 400px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1050;
}

.header-search-results.show {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  text-decoration: none;
  color: var(--color-text);
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.15s ease;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: var(--color-teal-bg);
}

.search-result-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  background: #fafafa;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  min-width: 0;
}

.search-result-item .result-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark-teal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-item .result-price {
  font-size: 12px;
  color: var(--color-purple);
  font-weight: 600;
  margin-top: 2px;
}

.search-no-results {
  padding: 16px 14px;
  color: #888;
  font-size: 13px;
  text-align: center;
}

/* Parent search bars need relative positioning for the dropdown to anchor correctly */
.search-bar.nav-search,
.search-bar.d-md-none {
  position: relative;
}

@media (max-width: 767.98px) {
  .header-search-results {
    left: -1px;
    right: -1px;
  }
}
#header {
    position: relative;
    z-index: 9999;
}

.site-header {
    width: 100%;
    background: #fff;
    z-index: 9999;
}

.site-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}
