:root {
  --sun: #ffd447;
  --coral: #ff4f8b;
  --mint: #8bdc75;
  --sky: #38bdf8;
  --berry: #7652d6;
  --orange: #ff9f1c;
  --teal: #16c7b7;
  --ink: #34264f;
  --muted: #756d8a;
  --line: #efe6f5;
  --soft: #fff3fa;
  --cream: #fff9e8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(62, 43, 86, .12);
  --play-shadow: 0 18px 34px rgba(255, 79, 139, .13), 0 8px 18px rgba(56, 189, 248, .08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 4% 2%, rgba(255, 212, 71, .18), transparent 28%),
    radial-gradient(circle at 96% 3%, rgba(56, 189, 248, .13), transparent 26%),
    linear-gradient(180deg, #fff, #fff8fc 520px, #fff);
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: opacity .35s ease, visibility .35s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-dot {
  width: 14px;
  height: 14px;
  margin: 5px;
  display: inline-block;
  border-radius: 50%;
  background: var(--coral);
  animation: bounce .8s infinite alternate;
}

.loader-dot:nth-child(2) {
  background: var(--mint);
  animation-delay: .15s;
}

.loader-dot:nth-child(3) {
  background: var(--sky);
  animation-delay: .3s;
}

@keyframes bounce {
  to {
    transform: translateY(-12px);
  }
}

.promo-strip {
  background: linear-gradient(90deg, var(--berry), var(--coral), var(--orange), var(--sun));
  color: var(--white);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  z-index: 1050;
  backdrop-filter: blur(14px);
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 10px 30px rgba(32, 37, 51, .08);
  animation: slideDown .28s ease;
}

.happycry-header-container {
  max-width: 1320px;
}

@keyframes slideDown {
  from {
    transform: translateY(-12px);
    opacity: .6;
  }
}

.header-toolbar {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 1.35rem;
}

.header-logo-wrap,
.header-actions-wrap {
  display: flex;
  align-items: center;
}

.header-logo-wrap {
  justify-content: flex-start;
}

.header-actions-wrap {
  justify-content: flex-end;
  gap: .75rem;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(245, 51, 127, .14));
  max-width: 166px;
}

.footer .brand-logo {
  filter: none;
}

.search-shell {
  width: 100%;
  min-width: 0;
  border: 2px solid var(--sun);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(255, 212, 71, .15);
}

.search-shell input,
.search-shell select {
  border: 0;
  box-shadow: none !important;
}

.header-action {
  position: relative;
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 44px;
  min-height: 40px;
  padding: 0;
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(239, 230, 245, .9);
  font-size: .9rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(52, 38, 79, .06);
}

.header-action span:not(.happycry-cart-count) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-action:hover,
.nav-link:hover {
  color: var(--coral);
}

.header-action i {
  color: var(--coral);
  font-size: 1rem;
}

.header-action .happycry-cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
}

.nav-row {
  background: linear-gradient(90deg, rgba(255, 243, 250, .95), rgba(255, 249, 232, .95), rgba(239, 255, 252, .95));
}

.navbar-nav .nav-link {
  font-weight: 700;
  color: var(--ink);
  padding: 1rem .7rem;
}

.nav-row .menu a,
.navbar-nav .nav-link {
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.nav-row .menu a:hover,
.navbar-nav .nav-link:hover,
.current-menu-item > a {
  background: rgba(255, 79, 139, .1);
  transform: translateY(-1px);
}

.mega-menu {
  min-width: 760px;
  padding: 1.2rem;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mega-title {
  color: var(--coral);
  font-weight: 800;
  margin-bottom: .4rem;
}

.mega-menu a {
  display: block;
  padding: .25rem 0;
  color: var(--muted);
  font-size: .93rem;
}

.btn-brand {
  --bs-btn-bg: var(--coral);
  --bs-btn-border-color: var(--coral);
  --bs-btn-hover-bg: #ec2e73;
  --bs-btn-hover-border-color: #ec2e73;
  --bs-btn-color: #fff;
  --bs-btn-hover-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(255, 79, 139, .22);
}

.btn-soft {
  background: var(--soft);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.btn-soft:hover {
  color: var(--coral);
  border-color: var(--coral);
  background: #fff0f6;
}

.section-pad {
  padding: 72px 0;
  position: relative;
}

.section-title {
  margin-bottom: 32px;
}

.section-title .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--berry);
  background: rgba(118, 82, 214, .08);
  padding: .35rem .7rem;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}

.section-title .eyebrow::before {
  content: "\f1ae";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--coral);
}

.section-title h2 {
  font-weight: 900;
  margin: .2rem 0 .45rem;
  color: var(--ink);
}

.section-title p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

