:root {
  --ink: #14170f;
  --ink-soft: #22271b;
  --cream: #faf7ef;
  --cream-2: #f1e9d8;
  --paper: #ffffff;
  --lime: #ec5c00;
  --lime-deep: #f8721f;
  --lime-pale: #e9f9d6;
  --coral: #ff7a59;
  --gray: #69675e;
  --orange: #ec5c00;
  --orange-deep: #c94c00;
  --orange-pale: #fde3d0;
  --orange-dark: #dd7b2a;
  --green: #3fae5a;
  --white: #ffffff;
  --panel: #f2ecd8;
  --panel-2: #e9e2c8;
  --ring: #e7dcc6;
  --line: rgba(20, 23, 15, 0.12);
  --shadow: 0 24px 48px -20px rgba(20, 23, 15, 0.35);
  --radius-lg: 28px;
  --radius-md: 18px;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.display-font {
  font-family: "Fraunces", serif;
  letter-spacing: -0.01em;
}
a:focus-visible {
  outline:none !important;
}
.eyebrow {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: var(--lime-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.addedcarticon{fill: #000000 !important;}
.btn-pill {
  border-radius: 100px;
  padding: 0.85rem 1.9rem;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--ink);
  transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  text-decoration: none;
}
.btn-ink {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  text-decoration: none;
}
.btn-ink:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: 0 14px 26px -12px rgba(20, 23, 15, 0.5);
}
.btn-outline-ink {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  align-self: flex-start;
  border-radius: 100px;
  padding: 1rem 2.1rem;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: max-content;
  transition: 0.3s;
  text-decoration: none;
}
.btn-outline-ink:hover {
  background: var(--ink);
  transform: translateY(-3px);
  border: 1px solid var(--ink);
  color: #fff;
}

.btn-lime {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--ink);
  text-decoration: none;
}
.btn-lime:hover {
  background: var(--ink);
  color: var(--lime);
  transform: translateY(-3px);
  box-shadow: 0 14px 26px -12px rgba(20, 23, 15, 0.5);
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky!important;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 239, 0.92)!important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: 0.35s ease;
  padding: 0.9rem 0;
}
.site-header .navbar {
  position: static !important;
}
.cstm-nav{
  position: static !important;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(20, 23, 15, 0.25);
  padding: 0.6rem 0;
}
.brand {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  text-decoration: none;
  max-width: 250px;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.brand-mark svg {
  width: 24px;
  height: 24px;
}
.brand small {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin-top: -2px;
}
.nav-link-custom {
  font-weight: 600;
  color: var(--ink) !important;
  padding: 0.5rem 1rem !important;
  position: relative;
}
.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.15rem;
  height: 2px;
  background: var(--lime-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.3s ease;
  border: none;
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}
.header-search {
  border-radius: 100px;
  border: 1.5px solid var(--line);
  padding: 0.5rem 0.5rem 0.5rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--paper);
  min-width: 230px;
}
.header-search input {
  border: 0;
  outline: 0;
  font-size: 0.85rem;
  background: transparent;
  width: 100%;
}
.header-search button {
  border: 0;
  background: var(--ink);
  color: var(--lime);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-btn {
  position: relative!important;
  width: 42px!important;
  height: 42px!important;
  border-radius: 50%;
  border: 1.5px solid var(--line)!important;
  display: flex!important;
  align-items: center;
  justify-content: center;
  color: var(--ink)!important;
  text-decoration: none;
  transition: 0.3s;flex-shrink: 0;
  padding: 0px!important;
  background: var(--paper)!important;
}
.icon-btn:hover {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.icon-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--orange);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
}
.icon-btn:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.btn-callus {
  background: var(--orange)!important;
  color: #fff;
  border: 0;
  border-radius: 100px;
  padding: 0.85rem 1.6rem;
  font-weight: 800!important;
  font-size: 0.92rem!important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: 0.3s;
  text-decoration: none;
}
.btn-callus:hover {
  background: var(--orange-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -12px rgba(236, 92, 0, 0.5);
}
@media (max-width: 990px) {
  .brand img {
    height: 37px;
  }
  .icon-btn {
    width: 33px;
    height: 33px;flex-shrink: 0;
  }
  .brand {
    order: 1;
  }
  .navbar-toggler {
    order: 3;
  }
  .hiconsarea {
    order: 2; padding: 6px 0;
  }
  .offcanvas .brand img {
    height: 65px;
  }
  .offcanvas .btn-close {
    order: 2;
  }
  .offcanvas .nav-link-custom {
    font-size: 1rem;
  }
}
@media (min-width: 991px) and (max-width: 1440px) {
  .brand img {
    height: 50px;
  }
  .icon-btn,
  .contacticon span {
    width: 36px !important;
    height: 36px !important;
  }
  .hero-cluster img {
    height: 456px !important;
    object-fit: contain;
  }
  .offcanvas .brand img {
    height: 65px;
  }
  .offcanvas .nav-link-custom {
    font-size: 1rem;
  }
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding: 1.4rem 0 3.5rem;
  overflow: hidden;
}
.hero-frame {
  background: var(--panel);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  min-height: 640px;
}
.hero-frame .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  background: var(--panel-2);
  z-index: 0;
  pointer-events: none;
}
.hero-frame .blob-1 {
  width: 340px;
  height: 300px;
  top: -90px;
  left: -60px;
  border-radius: 40% 60% 55% 45%/50% 40% 60% 50%;
}
.hero-frame .blob-2 {
  width: 260px;
  height: 220px;
  bottom: -70px;
  left: 22%;
  border-radius: 60% 40% 45% 55%/45% 55% 45% 55%;
  opacity: 0.45;
}
.hero-frame .blob-3 {
  width: 220px;
  height: 220px;
  top: 36%;
  left: 8%;
  border-radius: 50%;
  opacity: 0.35;
}

