/* ============================================================
   ByHiba Store — Main Stylesheet
   Palette: Rose Pink #c48b9f | Blush #fdf6f8 | Dusty Mauve #8b5c6e | Cream #faf7f5
   Typography: Cormorant Garamond (display) + Jost (body)
   ============================================================ */

container{
    max-width: 1000px !important;
}
.container{
    max-width: 1000px !important;
}

:root {
  --bh-pink:      #c48b9f;
  --bh-pink-dark: #a56f82;
  --bh-pink-lt:   #e8c4d0;
  --bh-mauve:     #8b5c6e;
  --bh-blush:     #fdf6f8;
  --bh-cream:     #faf7f5;
  --bh-charcoal:  #2d2d2d;
  --bh-gray:      #6c6c6c;
  --bh-light-gray:#f4f0ee;
  --bh-white:     #ffffff;
  --bh-border:    #eedde5;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 12px rgba(196,139,159,.12);
  --shadow-md:    0 8px 30px rgba(196,139,159,.18);
  --shadow-lg:    0 20px 60px rgba(139,92,110,.15);
  --transition:   .28s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--bh-charcoal);
  background: var(--bh-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}



/* ==============================
   SAM 2-IMAGE BANNER SLIDER
   Original image ratio: 1000x500
============================== */

.SAM-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;

    /* 1000 x 500 = 2:1 */
    aspect-ratio: 2 / 1;

    margin: 30px auto;

    overflow: hidden;
    border-radius: 20px;
}

.SAM-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Every image sits exactly on top of the other */
.SAM-slide {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    display: block;

    /* IMPORTANT:
       Keeps the complete 1000x500 image visible */
    object-fit: contain;

    opacity: 0;

    transition: opacity 0.8s ease-in-out;

    z-index: 1;
}

/* Current image */
.SAM-slide.SAM-active {
    opacity: 1;
    z-index: 2;
}


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

@media (max-width: 768px) {

    .SAM-slider {
        width: 100%;

        /* Automatically becomes:
           360x180
           390x195
           430x215 etc. */

        aspect-ratio: 2 / 1;

        margin: 15px auto;

        border-radius: 12px;
    }

}



.SAM-category-wrapper{

    width:90%;
    margin:20px auto;

    display:flex;
    align-items:center;
    gap:10px;

}

.SAM-category-slider{

    display:flex;
    overflow-x:auto;

    scroll-behavior:smooth;

    flex:1;

    gap:12px;

    scrollbar-width:none;

}

.SAM-category-slider::-webkit-scrollbar{
    display:none;
}

.SAM-category-item{

    flex:none;

    text-decoration:none;

    color:#444;

    padding:10px 18px;

    border:1px solid #eee;

    border-radius:30px;

    white-space:nowrap;

    transition:.3s;

    font-size:15px;

    background:#fff;

}

.SAM-category-item:hover{

    background:#d9a5b7;
    color:#fff;

}

.SAM-active{

    background:#c88ea4;
    color:#fff;
    border-color:#c88ea4;

}

.SAM-category-arrow{

    width:40px;
    height:40px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:#fff;

    box-shadow:0 3px 10px rgba(0,0,0,.12);

    font-size:18px;

    transition:.3s;

}

.SAM-category-arrow:hover{

    background:#c88ea4;
    color:#fff;

}

@media(max-width:768px){

    .SAM-category-wrapper{

        width:96%;

    }

    .SAM-category-item{

        padding:8px 16px;
        font-size:14px;

    }

}



h4.newtitle {
    font-size: 18px;
    font-weight: 400;
    padding: 10px;
    color: white;
    background-color: #fc94aa;
    border-radius: 0px 00px 10px 10px;
}








/* ---- Typography -------------------------------------------- */

.brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--bh-mauve);
  letter-spacing: 2px;
}

h1, h2, h3, .section-title {
  font-family: 'Great Vibes', cursive;
  font-weight: 400;
  line-height: 1.25;
  color: var(--bh-charcoal);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }

.section-title {
  text-align: center;
  margin-bottom: .5rem;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
}
.section-subtitle {
  text-align: center;
  color: var(--bh-gray);
  font-size: .93rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* ---- Announcement Bar -------------------------------------- */

.announcement-bar {
  background: var(--bh-pink);
  color: #fff;
  padding: .55rem 0;
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .5px;
}

/* ---- Navbar ------------------------------------------------ */

.bh-navbar {
  background: var(--bh-white);
  border-bottom: 1px solid var(--bh-border);
  padding: .9rem 0;
  transition: box-shadow var(--transition);
}

.bh-navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.bh-navbar .navbar-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--bh-mauve) !important; letter-spacing: 3px; font-weight: 400; }

.bh-navbar .nav-link {
  font-size: .88rem;
  font-weight: 400;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--bh-charcoal) !important;
  padding: .5rem .75rem !important;
  transition: color var(--transition);
  position: relative;
}

.bh-navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .75rem;
  width: 0; height: 1px;
  background: var(--bh-pink);
  transition: width var(--transition);
}

.bh-navbar .nav-link:hover::after,
.bh-navbar .nav-link.active::after { width: calc(100% - 1.5rem); }

.bh-navbar .nav-link:hover { color: var(--bh-pink) !important; }

.bh-navbar .dropdown-menu {
  border: 1px solid var(--bh-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: .5rem;
  min-width: 180px;
}

.bh-navbar .dropdown-item {
  font-size: .87rem;
  padding: .5rem .9rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  color: var(--bh-charcoal);
}
.bh-navbar .dropdown-item:hover { background: var(--bh-blush); color: var(--bh-pink); }

/* Search form in nav */
.bh-search-form { position: relative; }
.bh-search-form .form-control {
  border: 1px solid var(--bh-border);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .85rem;
  width: 180px;
  transition: width var(--transition), box-shadow var(--transition);
  background: var(--bh-blush);
}
.bh-search-form .form-control:focus { width: 230px; box-shadow: 0 0 0 2px var(--bh-pink-lt); outline: none; border-color: var(--bh-pink); }
.bh-search-form .btn { background: none; border: none; color: var(--bh-gray); position: absolute; right: .4rem; top: 50%; transform: translateY(-50%); padding: 0; }

/* Nav icons */
.nav-icon-btn {
  font-size: 1.25rem;
  color: var(--bh-charcoal);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
  line-height: 1;
}
.nav-icon-btn:hover { color: var(--bh-pink); }

.cart-badge {
  position: absolute;
  top: -7px; right: -8px;
  background: var(--bh-pink);
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: .65rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}

/* ---- Buttons ----------------------------------------------- */

.bh-btn-primary {
  background: var(--bh-pink);
  color: #fff;
  border: none;
  padding: .65rem 1.6rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .6px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.bh-btn-primary:hover { background: var(--bh-pink-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,139,159,.35); }

.bh-btn-outline {
  background: transparent;
  color: var(--bh-pink);
  border: 1.5px solid var(--bh-pink);
  padding: .6rem 1.5rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .6px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.bh-btn-outline:hover { background: var(--bh-pink); color: #fff; }

.bh-btn-dark {
  background: var(--bh-charcoal);
  color: #fff;
  border: none;
  padding: .65rem 1.6rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .6px;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.bh-btn-dark:hover { background: #444; color: #fff; }

/* ---- Hero Slider ------------------------------------------- */

.hero-swiper { width: 100%; }
.hero-slide {
  position: relative;
  height: min(90vh, 680px);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-swiper .swiper-slide-active img { transform: scale(1.04); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.45) 0%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 560px;
  padding: 0 2rem;
}

.hero-content .eyebrow {
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: .8rem;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #fff;
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-content p {
  font-size: 1rem;
  opacity: .9;
  margin-bottom: 2rem;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: #fff;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  width: 46px; height: 46px;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after { font-size: 1rem; }

.hero-swiper .swiper-pagination-bullet { background: rgba(255,255,255,.6); opacity: 1; }
.hero-swiper .swiper-pagination-bullet-active { background: #fff; }

/* ---- Feature Strips ---------------------------------------- */

.feature-strip {
  background: var(--bh-blush);
  border-top: 1px solid var(--bh-border);
  border-bottom: 1px solid var(--bh-border);
  padding: 1.4rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--bh-pink);
  flex-shrink: 0;
}

.feature-item strong { font-size: .88rem; font-weight: 600; display: block; }
.feature-item span   { font-size: .78rem; color: var(--bh-gray); }

/* ---- Category Cards ---------------------------------------- */

.category-card {
  position: relative;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

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

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

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
}

.category-card-label {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  color: #fff;
}

.category-card-label h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: .25rem;
}

.category-card-label span {
  font-size: .78rem;
  opacity: .85;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ---- Product Cards ----------------------------------------- */

.product-card {
  background: var(--bh-white);
  border: 1px solid var(--bh-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bh-light-gray);
}

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

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

/* Hover second image */
.product-card-img .img-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .4s ease;
}
.product-card:hover .product-card-img .img-hover { opacity: 1; }

/* Badges */
.product-badges {
  position: absolute;
  top: .75rem; left: .75rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  z-index: 2;
}

.badge-new   { background: var(--bh-charcoal); color: #fff; }
.badge-sale  { background: #e74c3c; color: #fff; }
.badge-hot   { background: var(--bh-pink); color: #fff; }

.product-badges .badge {
  font-size: .7rem;
  padding: .3em .6em;
  border-radius: 50px;
  font-weight: 500;
  letter-spacing: .5px;
}

/* Action Buttons */
.product-actions {
  position: absolute;
  top: .75rem; right: .75rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  z-index: 2;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--bh-border);
  color: var(--bh-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.product-action-btn:hover { background: var(--bh-pink); color: #fff; border-color: var(--bh-pink); }
.product-action-btn.wishlisted { color: #e74c3c; background: #fff8f8; }

/* Add to Cart overlay (on image bottom) */
.product-atc-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(196,139,159,.9);
  color: #fff;
  text-align: center;
  padding: .7rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .5px;
  transform: translateY(100%);
  transition: transform var(--transition);
  cursor: pointer;
  border: none;
  width: 100%;
}

.product-card:hover .product-atc-overlay { transform: translateY(0); }

/* Card Body */
.product-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: .93rem;
  font-weight: 400;
  color: var(--bh-charcoal);
  text-decoration: none;
  display: block;
  margin-bottom: .35rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-name:hover { color: var(--bh-pink); }

.product-price {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: auto;
}

.price-current { font-weight: 600; color: var(--bh-charcoal); font-size: .95rem; }
.price-original { font-size: .83rem; color: var(--bh-gray); text-decoration: line-through; }
.price-sale { color: #e74c3c; font-weight: 600; font-size: .95rem; }

/* Stars */
.star-rating { color: #f5a623; font-size: .8rem; letter-spacing: 1px; }

/* ---- Sections ---------------------------------------------- */

.bh-section { padding: 4rem 0; }
.bh-section-alt { background: var(--bh-blush); }

/* Tabs */
.bh-tabs .nav-tabs { border-bottom: 1px solid var(--bh-border); justify-content: center; margin-bottom: 2.5rem; }
.bh-tabs .nav-link {
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bh-gray);
  border: none;
  padding: .7rem 1.4rem;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.bh-tabs .nav-link:hover { color: var(--bh-pink); }
.bh-tabs .nav-link.active { color: var(--bh-pink); border-bottom-color: var(--bh-pink); }

/* ---- Product Swiper ---------------------------------------- */

.products-swiper { padding-bottom: 2rem !important; }
.products-swiper .swiper-slide { width: 230px; }
.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev {
  top: 40%;
  width: 40px; height: 40px;
  background: #fff;
  border: 1px solid var(--bh-border);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  color: var(--bh-charcoal);
}
.products-swiper .swiper-button-next::after,
.products-swiper .swiper-button-prev::after { font-size: .85rem; font-weight: 700; }

/* ---- Sale Banner ------------------------------------------- */

.sale-banner {
  background: linear-gradient(135deg, var(--bh-mauve), var(--bh-pink));
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.sale-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}

/* ---- Instagram Grid ---------------------------------------- */

.instagram-grid a {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.instagram-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}
.instagram-grid a:hover img { transform: scale(1.08); filter: brightness(.85); }

/* ---- Product Detail Page ----------------------------------- */

.product-gallery-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bh-light-gray);
  aspect-ratio: 3/4;
  position: relative;
}

.product-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-thumbs { margin-top: .75rem; }
.gallery-thumbs .swiper-slide {
  width: 70px;
  height: 90px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  opacity: .65;
  transition: opacity var(--transition);
  border: 2px solid transparent;
}
.gallery-thumbs .swiper-slide-thumb-active { opacity: 1; border-color: var(--bh-pink); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* Variation selector */
.variation-group label.var-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 36px;
  padding: 0 .8rem;
  border: 1.5px solid var(--bh-border);
  border-radius: 50px;
  font-size: .83rem;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.variation-group input[type=radio]:checked + label.var-btn {
  border-color: var(--bh-pink);
  background: var(--bh-pink);
  color: #fff;
}

.color-swatch {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 0 0 2px transparent;
  transition: box-shadow var(--transition);
}
.color-swatch.selected { box-shadow: 0 0 0 2px var(--bh-pink); }

/* Qty input */
.bh-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--bh-border);
  border-radius: 50px;
  overflow: hidden;
  width: fit-content;
}
.bh-qty button {
  background: none;
  border: none;
  width: 38px; height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--bh-charcoal);
  transition: background var(--transition);
}
.bh-qty button:hover { background: var(--bh-blush); }
.bh-qty input {
  width: 46px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--bh-border);
  border-right: 1px solid var(--bh-border);
  font-size: .95rem;
  height: 40px;
  outline: none;
}

/* ---- Cart Page --------------------------------------------- */

.bh-cart-table th {
  font-size: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bh-gray);
  padding: .9rem 1rem;
  border-bottom: 1px solid var(--bh-border);
}

.bh-cart-table td {
  padding: 1.1rem 1rem;
  vertical-align: middle;
  border-bottom: 1px solid var(--bh-border);
}

.cart-product-img {
  width: 70px; height: 90px;
  border-radius: 8px;
  object-fit: cover;
}

.bh-order-summary {
  background: var(--bh-blush);
  border: 1px solid var(--bh-border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
}

.bh-order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px dashed var(--bh-border);
  font-size: .92rem;
}

.bh-order-summary .summary-total {
  display: flex;
  justify-content: space-between;
  padding: .9rem 0 0;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ---- Checkout ---------------------------------------------- */

.checkout-section-title {
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bh-pink);
  font-weight: 600;
  margin-bottom: 1.1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--bh-border);
}

.payment-method-card {
  border: 1.5px solid var(--bh-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.payment-method-card.selected,
.payment-method-card:has(input:checked) {
  border-color: var(--bh-pink);
  background: var(--bh-blush);
}

/* ---- Forms ------------------------------------------------- */

.bh-form .form-control,
.bh-form .form-select {
  border: 1.5px solid var(--bh-border);
  border-radius: var(--radius-sm);
  padding: .65rem 1rem;
  font-size: .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--bh-white);
}

.bh-form .form-control:focus,
.bh-form .form-select:focus {
  border-color: var(--bh-pink);
  box-shadow: 0 0 0 3px rgba(196,139,159,.15);
  outline: none;
}

.bh-form label { font-size: .88rem; font-weight: 500; margin-bottom: .35rem; color: var(--bh-charcoal); }

/* ---- Account Pages ----------------------------------------- */

.account-sidebar {
  background: var(--bh-blush);
  border: 1px solid var(--bh-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}

.account-sidebar .nav-link {
  font-size: .9rem;
  color: var(--bh-charcoal);
  padding: .55rem .8rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.account-sidebar .nav-link:hover,
.account-sidebar .nav-link.active {
  background: var(--bh-pink);
  color: #fff;
}

/* ---- Flash Alert ------------------------------------------- */

.bh-flash-alert {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  min-width: 300px;
  max-width: 90vw;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  transition: opacity .4s ease;
}

/* ---- Footer ------------------------------------------------ */

.bh-footer {
  background: #ca9596 !important;
  color: rgba(255,255,255,.7);
  padding-top: 3.5rem;
}

.footer-heading {
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li { margin-bottom: .5rem; }

.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .88rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--bh-pink-lt); }

.bh-footer .text-muted { color: rgba(255,255,255,.55) !important; }
.bh-footer .brand-text { color: var(--bh-pink-lt) !important; }

.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: background var(--transition), color var(--transition);
}

.social-link:hover { background: var(--bh-pink); color: #fff; }

.bh-divider { border-color: rgba(255,255,255,.1); }

/* Newsletter form in footer */
.bh-newsletter-form .form-control {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  border-radius: 50px 0 0 50px;
}
.bh-newsletter-form .form-control::placeholder { color: rgba(255,255,255,.5); }
.bh-newsletter-form .form-control:focus { background: rgba(255,255,255,.15); border-color: var(--bh-pink); box-shadow: none; outline: none; }
.bh-newsletter-form .btn { border-radius: 0 50px 50px 0; }

.badge-payment {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: .3em .8em;
  font-size: .72rem;
  letter-spacing: .5px;
}

/* ---- WhatsApp Float ---------------------------------------- */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 52px; height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.5); }

/* ---- Modal ------------------------------------------------- */

.bh-modal { border-radius: var(--radius-lg); border: none; overflow: hidden; }
.bh-modal .modal-header { background: var(--bh-blush); }

/* ---- Spinner ----------------------------------------------- */

.bh-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--bh-border);
  border-top-color: var(--bh-pink);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Breadcrumb -------------------------------------------- */

.bh-breadcrumb {
  background: var(--bh-blush);
  padding: .8rem 0;
  border-bottom: 1px solid var(--bh-border);
}
.bh-breadcrumb .breadcrumb { margin: 0; font-size: .84rem; }
.bh-breadcrumb .breadcrumb-item a { color: var(--bh-pink); text-decoration: none; }
.bh-breadcrumb .breadcrumb-item.active { color: var(--bh-gray); }

/* ---- Pagination -------------------------------------------- */

.bh-pagination .page-link {
  border: 1px solid var(--bh-border);
  color: var(--bh-charcoal);
  border-radius: 50px !important;
  margin: 0 .2rem;
  min-width: 36px;
  text-align: center;
  transition: all var(--transition);
}
.bh-pagination .page-item.active .page-link { background: var(--bh-pink); border-color: var(--bh-pink); color: #fff; }
.bh-pagination .page-link:hover { background: var(--bh-blush); color: var(--bh-pink); }

/* ---- Filters Sidebar --------------------------------------- */

.bh-filter-sidebar {
  background: var(--bh-blush);
  border: 1px solid var(--bh-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: sticky;
  top: 90px;
}

.filter-heading {
  font-size: .8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bh-charcoal);
  margin-bottom: .8rem;
}

.price-range-track {
  position: relative;
  height: 4px;
  background: var(--bh-border);
  border-radius: 2px;
  margin: 1rem 0;
}

/* ---- Testimonials ------------------------------------------ */

.testimonial-card {
  background: var(--bh-blush);
  border: 1px solid var(--bh-border);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--bh-charcoal);
  margin: .8rem 0;
  line-height: 1.6;
}

/* ---- Utilities --------------------------------------------- */

.text-pink  { color: var(--bh-pink) !important; }
.bg-blush   { background: var(--bh-blush) !important; }
.rounded-bh { border-radius: var(--radius-md) !important; }

/* ---- Responsive -------------------------------------------- */

@media (max-width: 991px) {
  .bh-section { padding: 2.5rem 0; }
  .hero-slide  { height: 60vw; min-height: 320px; }
}

@media (max-width: 576px) {
  .hero-content h1     { font-size: 1.9rem; }
  .products-swiper .swiper-slide { width: 170px; }
  .bh-order-summary    { padding: 1.2rem; }
}