.hero-slide {
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  border-bottom: 8px solid transparent;
  border-image: linear-gradient(90deg, var(--coral), var(--sun), var(--teal), var(--sky)) 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 212, 71, .18), transparent 20%),
    linear-gradient(90deg, rgba(33, 23, 55, .78), rgba(33, 23, 55, .34), rgba(33, 23, 55, .08));
}

.hero-content {
  position: relative;
  max-width: 570px;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  padding: .42rem .7rem;
  border-radius: 999px;
  color: var(--ink);
  background: var(--sun);
  font-weight: 900;
  margin-bottom: 1rem;
  box-shadow: 0 10px 24px rgba(255, 212, 71, .24);
}

.offer-badge::before {
  content: "\f06b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: .45rem;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 950;
}

.hero-content p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .9);
}

.carousel-control-prev,
.carousel-control-next {
  width: 7%;
}

.category-card,
.brand-card,
.feature-card,
.testimonial-card,
.blog-card,
.product-card,
.team-card,
.value-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.category-card:hover,
.brand-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.product-card:hover,
.team-card:hover,
.value-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--play-shadow);
  border-color: transparent;
}

.category-card {
  overflow: hidden;
  text-align: center;
  padding: 1rem;
  background: linear-gradient(180deg, #fff, #fff8fc);
}

.category-card img,
.brand-card img {
  width: 100%;
  aspect-ratio: 1 / .72;
  object-fit: cover;
  border-radius: 14px;
}

.category-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: -26px auto .6rem;
  position: relative;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(85, 198, 169, .3);
  font-size: 1.25rem;
}

.category-card:nth-child(4n + 1) .category-icon,
.row > div:nth-child(4n + 1) .category-icon {
  background: linear-gradient(135deg, var(--coral), var(--orange));
}

.row > div:nth-child(4n + 2) .category-icon {
  background: linear-gradient(135deg, var(--sky), var(--berry));
}

.row > div:nth-child(4n + 3) .category-icon {
  background: linear-gradient(135deg, var(--teal), var(--mint));
}

.row > div:nth-child(4n + 4) .category-icon {
  background: linear-gradient(135deg, var(--sun), var(--orange));
}

.brand-card {
  padding: 1rem;
  text-align: center;
}

.brand-card h3,
.category-card h3 {
  font-size: 1rem;
  font-weight: 900;
  margin: .7rem 0 .2rem;
}

.product-card {
  overflow: hidden;
  height: 100%;
}

.product-media-wrap,
.product-media {
  position: relative;
}

.product-media {
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--soft), #effffc);
}

.product-media img {
  width: 100%;
  aspect-ratio: 1 / .9;
  object-fit: cover;
  transition: transform .35s ease;
}

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

.discount-badge,
.stock-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: .32rem .55rem;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--orange));
  font-size: .78rem;
  font-weight: 900;
}

.stock-badge {
  left: auto;
  right: 12px;
  background: linear-gradient(135deg, var(--teal), var(--sky));
}

.product-actions {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: .45rem;
  transform: translateY(12px);
  opacity: 0;
  transition: .25s ease;
}

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

.icon-btn {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.icon-btn:hover,
.icon-btn.active {
  color: var(--white);
  background: var(--coral);
}

.product-body {
  padding: 1rem;
}

.product-body h3 {
  min-height: 48px;
  margin: .25rem 0;
  font-size: 1rem;
  font-weight: 900;
}

.product-meta {
  color: var(--muted);
  font-size: .86rem;
}

.rating {
  color: #f5a623;
  font-size: .9rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: .55rem;
}

.price strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.price del {
  color: var(--muted);
  font-size: .9rem;
}

.promo-banner {
  min-height: 260px;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 1.35rem;
  border-radius: 20px;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(24, 29, 43, .78), rgba(24, 29, 43, .06));
}

.promo-banner > div {
  position: relative;
}

.feature-card,
.testimonial-card,
.value-card,
.contact-card {
  padding: 1.25rem;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--sky), var(--berry));
  font-weight: 900;
  margin-bottom: .85rem;
  font-size: 1.28rem;
}

.care-promise {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(245, 51, 127, .14), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(32, 168, 223, .16), transparent 25%),
    linear-gradient(135deg, #fff7fb 0%, #fffaf0 48%, #f1fff9 100%);
}

.care-promise::before,
.care-promise::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.care-promise::before {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -80px;
  background: rgba(255, 196, 0, .18);
}

.care-promise::after {
  width: 220px;
  height: 220px;
  right: -95px;
  top: 34px;
  background: rgba(0, 170, 166, .12);
}

.care-promise .container {
  position: relative;
  z-index: 1;
}

.care-promise .feature-card {
  position: relative;
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(245, 51, 127, .12);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(245, 51, 127, .35), rgba(255, 196, 0, .28), rgba(0, 170, 166, .28)) border-box;
  box-shadow: 0 18px 44px rgba(49, 42, 69, .08);
}