.hero-swiper {
  width: 100%;
  height: 100%;
  min-height: 640px;
}
.hero-swiper .swiper-slide {
  height: auto;
}
.hero-row {
  display: flex;
  min-height: 640px;
}
.hero-pagination {
  position: absolute;
  left: 3.2rem !important;
  bottom: 2.6rem !important;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  left: 50px;
}
.hero-dot {
  width: 26px;
  height: 6px;
  border-radius: 100px;
  background: var(--panel-2);
  display: block;
  transition: 0.3s;
  cursor: pointer;
  border: 0;
  padding: 0;
  opacity: 1;
}
.hero-dot-active {
  background: var(--ink);
  width: 34px;
}
.hero-arrows {
  position: absolute;
  right: 2.6rem;
  top: 2.6rem;
  z-index: 6;
  display: flex;
  gap: 0.6rem;
}
.hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: 0.3s;
  cursor: pointer;
}
.hero-arrow:hover {
  background: var(--ink);
  color: var(--panel);
}
.hero-arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.hero-left {
  position: relative;
  z-index: 2;
  padding: 3.6rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 1.3rem;
}
.hero-eyebrow .paw-ico {
  width: 26px;
  height: 26px;
  color: var(--orange);
}
.hero-left h1 {
  font-family: "Fraunces", serif;
  font-weight: 800;
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  line-height: 1.06;
  color: var(--ink);
  margin-bottom: 1.3rem;
}
.hero-left h1 .hi-accent {
  color: var(--orange);
}
.hero-left p.lead-copy {
  color: var(--gray);
  font-size: 1rem;
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 1.9rem;
}
.btn-explore {
  background: var(--orange);
  color: #fff;
  border: 0;
  align-self: flex-start;
  border-radius: 100px;
  padding: 1rem 2.1rem;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: 0.3s;
  box-shadow: 0 16px 30px -14px rgba(236, 92, 0, 0.55);
  text-decoration: none;
}
.btn-explore:hover {
  background: var(--orange-deep);
  transform: translateY(-3px);
  color: #fff;
}
.hero-right {
  position: relative;
  z-index: 2;
  width: 50%;
  padding: 1.6rem 1.6rem 0 0;
  display: flex;
  align-items: stretch;
}
.hero-right-panel {
  background: var(--orange);
  border-radius: 22px;
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.moving {
  animation: moving 8s linear infinite;
}
@keyframes moving {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
.jump-reverse {
  animation: jumpReverseAni 7s linear infinite;
}
@keyframes jumpReverseAni {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-bone {
  position: absolute;
  top: 34px;
  left: 36px;
  width: 64px;
  height: 64px;
  color: #fff;
  opacity: 0.95;
}
.hero-bow {
  width: 180px;
  position: absolute;
  top: 135px;
  transform: translateY(-30%);
  left: -20px !important;
}
.hero-scribble {
  position: absolute;
  top: 38%;
  right: -18px;
  width: 60px;
  color: rgba(20, 23, 15, 0.65);
}
.hero-cluster {
  display: flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.hero-cluster img {
  height: 560px;
  object-fit: contain;
  margin-left: -26px;
}
.hero-cluster img:first-child {
  margin-left: 0;
}
.hero-books {
  position: absolute;
  right: 8%;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  z-index: 1;
}
.hero-book {
  width: 78px;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 -10px 24px -14px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.5rem 0.4rem;
}
.hero-book span {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 0.62rem;
  color: #fff;
  line-height: 1.15;
}
.hero-book.b1 {
  height: 190px;
  background: linear-gradient(160deg, var(--ink), #2b3120);
  margin-right: -14px;
}
.hero-book.b2 {
  height: 230px;
  background: linear-gradient(160deg, #3c4a2a, #1c2113);
  z-index: 2;
}
.paw-scatter {
  position: absolute;
  opacity: 0.5;
  z-index: 0;
}
@media(min-width:992px) and (max-width:1440px){
    .hero-cluster img {
    height: 456px !important;
    object-fit: contain;
  }
}
@media (max-width: 991.98px) {
  .hero-row {
    flex-direction: column;
    min-height: auto;
  }
  .hero-swiper {
    min-height: auto;
  }
  .hero-left,
  .hero-right {
    width: 100%;
  }
  .hero-left {
    padding: 2.6rem 1.8rem 1.5rem;
  }
  .hero-right {
    padding: 0 1.8rem 1.8rem;
  }
  .hero-right-panel {
    min-height: 360px;
  }
  .hero-cluster img {
    height: 232px;
  }
  .hero-book.b1 {
    height: 140px;
  }
  .hero-book.b2 {
    height: 170px;
  }
  .hero-pagination {
    left: 1.8rem;
    bottom: 1.6rem;
  }
  .hero-arrows {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .hero-pagination {
    left: 1.4rem;
    bottom: 1.2rem;
  }
  .hero-cluster img {
    height: 232px;
  }
  .hero-book {
    width: 56px;
  }
  .hero-book.b1 {
    height: 100px;
  }
  .hero-book.b2 {
    height: 126px;
  }
  .hero-bone {
    width: 44px;
    height: 44px;
    top: 20px;
    left: 20px;
  }
}

/* ===================== WHY CHOOSE US ===================== */
.why-section {
  padding: 6rem 0 4rem;
  position: relative;
}
.why-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 3.2rem;
}
.why-heading h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin: 0.5rem 0 0.8rem;
}
.leash-line {
  position: relative;
  max-width: 980px;
  margin: 0 auto 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
}
.leash-line::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 6%;
  right: 6%;
  height: 2px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--ink) 0 10px,
    transparent 10px 20px
  );
  opacity: 0.35;
}
.leash-stop {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 22%;
}
.leash-stop .paw {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
  box-shadow: 0 8px 18px -10px rgba(20, 23, 15, 0.4);
  transition: 0.35s;
}
.leash-stop:hover .paw {
  background: var(--lime);
  transform: translateY(-6px) rotate(-8deg);
}
.leash-stop .paw svg {
  width: 24px;
  height: 24px;
}
.leash-stop h4 {
  font-size: 1rem;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  margin-bottom: 0.35rem;
}
.leash-stop p {
  font-size: 0.83rem;
  color: var(--gray);
  line-height: 1.5;
}
.leash-stop:nth-child(2) {
  margin-top: 2.2rem;
}
.leash-stop:nth-child(4) {
  margin-top: 2.2rem;
}

.why-showcase {
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: visible;
  margin-top: 1rem;
}
.why-showcase-grid {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}
.why-photo-wrap {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  margin: 0 auto;
}
.why-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--lime);
  box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.6);
}
.why-photo-wrap .ring {
  position: absolute;
  inset: -18px;
  border: 2px dashed rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.why-copy {
  color: var(--cream);
}
.why-copy h3 {
  color: var(--lime);
  font-size: 1.8rem;
  margin-bottom: 0.7rem;
}
.why-copy p {
  color: #c9c8bd;
  font-size: 0.95rem;
  max-width: 560px;
  margin-bottom: 1.6rem;
  line-height: 1.7;
}

/* ===================== PRODUCTS ===================== */
.products-section {
  padding: 6rem 0;
  position: relative;
}
.plist .book-title{ display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;}
.products-heading {
  text-align: center;
  margin-bottom: 3.5rem;
}
.products-heading h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
}
.products-heading .accent-word {
  color: var(--lime-deep);
  font-style: italic;
}

