/* ============================================
   STOREFRONT PAGES – HOMEPAGE & PAGE SECTIONS
   Enazey – Premium E-Ticaret
   ============================================ */

.sf-main {
  overflow: clip;
}

/* ---- Scroll Reveal Animations ---- */
.storefront-body.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(36px);
}

@media (prefers-reduced-motion: no-preference) {
  .storefront-body.reveal-ready [data-reveal] {
    transition: opacity .8s cubic-bezier(.16, 1, .3, 1),
                transform .8s cubic-bezier(.16, 1, .3, 1);
  }
}

.storefront-body.reveal-ready [data-reveal].revealed {
  opacity: 1;
  transform: none;
}

/* ======== HERO SLIDER ======== */
.sf-hero {
  width: auto;
  min-height: 0;
  display: block;
  margin: 0;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #fff;
  animation: none;
}

.sf-hero-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  max-width: none;
  height: clamp(520px, 64vh, 650px);
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  border-radius: 0;
  background: #12100e;
}

.sf-hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── Individual Slide ── */
.sf-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(.4, 0, .2, 1);
}

.sf-hero-slide.active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.sf-hero-slide.prev {
  opacity: 0;
  z-index: 1;
}

/* ── Background Image ── */
.sf-hero-slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.sf-hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(12, 10, 8, .8) 0%,
      rgba(12, 10, 8, .56) 42%,
      rgba(12, 10, 8, .16) 72%,
      rgba(12, 10, 8, .08) 100%
    ),
    linear-gradient(to top,
      rgba(12, 10, 8, .34) 0%,
      transparent 40%
    );
  z-index: 1;
}

.sf-hero-slide-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

/* Ken Burns zoom on active slide */
.sf-hero-slide.active .sf-hero-slide-bg img {
  animation: heroKenBurns 8s cubic-bezier(.16, 1, .3, 1) forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.12); }
}

/* ── Slide Content ── */
.sf-hero-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  max-width: 660px;
  padding: clamp(42px, 5vw, 72px) clamp(38px, 6vw, 116px) clamp(86px, 9vw, 116px);
  padding-left: clamp(48px, 6vw, 116px);
}

/* Decorative accent line */
.sf-hero-slide-content::before {
  content: "";
  position: absolute;
  left: clamp(24px, 3vw, 56px);
  top: 50%;
  width: 3px;
  height: 52px;
  background: linear-gradient(to bottom, var(--store-accent), transparent);
  transform: translateY(-50%);
  opacity: .6;
}

.sf-hero-slide-content .sf-kicker {
  color: #e9a58e;
  font-size: .72rem;
}

.sf-hero-slide-content .sf-kicker::before {
  background: #e9a58e;
}

.sf-hero-slide-content h1 {
  width: auto;
  max-width: 620px;
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(2.75rem, 4.35vw, 4.35rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.02;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .25);
}

.sf-hero-slide-content p {
  width: auto;
  max-width: 560px;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(.94rem, 1vw, 1.04rem);
  line-height: 1.64;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .15);
}

.sf-hero-slide-content .sf-hero-actions {
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.sf-hero-slide-content .sf-button.large {
  border-color: #fff;
  background: #fff;
  color: var(--store-ink);
}

.sf-hero-slide-content .sf-button.large:hover {
  border-color: var(--store-accent);
  background: var(--store-accent);
  color: #fff;
}

.sf-hero-slide-content .sf-text-link {
  border-bottom-color: rgba(255, 255, 255, .5);
  color: #fff;
}

.sf-hero-slide-content .sf-text-link:hover {
  border-bottom-color: #e9a58e;
  color: #e9a58e;
}

/* ── Text Entrance Animations ── */
.sf-hero-slide-content [data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1),
              transform .7s cubic-bezier(.16, 1, .3, 1);
}

.sf-hero-slide-content [data-animate].animate-in {
  opacity: 1;
  transform: none;
}

/* ── Slider Controls ── */
.sf-slider-controls {
  position: absolute;
  right: clamp(20px, 4vw, 54px);
  bottom: clamp(20px, 3vw, 34px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(23, 33, 29, .34);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
}

/* Counter */
.sf-slider-counter {
  display: flex;
  align-items: baseline;
  gap: 3px;
  padding: 0 8px;
  border-radius: 999px;
  background: transparent;
  font-family: var(--store-display);
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
}

.sf-slider-sep {
  margin: 0 1px;
  opacity: .4;
  font-weight: 400;
}

.sf-slider-total {
  opacity: .45;
  font-size: .76rem;
}

.sf-slider-current {
  min-width: 1.2em;
  text-align: center;
}

/* Nav arrows */
.sf-slider-nav {
  display: flex;
  gap: 6px;
}

.sf-slider-prev,
.sf-slider-next {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  font: inherit;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.sf-slider-prev:hover,
.sf-slider-next:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .18);
  transform: scale(1.08);
}

/* Dots */
.sf-slider-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sf-slider-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: background .3s ease, width .3s ease, border-radius .3s ease;
}

.sf-slider-dot.active {
  width: 24px;
  border-radius: 999px;
  background: #fff;
}

/* ── Progress Bar ── */
.sf-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 10;
  background: rgba(255, 255, 255, .1);
  overflow: hidden;
}

.sf-slider-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--store-accent), #e9a58e);
  transition: none;
}

/* ── Kicker (shared) ── */
.sf-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--store-accent);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
}

.sf-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.sf-kicker.dark {
  background: transparent;
  color: var(--store-accent);
}


/* ======== SECTIONS ======== */
.sf-section {
  padding: 94px 0;
}

.sf-home-categories {
  padding-top: 78px;
  padding-bottom: 82px;
  background: #fff;
}

.sf-featured-showcase {
  padding-top: 76px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 50% 0, rgba(36, 63, 53, .06), transparent 42%),
    #fff;
}

.sf-color-band,
.sf-soft-band,
.sf-gallery-band,
.sf-faq-band {
  background: transparent;
}

.sf-section-head {
  max-width: 760px;
  margin-bottom: 42px;
  text-align: left;
}

.sf-section-head.centered {
  max-width: 680px;
  margin: 0 auto 54px;
  text-align: center;
}

.sf-section-head.split {
  max-width: none;
  align-items: end;
}

.sf-section-head h2 {
  max-width: 780px;
  margin: 16px 0 10px;
  font-size: 3.35rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.03;
}

.sf-section-head p {
  max-width: 620px;
  color: var(--store-muted);
  font-size: .98rem;
}

.sf-section-head.centered p {
  margin-inline: auto;
  font-size: 1.05rem;
  line-height: 1.75;
}

.sf-section-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* ======== PAGE HERO (Non-Homepage) ======== */
.sf-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 86px 0 62px;
  border-bottom: 1px solid var(--store-line);
  background:
    radial-gradient(circle at 86% 18%, rgba(214, 101, 63, .18) 0 16%, transparent 36%),
    radial-gradient(circle at 8% 10%, rgba(32, 91, 67, .08) 0 18%, transparent 42%),
    linear-gradient(135deg, #fffaf4 0%, #f6efe5 48%, #ffffff 100%);
}

.sf-page-hero::before,
.sf-page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.sf-page-hero::before {
  inset: 18px 24px auto auto;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(214, 101, 63, .16);
  border-radius: 42px;
  transform: rotate(10deg);
}

.sf-page-hero::after {
  inset: auto auto -52px 8%;
  width: 260px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255, 221, 189, .54);
  filter: blur(30px);
}

.sf-page-hero .sf-container {
  position: relative;
  z-index: 1;
}

.sf-page-hero h1 {
  max-width: 820px;
  margin: 18px 0 10px;
  color: var(--store-ink);
  font-size: clamp(3.1rem, 6vw, 5.2rem);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: .92;
}

