:root {
  --bb-primary: #ff6b8a;
  --bb-primary-dark: #e94f73;
  --bb-accent: #6c63ff;
  --bb-mint: #22c7a9;
  --bb-ink: #172033;
  --bb-muted: #667085;
  --bb-surface: #ffffff;
  --bb-soft: #fff4f7;
  --bb-soft-2: #f5f7ff;
  --bb-border: rgba(23, 32, 51, 0.09);
  --bb-shadow: 0 18px 45px rgba(23, 32, 51, 0.10);
  --bb-shadow-hover: 0 24px 60px rgba(255, 107, 138, 0.20);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 107, 138, 0.10), transparent 28rem),
    radial-gradient(circle at top right, rgba(108, 99, 255, 0.09), transparent 26rem),
    #fff;
  color: var(--bb-ink);
  text-rendering: optimizeLegibility;
}

.container-lg {
  max-width: 1240px;
}

.top-header {
  background: linear-gradient(90deg, var(--bb-primary), var(--bb-accent));
  color: #fff;
}

.header-common {
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23, 32, 51, 0.06);
  box-shadow: 0 10px 30px rgba(23, 32, 51, 0.06);
}

.header-common .nav-wrap,
.header-common .navbar {
  min-height: 76px;
}

.logo-link img.logo {
  max-height: 52px;
  width: auto;
}

.navbar-nav .nav-link {
  border-radius: 999px;
  color: var(--bb-ink);
  font-weight: 600;
  padding: 10px 14px !important;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible {
  background: var(--bb-soft);
  color: var(--bb-primary-dark);
  transform: translateY(-1px);
}

.search-full,
.onhover-cart-dropdown .onhover-show-div,
.dropdown-menu {
  border: 1px solid var(--bb-border);
  border-radius: 24px;
  box-shadow: var(--bb-shadow);
  overflow: hidden;
}

.title-box,
.title-box4 {
  text-align: center;
  margin-bottom: 30px;
}

.title-box h1,
.title-box h2,
.title-box4 .heading,
.unique-heading {
  color: var(--bb-ink);
  letter-spacing: -0.035em;
}

.title-box p {
  color: var(--bb-muted);
  font-size: 1rem;
}

.title-divider1 .squre,
.bg-theme-blue,
.bg-theme-sun,
.bg-theme-bk-l {
  border-radius: 999px;
}

.product-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--bb-border);
  border-radius: 28px;
  box-shadow: 0 8px 28px rgba(23, 32, 51, 0.07);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 138, 0.28);
  box-shadow: var(--bb-shadow-hover);
}

.product-card .img-box {
  background: linear-gradient(145deg, #fff7fa, #f6f7ff);
  border-radius: 24px;
  margin: 12px 12px 0;
  overflow: hidden;
}

.product-card .primary-img img,
.product-card .img-box img {
  transition: transform .28s ease;
}

.product-card:hover .primary-img img,
.product-card:hover .img-box img {
  transform: scale(1.045);
}

.product-card .content-box {
  padding: 18px 18px 20px;
}

.product-card .content-box > p:first-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 9px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bb-soft-2);
  color: var(--bb-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.product-card h5 {
  color: var(--bb-ink);
  font-size: 1rem;
  line-height: 1.35;
  min-height: 2.7em;
  transition: color .2s ease;
}

.product-card a:hover h5 {
  color: var(--bb-primary-dark);
}

.product-card .content-box > span,
.product-detail-box .price span {
  color: var(--bb-primary-dark);
  font-weight: 800;
}

.product-card del,
.product-detail-box del {
  color: #98a2b3;
  margin-left: 6px;
}

.product-card .details {
  color: var(--bb-muted);
}

.rating span,
.rating .fill {
  color: #f7b731;
}

.arrow-label-wrap .arrow-label {
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.15);
  font-weight: 800;
}

.btn-solid,
.btn.btn-solid,
button.btn-solid {
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--bb-primary), var(--bb-primary-dark)) !important;
  color: #fff !important;
  box-shadow: 0 12px 26px rgba(255, 107, 138, 0.28);
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.btn-solid:hover,
.btn-solid:focus-visible,
.btn.btn-solid:hover,
.btn.btn-solid:focus-visible {
  color: #fff !important;
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 18px 34px rgba(255, 107, 138, 0.36);
}

.btn-outline,
.btn.btn-outline,
button.btn-outline {
  border: 1px solid rgba(255, 107, 138, 0.28) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: var(--bb-primary-dark) !important;
  font-weight: 800;
}

.breadcrumb-wrap .banner {
  position: relative;
  border-radius: 0 0 42px 42px;
  overflow: hidden;
}

.breadcrumb-wrap .banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 32, 51, 0.62), rgba(255, 107, 138, 0.20));
  pointer-events: none;
}

.breadcrumb-box {
  position: relative;
  z-index: 1;
}

.breadcrumb-box .heading-box h1,
.breadcrumb-box .breadcrumb a,
.breadcrumb-box .breadcrumb li {
  color: #fff !important;
}

.shop-page .sidebar-box,
.product-detail-box,
.product-page .slider-box,
.tab-content,
.accordion-item,
.new-product,
.cart-card {
  border: 1px solid var(--bb-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 34px rgba(23, 32, 51, 0.06);
}

.shop-page .sidebar-box {
  padding: 18px;
}

.search-box .form-control,
.search-full .form-control,
.footer-form .form-control {
  border-radius: 999px;
  border-color: var(--bb-border);
  box-shadow: none;
}

.search-box .form-control:focus,
.search-full .form-control:focus,
.footer-form .form-control:focus {
  border-color: rgba(255, 107, 138, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 107, 138, 0.12);
}

.affiliate-disclaimer {
  position: relative;
  border: 1px solid rgba(255, 183, 77, 0.38);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff8ea, #fff2f6);
  color: #6b4300;
  padding: 14px 18px 14px 46px;
  margin: 18px 0 24px;
  box-shadow: 0 12px 28px rgba(255, 183, 77, 0.14);
}

.affiliate-disclaimer::before {
  content: "i";
  position: absolute;
  left: 16px;
  top: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffb84d;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  font-family: Georgia, serif;
}

.affiliate-disclaimer a {
  color: #9a5a00;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-bar {
  border: 1px solid var(--bb-border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(23, 32, 51, 0.18);
}

.footer-document {
  background:
    radial-gradient(circle at top left, rgba(255, 107, 138, 0.16), transparent 22rem),
    linear-gradient(180deg, #ffffff, #fff5f8);
  border-top: 1px solid var(--bb-border);
}

.footer-document .main-footer,
.footer-document .sub-footer {
  border-color: var(--bb-border);
}

.footer-document a {
  transition: color .2s ease;
}

.footer-document a:hover {
  color: var(--bb-primary-dark) !important;
}

@media (max-width: 991.98px) {
  .header-common .nav-wrap,
  .header-common .navbar {
    min-height: 64px;
  }

  .offcanvas-collapse {
    border-radius: 0 28px 28px 0;
  }

  .product-card {
    border-radius: 22px;
  }

  .product-card .img-box {
    border-radius: 18px;
  }

  .breadcrumb-wrap .banner {
    border-radius: 0 0 28px 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}