:root {
  --ink: #2b1024;
  --ink-2: #3b1731;
  --accent: #ef86a2;
  --accent-2: #f4b3c4;
  --blush: #fff3f5;
  --soft: #faf7f8;
  --text: #2f2830;
  --muted: #7b6f77;
  --line: #eadfe4;
  --white: #fff;
  --shadow: 0 10px 30px rgba(43, 16, 36, 0.08);
  --radius: 22px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.5;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button,
input {
  font: inherit;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.section {
  padding: 72px 0;
}
.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.section-title h2 {
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  margin: 0;
  color: var(--ink);
}
.section-title a {
  font-size: 14px;
  color: var(--muted);
}

.topbar {
  background: #24101f;
  color: #f9eaf0;
  font-size: 13px;
  text-align: center;
  padding: 8px 12px;
  letter-spacing: 0.2px;
}
.site-header {
  background: linear-gradient(180deg, #2d1027, #24101f);
  color: white;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.header-main {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 16px 0;
}
.logo {
  font-family: Georgia, serif;
  font-size: 30px;
  letter-spacing: 4px;
  line-height: 0.9;
}
.logo small {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 10px;
  letter-spacing: 5px;
  margin-top: 8px;
  color: #d9becb;
}
.search {
  position: relative;
}
.search input {
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 13px 46px 13px 18px;
  color: white;
  outline: none;
}
.search input::placeholder {
  color: #cdbac5;
}
.search span {
  /*position: absolute;
  right: 16px;
  top: 50%;
  translate: 0 -50%;
  opacity: 0.8;*/
}

/* Live search suggestions dropdown */
.search-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(43, 16, 36, 0.22);
  overflow: hidden;
  z-index: 50;
  max-height: 380px;
  overflow-y: auto;
}
.search-suggestions.open {
  display: block;
}
.search-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.search-suggestion-item:last-of-type {
  border-bottom: 0;
}
.search-suggestion-item:hover {
  background: var(--blush);
}
.search-suggestion-item img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #faf7f8;
}
.search-suggestion-item .ssi-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
}
.search-suggestion-item .ssi-name {
  font-size: 14px;
  font-weight: 650;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-suggestion-item .ssi-price {
  font-size: 13px;
  color: var(--muted);
}
.search-suggestions-viewall {
  display: block;
  text-align: center;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--blush);
}
.search-suggestions-empty {
  padding: 16px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
.search button {
  position: absolute;
  right: 16px;
  top: 50%;
  translate: 0 -50%;
  opacity: 0.8;
  background-color: transparent;
  border: none;
  color: #fff;
}
.header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 13px;
}
.header-actions a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f9eef3;
}
.cart-badge {
  display: inline-grid;
  place-items: center;
  background: var(--accent);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  color: white;
  margin-left: -2px;
}
.nav {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.nav-inner {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 12px 0;
  font-size: 14px;
}
.nav-inner li {
    list-style: none;
}
.nav a {
  color: #f8eaf0;
}
.nav a:hover {
  color: var(--accent-2);
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: white;
  font-size: 24px;
}

.hero {
    color: white;
    overflow: hidden;
    position: relative;
}
.hero .hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}
.hero.banner_sec img {
    width: 100%;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 7px 11px;
  color: #f3d9e3;
  margin-bottom: 10px;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(52px, 7vw, 68px);
  font-weight: 400;
  line-height: 0.95;
  margin: 18px 0 18px;
  max-width: 700px;
}
.hero p {
  font-size: 18px;
  color: #eadbe3;
  max-width: 520px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, #f08aa5, #f3a9b8);
  color: #2c1023;
}
.btn-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  background: rgba(255, 255, 255, 0.04);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 13px;
  color: #eadbe3;
}