.sf-page-hero p {
  max-width: 660px;
  color: var(--store-muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.sf-catalog-hero {
  padding: 76px 0 50px;
}

.sf-catalog-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.sf-page-hero-copy {
  min-width: 0;
}

.sf-catalog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 28px;
}

.sf-catalog-hero-metrics {
  width: min(100%, 760px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.sf-catalog-hero-metrics span {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(20, 42, 34, .09);
  border-radius: 22px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 18px 45px rgba(26, 36, 31, .07);
  backdrop-filter: blur(14px);
}

.sf-catalog-hero-metrics strong,
.sf-catalog-hero-metrics small {
  display: block;
}

.sf-catalog-hero-metrics strong {
  color: var(--store-ink);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1;
}

.sf-catalog-hero-metrics small {
  color: var(--store-muted);
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.25;
}

.sf-catalog-hero-card {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(20, 42, 34, .12);
  border-radius: 34px;
  background: #eee1d2;
  box-shadow: 0 34px 90px rgba(25, 43, 35, .18);
}

.sf-catalog-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 0 34%, rgba(8, 23, 18, .82) 100%),
    linear-gradient(135deg, rgba(214, 101, 63, .18), transparent 46%);
}

.sf-catalog-hero-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.sf-catalog-hero-card div {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
  padding: 26px;
  color: #fff;
}

.sf-catalog-hero-card span {
  width: max-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .18);
  color: #fff3e7;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.sf-catalog-hero-card strong {
  max-width: 340px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.sf-catalog-hero-card small {
  max-width: 310px;
  color: rgba(255, 255, 255, .78);
  font-size: .92rem;
  font-weight: 650;
}

/* ======== FILTER / FORM (Shared) ======== */
.sf-filter-panel,
.sf-form-panel,
.sf-summary-panel,
.sf-empty-state {
  border-color: var(--store-line);
  border-radius: 8px;
  box-shadow: none;
}

.sf-input {
  border-color: var(--store-line);
  border-radius: 5px;
}

.sf-input:focus {
  border-color: var(--store-ink);
  box-shadow: 0 0 0 3px rgba(24, 23, 20, .08);
}

.sf-link-arrow {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--store-ink);
  font-size: .8rem;
  font-weight: 750;
  transition: color .25s ease, border-color .25s ease;
}

.sf-link-arrow:hover {
  color: var(--store-accent);
  border-color: var(--store-accent);
}

/* ======== CATEGORIES ======== */
.sf-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.sf-category-tile {
  position: relative;
  isolation: isolate;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(20, 42, 34, .08);
  border-radius: 18px;
  background: #dfe8de;
  box-shadow: 0 18px 48px rgba(16, 34, 28, .08);
  color: #fff;
  transition: box-shadow .35s ease, transform .35s cubic-bezier(.16, 1, .3, 1);
}

.sf-category-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(15, 24, 29, .04) 0%, rgba(15, 24, 29, .1) 36%, rgba(15, 24, 29, .76) 100%),
    linear-gradient(90deg, rgba(15, 24, 29, .54), transparent 70%);
  opacity: .96;
  transition: opacity .35s ease;
}

.sf-category-tile:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(16, 34, 28, .16);
}

.sf-category-tile:hover::before {
  opacity: .9;
}

.sf-category-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  overflow: hidden;
  background: #dfe8de;
}

.sf-category-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}

.sf-category-tile:hover .sf-category-media img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.08);
}

.sf-category-tile .sf-category-copy strong,
.sf-category-tile .sf-category-copy small {
  display: block;
}

.sf-category-tile .sf-category-copy strong {
  max-width: 250px;
  color: #fff;
  font-family: var(--store-display);
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1.08;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .32);
}

.sf-category-tile .sf-category-copy small {
  margin-top: 10px;
  color: #ffc48b;
  font-size: .72rem;
  font-weight: 800;
}

.sf-category-tile p {
  max-width: 265px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .84rem;
  font-weight: 650;
  line-height: 1.45;
}

.sf-section-head.compact {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 34px;
}

.sf-catalog-categories {
  padding: 72px 0 58px;
  background:
    linear-gradient(180deg, #fff 0%, #fffaf4 100%);
}

.sf-catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sf-catalog-category-card {
  position: relative;
  min-height: 210px;
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(20, 42, 34, .1);
  border-radius: 28px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 18px 55px rgba(25, 43, 35, .08);
  transition: border-color .28s ease, box-shadow .28s ease, transform .28s cubic-bezier(.16, 1, .3, 1);
}

.sf-catalog-category-card:hover,
.sf-catalog-category-card.active {
  border-color: rgba(214, 101, 63, .4);
  box-shadow: 0 28px 76px rgba(76, 38, 25, .14);
  transform: translateY(-5px);
}

.sf-catalog-category-card.active::after {
  content: "Seçili";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--store-accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
}

.sf-catalog-category-image {
  position: relative;
  min-height: 182px;
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #efe5da;
}

.sf-catalog-category-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.16, 1, .3, 1), filter .35s ease;
}

.sf-catalog-category-card:hover .sf-catalog-category-image img {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.08);
}

.sf-catalog-category-copy {
  min-width: 0;
  display: grid;
  align-content: end;
  gap: 9px;
  padding: 18px 8px 16px 0;
}

.sf-catalog-category-copy strong,
.sf-catalog-category-copy small,
.sf-catalog-category-copy em {
  display: block;
}

.sf-catalog-category-copy strong {
  color: var(--store-ink);
  font-size: 1.26rem;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.sf-catalog-category-copy small {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(214, 101, 63, .1);
  color: var(--store-accent-dark);
  font-size: .72rem;
  font-weight: 900;
}

.sf-catalog-category-copy em {
  color: var(--store-muted);
  font-size: .88rem;
  font-style: normal;
  font-weight: 650;
  line-height: 1.45;
}

.sf-catalog-section {
  padding-top: 64px;
  background:
    linear-gradient(180deg, #fffaf4 0%, #fff 26%, #fff 100%);
}

.sf-catalog-layout {
  grid-template-columns: minmax(260px, 305px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 34px);
}

.sf-filter-panel {
  padding: 22px;
  border-color: rgba(20, 42, 34, .1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 249, 242, .92));
  box-shadow: 0 22px 60px rgba(26, 36, 31, .09);
}

.sf-filter-head {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(20, 42, 34, .08);
}

.sf-filter-head > div {
  display: grid;
  gap: 3px;
}

.sf-filter-head span {
  color: var(--store-accent-dark);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.sf-filter-head h2 {
  margin: 0;
  color: var(--store-ink);
  font-size: 1.34rem;
  font-weight: 900;
  letter-spacing: -.035em;
}

.sf-filter-head a {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(214, 101, 63, .1);
  color: var(--store-accent-dark);
  font-size: .76rem;
  font-weight: 900;
}

.sf-filter-panel label {
  gap: 8px;
  color: var(--store-ink);
  font-size: .84rem;
  font-weight: 850;
}

.sf-input {
  min-height: 48px;
  border-color: rgba(20, 42, 34, .13);
  border-radius: 15px;
  background: rgba(255, 255, 255, .92);
  color: var(--store-ink);
  font-weight: 700;
}

.sf-input:focus {
  border-color: rgba(214, 101, 63, .62);
  box-shadow: 0 0 0 4px rgba(214, 101, 63, .12);
}

.sf-catalog-main {
  min-width: 0;
}

.sf-catalog-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(20, 42, 34, .08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(26, 36, 31, .06);
}

.sf-catalog-toolbar p {
  margin: 5px 0 0;
  color: var(--store-muted);
  font-weight: 800;
}

.sf-catalog-toolbar p strong {
  color: var(--store-ink);
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.sf-active-filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.sf-active-filter-list span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff4ea;
  color: var(--store-accent-dark);
  font-size: .76rem;
  font-weight: 900;
}

.sf-catalog-support-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 18px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(214, 101, 63, .16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 101, 63, .16), transparent 38%),
    #fff7ef;
  box-shadow: 0 18px 45px rgba(76, 38, 25, .07);
}

.sf-catalog-support-strip span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #fff;
  color: var(--store-accent-dark);
  font-size: .72rem;
  font-weight: 900;
}

.sf-catalog-support-strip strong {
  color: var(--store-ink);
  font-size: .95rem;
  font-weight: 850;
}

.sf-catalog-support-strip a {
  color: var(--store-accent-dark);
  font-size: .82rem;
  font-weight: 900;
}

.sf-catalog-section .sf-product-grid {
  gap: 28px;
}

.sf-catalog-product-grid.is-sparse {
  grid-template-columns: repeat(auto-fit, minmax(285px, 360px));
  justify-content: start;
}

.sf-about-grid,
.sf-contact-grid {
  gap: clamp(28px, 4vw, 56px);
}

.sf-about-grid > article,
.sf-contact-info article,
.sf-support-note,
.sf-policy-list article,
.sf-form-panel,
.sf-summary-panel,
.sf-empty-state {
  border: 1px solid rgba(20, 42, 34, .1);
  border-radius: 28px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 60px rgba(26, 36, 31, .08);
}

.sf-about-grid > article {
  min-height: 420px;
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 58px);
  background:
    radial-gradient(circle at 92% 12%, rgba(214, 101, 63, .12), transparent 34%),
    #fff;
}