.book-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--line);
  padding: 1.6rem 1.6rem 1.8rem;
  position: relative;
  height: 100%;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.45s ease,
    border-color 0.3s;
  transform-style: preserve-3d;
  overflow: hidden;
}
.book-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 46px 46px 0;
  border-color: transparent var(--orange-pale) transparent transparent;
  transition: 0.4s ease;
}
.book-card:hover::before {
  border-color: transparent var(--lime) transparent transparent;
}
.book-card:hover {
  box-shadow: 0 34px 60px -24px rgba(20, 23, 15, 0.4);
  border-color: var(--ink);
}
.book-cover-stage {
  position: relative;
  height: 230px !important;width:100% !important;
  margin-bottom: 1.4rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-cover-main {
  width: 150px;
  height: 280px;
  /* border-radius: 10px 4px 4px 10px;
  background: linear-gradient(160deg, var(--ink), #2b3120); */
  /* box-shadow:
    6px 10px 0 rgba(20, 23, 15, 0.12),
    0 22px 30px -16px rgba(20, 23, 15, 0.4); */
  position: relative;
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.9rem;
  transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
}
.book-cover-main img {
  width: 100%;
}
.book-card:hover .book-cover-main {
  transform: translate(-10px, -8px) rotate(-5deg);
}
.book-cover-main .bc-top {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
}
.book-cover-main .bc-title {
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.15;
}
.book-cover-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 280px;
  object-fit: contain;
  /* opacity: 0.55;
  mix-blend-mode: luminosity; */
}
.book-cover-sub {
  width: 110px;
  height: 145px;
  border-radius: 8px;
  overflow: hidden;
  position: absolute;
  right: 20%;
  bottom: 0;
  box-shadow: 0 18px 30px -16px rgba(20, 23, 15, 0.5);
  border: 5px solid var(--paper);
  transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}
