/* ---------- Commerce hero ---------- */
.commerce-hero {
  background: #fff;
  color: #111;
  padding: 0;
}

.commerce-hero__flex {
  display: flex;
  width: 100%;
  max-height: 700px;
}

.commerce-hero__slider,
.commerce-promo {
  position: relative;
  overflow: hidden;
}

.commerce-hero__slider.swiper {
  display: flex;
  flex-grow: 0;
  flex-shrink: 1;
  width: 100%;
}

.commerce-hero__slider .swiper-wrapper,
.commerce-hero__slider .swiper-slide {
  height: 100%;
}

.commerce-hero__slider .swiper-slide {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 1600px) {
  
  .commerce-hero__slider .swiper-slide {
    padding-left: 2%;
  }
}

.commerce-hero__slider .swiper-pagination {
  bottom: 22px;
  left: 54px;
  text-align: left;
}

.commerce-hero__slider .swiper-pagination-bullet {
  background: rgba(255, 255, 255, .5);
  opacity: 1;
}

.commerce-hero__slider .swiper-pagination-bullet-active {
  background: #fff;
}

.commerce-hero__copy {
  align-self: center;
  color: #fff;
  padding: 54px 20px;
  position: relative;
  z-index: 2;
}

.commerce-hero__eyebrow,
.commerce-promo__text small {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  margin-bottom: 14px;
}

.commerce-hero h1 {
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 32px;
  max-width: 600px;
}

.commerce-hero h1 span {
  display: block;
  font-weight: 400;
}

.commerce-hero__media {
  align-items: center;
  display: flex;
  min-width: 0;
  overflow: hidden;
}

.commerce-hero__media img,
.commerce-promo img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform .65s ease;
  width: 100%;
}

.commerce-hero__media img {
  max-width: 723px;
}

.commerce-promo:hover img {
  transform: scale(1.08);
}

.commerce-hero__stack {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-shrink: 0;
  width: 650px;
}

.commerce-promo {
  color: #111;
  /* min-height:233px; */
  height: auto;
}

.commerce-promo__text {
  left: 34px;
  max-width: 250px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.commerce-promo__text strong {
  color: #111;
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: clamp(23px, 2.2vw, 34px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 24px;
}

.commerce-promo--clock .commerce-promo__text {
  left: 44px;
  top: 36px;
  transform: none;
}

.commerce-promo--clock .commerce-promo__text strong {
  color: #c84d6b;
  font-family: 'Cinzel', serif;
  font-size: clamp(24px, 2.2vw, 33px);
  font-weight: 600;
}

.commerce-promo--clock .commerce-promo__text em {
  display: none;
}

.commerce-promo__badge {
  align-items: center;
  background: #d9111b;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 800;
  height: 70px;
  justify-content: center;
  position: absolute;
  right: 40px;
  top: -20px;
  width: 70px;
  z-index: 2;
}

/* ---------- USP strip ---------- */
.usp {
  background: var(--ivory-deep);
  border-bottom: 1px solid var(--line);
}

.usp .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 30px 24px;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.usp-item .ic {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
}

.usp-item .ic svg {
  width: 22px;
  height: 22px;
  stroke: var(--aubergine-deep);
}

.usp-item h4 {
  font-family: 'Jost';
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.usp-item p {
  font-size: 12.8px;
  color: var(--ink-soft);
}

/* ---------- Section heading pattern ---------- */
section.mk-art-section {
  padding: 76px 0;
}

.sec-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 46px;
}

.sec-head .jewel {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
}

.sec-head h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin: 10px 0 12px;
}

.sec-head p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ---------- Categories grid ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform .3s ease;
  text-decoration: none !important;
}

.cat-card:hover {
  transform: translateY(-6px);
}

/* .cat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .92;
} */

.cat-card.c1::before {
  background: linear-gradient(160deg, rgba(124, 63, 176, 0.72), rgba(43, 15, 78, 0.82));
}