.sf-about-grid > article h2 {
  max-width: 620px;
  margin: 14px 0 18px;
  color: var(--store-ink);
  font-size: clamp(2.4rem, 4.4vw, 4.4rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .98;
}

.sf-about-grid > article p {
  max-width: 720px;
  color: var(--store-muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.sf-about-media {
  border: 1px solid rgba(20, 42, 34, .1);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(214, 101, 63, .14), rgba(246, 239, 229, .92)),
    #efe5da;
  box-shadow: 0 28px 80px rgba(26, 36, 31, .14);
}

.sf-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-about-hero-card,
.sf-gallery-hero-card {
  min-height: 330px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 34px;
  background:
    radial-gradient(circle at 96% 0, rgba(214, 101, 63, .36), transparent 38%),
    linear-gradient(135deg, #243f35, #13221c);
  color: #fff;
  box-shadow: 0 34px 90px rgba(25, 43, 35, .18);
}

.sf-about-hero-card span,
.sf-gallery-hero-card span {
  width: max-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  color: #ffd2bd;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sf-about-hero-card strong,
.sf-gallery-hero-card strong {
  color: #fff;
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
}

.sf-about-hero-card small,
.sf-gallery-hero-card small {
  max-width: 360px;
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
  line-height: 1.6;
}

.sf-about-proof-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.sf-about-proof-list span {
  position: relative;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(20, 42, 34, .08);
  border-radius: 16px;
  background: #fff8f1;
  color: var(--store-ink);
  font-weight: 800;
}

.sf-about-proof-list span::before {
  content: "✓";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--store-accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 900;
}

.sf-about-stats-band {
  padding: 64px 0;
  background:
    radial-gradient(circle at 50% 0, rgba(214, 101, 63, .1), transparent 42%),
    #fffaf4;
}

.sf-about-process-section {
  background: #fff;
}

.sf-about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sf-about-process-grid article {
  min-height: 245px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(20, 42, 34, .1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, #fff, #fff8f1);
  box-shadow: 0 20px 55px rgba(25, 43, 35, .07);
}

.sf-about-process-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--store-accent);
  color: #fff;
  font-weight: 900;
}

.sf-about-process-grid h3 {
  margin: 0;
  color: var(--store-ink);
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -.035em;
}

.sf-about-process-grid p {
  margin: 0;
  color: var(--store-muted);
  line-height: 1.65;
}

.sf-about-cta-section {
  padding-top: 28px;
}

.sf-about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(214, 101, 63, .34), transparent 34%),
    linear-gradient(135deg, #243f35, #13221c);
  color: #fff;
  box-shadow: 0 34px 90px rgba(25, 43, 35, .16);
}

.sf-about-cta h2 {
  max-width: 760px;
  margin: 12px 0 10px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
}

.sf-about-cta p {
  max-width: 650px;
  color: rgba(255, 255, 255, .75);
}

.sf-stat-grid div {
  border-color: rgba(20, 42, 34, .09);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(26, 36, 31, .06);
}

.sf-stat-grid strong {
  color: var(--store-accent);
  font-weight: 900;
  letter-spacing: -.045em;
}

.sf-contact-info {
  gap: 16px;
}

.sf-contact-info article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.sf-contact-info article:hover {
  border-color: rgba(214, 101, 63, .28);
  box-shadow: 0 26px 70px rgba(76, 38, 25, .12);
  transform: translateY(-3px);
}

.sf-contact-info article span {
  color: var(--store-accent-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.sf-contact-info article a,
.sf-contact-info article p {
  margin-top: 8px;
  color: var(--store-ink);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.38;
}

.sf-support-note {
  padding: 26px;
  background:
    radial-gradient(circle at 94% 0%, rgba(214, 101, 63, .2), transparent 35%),
    linear-gradient(135deg, #1d3128, #13221c);
  color: #fff;
}

.sf-support-note h2 {
  max-width: 420px;
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.sf-support-note p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.7;
}

.sf-form-panel {
  padding: clamp(22px, 3vw, 34px);
}

.sf-form-panel button {
  min-height: 52px;
}

.sf-policy-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sf-policy-list article {
  position: relative;
  min-height: 190px;
  padding: 28px;
  overflow: hidden;
}

.sf-policy-list article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 5px;
  height: 100%;
  background: var(--store-accent);
}

.sf-policy-list article h2 {
  margin: 0 0 12px;
  color: var(--store-ink);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.035em;
}

.sf-policy-list article p {
  margin: 0;
  color: var(--store-muted);
  line-height: 1.75;
}

.sf-gallery-page {
  background:
    linear-gradient(180deg, #fffaf4 0%, #fff 24%, #fff 100%);
}

.sf-gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sf-gallery-page-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(20, 42, 34, .1);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(25, 43, 35, .09);
}

.sf-gallery-page-card.featured {
  grid-column: span 2;
}

.sf-gallery-page-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #efe5da;
}

.sf-gallery-page-card.featured .sf-gallery-page-media {
  aspect-ratio: 16 / 8.8;
}

.sf-gallery-page-media img,
.sf-gallery-page-media video,
.sf-gallery-page-media iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  object-fit: cover;
}

.sf-gallery-page-copy {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.sf-gallery-page-copy span {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(214, 101, 63, .1);
  color: var(--store-accent-dark);
  font-size: .7rem;
  font-weight: 900;
}

.sf-gallery-page-copy h2 {
  margin: 0;
  color: var(--store-ink);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -.04em;
}

.sf-gallery-page-copy p {
  margin: 0;
  color: var(--store-muted);
  line-height: 1.65;
}

.sf-location-band {
  padding: 82px 0;
  background:
    radial-gradient(circle at 12% 0, rgba(214, 101, 63, .13), transparent 34%),
    #fffaf4;
}

.sf-location-shell {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
}

.sf-location-copy,
.sf-location-map {
  border: 1px solid rgba(20, 42, 34, .1);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(25, 43, 35, .1);
}

.sf-location-copy {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 100% 0, rgba(214, 101, 63, .28), transparent 42%),
    linear-gradient(135deg, #243f35, #13221c);
  color: #fff;
}

.sf-location-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .98;
}

.sf-location-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.05rem;
  line-height: 1.65;
}

.sf-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 8px;
}

.sf-location-map {
  min-height: 390px;
  background: #efe5da;
}

.sf-location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  display: block;
  border: 0;
}

/* ======== PRODUCT GRID ======== */
.sf-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* ======== PROMO BANNER ======== */
.sf-promo {
  width: min(var(--store-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--store-ink);
  color: #fff;
  transition: box-shadow .5s ease, transform .5s cubic-bezier(.16, 1, .3, 1);
}

.sf-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 36px 90px rgba(23, 33, 29, .2);
}

.sf-promo-inner {
  width: 100%;
  min-height: 330px;
  padding: clamp(44px, 6vw, 80px);
  background:
    linear-gradient(90deg, transparent 0 72%, var(--store-accent) 72% 74%, transparent 74%),
    radial-gradient(ellipse at 85% 50%, rgba(196, 92, 60, .12) 0%, transparent 60%);
}

.sf-promo h2 {
  max-width: 850px;
  margin: 18px 0;
  color: #fff;
  font-family: var(--store-display);
  font-size: 4.3rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: .98;
}

.sf-promo h2 strong {
  display: block;
  color: #d9957f;
  font-weight: 700;
}

.sf-promo p {
  max-width: 680px;
  color: #c8c2ba;
}

.sf-promo .sf-kicker {
  color: #e9a58e;
}

/* ======== FEATURES / HOW IT WORKS ======== */
.sf-soft-band {
  scroll-margin-top: 150px;
  border-top: 1px solid var(--store-line);
  border-bottom: 1px solid var(--store-line);
  background: var(--store-canvas);
}

.sf-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #bfb7ac;
}

.sf-feature-tile {
  min-height: 225px;
  padding: 24px 24px 20px 0;
  border: 0;
  border-right: 1px solid #d2cbc1;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: background .35s ease;
}

.sf-feature-tile:hover {
  transform: none;
  background: rgba(255, 254, 250, .65);
}

.sf-feature-tile + .sf-feature-tile {
  padding-left: 24px;
}

.sf-feature-tile:last-child {
  border-right: 0;
}

.sf-feature-tile span,
.sf-feature-tile:nth-child(2) span,
.sf-feature-tile:nth-child(3) span,
.sf-feature-tile:nth-child(4) span {
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 42px;
  border-radius: 0;
  background: transparent;
  color: var(--store-accent);
  font-family: var(--store-display);
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform .3s ease;
}

.sf-feature-tile:hover span {
  transform: translateX(4px);
}