.book-cover-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-card:hover .book-cover-sub {
  transform: translate(14px, 10px) rotate(6deg);
}
.book-ribbon {
  position: absolute;
  left: 18px;
  bottom: 26px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 100px;
  z-index: 3;
  border: 1.5px solid var(--ink);
}
.book-title {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.6rem;
  min-height: 2.7em;
}
.book-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
}
.book-price {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--coral);
}
.book-price small {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: 0.4rem;
}
.wish-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
  margin-left: 10px;
}
.wish-btn:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}
.wish-btn svg {
  width: 17px;
  height: 17px;
}
.book-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
}
.book-actions .btn-pill {
  flex: 1;
  justify-content: center;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  text-decoration: none;
}

/* ===================== FAQ ===================== */
.faq-section {
  padding: 5rem 0 6rem;
}
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.accordion-item {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 16px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}
.accordion-button {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  padding: 1.2rem 1.4rem;
  background: var(--paper);
}
.accordion-button:not(.collapsed) {
  background: var(--orange-pale);
  color: var(--ink);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: var(--line);
}

.accordion-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--ink);
  color: #cfcec3;
  padding: 4.5rem 0 1.6rem;
  position: relative;
  overflow: hidden;
}
.site-footer h5 {
  color: #fff;
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
}
.site-footer a {
  color: #b5b4a8;
  text-decoration: none;
  transition: 0.25s;
}
.site-footer a:hover {
  color: var(--lime);
}
.footer-brand {
  color: var(--lime);
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.5rem;
}
.footer-brand img{
  height: revert-layer!important;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  font-size: 0.82rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.pay-badge {
  width: 40px;
  height: 26px;
  border-radius: 5px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--ink);
}
.contacticon span {
  margin-right: 8px;
  position: relative;
  padding: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: 0.3s;
  width: 40px;
  height: 40px;
  background: var(--paper);
  position: relative;
  display: flex;
}
.contacticon svg {
  color: var(--orange);
  width: 20px;
  height: 20px;
}