.hero-art {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}
.stage {
  width: min(500px, 100%);
  height: 390px;
  border-radius: 34px;
  background: linear-gradient(145deg, #9d705e 0%, #4d2b2a 65%, #2e171f 100%);
  position: relative;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.06),
    0 40px 70px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
.stage:before {
  content: "";
  position: absolute;
  inset: auto 7% 32px 7%;
  height: 105px;
  background: #d6b7a5;
  border-radius: 50%/28%;
  filter: blur(0.4px);
  opacity: 0.7;
}
.toy {
  position: absolute;
  bottom: 86px;
  border-radius: 46% 46% 34% 34%;
  box-shadow: inset -10px -16px 18px rgba(0, 0, 0, 0.15),
    0 14px 18px rgba(0, 0, 0, 0.18);
}
.toy.one {
  left: 20%;
  width: 76px;
  height: 195px;
  background: linear-gradient(160deg, #191516, #45333c);
  transform: rotate(8deg);
  border-bottom: 8px solid #c69c56;
}
.toy.two {
  left: 44%;
  width: 82px;
  height: 160px;
  background: linear-gradient(160deg, #f5b8a8, #cf806f);
  border-bottom: 8px solid #cf9e58;
}
.toy.three {
  right: 18%;
  width: 62px;
  height: 210px;
  background: linear-gradient(160deg, #6c245f, #39163a);
  border-bottom: 8px solid #d3ae63;
}
.candle {
  position: absolute;
  right: 7%;
  bottom: 68px;
  width: 80px;
  height: 95px;
  border-radius: 12px;
  background: linear-gradient(#6d554e, #302020);
  box-shadow: 0 0 30px rgba(255, 214, 150, 0.28);
}
.candle:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -23px;
  width: 12px;
  height: 28px;
  background: linear-gradient(#fff6be, #f1a34b);
  border-radius: 50% 50% 35% 35%;
  transform: translateX(-50%);
}

.cat-wrap {
  margin-top: -4px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.cat-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  box-shadow: var(--shadow);
}
.explore_sec .cat-grid {
    display: flex;
    justify-content: center;
}

.explore_sec .cat-grid .explore_product {
    width: 18%;
}
.cat-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
}
.cat-card span {
  display: block;
  margin-top: 6px;
  color: var(--accent);
  font-size: 13px;
}
.blob {
  width: 66px;
  height: 66px;
  border-radius: 25px;
  background: linear-gradient(145deg, #ef8fa9, #70315c);
  transform: rotate(18deg);
  box-shadow: inset -9px -10px 12px rgba(0, 0, 0, 0.12);
}
.blob.alt {
  background: linear-gradient(145deg, #c58bc1, #40213f);
  transform: rotate(-18deg);
}
.blob.dark {
  background: linear-gradient(145deg, #4b3450, #170f18);
}

.products {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.product {
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(43, 16, 36, 0.05);
  transition: 0.25s transform, 0.25s box-shadow;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-media {
  aspect-ratio: 1/1;
  background: linear-gradient(145deg, #fff, #f7f1f4);
  display: grid;
  place-items: center;
  position: relative;
}
.heart {
  position: absolute;
  right: 14px;
  top: 12px;
  font-size: 19px;
  color: #a5798e;
}
.prod-shape {
  width: 82px;
  height: 150px;
  border-radius: 44px;
  background: linear-gradient(160deg, #1a171c, #4a3445);
  transform: rotate(15deg);
  box-shadow: inset -10px -14px 16px rgba(0, 0, 0, 0.16);
}
.prod-shape.pink {
  background: linear-gradient(160deg, #f5afba, #c85b87);
  transform: rotate(-10deg);
}
.prod-shape.purple {
  width: 52px;
  height: 152px;
  background: linear-gradient(160deg, #7a3d76, #3b173a);
  transform: none;
}
.prod-shape.round {
  width: 100px;
  height: 110px;
  border-radius: 55px 55px 40px 40px;
  background: linear-gradient(160deg, #222, #6b4754);
  transform: none;
}
.prod-shape.beads {
  width: 44px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 14%, #f34886 0 15%, transparent 16%),
    radial-gradient(circle at 50% 35%, #e83f7b 0 18%, transparent 19%),
    radial-gradient(circle at 50% 58%, #d93670 0 20%, transparent 21%),
    linear-gradient(#cf2f65, #cf2f65);
  background-size: 100% 100%;
  transform: none;
}
.product-body {
  padding: 15px;
}
.product h3 {
  font-size: 15px;
  margin: 0 0 4px;
}
.rating {
  font-size: 12px;
  color: #e58b31;
}
.rating small {
  color: var(--muted);
}
.price {
  font-weight: 800;
  margin: 15px 0;
  color: var(--ink);
}
.price .amount {
    padding: 2px 5px;
    font-size: 14px;
}
.add {
  width: 100%;
  border: 0;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}
.added_to_cart.wc-forward {
    padding: 0 10px;
}
.add:hover {
  background: var(--ink-2);
}

.best-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.mini {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: white;
}
.mini-media {
  height: 150px;
  background: var(--soft);
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.mini .prod-shape {
  scale: 0.72;
}
.mini h4 {
  margin: 0 0 4px;
}
.mini p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-strip {
  margin-top: 34px;
  background: linear-gradient(135deg, #2b1024, #3d1732);
  color: white;
  border-radius: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px;
}
.trust-item {
  padding: 8px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.trust-item:last-child {
  border-right: 0;
}
.trust-item strong {
  display: block;
  margin-bottom: 6px;
}
.trust-item span {
  font-size: 13px;
  color: #ddcbd4;
}

.promo {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  overflow: hidden;
  border-radius: 26px;
  background: linear-gradient(90deg, #f7d2dc, #f9eef1);
  min-height: 250px;
}
.promo-copy {
  padding: 38px;
}
.promo h3 {
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 1;
  margin: 0 0 10px;
  color: var(--ink);
}
.promo-art {
  position: relative;
  background: radial-gradient(circle at 35% 45%, #fff7fa, transparent 28%),
    linear-gradient(135deg, #f8dce4, #ead1d6);
}
.promo-art .prod-shape {
  position: absolute;
  left: 32%;
  top: 52%;
  translate: -50% -50%;
  transform: rotate(28deg);
  scale: 1.35;
}
.promo-art .prod-shape.pink {
  left: 62%;
  transform: rotate(-28deg);
  scale: 1.25;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.review {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  background: white;
}
.review p {
  font-size: 15px;
  color: #5f545c;
  min-height: 68px;
}
.review strong {
  font-size: 14px;
  color: var(--ink);
}
.section.faq_sec {
    padding: 0 0 30px 0px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  border: 0;
  text-align: left;
  padding: 18px;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
}
.faq-a {
  display: none;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
}
.faq-item.open .faq-a {
  display: block;
}
.guide {
  border-radius: 22px;
  padding: 30px;
  background: linear-gradient(135deg, #f2d9de, #eee2da);
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.guide h3 {
  font-family: Georgia, serif;
  font-size: 38px;
  line-height: 1;
  margin: 0 0 10px;
  color: var(--ink);
}
.best_seller_sec {
    padding: 30px 0;
}
.testimonial_sec {
    padding: 30px 0;
}
.newsletter {
  background: linear-gradient(135deg, #2a0f22, #401831);
  color: white;
  border-radius: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.newsletter h3 {
  margin: 0 0 6px;
  font-size: 24px;
}
.newsletter p {
  margin: 0;
  color: #d9c4cf;
}
.newsletter-form {
  display: flex;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px;
  color: white;
  outline: none;
}
.newsletter-form button {
  border: 0;
  background: var(--accent);
  color: white;
  padding: 0 24px;
  font-weight: 800;
}

footer {
  margin-top: 72px;
  background: #1c0d18;
  color: #d9c8d0;
  padding: 54px 0 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
}
.footer-grid li {
    list-style: none;
}
.footer-grid h4 {
  color: white;
  margin: 0 0 14px;
}
.footer-grid .footer_cust_care {
    padding-left: 0;
}
.footer-grid a {
  display: block;
  font-size: 13px;
  margin: 8px 0;
  color: #cbb9c2;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 34px;
  padding-top: 18px;
  font-size: 12px;
  color: #a9949e;
  text-align: center;
}
/* New Css */
.explore_sec {
  /*margin-top: -70px;*/
  margin-top: 40px;
  position: relative;
}
.explore_sec .explore_product {
  /*background: #fcf5f3;*/
  background: #251020;
  border: 1px solid #251020;
}
.explore_sec .explore_product.cat-card h3{
    color: #fff;
}
.explore_sec .explore_product .product_photo {
  width: 44%;
}
.explore_sec .explore_product .product_photo img {
    border-radius: 6px;
    margin-left: 5px;
}
.featured_products_sec .featured_products {
  width: 100%;
}
.featured_products_sec  .product-media {
  background: #fefefe;
}

.best_seller_sec .mini {
  position: relative;
}

.best_seller_sec .mini .best_sellers_photo {
  width: 140px;
  margin: auto;
}

.best_seller_sec .mini .count {
  background: #2b1025;
  width: 24px;
  display: flex;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.order_offer_sec .promo.order_offer {
  background: url(../images/order_offer_bg.png);
}
.order_offer_sec {
    padding: 0;
}
.order_offer_sec .promo.order_offer {
  background: url(../images/order_offer_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.wellness_sec {
  background: url(../images/wellness_personal_bg.png);
  background-repeat: no-repeat;
  justify-content: center;
}
.wellness_sec {
  background: url(../images/wellness_personal_bg.png);
  background-repeat: no-repeat;
  justify-content: center;
  background-size: cover;
}
.wellness_sec .wellness_text {
    width: 62%;
}
.best_seller_sec .trust-strip .trust-item {
    display: flex;
    align-items: center;
    padding: 6px 20px;
}

.best_seller_sec .trust-strip .trust-item .trust_icon {
    width: 74px;
    margin-right: 18px;
}
.newsletter .left_sec {
    display: flex;
    align-items: center;
}

.newsletter .left_sec .envelop_icon {
    width: 38px;
    margin-right: 20px;
}
.newsletter .newsletter_form_sec .des {
    margin-top: 10px;
    text-align: center;
}
/* New Css */

/* Shop Page Css */
/*.woo_shop_page .custom-shop-utilities {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.woo_shop_page ul li h2 {
    font-size: 14px;
    margin: 0 0 4px;
}

.woo_shop_page .price {
    display: block;
}

.woo_shop_page .add_to_cart_button {
    width: 100%;
    border: 0;
    background: #2b1024;
    color: white;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
}*/

.woo_shop_page .custom-shop-utilities {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.woo_shop_page .custom-shop-utilities .woocommerce-result-count {
    margin: 0;
}

.woo_shop_page .custom-shop-utilities .woocommerce-ordering select.orderby {
    height: 36px;
    border: 1px solid #eaeaea;
    padding: 10px;
    border-radius: 5px;
}



.woo_shop_page .custom-shop-utilities {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.woo_shop_page ul li h2 {
    font-size: 14px;
    margin: 0 12px 15px;
    display: block;
    color: var(--ink);
}
.woo_shop_page .price {
    display: block;
    padding: 0 10px 8px;
}
.woo_shop_page .add_to_cart_button, .woo_shop_page .product_type_simple  {
    width: 100%;
    border: 0;
    background: #2b1024;
    color: white;
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    margin: 0 10px;
    font-size: 14px;
}
.woo_shop_page .custom-shop-utilities .woocommerce-result-count {
    margin: 0;
}

.woo_shop_page .custom-shop-utilities .woocommerce-ordering select.orderby {
    height: 36px;
    border: 1px solid #eaeaea;
    padding: 10px;
    border-radius: 5px;
}

.woocommerce-pagination {
    margin-top: 60px;
}

.woocommerce-pagination .page-numbers {
    padding: 0;
    list-style-type: none;
    display: flex;
    justify-content: center;
    margin: 0;
}

.woocommerce-pagination .page-numbers li {
    margin: 0 4px;
    display: flex;
    align-items: center;
}

.woocommerce-pagination .page-numbers li span.page-numbers, .woocommerce-pagination .page-numbers li a {
    width: 30px;
    height: 30px;
    border: 1px solid #eaeaea;
    border-radius: 5px;
    font-size: 14px;
    line-height: 1.8;
}

.woocommerce-pagination .page-numbers li span.page-numbers.current, .woocommerce-pagination .page-numbers li a:hover {
    background: #24101f;
    color: #fff;
}
/* Shop Page Css */


/* 1800px */
@media screen and (max-width: 1800px) {
  .hero.banner_sec h1 {
    margin: 10px 0 10px;
  }
}
/* 1600px */
@media screen and (max-width: 1600px) {
 /*.explore_sec {
    margin-top: -30px;
  }*/
}

/* 1400px */
@media screen and (max-width: 1400px) {
 .hero.banner_sec h1 {
    font-size: 60px;
  }
}
/* 1200px */
@media screen and (max-width: 1200px) {
  .hero.banner_sec {
    height: 450px;
  }
 .hero.banner_sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
 
}
/* 1200px */
@media (max-width: 1000px) {
  .header-main {
    grid-template-columns: auto 1fr auto;
  }
  .header-actions .label {
    display: none;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-art {
    min-height: 360px;
  }
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .products,
  .best-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) {
    border-right: 0;
  }
  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
/* 991px */
@media screen and (max-width: 991px) {
   .wellness_sec .wellness_text {
    width: 92%;
  }
  .explore_sec .cat-grid .explore_product {
        width: 20%;
    }
  .explore_sec .explore_product.cat-card h3 {
      font-size: 12px;
  }
  
  .explore_sec .explore_product.cat-card span {
      font-size: 10px;
  }
  .explore_sec .explore_product .product_photo {
        width: 44%;
    }
  .explore_sec .explore_product .product_photo img {
        max-width: 45px;
    }
 
}
/* 991px */
/* 760px */
@media (max-width: 760px) {
  :root {
    --container: min(100% - 22px, 1180px);
  }
  .section {
    padding: 52px 0;
  }
  .order_offer_sec, .best_seller_sec, .testimonial_sec {
      padding: 20px 0;
  }
  .topbar {
    font-size: 11px;
  }
  .header-main {
    /*grid-template-columns: auto auto;*/
    gap: 12px;
  }
  .search {
    grid-column: 1/-1;
    order: 3;
  }
  .menu-btn {
    display: block;
    justify-self: end;
  }
  .header-actions {
    display: flex;
    justify-content: flex-end;
  }
  .nav {
    display: none;
  }
  .nav.open {
    display: block;
  }
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 18px;
    gap: 14px;
  }
  .hero.banner_sec {
    height: 420px;
  }
  .hero.banner_sec h1 {
    font-size: 40px;
  }
  .hero p {
      font-size: 14px;
  }
  .hero-trust{
    gap: 10px;
  }
  .cta-row {
    margin: 22px 0;
  }
  .hero-art {
    min-height: 320px;
  }
  .stage {
    height: 300px;
  }
  .toy {
    bottom: 70px;
  }
  .toy.one {
    height: 145px;
    width: 58px;
  }
  .toy.two {
    height: 130px;
    width: 65px;
  }
  .toy.three {
    height: 155px;
    width: 48px;
  }
  .candle {
    scale: 0.8;
    right: 2%;
  }
  .explore_sec .cat-grid {
      flex-direction: column;
      margin-top: 40px;
  }
  
  .explore_sec .cat-grid .explore_product {
        width: 100%;
    }
    .explore_sec .explore_product .product_photo {
        width: 40%;
    }
    .explore_sec .explore_product .product_photo img {
        max-width: 100%;
    }
    .explore_sec .explore_product.cat-card h3 {
        font-size: 16px;
    }
    .explore_sec .explore_product.cat-card span {
        font-size: 14px;
    }
    
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products,
  .best-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .trust-item,
  .trust-item:nth-child(2) {
    border-right: 0;
  }
  .trust-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .trust-item:last-child {
    border-bottom: 0;
  }
  
  .promo {
    grid-template-columns: 1fr;
  }
  .promo-art {
    min-height: 220px;
  }
  .reviews {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .newsletter {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
/* 760px */
/* 480px */
@media (max-width: 480px) {
  .products,
  .best-grid,
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .hero.banner_sec h1 {
    font-size: 30px;
  }
  .cta-row .btn {
    width: 100%;
  }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }
  .newsletter-form {
    flex-direction: column;
    background: transparent;
    border: 0;
    gap: 10px;
  }
  
  .newsletter-form input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
  }
  .newsletter-form button {
    /*padding: 13px;
    border-radius: 10px;*/
  }
  .newsletter button {
    border: 0;
    background: var(--accent);
    color: #fff;
    padding: 10px 18px;
    font-weight: 800;
}
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: auto;
  }
}