.sf-feature-tile h3 {
  font-size: .98rem;
  font-weight: 750;
  transition: color .25s ease;
}

.sf-feature-tile:hover h3 {
  color: var(--store-accent);
}

.sf-feature-tile p {
  margin-top: 10px;
  color: var(--store-muted);
  font-size: .82rem;
}

/* ======== GALLERY ======== */
.sf-gallery-band {
  background: #201e1a;
  color: #fff;
}

.sf-gallery-band .sf-section-head h2 {
  color: #fff;
}

.sf-gallery-band .sf-section-head p {
  color: #aaa49b;
}

.sf-gallery-band .sf-kicker {
  color: #d9957f;
}

.sf-gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sf-gallery-grid figure {
  min-height: 300px;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: #38342e;
  box-shadow: none;
  cursor: pointer;
}

.sf-gallery-grid figure:first-child {
  grid-column: span 2;
}

.sf-gallery-grid figure:hover {
  transform: none;
}

.sf-gallery-grid figure img {
  transition: transform .9s cubic-bezier(.16, 1, .3, 1), filter .6s ease;
}

.sf-gallery-grid figure:hover img {
  transform: scale(1.08);
  filter: brightness(1.08);
}

.sf-gallery-grid figure > span {
  min-height: 300px;
  border-radius: 0;
  background: #39352f;
  color: #d9957f;
  font-family: var(--store-display);
  font-size: 5rem;
  font-weight: 500;
  transition: background .4s ease;
}

.sf-gallery-grid figure:hover > span {
  background: #443f38;
}

.sf-gallery-grid figure:nth-child(2) > span,
.sf-gallery-grid figure:nth-child(4) > span {
  background: #4a322a;
}

.sf-gallery-grid figure:nth-child(2):hover > span,
.sf-gallery-grid figure:nth-child(4):hover > span {
  background: #5a3c32;
}

.sf-gallery-grid figcaption {
  right: auto;
  bottom: 18px;
  left: 18px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: .78rem;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), opacity .3s ease;
  opacity: .85;
}

.sf-gallery-grid figure:hover figcaption {
  transform: translateY(-6px);
  opacity: 1;
}

/* ======== BLOG ======== */
.sf-blog-band {
  position: relative;
  scroll-margin-top: 136px;
  overflow: hidden;
  border-top: 1px solid #f2dfd4;
  border-bottom: 1px solid #f2dfd4;
  background:
    radial-gradient(circle at 12% 20%, rgba(214, 101, 63, .1), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(36, 63, 53, .08), transparent 32%),
    #fff8f3;
}

.sf-blog-band::before {
  content: "";
  position: absolute;
  inset: 26px auto auto 50%;
  width: min(860px, 76vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 101, 63, .26), transparent);
  transform: translateX(-50%);
}

.sf-blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.sf-blog-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(214, 101, 63, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 54px rgba(95, 46, 30, .08);
  transition: transform .32s cubic-bezier(.16, 1, .3, 1), box-shadow .32s ease, border-color .32s ease;
}

.sf-blog-card:hover {
  transform: translateY(-7px);
  border-color: rgba(214, 101, 63, .34);
  box-shadow: 0 28px 72px rgba(95, 46, 30, .14);
}

.sf-blog-card a {
  height: 100%;
  display: grid;
  color: inherit;
}

.sf-blog-image,
.sf-blog-card > a > img {
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  background:
    linear-gradient(135deg, #fff1e9, #eef4ed);
}

.sf-blog-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), filter .5s ease;
}

.sf-blog-card:hover img {
  transform: scale(1.04);
  filter: brightness(1.06);
}

.sf-blog-content {
  min-height: 260px;
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 23px;
}

.sf-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sf-blog-meta span,
.sf-blog-meta small,
.sf-blog-card > a > span:not(.sf-blog-image):not(.sf-blog-content),
.sf-blog-card > a > small {
  padding: 0;
  color: var(--store-accent-dark);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.sf-blog-card h2,
.sf-blog-card h3,
.sf-blog-card p {
  padding: 0;
}

.sf-blog-card > a > span:not(.sf-blog-image):not(.sf-blog-content),
.sf-blog-card > a > small,
.sf-blog-card > a > h2,
.sf-blog-card > a > p {
  margin-right: 23px;
  margin-left: 23px;
}

.sf-blog-card > a > span:not(.sf-blog-image):not(.sf-blog-content) {
  margin-top: 23px;
}

.sf-blog-card > a > small {
  margin-bottom: 23px;
}

.sf-blog-card h2,
.sf-blog-card h3 {
  font-family: var(--store-display);
  color: #18241f;
  font-size: 1.28rem;
  font-weight: 850;
  line-height: 1.22;
  transition: color .25s ease;
}

.sf-blog-card:hover h2,
.sf-blog-card:hover h3 {
  color: var(--store-accent);
}

.sf-blog-card p {
  color: var(--store-muted);
  font-size: .88rem;
  line-height: 1.65;
}

.sf-blog-card strong {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--store-accent);
  font-size: .86rem;
  font-weight: 900;
}

.sf-blog-card strong span {
  transition: transform .25s ease;
}

.sf-blog-card:hover strong span {
  transform: translateX(4px);
}

/* ======== FAQ ACCORDION ======== */
.sf-faq-band {
  scroll-margin-top: 136px;
  border-top: 0;
  background:
    linear-gradient(135deg, rgba(36, 63, 53, .96), rgba(18, 34, 28, .98)),
    var(--store-ink);
  color: #fff;
}

.sf-faq-shell {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.sf-faq-intro {
  position: sticky;
  top: 136px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 101, 63, .34), transparent 40%),
    rgba(255, 255, 255, .06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
}

.sf-faq-intro .sf-kicker {
  color: #ffb18f;
}

.sf-faq-intro h2 {
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  line-height: .98;
}

.sf-faq-intro p {
  color: rgba(255, 255, 255, .72);
  font-size: .98rem;
  line-height: 1.7;
}

.sf-faq-intro a {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: var(--store-accent);
  color: #fff;
  font-size: .84rem;
  font-weight: 850;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}

.sf-faq-intro a:hover {
  transform: translateY(-2px);
  background: var(--store-accent-dark);
  box-shadow: 0 16px 34px rgba(214, 101, 63, .24);
}

.sf-faq-list {
  max-width: none;
  display: grid;
  gap: 14px;
}

.sf-faq-list details {
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .16);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}

.sf-faq-list details[open] {
  border-color: rgba(214, 101, 63, .52);
  background: rgba(255, 255, 255, .12);
}

.sf-faq-list details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.sf-faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 24px 64px 24px 24px;
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
  transition: color .2s ease;
}

.sf-faq-list summary::-webkit-details-marker {
  display: none;
}

.sf-faq-list summary::marker {
  content: "";
}

.sf-faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #ffb18f;
  font-size: 1.25rem;
  font-weight: 600;
  transform: translateY(-50%);
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), background .2s ease, color .2s ease;
}

.sf-faq-list summary span {
  color: #ffb18f;
  font-family: var(--store-display);
  font-size: .92rem;
  font-weight: 900;
}

.sf-faq-list summary strong {
  font-weight: 850;
}

.sf-faq-list details[open] summary::after {
  content: "–";
  background: var(--store-accent);
  color: #fff;
}

.sf-faq-list summary:hover {
  color: #ffb18f;
}

.sf-faq-list summary:hover::after {
  background: rgba(214, 101, 63, .22);
}

.sf-faq-list details p {
  max-width: 720px;
  padding: 0 64px 26px 63px;
  overflow: hidden;
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  transition: max-height .3s cubic-bezier(.16, 1, .3, 1), opacity .3s ease, padding-bottom .3s ease;
}