.cat-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cat-card.c2::before {
  background: linear-gradient(160deg, #E3549A, #8E2255);
}

.cat-card.c3::before {
  background: linear-gradient(160deg, #F0C550, #9A7215);
}

.cat-card.c4::before {
  background: linear-gradient(160deg, #5B2C8C, #160726);
}

.cat-card.c5::before {
  background: linear-gradient(160deg, #C81B72, #4A0F33);
}

.cat-card.c6::before {
  background: linear-gradient(160deg, #8E4FC7, #2B0F4E);
}

.cat-card.c7::before {
  background: linear-gradient(160deg, #C9971F, #5C420C);
}

.cat-card.c8::before {
  background: linear-gradient(160deg, #4A3B57, #1C1024);
}

.cat-card .glyph {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  opacity: .9;
}

.cat-card .glyph svg {
  width: 100%;
  height: 100%;
  stroke: rgba(255, 255, 255, 0.85);
  fill: none;
}

.cat-card .txt {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cat-card .txt .count {
  font-size: 11.5px;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .75;
  display: block;
  margin-bottom: 4px;
  text-decoration: none;
}

.cat-card .txt h3 {
  color: #fff;
  font-size: 19px;
  text-decoration: none;
}

/* ---------- Banner strip ---------- */
.promo-strip {
  background: linear-gradient(120deg, var(--aubergine-deep), var(--aubergine));
  border-radius: var(--radius);
  padding: 44px 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-items: center;
  gap: 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.promo-strip::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 197, 80, 0.35), transparent 70%);
  right: -60px;
  top: -90px;
}

.promo-strip-padding {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

.promo-strip h3 {
  color: #fff;
  font-size: 26px;
  margin-bottom: 8px;
}

.promo-strip p {
  color: rgba(255, 251, 242, 0.78);
  font-size: 14.5px;
}

/* ---------- Products ---------- */
.prod-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 38px;
  flex-wrap: wrap;
}

.prod-tab {
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  cursor: pointer;
}

.prod-tab.active,
.prod-tab:hover {
  background: var(--aubergine-deep);
  color: #fff;
  border-color: var(--aubergine-deep);
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.prod-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(43, 15, 78, 0.08);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.prod-media {
  aspect-ratio: 1/1;
  position: relative;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  overflow: hidden;
}

.resin-disc {
  border-radius: 50%;
  background: conic-gradient(from 200deg, var(--magenta), var(--purple-light), var(--gold-light), var(--magenta));
  filter: saturate(1.1);
}

.prod-media .resin-disc {
  position: static;
  width: 78%;
  height: 78%;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.3), 0 10px 30px rgba(0, 0, 0, 0.12);
}

.prod-media .glyph-over {
  position: absolute;
  width: 44%;
  height: 44%;
  opacity: .92;
}

.prod-media .glyph-over svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 1.3;
}

.prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--magenta);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
}

.prod-wish {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.prod-wish:hover {
  background: rgba(255, 255, 255, 0.85);
}

.prod-wish svg {
  width: 15px;
  height: 15px;
  stroke: var(--magenta);
  fill: none;
}

.prod-wish--remove svg {
  fill: var(--magenta);
  stroke: var(--magenta-light);
}

.prod-wish a:before {
  color: transparent !important;
  -webkit-text-stroke: 1.5px var(--magenta) !important;
}

.prod-wish a:hover:before {
  content: "\e908" !important;
  color: var(--magenta) !important;
  -webkit-text-stroke: 1px var(--magenta-light) !important;
}

.prod-wish a.tinvwl-product-in-list:before {
  color: var(--magenta) !important;
  -webkit-text-stroke: 1px var(--magenta-light) !important;
}

ul.products li.product .tinvwl_add_to_wishlist_button {
  margin-top: 0;
}

.prod-info {
  padding: 18px 18px 20px;
}

.prod-card .prod-info a {
  text-decoration: none !important;
}

.prod-info .cat-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

.prod-info h4 {
  font-family: 'Jost';
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
  margin: 6px 0 8px;
}

.prod-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.prod-price .now {
  font-family: 'Cinzel';
  font-size: 17px;
  color: var(--aubergine-deep);
  font-weight: 600;
}

.prod-price .was {
  font-size: 13px;
  color: #9d8fa9;
  text-decoration: line-through;
}

.prod-add {
  display: block;
  text-align: center;
  width: 100%;
  padding: 11px;
  border-radius: 10px;
  border: 1px solid var(--aubergine-deep);
  background: transparent;
  color: var(--aubergine-deep);
  font-family: 'Jost';
  font-weight: 600;
  font-size: 12.8px;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease;
}

.prod-add:hover {
  background: var(--aubergine-deep);
  color: #fff;
}

/* ---------- Story / craftsmanship ---------- */
.story {
  background: var(--ivory-deep);
}

.story .container {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.story-art {
  position: relative;
  aspect-ratio: 4/4.6;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(150deg, var(--purple-light), var(--aubergine-deep) 60%, var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-art svg {
  width: 58%;
  opacity: .92;
}

.story-copy p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 15.2px;
}

.story-stats {
  display: flex;
  gap: 38px;
  margin-top: 30px;
}

.story-stats div strong {
  display: block;
  font-family: 'Cinzel';
  font-size: 26px;
  color: var(--gold-dark);
}

.story-stats div span {
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ---------- Testimonials ---------- */
.testi-grid.owl-carousel {
  display: block;
}

.testi-grid.owl-carousel {
  visibility: hidden;
}

.testi-grid.owl-carousel.owl-loaded {
  visibility: visible;
}

.testi-grid.owl-carousel .owl-stage-outer {
  padding: 4px 2px 14px;
}

.testi-grid.owl-carousel .owl-stage {
  display: flex;
}

.testi-grid.owl-carousel .owl-item {
  display: flex;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 10px 26px rgba(43, 15, 78, 0.06);
  width: 100%;
}

.testi-grid.owl-carousel .testi-card {
  margin: 0 13px;
}

.testi-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testi-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}

.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--magenta));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Cinzel';
  font-size: 14px;
}

.testi-who h5 {
  font-size: 14px;
  color: var(--ink);
}

.testi-who span {
  font-size: 12px;
  color: var(--ink-soft);
}

.testi-grid.owl-carousel .owl-dots {
  margin-top: 26px;
  text-align: center;
}

.testi-grid.owl-carousel .owl-dot span {
  display: block;
  background: rgba(43, 15, 78, 0.18);
  height: 10px;
  margin: 5px 6px;
  transition: background .25s ease, transform .25s ease;
  width: 10px;
}

.testi-grid.owl-carousel .owl-dot.active span,
.testi-grid.owl-carousel .owl-dot:hover span {
  background: var(--aubergine-deep);
  transform: scale(1.08);
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(120deg, var(--aubergine-deep), var(--aubergine) 70%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(240, 197, 80, 0.18), transparent 60%);
}

.newsletter .container {
  position: relative;
  max-width: 560px;
}

.newsletter h2 {
  color: #fff;
}

.newsletter p {
  color: rgba(255, 251, 242, 0.78);
  margin: 14px 0 30px;
  font-size: 14.5px;
}

.nl-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}

.nl-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  outline: none;
  font-family: 'Jost';
  font-size: 14px;
}

.nl-form input:focus {
  border-color: var(--gold) !important;
  background: var(--ivory) !important;
  box-shadow: 0 0 0 4px rgba(201, 151, 31, 0.14) !important;
}

.btn-gold-a {
  z-index: 2;
}

.btn-gold-a a {
  background: linear-gradient(135deg, #f0c550, #c9971f 60%, #9a7215);
  color: #160726 !important;
  box-shadow: 0 12px 26px rgba(201, 151, 31, 0.38);
}

.btn-gold-a a:hover {
  transform: translateY(-2px);
}

.entry-header {
  display: none;
}

#primary {
    margin: 4em 0 !important;
}

.second_section_home_for_feature .elementor-icon-box-icon {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
}

.second_section_home_for_feature .elementor-icon-box-wrapper {
  min-height: 62px;
}