/*
Theme Name: Feelsilk Static Theme
Theme URI: https://example.com/
Author: Feelsilk
Description: Custom WordPress theme converted from the Feelsilk HTML website.
Version: 1.0
License: GPLv2 or later
Text Domain: feelsilk
*/

:root {
  --ink: #17242a;
  --muted: #5f6f75;
  --paper: #fffdf8;
  --surface: #ffffff;
  --soft: #eef7f3;
  --line: #d9e5e5;
  --teal: #007983;
  --teal-bright: #00a9aa;
  --green: #7abf3a;
  --pink: #cf2a78;
  --gold: #f2c846;
  --blue: #3478aa;
  --shadow: 0 22px 60px rgba(23, 36, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(217, 229, 229, 0.85);
  backdrop-filter: blur(14px);
}

.brand,
.nav,
.hero-actions,
.product-meta,
.order-total,
.footer,
.footer-links,
.cta-actions {
  display: flex;
  align-items: center;
}

.brand {
  flex: 0 0 auto;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 850;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
  box-shadow: 0 10px 22px rgba(0, 121, 131, 0.22);
}

.nav {
  gap: clamp(10px, 1.8vw, 24px);
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 800;
}

.nav a {
  white-space: nowrap;
}

.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-button {
  color: #fff;
  background: var(--pink);
  padding: 10px 16px;
  border-radius: 999px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  min-height: calc(100vh - 76px);
  padding: clamp(46px, 5vw, 82px) clamp(18px, 5vw, 76px) clamp(30px, 4vw, 52px);
  overflow: hidden;
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 1) 0%, rgba(255, 253, 248, 0.8) 46%, rgba(238, 247, 243, 0.9) 100%);
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 7.3vw, 7.2rem);
  font-style: italic;
  line-height: 0.92;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
}

.hero-text,
.page-hero p,
.section-heading p,
.split-section p,
.product-card p,
.feature-grid p,
.step-grid p,
.showcase-row p,
.faq-list p,
.contact-panel p,
.footer span,
.fine-print,
.empty-cart,
.inquiry-card p {
  color: var(--muted);
}

.hero-text {
  max-width: 560px;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions,
.cta-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 22px rgba(0, 121, 131, 0.22);
}

.button.secondary {
  color: var(--teal);
  background: #dff3f0;
}

.hero-visual {
  position: relative;
  min-height: clamp(390px, 54vw, 620px);
}

.hero-visual::before {
  position: absolute;
  inset: 11% 5% 8% 2%;
  content: "";
  background:
    radial-gradient(circle at 28% 28%, rgba(255, 255, 255, 0.9), transparent 27%),
    linear-gradient(135deg, #b9eee7 0%, #75d5d5 46%, var(--gold) 46%, var(--gold) 58%, #fff 58%, #fff 100%);
  border-radius: 24px;
  transform: rotate(-5deg);
}

.hero-image {
  position: absolute;
  z-index: 2;
  border: 8px solid #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.main-pack {
  right: 8%;
  bottom: 7%;
  width: min(76%, 470px);
}

.side-pack {
  width: min(36%, 220px);
}

.side-pack.top {
  top: 5%;
  left: 4%;
  transform: rotate(-8deg);
}

.side-pack.bottom {
  left: 10%;
  bottom: 4%;
  transform: rotate(7deg);
}

.page-hero {
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 76px);
  background: linear-gradient(135deg, #ffffff 0%, #eff8f7 62%, #f8edf2 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero div {
  max-width: 880px;
}

.page-hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 76px);
  background: var(--line);
  border: 1px solid var(--line);
}

.trust-strip div {
  min-height: 112px;
  padding: 24px;
  background: #fff;
}

.trust-strip strong,
.trust-strip span,
.footer span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.surface-band,
.process-band {
  background: var(--soft);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  align-items: center;
  gap: clamp(30px, 6vw, 84px);
}