/* reveal on scroll */
.reveal {
  /* opacity: 0; */
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .hero-content {
    padding: 2.2rem 1.6rem;
  }
  .why-showcase-grid {
    flex-direction: column;
    text-align: center;
  }
  .why-copy p {
    margin-left: auto;
    margin-right: auto;
  }
  .leash-line {
    flex-wrap: wrap;
    gap: 1.6rem 0;
  }
  .leash-line::before {
    display: none;
  }
  .leash-stop {
    width: 45%;
  }
  .leash-stop:nth-child(2),
  .leash-stop:nth-child(4) {
    margin-top: 0;
  }
  .header-search {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .leash-stop {
    width: 100%;
  }
  .hero-panel {
    min-height: auto;
  }
  .hero-stats {
    flex-wrap: wrap;
    row-gap: 1rem;
  }
  .book-cover-sub {
    right: 8%;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* ============ SECTION WRAP ============ */
.why-choose {
  background: var(--cream);
  position: relative;
  padding: 90px 0 0;
  overflow: hidden;
}

.why-choose .deco {
  position: absolute;
  opacity: 0.35;
  pointer-events: none;
}
.deco-heart {
  top: 40px;
  left: 6%;
  font-size: 28px;
  color: var(--gray);
}
.deco-bone {
  top: 60px;
  right: 6%;
  font-size: 34px;
  color: var(--gray);
  transform: rotate(-15deg);
}
.deco-paw-l {
  top: 44%;
  left: 2%;
  font-size: 26px;
  color: var(--gray);
  transform: rotate(-20deg);
}
.deco-paw-r {
  top: 40%;
  right: 3%;
  font-size: 30px;
  color: var(--gray);
  transform: rotate(15deg);
}

/* eyebrow tag */
.eyebrow-wrap {
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--orange-dark);
  font-size: 14px;
  letter-spacing: 0.5px;
  padding-bottom: 4px;
  border-bottom: 2px dashed var(--orange);
}
.eyebrow i {
  font-size: 16px;
}

.why-choose h2.headline {
  text-align: center;
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-top: 18px;
  letter-spacing: -0.5px;
}
.why-choose p.sub {
  text-align: center;
  color: var(--gray);
  margin: 12px auto 35px;
  font-size: 1rem;
}

/* ============ ARC ============ */
/* ============ ARC ============ */
.arc-stage {
  position: relative;
  max-width: 1080px;
  margin: 130px auto 0;
  min-height: 296px;
}

.arc-svg {
  position: absolute;
  top: -94px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 943px;
  height: auto;
  z-index: 0;
  overflow: visible;
}
.arc-node {
  position: absolute;
  width: 230px;
  text-align: center;
  z-index: 2;
}
.arc-node .badge-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--ink);
  margin: 0 auto 14px;
  box-shadow: 0 6px 14px rgba(240, 146, 63, 0.25);
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}
.arc-node .arc-title {
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 6px;
  transition: color 0.3s ease;
  font-family: "Fraunces", serif;
}
.arc-node .arc-text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.5;
  /* opacity:0;
    max-height:0; */
  overflow: hidden;
  transition:
    opacity 0.35s ease,
    max-height 0.35s ease,
    margin 0.35s ease;
}
.arc-node:hover .badge-num {
  transform: translateY(-6px) scale(1.08);
  background: var(--orange);
  color: #fff;
}
.arc-node:hover .arc-text {
  /* opacity:1; */
  max-height: 120px;
  margin-top: 4px;
}