.care-promise .feature-card::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 51, 127, .14), rgba(255, 196, 0, .14));
}

.care-promise .feature-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 24px 56px rgba(245, 51, 127, .14);
}

.care-promise .feature-card:nth-child(1n) .feature-icon {
  background: linear-gradient(135deg, var(--coral), var(--orange));
}

.care-promise .col-md:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, var(--sky), var(--berry));
}

.care-promise .col-md:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, var(--teal), var(--mint));
}

.care-promise .col-md:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, var(--sun), var(--orange));
}

.care-promise .col-md:nth-child(5) .feature-icon {
  background: linear-gradient(135deg, var(--berry), var(--coral));
}

.care-promise .feature-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 1rem;
  box-shadow: 0 14px 28px rgba(49, 42, 69, .18);
  font-size: .9rem;
}

.care-promise h3 {
  font-size: 1.18rem;
  font-weight: 950;
  margin: .55rem 0 .55rem;
}

.care-promise p {
  margin-bottom: 0;
}

.promise-tag {
  display: inline-flex;
  align-items: center;
  padding: .28rem .55rem;
  border-radius: 999px;
  color: var(--berry);
  background: rgba(109, 84, 153, .09);
  font-size: .76rem;
  font-weight: 900;
}

.blog-card {
  overflow: hidden;
}

.blog-card img,
.team-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.blog-card .content,
.team-card .content {
  padding: 1rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.newsletter {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 212, 71, .28), transparent 24%),
    radial-gradient(circle at 88% 20%, rgba(22, 199, 183, .2), transparent 24%),
    linear-gradient(135deg, #fff8ed 0%, #fff1f8 42%, #e9fbff 100%);
  border-bottom: 8px solid transparent;
  border-image: linear-gradient(90deg, var(--coral), var(--sun), var(--teal), var(--sky)) 1;
}

.newsletter::before,
.newsletter::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.newsletter::before {
  width: 150px;
  height: 150px;
  left: clamp(18px, 8vw, 140px);
  top: 44px;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 10px, transparent 11px),
    linear-gradient(135deg, rgba(255, 79, 139, .18), rgba(255, 159, 28, .12));
}

.newsletter::after {
  width: 210px;
  height: 210px;
  right: clamp(12px, 7vw, 120px);
  bottom: -90px;
  background: linear-gradient(135deg, rgba(56, 189, 248, .2), rgba(139, 220, 117, .14));
}

.newsletter .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.newsletter .section-title {
  margin-bottom: 1.35rem;
}