.sf-article-hero {
  padding: clamp(64px, 8vw, 96px) 0 clamp(38px, 5vw, 56px);
  border-bottom: 1px solid #f2dfd4;
  background:
    radial-gradient(circle at 12% 16%, rgba(214, 101, 63, .1), transparent 32%),
    linear-gradient(135deg, #fff8f3, #f6faf6);
}

.sf-article-hero h1 {
  width: min(920px, 100%);
  margin: 18px 0 18px;
  color: #132439;
  font-family: var(--store-display);
  font-size: clamp(2.7rem, 5.3vw, 4.6rem);
  font-weight: 850;
  letter-spacing: -.04em;
  line-height: .98;
}

.sf-article-hero p {
  width: min(780px, 100%);
  color: #4f5d6c;
  font-size: 1.02rem;
  line-height: 1.75;
}

.sf-article-hero small {
  display: inline-flex;
  margin-top: 8px;
  color: #1f2b3a;
  font-size: .8rem;
}

.sf-article-cover {
  margin-top: 32px;
}

.sf-article-cover img {
  width: 100%;
  border-radius: 22px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(57, 34, 23, .14);
}

.sf-article-body {
  width: min(860px, calc(100% - 32px));
  padding: 48px 0 84px;
}

.sf-article-body section {
  margin-bottom: 20px;
  padding: 26px 28px;
  border: 1px solid rgba(214, 101, 63, .14);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(35, 48, 40, .06);
}

.sf-article-body h2 {
  margin-bottom: 10px;
  color: #17251f;
  font-size: 1.46rem;
  font-weight: 850;
}

.sf-article-body p {
  color: #586574;
  font-size: .98rem;
  line-height: 1.78;
}

.sf-article-cta {
  margin-top: 30px;
  padding: 30px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 101, 63, .38), transparent 42%),
    linear-gradient(135deg, #243f35, #12221c);
  color: #fff;
  box-shadow: 0 22px 70px rgba(18, 34, 28, .18);
}

.sf-article-cta h2,
.sf-article-cta p {
  color: #fff;
}

.sf-article-cta p {
  color: rgba(255, 255, 255, .72);
}

/* ======== PRODUCT DETAIL (Non-Homepage) ======== */
.sf-product-detail {
  padding-top: 48px;
}

.sf-product-main-media,
.sf-product-info {
  border-radius: var(--store-radius-lg);
}

.sf-product-main-media {
  overflow: hidden;
  background: var(--store-canvas);
}

.sf-product-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-product-info {
  padding: clamp(22px, 3vw, 36px);
  border: 1px solid var(--store-line);
  background: #fff;
  box-shadow: none;
}

/* ======== COMPACT MEDIA SCALE ======== */
.sf-hero-slider {
  height: clamp(520px, 64vh, 650px);
  min-height: 520px;
}

.sf-catalog-hero-card {
  min-height: 380px;
}

.sf-catalog-category-card {
  min-height: 176px;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 15px;
}

.sf-catalog-category-image {
  min-height: 148px;
}

.sf-product-grid:not(.account-product-grid) .sf-product-media,
.sf-featured-showcase .sf-product-media {
  aspect-ratio: 16 / 10.2;
  max-height: 238px;
}

.sf-product-grid:not(.account-product-grid) .sf-product-body,
.sf-featured-showcase .sf-product-body {
  padding: 17px 18px 16px;
}

.sf-product-detail {
  padding: 42px 0 64px;
}

.sf-product-detail-grid {
  grid-template-columns: minmax(300px, .82fr) minmax(380px, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.sf-product-gallery {
  width: 100%;
  max-width: 620px;
}

.sf-product-main-media {
  aspect-ratio: 4 / 3;
  max-height: min(58vh, 540px);
  border-radius: 18px;
}

.sf-product-main-media img {
  object-fit: cover;
}

.sf-thumb-row {
  grid-template-columns: repeat(auto-fit, minmax(72px, 86px));
  justify-content: start;
  gap: 8px;
  margin-top: 9px;
}

.sf-thumb-row button {
  aspect-ratio: 4 / 3;
  border-radius: 10px;
}

.sf-gallery-grid figure,
.sf-gallery-grid figure > span {
  aspect-ratio: 16 / 10;
  min-height: 224px;
}

.sf-gallery-grid figure:first-child {
  aspect-ratio: 16 / 7.2;
}

.sf-blog-image,
.sf-blog-card > a > img {
  aspect-ratio: 16 / 8.4;
}

.sf-blog-content {
  min-height: 218px;
}

.sf-gallery-page-media {
  aspect-ratio: 16 / 9.4;
}

.sf-gallery-page-card.featured .sf-gallery-page-media {
  aspect-ratio: 16 / 6.8;
}

.sf-article-cover img {
  aspect-ratio: 16 / 7.4;
  object-fit: cover;
}

.sf-product-detail {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 56px 0 76px;
  border-bottom: 1px solid rgba(214, 101, 63, .14);
  background:
    radial-gradient(circle at 10% 18%, rgba(214, 101, 63, .16), transparent 28%),
    radial-gradient(circle at 84% 8%, rgba(36, 63, 53, .12), transparent 32%),
    linear-gradient(135deg, #fffaf4 0%, #fff 47%, #f7efe6 100%);
}

.sf-product-detail::before {
  content: "";
  position: absolute;
  inset: 34px auto auto 6%;
  z-index: -1;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(214, 101, 63, .16);
  border-radius: 42px;
  transform: rotate(-12deg);
}

.sf-product-detail::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -86px;
  z-index: -1;
  width: 360px;
  height: 190px;
  border-radius: 999px;
  background: rgba(214, 101, 63, .14);
  filter: blur(42px);
}

.sf-product-detail-grid {
  position: relative;
}

.sf-product-gallery {
  position: sticky;
  top: 156px;
  align-self: start;
  padding: 14px;
  border: 1px solid rgba(36, 63, 53, .1);
  border-radius: 28px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 24px 70px rgba(34, 43, 35, .1);
  backdrop-filter: blur(16px);
}

.sf-product-gallery::before {
  content: "Enazey seçkisi";
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 4;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: rgba(36, 63, 53, .82);
  color: #fff8f1;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(18, 34, 28, .18);
  backdrop-filter: blur(12px);
}

.sf-product-main-media {
  position: relative;
  border: 1px solid rgba(214, 101, 63, .18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .42), rgba(255, 241, 231, .16)),
    #eadfd2;
  box-shadow: 0 24px 54px rgba(45, 36, 27, .14);
}

.sf-product-main-media::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 38%;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(20, 33, 28, .18));
  pointer-events: none;
}

.sf-thumb-row button {
  border: 1px solid rgba(36, 63, 53, .13);
  background: #fff;
  box-shadow: 0 10px 26px rgba(35, 48, 40, .08);
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.sf-thumb-row button:hover,
.sf-thumb-row button:focus-visible {
  border-color: var(--store-accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(214, 101, 63, .16);
}

.sf-product-info {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 3.2vw, 42px);
  border: 1px solid rgba(214, 101, 63, .18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 101, 63, .13), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 249, 244, .92));
  box-shadow: 0 28px 80px rgba(39, 47, 40, .12);
}

.sf-product-info::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--store-accent), #f2b16e, #243f35);
}

.sf-product-info .sf-product-category {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(214, 101, 63, .2);
  border-radius: 999px;
  background: rgba(214, 101, 63, .09);
  color: var(--store-accent-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.sf-product-info .sf-product-category::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--store-accent);
  box-shadow: 0 0 0 5px rgba(214, 101, 63, .13);
}

.sf-product-info h1 {
  max-width: 720px;
  margin: 20px 0 14px;
  color: #10241c;
  font-size: clamp(2.45rem, 4.6vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .98;
}

.sf-product-info .sf-lead {
  max-width: 620px;
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(36, 63, 53, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .68);
  color: #536357;
  font-size: 1rem;
  line-height: 1.72;
}

.sf-detail-price {
  display: flex;
  align-items: end;
  gap: 12px;
  margin: 0 0 20px;
  padding: 20px 22px;
  border: 1px solid rgba(36, 63, 53, .12);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(36, 63, 53, .06), rgba(214, 101, 63, .09)),
    #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

.sf-detail-price strong {
  color: #173c2f;
  font-size: clamp(2.05rem, 4vw, 3rem);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: .9;
}

.sf-detail-price del {
  color: #98a194;
  font-size: 1rem;
  font-weight: 800;
}

.sf-campaign-clock {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 22px;
  padding: 16px 18px;
  border: 1px solid rgba(214, 101, 63, .28);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(214, 101, 63, .12), rgba(255, 241, 226, .92)),
    #fff8ed;
  color: #7c432d;
}

.sf-campaign-clock span {
  font-weight: 850;
}

.sf-campaign-clock strong {
  color: #173c2f;
  font-size: .96rem;
  font-weight: 950;
}

.sf-buy-box {
  gap: 18px;
}

.sf-variant-group > span,
.sf-quantity > span {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: #10241c;
  font-size: .9rem;
  font-weight: 950;
}

.sf-variant-group > span::before,
.sf-quantity > span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--store-accent);
}

.sf-variant-list {
  gap: 11px;
}