.arc-node.n1 {
  top: 150px;
  left: -10px;
}
.arc-node.n2 {
  top: -16px;
  left: 150px;
}
.arc-node.n4 {
  top: -16px;
  right: 150px;
}
.arc-node.n5 {
  top: 150px;
  right: -10px;
}

.arc-center {
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  text-align: center;
  z-index: 3;
}
.arc-center .badge-num {
  width: 46px;
  height: 46px;
  font-weight: 700;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 14px rgba(240, 146, 63, 0.25);
}
.arc-center h4 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.btn-shop {
  position: relative;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 13px 34px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  box-shadow: 0 10px 22px rgba(240, 146, 63, 0.4);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
  overflow: hidden;
}
.btn-shop:hover {
  transform: translateY(-3px);
  background: var(--orange-dark);
  box-shadow: 0 14px 28px rgba(221, 123, 42, 0.45);
  color: #fff;
}
.btn-shop:active {
  transform: translateY(0) scale(0.97);
}
.btn-shop .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  transform: scale(0);
  animation: ripple 0.55s ease-out;
  pointer-events: none;
}
@keyframes ripple {
  to {
    transform: scale(3);
    opacity: 0;
  }
}

/* ============ PUPPY ROW ============ */
.puppy-row {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
  z-index: 4;
  margin-bottom: -41px;
}
.puppy-row img {
  height: 235px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 0 rgba(0, 0, 0, 0);
  transform: translateY(30px);
  opacity: 1;
  transition:
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease,
    filter 0.3s ease;
  cursor: pointer;
}
.puppy-row img.in-view {
  transform: translateY(0);
  opacity: 1;
}
/* .puppy-row img:hover{
    transform:translateY(-14px) scale(1.04);
    filter:brightness(1.05);
    z-index:5;
  } */
.puppy-row img:nth-child(1) {
  transition-delay: 0.05s;
}
.puppy-row img:nth-child(2) {
  transition-delay: 0.12s;
}
.puppy-row img:nth-child(3) {
  transition-delay: 0.19s;
}
.puppy-row img:nth-child(4) {
  transition-delay: 0.26s;
}
.puppy-row img:nth-child(5) {
  transition-delay: 0.33s;
}