.newsletter .section-title .eyebrow::before {
  content: "\f0e0";
  margin-right: .35rem;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.newsletter .gform_wrapper {
  margin: 0 auto;
  padding: clamp(.9rem, 2vw, 1.2rem);
  border: 1px solid rgba(255, 79, 139, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 50px rgba(52, 38, 79, .1);
  backdrop-filter: blur(12px);
}

.newsletter .gform_heading {
  display: none;
}

.newsletter .gform_title {
  display: none;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 950;
}

.newsletter .gform_title::before {
  content: "\f0e0";
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  font-family: "Font Awesome 6 Free";
  font-size: 1.05rem;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(255, 79, 139, .22);
}

.newsletter .gform_description {
  display: none;
}

.newsletter form {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.newsletter .gform-body,
.newsletter .gform_body {
  flex: 1 1 auto;
  min-width: 0;
}

.newsletter .gform_fields {
  row-gap: .85rem !important;
}

.newsletter .gfield_label {
  display: none !important;
}

.newsletter .gfield_required {
  color: var(--coral) !important;
}

.newsletter input[type="email"],
.newsletter input[type="text"] {
  min-height: 54px !important;
  border: 2px solid rgba(255, 212, 71, .7) !important;
  border-radius: 999px !important;
  padding: .85rem 1.25rem !important;
  background: #fff !important;
  color: var(--ink) !important;
  box-shadow: 0 12px 24px rgba(52, 38, 79, .06) !important;
}

.newsletter input[type="email"]:focus,
.newsletter input[type="text"]:focus {
  border-color: var(--coral) !important;
  box-shadow: 0 0 0 .22rem rgba(255, 79, 139, .14) !important;
  outline: 0 !important;
}

.newsletter .gform_footer,
.newsletter .gform_page_footer {
  flex: 0 0 auto;
  justify-content: center;
  margin: 0 !important;
  padding: 0 !important;
}

.newsletter .gform_button,
.newsletter input[type="submit"] {
  min-height: 54px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  border: 0 !important;
  border-radius: 999px !important;
  padding: .75rem 1.4rem !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--coral), var(--orange)) !important;
  font-weight: 900 !important;
  box-shadow: 0 14px 28px rgba(255, 79, 139, .22) !important;
}

.newsletter .gform_button:hover,
.newsletter input[type="submit"]:hover {
  transform: translateY(-1px);
  filter: saturate(1.06);
}

.about-welcome {
  background:
    linear-gradient(135deg, rgba(245, 51, 127, .08), rgba(255, 196, 0, .12) 45%, rgba(0, 170, 166, .08)),
    #fff;
}

.about-pill {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(49, 42, 69, .08);
}

.about-feature-img {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
}

.about-store-band {
  color: #fff;
  background: linear-gradient(135deg, var(--berry), var(--coral) 52%, var(--orange));
}

.about-store-band .eyebrow,
.about-store-band .text-muted,
.about-store-band a {
  color: rgba(255, 255, 255, .9) !important;
}

.about-store-band .contact-card {
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
}

.about-store-band .contact-card .text-muted,
.about-store-band .contact-card a {
  color: var(--muted) !important;
}

.about-stats h2 {
  color: var(--coral);
  font-weight: 950;
}

.footer {
  color: #efeaf8;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 212, 71, .15), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(255, 79, 139, .16), transparent 24%),
    #34264f;
  border-top: 8px solid transparent;
  border-image: linear-gradient(90deg, var(--sun), var(--coral), var(--sky), var(--teal)) 1;
}

.footer h3,
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.footer a {
  display: block;
  color: #d6dbea;
  padding: .25rem 0;
}

.footer a:hover {
  color: var(--sun);
}

.footer-contact {
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-contact h4 {
  margin-bottom: .85rem;
}

.footer-contact-item {
  display: flex !important;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .65rem;
  color: #efeaf8 !important;
  padding: 0 !important;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-item p,
.footer-contact-item span:not(.footer-contact-icon) {
  margin: 0;
  min-width: 0;
}

.footer-contact-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: 0 8px 18px rgba(245, 51, 127, .18);
}

.footer-contact-item:hover {
  color: var(--sun) !important;
}

.footer-contact-item:hover .footer-contact-icon {
  background: linear-gradient(135deg, var(--teal), var(--sky));
}

@media (min-width: 1200px) {
  .footer-contact {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    column-gap: 1rem;
  }

  .footer-contact h4,
  .footer-contact .footer-contact-item:first-of-type {
    grid-column: 1 / -1;
  }
}

.social-links {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
}

.social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  padding: 0;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.footer .social-link,
.contact-card .social-link {
  display: inline-flex;
  color: #fff;
  padding: 0;
}

.social-link:hover {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, var(--coral), var(--orange));
}

.breadcrumb-wrap {
  background: linear-gradient(90deg, var(--soft), var(--cream), #effffc);
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.page-hero {
  min-height: 320px;
  display: grid;
  place-items: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 212, 71, .16), transparent 25%),
    rgba(33, 23, 55, .58);
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-weight: 950;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.filter-sidebar {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  background: var(--white);
}

.filter-group {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.filter-group:last-child {
  border: 0;
}

.list-view .shop-item {
  width: 100%;
}

.list-view .product-card {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.product-gallery-main {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: var(--soft);
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1 / .88;
  object-fit: cover;
  cursor: zoom-in;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .7rem;
  margin-top: .8rem;
}

.thumb-row button {
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}

.thumb-row button.active {
  border-color: var(--coral);
}

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

.quantity-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.quantity-control button,
.quantity-control input {
  width: 44px;
  height: 42px;
  border: 0;
  text-align: center;
  background: #fff;
}

.sticky-buy-box {
  position: sticky;
  top: 92px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.spec-list {
  columns: 2;
}

.timeline {
  position: relative;
  padding-left: 1rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding: 0 0 1.25rem 1.4rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--sun));
}

.map-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(88, 166, 255, .15) 1px, transparent 1px),
    linear-gradient(rgba(88, 166, 255, .15) 1px, transparent 1px),
    #f4f8ff;
  background-size: 38px 38px;
}

.mini-cart,
.search-panel {
  position: fixed;
  z-index: 1065;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .3s ease, opacity .3s ease, visibility .3s ease;
}

.mini-cart h2 {
  font-weight: 950;
  color: var(--ink);
}

.mini-cart {
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  transform: translateX(105%);
  visibility: hidden;
}

.mini-cart.open {
  transform: translateX(0);
  visibility: visible;
}

.search-panel {
  inset: 0;
  display: grid;
  place-items: start center;
  padding-top: 12vh;
  background: rgba(255, 255, 255, .96);
  opacity: 0;
  visibility: hidden;
}

.search-panel.open {
  opacity: 1;
  visibility: visible;
}

.toast-box {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1080;
  min-width: 260px;
  padding: .8rem 1rem;
  border-radius: 18px;
  color: #fff;
  background: var(--ink);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.toast-box.show {
  transform: translateY(0);
  opacity: 1;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 82px;
  z-index: 1040;
  width: 46px;
  height: 46px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