.sf-variant-list label {
  position: relative;
  padding: 14px 15px;
  border: 1px solid rgba(36, 63, 53, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  transition: border-color .24s ease, background .24s ease, box-shadow .24s ease, transform .24s ease;
}

.sf-variant-list label:hover {
  border-color: rgba(214, 101, 63, .32);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(40, 50, 42, .08);
}

.sf-variant-list label:has(input:checked) {
  border-color: rgba(214, 101, 63, .72);
  background:
    linear-gradient(135deg, rgba(214, 101, 63, .13), rgba(255, 255, 255, .9)),
    #fff7f1;
  box-shadow: 0 14px 32px rgba(214, 101, 63, .16);
}

.sf-variant-list input {
  accent-color: var(--store-accent);
}

.sf-variant-list label span {
  color: #1d2f27;
  font-weight: 850;
}

.sf-variant-list label small {
  color: #708075;
  font-size: .78rem;
  font-weight: 800;
}

.sf-variant-list label:has(input:checked) small {
  color: var(--store-accent-dark);
}

.sf-quantity .sf-input {
  min-height: 52px;
  border: 1px solid rgba(36, 63, 53, .12);
  border-radius: 16px;
  background: #fff;
  color: #13261f;
  font-size: 1rem;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.sf-buy-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(170px, .9fr);
  gap: 12px;
}

.sf-buy-actions .sf-button.large {
  min-height: 54px;
  border-radius: 15px;
  font-size: .92rem;
  font-weight: 950;
}

.sf-buy-actions .sf-button:not(.ghost) {
  border-color: var(--store-accent);
  background:
    linear-gradient(135deg, var(--store-accent), #e98655);
  box-shadow: 0 16px 34px rgba(214, 101, 63, .26);
}

.sf-buy-actions .sf-button.ghost {
  border-color: rgba(36, 63, 53, .18);
  background: rgba(255, 255, 255, .74);
  color: #173c2f;
}

.sf-favorite-login,
.sf-favorite-form {
  margin-top: 14px;
}

.sf-favorite-login {
  display: inline-flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(214, 101, 63, .36);
  border-radius: 15px;
  background: rgba(214, 101, 63, .06);
  color: var(--store-accent-dark);
  font-size: .86rem;
  font-weight: 850;
}

.sf-detail-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.sf-detail-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 13px;
  border: 1px solid rgba(36, 63, 53, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .72);
  color: #264338;
  font-size: .78rem;
  font-weight: 850;
}

.sf-detail-trust span::before {
  content: "✓";
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: rgba(214, 101, 63, .12);
  color: var(--store-accent-dark);
  font-size: .72rem;
  font-weight: 950;
}

.sf-product-detail + .sf-section {
  background:
    linear-gradient(180deg, #fff 0%, #fffaf4 100%);
}

.review-layout > div,
.review-form-card,
.sf-detail-content > article,
.sf-spec-list {
  border: 1px solid rgba(214, 101, 63, .13);
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 54px rgba(36, 47, 40, .08);
}

.review-layout > div,
.sf-detail-content > article {
  padding: clamp(24px, 3vw, 34px);
}

.review-form-card,
.sf-spec-list {
  padding: 24px;
}

.sf-product-detail {
  padding: 46px 0 68px;
}

.sf-product-detail-grid {
  grid-template-columns: minmax(430px, 1.05fr) minmax(360px, .95fr);
  gap: clamp(24px, 3.2vw, 42px);
}

.sf-product-gallery {
  max-width: 720px;
  padding: 10px;
  border-color: rgba(36, 63, 53, .09);
  border-radius: 24px;
  box-shadow: 0 20px 52px rgba(34, 43, 35, .09);
}

.sf-product-gallery::before {
  top: 22px;
  left: 22px;
  padding: 7px 11px;
  font-size: .62rem;
}

.sf-product-main-media {
  aspect-ratio: 16 / 10.6;
  max-height: min(64vh, 590px);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(45, 36, 27, .12);
}

.sf-product-info {
  padding: clamp(24px, 2.4vw, 34px);
  border-radius: 26px;
  box-shadow: 0 22px 64px rgba(39, 47, 40, .1);
}

.sf-product-info .sf-product-category {
  padding: 7px 11px;
  font-size: .66rem;
}

.sf-product-info h1 {
  max-width: 640px;
  margin: 18px 0 12px;
  font-size: clamp(2.28rem, 3.65vw, 3.45rem);
  letter-spacing: -.055em;
  line-height: 1.02;
}

.sf-product-info .sf-lead {
  max-width: 590px;
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 15px;
  font-size: .93rem;
  line-height: 1.62;
}

.sf-detail-price {
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 18px;
}

.sf-detail-price strong {
  font-size: clamp(1.82rem, 3.2vw, 2.45rem);
}

.sf-detail-price del {
  font-size: .9rem;
}

.sf-campaign-clock {
  margin-bottom: 18px;
  padding: 13px 15px;
  border-radius: 15px;
}

.sf-campaign-clock strong {
  font-size: .88rem;
}

.sf-buy-box {
  gap: 15px;
}

.sf-variant-group > span,
.sf-quantity > span {
  margin-bottom: 8px;
  font-size: .84rem;
}

.sf-variant-list {
  gap: 9px;
}

.sf-variant-list label {
  padding: 12px 14px;
  border-radius: 14px;
}

.sf-variant-list label span {
  font-size: .92rem;
}

.sf-variant-list label small {
  font-size: .72rem;
}

.sf-quantity .sf-input {
  min-height: 48px;
  border-radius: 14px;
}

.sf-buy-actions {
  gap: 10px;
}

.sf-buy-actions .sf-button.large {
  min-height: 50px;
  border-radius: 13px;
  font-size: .86rem;
}

.sf-detail-trust {
  gap: 8px;
  margin-top: 15px;
}

.sf-detail-trust span {
  padding: 10px 11px;
  border-radius: 14px;
  font-size: .72rem;
}

.sf-product-breadcrumb-band {
  border-top: 1px solid rgba(17, 37, 31, .05);
  border-bottom: 1px solid rgba(17, 37, 31, .08);
  background: linear-gradient(180deg, #f4f8fb 0%, #edf3f7 100%);
}

.sf-product-breadcrumbs {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  color: #6a7887;
  font-size: .88rem;
  font-weight: 750;
}

.sf-product-breadcrumbs a {
  color: #526273;
  white-space: nowrap;
}

.sf-product-breadcrumbs span {
  color: #9aaab8;
}

.sf-product-breadcrumbs strong {
  min-width: 0;
  overflow: hidden;
  color: #17324a;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sf-product-detail {
  overflow: visible;
  isolation: auto;
  padding: 34px 0 74px;
  border-bottom: 1px solid rgba(23, 60, 47, .08);
  background: #fff;
}

.sf-product-detail::before,
.sf-product-detail::after,
.sf-product-gallery::before,
.sf-product-main-media::after {
  content: none;
  display: none;
}

.sf-product-detail-grid {
  grid-template-columns: minmax(460px, 600px) minmax(430px, 1fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.sf-product-gallery {
  position: sticky;
  top: 132px;
  width: 100%;
  max-width: 600px;
  align-self: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.sf-product-main-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-height: none;
  border: 1px solid rgba(26, 55, 46, .1);
  border-radius: 20px;
  background: #f4efe8;
  box-shadow: 0 18px 44px rgba(25, 42, 53, .1);
}

.sf-product-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.sf-product-main-media:hover img {
  transform: scale(1.015);
}

.sf-thumb-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(70px, 78px));
  justify-content: start;
  gap: 12px;
  margin-top: 14px;
}

.sf-thumb-row button {
  aspect-ratio: 1 / 1;
  padding: 4px;
  border: 1px solid rgba(34, 58, 76, .14);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(25, 42, 53, .08);
}

.sf-thumb-row button img {
  border-radius: 9px;
}

.sf-thumb-row button:hover,
.sf-thumb-row button:focus-visible {
  border-color: #173a5e;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(23, 58, 94, .14);
}

.sf-product-info {
  overflow: visible;
  padding: 6px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sf-product-info::before {
  content: none;
  display: none;
}

.sf-product-info .sf-product-category {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--store-accent-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.sf-product-info .sf-product-category::before {
  content: none;
  display: none;
}

.sf-product-info h1 {
  max-width: 680px;
  margin: 15px 0 24px;
  color: #132b42;
  font-size: clamp(2rem, 2.85vw, 2.72rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.18;
}

.sf-detail-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.sf-detail-price strong {
  color: #173a5e;
  font-size: clamp(2.05rem, 3vw, 2.6rem);
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: 1;
}

.sf-detail-price del {
  color: #99a8b7;
  font-size: 1rem;
  font-weight: 800;
}

.sf-campaign-clock {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin: -2px 0 18px;
  padding: 8px 13px;
  border: 1px solid rgba(214, 101, 63, .28);
  border-radius: 999px;
  background: #fff3d0;
  color: #8c5326;
}

.sf-campaign-clock span,
.sf-campaign-clock strong {
  font-size: .82rem;
  font-weight: 900;
}

.sf-campaign-clock strong {
  color: #173a5e;
}

.sf-product-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
}

.sf-product-meta-line span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 850;
}

.sf-product-meta-line .is-stocked {
  background: #c9f4d5;
  color: #266743;
}

.sf-product-meta-line .is-soldout {
  background: #ffe2dc;
  color: #9b3829;
}

.sf-product-meta-line [data-sku-output] {
  padding-inline: 0;
  background: transparent;
  color: #93a5b7;
  font-weight: 800;
}

.sf-buy-box {
  display: grid;
  gap: 24px;
}

.sf-variant-group > span,
.sf-quantity > span {
  display: block;
  margin: 0 0 11px;
  color: #132b42;
  font-size: .9rem;
  font-weight: 900;
}

.sf-variant-group > span::before,
.sf-quantity > span::before {
  content: none;
  display: none;
}

.sf-variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sf-variant-list label {
  display: inline-grid;
  min-height: 54px;
  align-items: center;
  grid-template-columns: auto auto auto;
  gap: 8px 10px;
  padding: 10px 15px 10px 13px;
  border: 1px solid #dde7ef;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(25, 42, 53, .05);
  transition: border-color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}

.sf-variant-list label:hover {
  border-color: rgba(23, 58, 94, .32);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(25, 42, 53, .08);
}

.sf-variant-list label:has(input:checked) {
  border-color: #173a5e;
  background: #f8fbff;
  box-shadow: inset 0 0 0 1px rgba(23, 58, 94, .05), 0 14px 32px rgba(23, 58, 94, .1);
}

.sf-variant-list input {
  accent-color: #173a5e;
}

.sf-variant-list label span {
  color: #1d3146;
  font-size: .92rem;
  font-weight: 900;
}

.sf-variant-list label small {
  color: #778798;
  font-size: .75rem;
  font-weight: 850;
}

.sf-variant-list label:has(input:checked) small {
  color: var(--store-accent-dark);
}

.sf-variant-list label.disabled {
  opacity: .54;
}

.sf-product-info .sf-lead {
  max-width: 650px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #526273;
  font-size: 1rem;
  line-height: 1.78;
}

.sf-purchase-row {
  display: grid;
  align-items: end;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 16px;
}

.sf-quantity {
  display: block;
}

.sf-quantity-control {
  display: inline-grid;
  overflow: hidden;
  grid-template-columns: 44px 58px 44px;
  border: 1px solid #dce7ef;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(25, 42, 53, .05);
}

.sf-quantity-control button,
.sf-quantity-control .sf-input {
  min-height: 46px;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #173a5e;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.sf-quantity-control button {
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.sf-quantity-control button:hover,
.sf-quantity-control button:focus-visible {
  background: #eef5fb;
  color: var(--store-accent-dark);
}

.sf-quantity-control .sf-input {
  width: 58px;
  padding: 0;
  border-right: 1px solid #e8eff5;
  border-left: 1px solid #e8eff5;
  box-shadow: none;
  appearance: textfield;
}

.sf-quantity-control .sf-input::-webkit-outer-spin-button,
.sf-quantity-control .sf-input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.sf-buy-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, .42fr);
  gap: 12px;
}

.sf-buy-actions .sf-button.large {
  min-height: 48px;
  border-radius: 13px;
  font-size: .92rem;
  font-weight: 950;
}

.sf-buy-actions .sf-button:not(.ghost) {
  border-color: var(--store-accent);
  background: linear-gradient(135deg, var(--store-accent), #e77c4b);
  box-shadow: 0 14px 30px rgba(214, 101, 63, .24);
}

.sf-buy-actions .sf-button.ghost {
  border-color: #173a5e;
  background: #fff;
  color: #173a5e;
  box-shadow: none;
}

.sf-favorite-login,
.sf-favorite-form {
  margin-top: 18px;
}

.sf-favorite-login {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px dashed rgba(23, 58, 94, .22);
  border-radius: 14px;
  background: #f8fbfd;
  color: #456175;
  font-size: .84rem;
  font-weight: 850;
}

.sf-detail-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(23, 58, 94, .08);
  border-radius: 18px;
  background: #eef5fa;
}

.sf-detail-trust span {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  border: 0;
  border-right: 1px solid rgba(23, 58, 94, .08);
  border-radius: 0;
  background: transparent;
  color: #354e64;
  font-size: .78rem;
  font-weight: 850;
}

.sf-detail-trust span:last-child {
  border-right: 0;
}

.sf-detail-trust span::before {
  display: inline-grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #2f8253;
  font-size: .72rem;
}

.product-review-section {
  padding: 58px 0 52px;
  border-top: 1px solid rgba(23, 58, 94, .06);
  background:
    radial-gradient(circle at 16% 0, rgba(214, 101, 63, .08), transparent 34%),
    linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 26px;
  align-items: start;
}

.review-panel,
.review-form-card,
.product-info-panel,
.sf-spec-list {
  border: 1px solid rgba(23, 58, 94, .1);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 54px rgba(25, 42, 53, .07);
}

.review-panel {
  padding: clamp(24px, 3vw, 32px);
}

.review-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid #edf2f6;
}

.review-panel-head h2,
.review-form-card h2,
.product-info-panel h2,
.sf-spec-list h2 {
  margin: 8px 0 0;
  color: #132b42;
  font-size: clamp(1.55rem, 2.4vw, 2rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.12;
}

.review-score {
  min-width: 182px;
  display: grid;
  gap: 2px;
  justify-items: end;
  margin: 0;
  padding: 13px 16px;
  border: 1px solid rgba(214, 101, 63, .18);
  border-radius: 18px;
  background: #fff7f1;
}

.review-score strong {
  color: #173a5e;
  font-size: 2.35rem;
  font-weight: 950;
  letter-spacing: -.055em;
  line-height: 1;
}

.review-score span {
  color: #647486;
  font-size: .82rem;
  font-weight: 750;
}

.review-list {
  display: grid;
  gap: 14px;
}

.review-list article {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid #e4ecf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(25, 42, 53, .04);
}

.review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.review-card-head div {
  display: grid;
  gap: 3px;
}

.review-card-head strong {
  color: var(--store-accent-dark);
  font-size: .92rem;
  font-weight: 900;
}

.review-card-head small {
  color: #8796a6;
  font-size: .78rem;
  font-weight: 750;
}

.review-card-head span {
  color: #f3a000;
  font-size: .9rem;
  letter-spacing: .05em;
  white-space: nowrap;
}

.review-list h3 {
  margin: 0;
  color: #132b42;
  font-size: 1rem;
  font-weight: 900;
}

.review-list p {
  margin: 0;
  color: #526273;
  font-size: .94rem;
  line-height: 1.66;
}

.review-empty {
  min-height: 124px;
  align-content: center;
  border-style: dashed;
  background: #f8fbfd;
}

.review-form-card {
  position: sticky;
  top: 132px;
  padding: 24px;
}

.review-form-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: #fff3d0;
  color: #d6653f;
  font-size: 1rem;
  font-weight: 950;
}

.review-form-card p {
  margin: 10px 0 14px;
  color: #526273;
  line-height: 1.62;
}

.review-form-card .sf-button,
.review-form-card button {
  border-radius: 12px;
}

.product-info-section {
  padding: 52px 0 58px;
  border-top: 1px solid rgba(23, 58, 94, .06);
  border-bottom: 1px solid rgba(23, 58, 94, .06);
  background:
    linear-gradient(135deg, rgba(235, 244, 238, .82), rgba(255, 252, 247, .94)),
    #f4f8f3;
}

.sf-detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: stretch;
}

.product-info-panel,
.sf-spec-list {
  padding: clamp(24px, 3vw, 32px);
}

.product-info-panel p {
  max-width: 760px;
  margin: 14px 0 0;
  color: #526273;
  font-size: 1rem;
  line-height: 1.78;
}

.product-info-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.product-info-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid #dfe9e2;
  border-radius: 999px;
  background: #f7fbf8;
  color: #25483d;
  font-size: .82rem;
  font-weight: 850;
}