/* ============ HERO MEDIA ============ */
.hero-media {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  height: 400px;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.35) 100%
  );
}
.play-wrap {
  position: absolute;
  right: 48px;
  bottom: 44px;
  text-align: center;
  z-index: 2;
  color: #fff;
}
.play-btn {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(2px);
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  position: relative;
}
.play-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  animation: pulse-ring 2.4s ease-out infinite;
}
.play-btn:hover {
  transform: scale(1.08);
  background: rgba(255, 255, 255, 0.2);
}
.play-btn i {
  font-size: 22px;
  margin-left: 4px;
}
@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* ============ MARQUEE ============ */
.marquee-strip {
  background: var(--cream);
  border-top: 1px solid var(--ring);
  border-bottom: 1px solid var(--ring);
  overflow: hidden;
  padding: 22px 0;
  margin-top: 80px;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  animation: scroll-left 22s linear infinite;
}
.marquee-track span {
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 34px;
}
.marquee-track span i {
  color: var(--orange);
  font-size: 1rem;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-strip:hover .marquee-track {
  animation-play-state: paused;
}

/* ============ DARK CTA BAND ============ */
.cta-band {
  background: #17181b;
  position: relative;
  padding: 70px 0 60px;
  overflow: hidden;
  color: #fff;
}
.cta-band .paw-deco {
  position: absolute;
  color: rgba(255, 255, 255, 0.05);
  font-size: 2.4rem;
}
.cta-puppy-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: -118px;
  margin-bottom: 34px;
  position: relative;
  z-index: 2;
}
.cta-puppy-row img {
  width: 120px;
  height: 150px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cta-puppy-row img:hover {
  transform: translateY(-12px) scale(1.05);
}

.cta-heart {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(240, 146, 63, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--orange);
  font-size: 28px;
  animation: beat 2.6s ease-in-out infinite;
}
@keyframes beat {
  0%,
  100% {
    transform: scale(1);
  }
  10% {
    transform: scale(1.12);
  }
  20% {
    transform: scale(1);
  }
}

.cta-band h3 {
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--orange);
  margin-bottom: 8px;
}
.cta-band h5 {
  text-align: center;
  font-weight: 600;
  color: #fff;
  margin-bottom: 22px;
}
.cta-band p.desc {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.8;
}
.cta-band .center-btn {
  text-align: center;
}
.btn-light-pill {
  background: #fff;
  color: var(--ink);
  border: none;
  padding: 13px 36px;
  border-radius: 40px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}
.btn-light-pill:hover {
  transform: translateY(-3px);
  background: var(--orange);
  color: #fff;
  box-shadow: 0 12px 26px rgba(240, 146, 63, 0.4);
}

/* ============ RESPONSIVE ============ */
@media (max-width:1023px){
  .why-photo-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}
}
@media (max-width: 991px) {
  .arc-stage {
    min-height: auto;
    margin: 60px auto 0;
  }
  .arc-svg {
    display: none;
  }
  .arc-node,
  .arc-center {
    position: static;
    width: 100%;
    max-width: 460px;
    margin: 0 auto 34px;
    transform: translateX(0);
  }
  .arc-node .arc-text {
    opacity: 1;
    max-height: none;
    margin-top: 4px;
  }
  .puppy-row img,
  .cta-puppy-row img {
    height: 92px;
  }
  .hero-media {
    height: max-content;
  }
  .play-wrap {
    right: 20px;
    bottom: 20px;
  }
  .play-btn {
    width: 60px;
    height: 60px;
  }
  .cta-puppy-row {
    margin-top: -70px;
  }
  .why-photo-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}
}
@media (max-width: 480px) {
  .puppy-row img,
  .cta-puppy-row img {
    height: 77px;
    margin-bottom: 23px !important;
  }
  .why-photo-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* FAQ section */
.faq-section {
  padding: 6rem 0;
  position: relative;
}

/* decorative blobs */
.faq-section::before {
  content: "";
  position: absolute;
  top: 21px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle at 53% 48%,
    rgba(255, 122, 48, 0.14),
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.faq-heading {
  font-weight: 800;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 2.5rem;
  animation: floatIn 0.7s ease both 0.05s;
}

/* Accordion cards */
.faq-accordion .accordion-item {
  background: var(--card);
  border: none;
  border-radius: 16px !important;
  margin-bottom: 1rem;
  box-shadow: 0 10px 30px -12px rgba(28, 26, 23, 0.12);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(16px);
  animation: floatIn 0.55s ease forwards;
}

.faq-accordion .accordion-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px -14px rgba(28, 26, 23, 0.2);
}

.faq-accordion .accordion-item:nth-child(1) {
  animation-delay: 0.05s;
}
.faq-accordion .accordion-item:nth-child(2) {
  animation-delay: 0.12s;
}
.faq-accordion .accordion-item:nth-child(3) {
  animation-delay: 0.19s;
}
.faq-accordion .accordion-item:nth-child(4) {
  animation-delay: 0.26s;
}
.faq-accordion .accordion-item:nth-child(5) {
  animation-delay: 0.33s;
}
.faq-accordion .accordion-item:nth-child(6) {
  animation-delay: 0.4s;
}

.accordion-button {
  background: var(--card);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  padding: 1.25rem 1.4rem;
  box-shadow: none !important;
  gap: 0.9rem;
}

.accordion-button:not(.collapsed) {
  color: var(--orange-dark);
  background: #fff8f2;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(255, 122, 48, 0.18) !important;
}

.q-number {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange-dark);
  font-size: 0.85rem;
  font-weight: 800;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.3s ease;
}