.image-panel,
.image-stack,
.product-card,
.order-panel,
.feature-grid article,
.step-grid article,
.faq-list details,
.contact-panel,
.inquiry-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.image-panel {
  padding: 18px;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.metric-row div {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-row strong {
  display: block;
  color: var(--pink);
  font-size: 1.7rem;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.shop-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: 24px;
  align-items: start;
}

.product-grid,
.feature-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(23, 36, 42, 0.08);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f7faf7;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.tag {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 5px 9px;
  color: #fff;
  background: var(--pink);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 850;
}

.tag.teal {
  background: var(--teal-bright);
}

.tag.blue {
  background: var(--blue);
}

.product-meta {
  justify-content: space-between;
  gap: 12px;
  margin: auto 0 16px;
  padding-top: 12px;
}

.product-meta span {
  color: var(--muted);
}

.add-button {
  width: 100%;
  color: var(--ink);
  background: var(--gold);
}

.order-panel {
  position: sticky;
  top: 96px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.cart-items {
  display: grid;
  gap: 10px;
  min-height: 74px;
  margin: 18px 0;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  background: #f5fbfa;
  border: 1px solid #d9eeee;
  border-radius: 8px;
}

.cart-row strong,
.cart-row span {
  display: block;
}

.cart-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quantity-controls {
  display: grid;
  grid-template-columns: 32px 32px 32px;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quantity-controls button {
  width: 32px;
  height: 32px;
  border: 0;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.quantity-controls output {
  text-align: center;
  font-weight: 850;
}

.order-total {
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.order-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

label {
  display: grid;
  gap: 6px;
  color: #405057;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

.checkout {
  width: 100%;
  margin-top: 16px;
}

.fine-print {
  margin: 12px 0 0;
  font-size: 0.82rem;
}

.feature-grid article,
.step-grid article {
  padding: 24px;
}

.feature-icon,
.step-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 20px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.feature-icon.green {
  background: var(--green);
}

.feature-icon.blue {
  background: var(--blue);
}

.text-link {
  color: var(--teal);
  font-weight: 850;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #17242a;
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.74);
}

.product-showcase {
  display: grid;
  gap: 28px;
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(220px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.showcase-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.showcase-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
}

.showcase-row.reverse img {
  order: 2;
}

.showcase-row img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(23, 36, 42, 0.08);
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 22px;
  color: #405057;
}

.clean-list li::before {
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  border-radius: 50%;
}

.comparison-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.comparison-table > div {
  display: grid;
  grid-template-columns: 1fr 0.8fr 1.1fr 1.45fr;
  border-top: 1px solid var(--line);
}

.comparison-table > div:first-child {
  border-top: 0;
}

.comparison-table span {
  padding: 16px;
}

.table-head {
  color: #fff;
  background: var(--teal);
  font-weight: 900;
}

.image-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.image-stack img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.image-stack img:first-child {
  grid-column: 1 / -1;
}

.inquiry-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px;
  max-width: 920px;
  box-shadow: 0 14px 36px rgba(23, 36, 42, 0.08);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin: 12px 0 0;
}

.contact-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.footer {
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 76px);
  color: #fff;
  background: var(--ink);
}

.footer-links {
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .shop-layout,
  .faq-layout,
  .showcase-row,
  .showcase-row.reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .order-panel,
  .contact-panel {
    position: static;
  }

  .showcase-row.reverse img {
    order: 0;
  }

  .product-grid,
  .feature-grid,
  .step-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions .button,
  .cta-actions .button,
  .contact-panel .button,
  .inquiry-card .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 330px;
  }

  .main-pack {
    right: 0;
    width: 76%;
  }

  .side-pack {
    width: 35%;
    border-width: 5px;
  }

  .trust-strip,
  .product-grid,
  .feature-grid,
  .step-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-inline: 18px;
  }

  .comparison-table {
    overflow-x: auto;
  }

  .comparison-table > div {
    min-width: 680px;
  }

  .inquiry-card,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