.product-info-highlights span::before {
  content: "✓";
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dff4e6;
  color: #2f8253;
  font-size: .68rem;
}

.sf-spec-list {
  display: grid;
  align-content: start;
  gap: 11px;
}

.sf-spec-list h2 {
  margin-bottom: 8px;
}

.sf-spec-list > div {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #edf2f6;
}

.sf-spec-list > div:last-child {
  border-bottom: 0;
}

.sf-spec-list > div span {
  color: #7a8898;
  font-size: .78rem;
  font-weight: 850;
}

.sf-spec-list > div strong {
  color: #132b42;
  font-size: .9rem;
  font-weight: 900;
  text-align: right;
}

.sf-product-detail {
  padding-bottom: 30px;
}

.product-tabs-section {
  padding: 0 0 62px;
  border-top: 1px solid rgba(23, 58, 94, .08);
  border-bottom: 1px solid rgba(23, 58, 94, .06);
  background:
    radial-gradient(circle at 14% 0, rgba(214, 101, 63, .07), transparent 32%),
    linear-gradient(180deg, #fff 0%, #fffaf5 52%, #f4f8f3 100%);
}

.product-tabs-shell {
  padding-top: 0;
}

.product-tabs-nav {
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: -1px auto 26px;
  padding: 8px;
  border: 1px solid #dce7ef;
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 44px rgba(25, 42, 53, .08);
}

.product-tabs-nav button {
  min-height: 64px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px 18px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #173a5e;
  cursor: pointer;
  font: inherit;
  font-size: .96rem;
  font-weight: 950;
  letter-spacing: -.01em;
  text-align: center;
  transition: background .24s ease, color .24s ease, box-shadow .24s ease, transform .24s ease;
}

.product-tabs-nav button span {
  color: #7a8898;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.product-tabs-nav button:hover,
.product-tabs-nav button:focus-visible {
  background: #f4f8fb;
  transform: translateY(-1px);
}

.product-tabs-nav button.is-active {
  background: #173a5e;
  color: #fff;
  box-shadow: 0 14px 28px rgba(23, 58, 94, .2);
}

.product-tabs-nav button.is-active span {
  color: rgba(255, 255, 255, .72);
}

.product-tabs-section.is-enhanced .product-tab-panel:not(.is-active) {
  display: none;
}

.product-tab-panel.is-active {
  animation: productTabFade .24s ease;
}

@keyframes productTabFade {
  from {
    opacity: .72;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.product-tabs-section .review-layout,
.product-tabs-section .sf-detail-content {
  margin-top: 0;
}

.sf-detail-content.single {
  grid-template-columns: 1fr;
}

.sf-detail-content.single .product-info-panel {
  max-width: none;
}

.sf-related-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 70px 0 88px;
  background:
    radial-gradient(circle at 88% 0, rgba(214, 101, 63, .1), transparent 32%),
    radial-gradient(circle at 10% 48%, rgba(23, 58, 94, .07), transparent 30%),
    linear-gradient(180deg, #fffaf5 0%, #fff 72%);
}

.sf-related-shell {
  display: grid;
  gap: 26px;
}

.sf-related-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.sf-related-head h2 {
  max-width: 760px;
  margin: 10px 0 0;
  color: #132b42;
  font-size: clamp(2.05rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.sf-related-head p {
  max-width: 650px;
  margin: 14px 0 0;
  color: #5a6c7d;
  font-size: .98rem;
  line-height: 1.68;
}

.sf-related-head .sf-button {
  flex: 0 0 auto;
  min-height: 46px;
  border-color: #173a5e;
  color: #173a5e;
}

.sf-related-layout {
  display: grid;
  grid-template-columns: minmax(270px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(23, 58, 94, .09);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(248, 252, 249, .9)),
    #fff;
  box-shadow: 0 24px 70px rgba(25, 42, 53, .08);
}

.sf-related-layout.single {
  width: min(100%, 780px);
  grid-template-columns: minmax(270px, 360px) minmax(250px, 310px);
  justify-content: center;
  margin-inline: auto;
}

.sf-related-note {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 26px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 101, 63, .36), transparent 40%),
    linear-gradient(145deg, #173a5e 0%, #10273f 58%, #11241e 100%);
  color: #fff;
}

.sf-related-note::before {
  content: "";
  position: absolute;
  inset: 20px 20px auto auto;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 26px;
  transform: rotate(12deg);
}

.sf-related-note span {
  width: max-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #ffe1c4;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sf-related-note strong {
  max-width: 280px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.06;
}

.sf-related-note p {
  max-width: 290px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: .92rem;
  line-height: 1.62;
}

.sf-related-note .sf-link-arrow {
  width: max-content;
  margin-top: 4px;
  color: #fff;
}

.sf-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
  gap: 18px;
  align-content: start;
  justify-content: start;
}

.sf-related-layout.single .sf-related-grid {
  grid-template-columns: minmax(250px, 310px);
  justify-content: stretch;
}

.sf-related-grid .sf-product-card {
  height: 100%;
  min-width: 0;
  box-shadow: 0 18px 44px rgba(25, 42, 53, .08);
}

.sf-related-grid .sf-product-media {
  aspect-ratio: 16 / 10.6;
}

.sf-related-grid .sf-product-cta {
  border-color: var(--store-accent);
  background: linear-gradient(135deg, var(--store-accent), #e77c4b);
  color: #fff;
  box-shadow: 0 12px 24px rgba(214, 101, 63, .2);
}

.sf-related-grid .sf-product-detail-button {
  border-color: var(--store-accent);
  color: var(--store-accent-dark);
}

/* ======== FOOTER ======== */
.sf-footer {
  padding: 78px 0 26px;
  background: var(--store-ink);
}

.sf-footer-grid {
  grid-template-columns: 1.45fr repeat(4, 1fr);
  gap: clamp(26px, 4vw, 54px);
}

.sf-footer h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sf-footer p,
.sf-footer a,
.sf-footer-bottom {
  color: #a8a198;
  font-size: .78rem;
}

.sf-footer a {
  transition: color .2s ease;
}

.sf-footer a:hover {
  color: #fff;
}

.sf-footer .sf-brand-lockup small {
  color: #8b857c;
}

.sf-footer-brand > p {
  max-width: 300px;
  line-height: 1.7;
}

.sf-payment-row span {
  padding: 5px 8px;
  border: 1px solid #44413c;
  border-radius: 3px;
  background: transparent;
  color: #d4cec5;
  font-size: .62rem;
  transition: border-color .2s ease, color .2s ease;
}

.sf-payment-row span:hover {
  border-color: #6e695f;
  color: #fff;
}

.sf-footer-bottom {
  border-top-color: #383530;
}

.sf-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 15px 8px 8px;
  border: 1px solid rgba(255, 255, 255, .46);
  border-radius: 999px;
  background: linear-gradient(135deg, #0f3f2d 0%, #16884b 55%, #20bf64 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(15, 63, 45, .28), 0 4px 14px rgba(32, 191, 100, .18);
  isolation: isolate;
  overflow: visible;
  transition: transform .3s cubic-bezier(.16, 1, .3, 1), box-shadow .3s ease, filter .3s ease;
}

.sf-whatsapp::before,
.sf-whatsapp::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.sf-whatsapp::before {
  inset: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .26), rgba(255, 255, 255, 0) 58%);
  opacity: .78;
}

.sf-whatsapp::after {
  inset: -8px;
  z-index: -1;
  background: rgba(32, 191, 100, .16);
  filter: blur(12px);
  opacity: .86;
  transition: opacity .3s ease, transform .3s ease;
}

.sf-whatsapp__icon,
.sf-whatsapp__copy {
  position: relative;
  z-index: 1;
}

.sf-whatsapp__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, .96);
  color: #128c4a;
  box-shadow: inset 0 -8px 16px rgba(15, 63, 45, .08), 0 8px 18px rgba(0, 0, 0, .12);
}

.sf-whatsapp__icon svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.sf-whatsapp__icon svg path:first-child {
  opacity: .22;
}

.sf-whatsapp__copy {
  display: grid;
  gap: 2px;
  min-width: 84px;
  line-height: 1.04;
}

.sf-whatsapp__copy span {
  color: rgba(255, 255, 255, .76);
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .01em;
}

.sf-whatsapp__copy strong {
  color: #fff;
  font-size: .9rem;
  font-weight: 950;
  letter-spacing: -.02em;
}

.sf-whatsapp:hover {
  transform: translateY(-4px);
  filter: saturate(1.06);
  box-shadow: 0 24px 56px rgba(15, 63, 45, .34), 0 8px 20px rgba(32, 191, 100, .22);
}

.sf-whatsapp:hover::after {
  opacity: 1;
  transform: scale(1.04);
}

.sf-whatsapp:focus-visible {
  outline: 3px solid rgba(214, 101, 63, .34);
  outline-offset: 4px;
}