.accordion-button:not(.collapsed) .q-number {
  background: var(--orange);
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}

.accordion-button::after {
  background-image: none !important;
  content: "";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream);
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition:
    transform 0.35s ease,
    background 0.25s ease;
}

.accordion-button::before {
  content: "";
  position: absolute;
  right: 1.55rem;
  width: 12px;
  height: 2px;
  background: var(--orange-dark);
  border-radius: 2px;
}

.accordion-button .toggle-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: auto;
  transition:
    background 0.25s ease,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-button .toggle-icon::before,
.accordion-button .toggle-icon::after {
  content: "";
  position: absolute;
  background: var(--orange-dark);
  border-radius: 2px;
  transition:
    transform 0.35s ease,
    opacity 0.2s ease;
}
.accordion-button .toggle-icon::before {
  width: 12px;
  height: 2px;
}
.accordion-button .toggle-icon::after {
  width: 2px;
  height: 12px;
}

.accordion-button:not(.collapsed) .toggle-icon {
  background: var(--orange);
  transform: rotate(180deg);
}
.accordion-button:not(.collapsed) .toggle-icon::before,
.accordion-button:not(.collapsed) .toggle-icon::after {
  background: #fff;
}
.accordion-button:not(.collapsed) .toggle-icon::after {
  opacity: 0;
}

.accordion-body {
  padding: 1.5rem 1.4rem;
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.65;
}

@media (max-width: 575.98px) {
  .accordion-body {
    padding-left: 1.4rem;
  }
}

/* Right visual panel */
.faq-visual {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 560px;
  background: linear-gradient(160deg, #ffd9b0 0%, #ffb877 45%, #ff9a4d 100%);
  box-shadow: var(--shadow);
  animation: floatIn 0.8s ease both 0.15s;
}

.faq-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.faq-visual .badge-float {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 10px 24px -10px rgba(0, 0, 0, 0.25);
  animation: floaty 4s ease-in-out infinite;
}

.faq-visual .badge-float .icon-pill {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.5rem;
}

.faq-visual .badge-float strong {
  display: block;
  font-size: 0.95rem;
}
.faq-visual .badge-float span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-accordion .accordion-item,
  .faq-heading,
  .faq-visual,
  .badge-float {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 991.98px) {
  .faq-visual {
    min-height: 380px;
    margin-top: 3rem;
  }
}

@media (max-width: 575.98px) {
  .faq-section {
    padding: 3.5rem 0;
  }
  .accordion-button {
    padding: 1rem 1rem;
    font-size: 0.95rem;
  }
}
.bb-sidebar-contact ul{padding-left: 0;}
.bb-sidebar-contact li{list-style: none;}
.bb-sidebar-title a{color:#c94c00;text-decoration:none;padding: 5px; border-radius: 4px; border: 1px solid #c94c00;}
.bb-sidebar-block .range-slider input{ width: 100%;}

.navbar:not(.cart-navbar) {
  overflow: hidden;
  background-color: transparent!important;
  position: sticky!important;
  top: 0;
  width: 100%;
  z-index: 999;
}
.navbar:not(.cart-navbar) a:hover {
  background: transparent!important;
  color: black;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
  display: flex !important;
  align-items: flex-start !important;
}
