:root {
  --ink: #3f3330;
  --plum: #8a4e5d;
  --berry: #b56f7d;
  --rose: #b76e79;
  --coral: #a45c67;
  --peach: #c98a61;
  --sage: #7a8c6a;
  --teal: #6f9c9a;
  --paper: #fffefa;
  --blush: #fff8f4;
  --shell: #f8efea;
  --line: rgba(176, 128, 112, 0.24);
  --soft-line: rgba(63, 51, 48, 0.1);
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(63, 51, 48, 0.07);
  --shadow-md: 0 22px 54px rgba(63, 51, 48, 0.1);
  --radius: 14px;
  --container: 1160px;
  --ease: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 232, 240, 0.82), transparent 26%),
    radial-gradient(circle at 88% 4%, rgba(255, 242, 247, 0.9), transparent 28%),
    linear-gradient(180deg, #fff9fb 0%, #fffdfd 42%, #ffffff 100%);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

main {
  flex: 1;
}

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

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(32, 141, 155, 0.45);
  outline-offset: 3px;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--plum);
  text-decoration: none;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(217, 106, 153, 0.18);
  background: rgba(255, 250, 251, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.nav-brand {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--plum);
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.main-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 0;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: max-height 240ms ease;
}

.main-nav.open {
  max-height: 360px;
}

.main-nav ul {
  margin: 0;
  padding: 8px 0 14px;
  list-style: none;
}

.main-nav .menu,
.footer-nav .menu {
  margin: 0;
  padding-left: 0;
}

.main-nav a {
  display: block;
  padding: 12px 22px;
  border-left: 3px solid transparent;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--rose);
  border-left-color: var(--rose);
  background: var(--blush);
}

.section-shell {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.catalog-frame {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 226, 235, 0.74), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(255, 244, 248, 0.94), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 252, 0.99), rgba(255, 248, 251, 0.96));
}

.catalog-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  border: 1px solid rgba(217, 106, 152, 0.2);
  pointer-events: none;
}

.catalog-frame::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: clamp(10px, 2.4vw, 26px);
  background: linear-gradient(180deg, rgba(255, 245, 247, 0.7), rgba(252, 231, 243, 0.55));
  pointer-events: none;
}

.catalog-frame > .section-shell,
.page-hero.catalog-frame > * {
  position: relative;
  z-index: 1;
}

.centered-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2::after,
.intro-section h2::after,
.subscribe-section h2::after {
  content: "";
  display: block;
  width: min(180px, 42vw);
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, transparent, var(--peach), transparent);
}

.centered-heading h2::after {
  margin-right: auto;
  margin-left: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(100% - 24px, 1220px);
  margin: 18px auto 0;
  padding: 34px 22px;
  display: grid;
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(217, 106, 152, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.99), rgba(255, 245, 249, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0 1px, transparent 1px 18px);
  box-shadow: var(--shadow-md);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(238, 141, 125, 0.28);
  border-radius: 24px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(238, 141, 125, 0.16), transparent 11%),
    radial-gradient(circle at 92% 88%, rgba(231, 105, 156, 0.14), transparent 13%);
  pointer-events: none;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-lockup {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

.logo {
  width: 176px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(240, 138, 115, 0.42);
  box-shadow: 0 16px 34px rgba(234, 111, 157, 0.18);
}

.hero-copy {
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: var(--rose);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  display: none;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.intro-section h2,
.subscribe-section h2 {
  margin: 0;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  font-size: 2.25rem;
}

.hero-text,
.page-hero p,
.intro-section p,
.story-copy p,
.subscribe-section p,
.event-card p,
.contact-card p,
.product-desc {
  color: rgba(40, 19, 74, 0.78);
  text-wrap: pretty;
}

.hero-text {
  max-width: 680px;
  margin: 14px auto 0;
  font-size: 1.05rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.btn-primary {
  color: var(--white);
  background: var(--rose);
}

.btn-ghost {
  color: var(--plum);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.page-hero {
  padding: 54px 20px 42px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 222, 232, 0.72), transparent 40%),
    linear-gradient(180deg, rgba(255, 246, 249, 0.96), rgba(255, 253, 252, 0.98));
}

.page-hero h1 {
  font-size: 2.1rem;
}

.page-hero p {
  max-width: 740px;
  margin: 14px auto 0;
}

.contents-section,
.intro-section,
.about-section,
.feature-section,
.products-section,
.aromas-section,
.events-section,
.subscribe-section,
.contact-section,
.page-content-section {
  padding: 54px 0;
}

.feature-section,
.aromas-section,
.contact-section,
.about-section {
  background: rgba(255, 255, 255, 0.72);
}

.two-column,
.subscribe-layout,
.social-layout,
.contact-layout {
  display: grid;
  gap: 24px;
}

.intro-section .two-column {
  align-items: start;
}

.intro-section p {
  margin: 0;
  max-width: 780px;
  text-align: justify;
}

.contents-grid {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto;
}

.contents-item {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid rgba(231, 105, 156, 0.22);
  border-radius: 28px;
  color: var(--plum);
  background: rgba(255, 239, 245, 0.82);
  box-shadow: var(--shadow-sm);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform var(--ease), border-color var(--ease), background var(--ease);
}

.contents-item:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 105, 156, 0.5);
  background: rgba(255, 247, 250, 0.96);
}

.contents-number {
  min-width: 60px;
  color: var(--rose);
  font-size: 1.55rem;
}

.story-layout {
  max-width: 1040px;
}

.story-copy {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(231, 105, 156, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.story-copy p {
  margin: 0;
  text-align: justify;
}

.story-copy p + p {
  margin-top: 16px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 22px;
}

.section-heading h2,
.intro-section h2,
.subscribe-section h2 {
  font-size: 1.8rem;
}

.main-product-slot .product-card {
  grid-template-columns: 1fr;
}

.products-grid,
.events-grid,
.aroma-grid {
  display: grid;
  gap: 18px;
}

.products-grid {
  grid-template-columns: 1fr;
}

.product-card,
.event-card,
.contact-card,
.aroma-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.product-card {
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-media {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.94), transparent 22%),
    linear-gradient(145deg, rgba(255, 253, 252, 0.94), rgba(255, 229, 238, 0.9)),
    repeating-linear-gradient(135deg, rgba(231, 105, 156, 0.05) 0 1px, transparent 1px 16px);
  background-size: cover;
  background-position: center;
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 20px;
  pointer-events: none;
}

.product-badge {
  position: relative;
  z-index: 1;
  width: 86px;
  min-height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  color: var(--white);
  background: rgba(168, 93, 122, 0.92);
  box-shadow: 0 10px 22px rgba(168, 93, 122, 0.22);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  overflow-wrap: anywhere;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 250, 0.9));
}

.product-subtitle {
  margin: 0;
  color: var(--rose);
  font-weight: 800;
}

.product-info h3 {
  margin: 0;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.product-desc,
.event-card p,
.contact-card p,
.page-hero p,
.subscribe-section p {
  text-align: justify;
}

.product-desc,
.product-price {
  margin: 0;
}

.product-price {
  color: var(--ink);
  font-weight: 900;
}

.chip-list,
.feature-list,
.inline-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-list li {
  padding: 6px 10px;
  border: 1px solid rgba(234, 111, 157, 0.25);
  border-radius: 999px;
  color: var(--plum);
  background: var(--blush);
  font-size: 0.9rem;
  font-weight: 700;
}

.feature-list {
  display: grid;
  gap: 6px;
  color: rgba(40, 19, 74, 0.75);
}

.feature-list li {
  position: relative;
  padding-left: 18px;
}

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

.text-link {
  margin-top: auto;
  color: var(--rose);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.aroma-grid {
  grid-template-columns: 1fr;
}

.aroma-card {
  padding: 18px;
  border-color: color-mix(in srgb, var(--accent, var(--rose)) 42%, transparent);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), color-mix(in srgb, var(--accent, var(--rose)) 12%, #ffffff));
}

.aroma-card h3 {
  margin: 0 0 12px;
  color: var(--accent, var(--rose));
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.aroma-card ul {
  margin: 0;
  padding-left: 18px;
}

.aroma-card li::marker {
  color: var(--accent, var(--rose));
}

.events-grid {
  grid-template-columns: 1fr;
}

.event-card,
.contact-card {
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 249, 0.92));
}

.event-card h3,
.contact-card h2 {
  margin: 0 0 8px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: 0;
}

.event-card p,
.contact-card p {
  margin: 0 0 12px;
}

.event-date {
  color: var(--berry);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.subscribe-section {
  border-top: 1px solid rgba(150, 80, 107, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 242, 247, 0.96), rgba(255, 250, 246, 0.94)),
    repeating-linear-gradient(90deg, rgba(231, 105, 156, 0.035) 0 1px, transparent 1px 20px);
}

.subscribe-section.compact {
  padding-top: 36px;
}

.subscription-form {
  display: grid;
  gap: 14px;
}

.register-layout {
  max-width: 920px;
  display: grid;
  gap: 28px;
  justify-items: center;
  text-align: center;
}

.registration-copy {
  max-width: 720px;
  margin: 0 auto;
}

.registration-copy p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.registration-form-shell {
  width: min(100%, 660px);
  margin: 0 auto;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.registration-form-shell .wpforms-container,
.registration-form-shell .wpforms-form {
  width: 100%;
  max-width: 100%;
  margin: 0 auto !important;
}

.registration-form-shell .wpforms-field {
  padding-top: 10px !important;
  padding-bottom: 12px !important;
}

.registration-form-shell .wpforms-field-label,
.registration-form-shell .wpforms-field-sublabel,
.registration-form-shell .wpforms-field-description {
  color: var(--ink) !important;
}

.registration-form-shell .wpforms-field-label {
  font-weight: 800 !important;
}

.registration-form-shell input[type="text"],
.registration-form-shell input[type="email"],
.registration-form-shell input[type="tel"],
.registration-form-shell textarea,
.registration-form-shell select {
  width: 100% !important;
  max-width: 100% !important;
  border: 1px solid rgba(176, 128, 112, 0.3) !important;
  border-radius: 16px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.registration-form-shell .wpforms-field-gdpr-checkbox label,
.registration-form-shell .wpforms-field-checkbox label {
  color: var(--ink) !important;
  line-height: 1.55 !important;
}

.registration-form-shell .wpforms-field-description {
  max-width: 100%;
  color: #7c6b66 !important;
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
  text-align: left !important;
}

.registration-form-shell .wpforms-submit-container {
  padding-top: 14px !important;
  text-align: center !important;
}

.registration-form-shell .wpforms-submit,
.registration-form-shell .wpforms-form button[type="submit"],
.registration-form-shell .wpforms-form input[type="submit"] {
  min-width: 160px !important;
  min-height: 46px !important;
  padding: 11px 22px !important;
  border: 1px solid var(--rose) !important;
  border-radius: 999px !important;
  color: #fff !important;
  background: var(--rose) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.registration-form-shell .wpforms-submit:hover,
.registration-form-shell .wpforms-form button[type="submit"]:hover,
.registration-form-shell .wpforms-form input[type="submit"]:hover {
  border-color: var(--coral) !important;
  background: var(--coral) !important;
}

.registration-form-shell a {
  color: var(--plum) !important;
  font-weight: 800;
}

label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.check-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 700;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: rgba(40, 19, 74, 0.75);
  font-weight: 800;
}

.form-status.success {
  color: var(--sage);
}

.form-status.error {
  color: #b8425b;
}

.contact-layout {
  grid-template-columns: 1fr;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.inline-list li {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--blush);
  font-weight: 800;
}

.two-fields {
  grid-template-columns: 1fr;
}

.full-field {
  grid-column: 1 / -1;
}

.empty-state {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--shell);
  color: var(--plum);
  font-weight: 800;
}

.site-footer {
  margin-top: auto;
  padding: 30px 18px;
  color: var(--ink);
  background: linear-gradient(180deg, #fff5f7, #fce7f3);
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  color: var(--plum);
  font-weight: 800;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js-enabled .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 620px) {
  .site-header {
    padding: 14px 26px;
  }

  .hero {
    padding: 42px 34px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .page-hero h1 {
    font-size: 2.7rem;
  }

  .section-heading h2,
  .intro-section h2,
  .subscribe-section h2 {
    font-size: 2.15rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contents-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aroma-grid,
  .events-grid,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 820px) {
  body.menu-open {
    overflow: auto;
  }

  .nav-toggle {
    display: none;
  }

  .main-nav {
    position: static;
    max-height: none;
    overflow: visible;
    box-shadow: none;
    background: transparent;
  }

  .main-nav ul {
    display: flex;
    gap: 20px;
    padding: 0;
  }

  .main-nav a {
    padding: 4px 0;
    border-left: 0;
    border-bottom: 2px solid transparent;
    background: transparent;
  }

  .main-nav a:hover,
  .main-nav a.active {
    border-bottom-color: var(--rose);
    background: transparent;
  }

  .hero {
    grid-template-columns: 330px 1fr;
    min-height: 430px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-text {
    text-align: left;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .logo {
    width: 230px;
  }

  .two-column,
  .subscribe-layout,
  .social-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .social-layout {
    align-items: center;
  }

  .main-product-slot .product-card-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .main-product-slot .product-media {
    min-height: 380px;
    aspect-ratio: auto;
  }

}

@media (min-width: 1080px) {
  .hero h1 {
    font-size: 3.7rem;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .aroma-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .events-grid,
  .contact-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.woocommerce-section .woocommerce,
.woocommerce-section .product {
  color: var(--ink);
}

.woocommerce-section h1,
.woocommerce-section h2,
.woocommerce-section h3,
.woocommerce div.product .product_title {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  min-height: 44px;
  border-radius: 999px;
  color: var(--white);
  background: var(--rose);
  font-weight: 800;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  color: var(--white);
  background: var(--coral);
}

.woocommerce ul.products li.product,
.woocommerce div.product div.summary,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.woocommerce div.product div.summary,
.woocommerce-cart-form,
.woocommerce-checkout-review-order,
.woocommerce form.checkout_coupon,
.woocommerce form.login,
.woocommerce form.register {
  padding: 18px;
}

.woocommerce span.onsale {
  min-width: 0;
  min-height: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--berry);
  line-height: 1;
}

.woocommerce .price {
  color: var(--plum);
  font-weight: 900;
}

/* Bluehost/WordPress preview can inherit strong global colors; this keeps the theme light. */
html,
html body,
body.home,
body.page,
body.woocommerce,
body.custom-background,
#page,
.site,
main,
.site-main,
.site-content,
.content-area {
  color: var(--ink) !important;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 232, 240, 0.82), transparent 26%),
    radial-gradient(circle at 88% 4%, rgba(255, 242, 247, 0.9), transparent 28%),
    linear-gradient(180deg, #fff9fb 0%, #fffdfd 42%, #ffffff 100%) !important;
}

body .site-header,
body .main-nav,
body .product-info,
body .woocommerce ul.products li.product {
  background-color: rgba(255, 253, 252, 0.96) !important;
}

body .site-header {
  color: var(--ink) !important;
  border-bottom-color: rgba(217, 106, 152, 0.18) !important;
}

body .intro-section,
body .products-section,
body .events-section {
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 226, 235, 0.74), transparent 28%),
    linear-gradient(180deg, rgba(255, 253, 252, 0.99), rgba(255, 248, 251, 0.96)) !important;
}

body .feature-section,
body .aromas-section,
body .contact-section,
body .about-section,
body .contents-section {
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 244, 248, 0.94), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 252, 0.99), rgba(255, 248, 251, 0.96)) !important;
}

body .product-card,
body .event-card,
body .contact-card,
body .aroma-card,
body .woocommerce div.product div.summary,
body .woocommerce-cart-form,
body .woocommerce-checkout-review-order {
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: var(--line) !important;
  border-radius: 24px !important;
}

body .product-media {
  background-color: #fff2f6 !important;
}

body .hero,
body .page-hero,
body .subscribe-section {
  color: var(--ink) !important;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 226, 235, 0.74), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(255, 244, 248, 0.94), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 252, 0.99), rgba(255, 248, 251, 0.96)) !important;
}

body .catalog-frame {
  color: var(--ink) !important;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 226, 235, 0.74), transparent 28%),
    radial-gradient(circle at 86% 10%, rgba(255, 244, 248, 0.94), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 252, 0.99), rgba(255, 248, 251, 0.96)) !important;
}

body .contents-item,
body .story-copy {
  color: var(--plum) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: var(--line) !important;
  border-radius: 28px !important;
}

body .event-card,
body .contact-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 249, 0.92)) !important;
}

body p,
body .product-desc,
body .event-card p,
body .contact-card p,
body .story-copy p,
body .intro-section p,
body .page-hero p,
body .subscribe-section p {
  text-align: justify;
  text-wrap: pretty;
}

/* Final boutique palette: light, natural and cache-resistant for hosted WordPress previews. */
html,
html body,
body.gwb-light-theme,
body.home,
body.page,
body.woocommerce,
body.custom-background,
body.gwb-light-theme #page,
body.gwb-light-theme .site,
body.gwb-light-theme main,
body.gwb-light-theme .site-main,
body.gwb-light-theme .site-content,
body.gwb-light-theme .content-area,
#page,
.site,
main,
.site-main,
.site-content,
.content-area {
  color: var(--ink) !important;
  background: #fffcfa !important;
}

body.gwb-light-theme .site-header,
body .site-header {
  min-height: 64px;
  color: var(--ink) !important;
  background: rgba(255, 252, 250, 0.96) !important;
  border-bottom: 1px solid rgba(176, 128, 112, 0.2) !important;
  box-shadow: 0 8px 28px rgba(63, 51, 48, 0.05) !important;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--plum) !important;
}

.nav-brand::before {
  content: "";
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: url("../img/logo.jpeg") center / contain no-repeat;
  box-shadow: 0 6px 16px rgba(63, 51, 48, 0.08);
}

body.gwb-light-theme .main-nav,
body .main-nav {
  background: rgba(255, 252, 250, 0.98) !important;
}

.main-nav a,
.footer-nav a {
  color: var(--ink) !important;
  font-weight: 750;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--plum) !important;
  border-color: var(--rose) !important;
  background: transparent !important;
}

body.gwb-light-theme .hero,
body.gwb-light-theme .page-hero,
body.gwb-light-theme .catalog-frame,
body.gwb-light-theme .contents-section,
body.gwb-light-theme .intro-section,
body.gwb-light-theme .about-section,
body.gwb-light-theme .feature-section,
body.gwb-light-theme .products-section,
body.gwb-light-theme .aromas-section,
body.gwb-light-theme .events-section,
body.gwb-light-theme .subscribe-section,
body.gwb-light-theme .contact-section,
body.gwb-light-theme .page-content-section,
body .hero,
body .page-hero,
body .catalog-frame,
body .contents-section,
body .intro-section,
body .about-section,
body .feature-section,
body .products-section,
body .aromas-section,
body .events-section,
body .subscribe-section,
body .contact-section,
body .page-content-section {
  color: var(--ink) !important;
  background:
    radial-gradient(circle at 9% 12%, rgba(248, 239, 234, 0.8), transparent 28%),
    linear-gradient(180deg, #fffcfa 0%, #f8efea 100%) !important;
  border-color: rgba(176, 128, 112, 0.2) !important;
}

body .catalog-frame {
  position: relative;
  overflow: hidden;
}

body .catalog-frame::before {
  inset: 14px !important;
  border: 1px solid rgba(176, 128, 112, 0.22) !important;
  border-radius: 24px !important;
  background: none !important;
}

body .catalog-frame::after {
  content: "" !important;
  position: absolute !important;
  top: 22px !important;
  left: clamp(18px, 4vw, 42px) !important;
  right: auto !important;
  bottom: auto !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: url("../img/logo.jpeg") center / contain no-repeat !important;
  opacity: 0.16 !important;
  pointer-events: none !important;
}

body .catalog-frame > .section-shell {
  position: relative;
  z-index: 1;
  padding-top: 18px;
}

body .hero {
  background:
    linear-gradient(102deg, rgba(255, 252, 250, 0.96), rgba(248, 239, 234, 0.9)),
    linear-gradient(180deg, #fff, #fffcfa) !important;
  box-shadow: 0 24px 70px rgba(63, 51, 48, 0.1) !important;
}

body .hero::after {
  background:
    radial-gradient(circle at 12% 16%, rgba(201, 138, 97, 0.12), transparent 18%),
    radial-gradient(circle at 88% 84%, rgba(183, 110, 121, 0.11), transparent 18%) !important;
  opacity: 1 !important;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.intro-section h2,
.subscribe-section h2,
.product-info h3,
.event-card h3,
.contact-card h2,
.woocommerce-section h1,
.woocommerce-section h2,
.woocommerce-section h3,
.woocommerce div.product .product_title {
  color: var(--plum) !important;
  letter-spacing: 0;
}

.hero-text,
.page-hero p,
.intro-section p,
.story-copy p,
.subscribe-section p,
.event-card p,
.contact-card p,
.product-desc,
.woocommerce-product-details__short-description {
  color: #7c6b66 !important;
  line-height: 1.75;
  text-align: justify;
  text-wrap: pretty;
}

body .product-card,
body .event-card,
body .contact-card,
body .aroma-card,
body .contents-item,
body .story-copy,
body .page-content-card,
body .woocommerce ul.products li.product,
body .woocommerce div.product div.summary,
body .woocommerce-cart-form,
body .woocommerce-checkout-review-order,
body .woocommerce form.checkout_coupon,
body .woocommerce form.login,
body .woocommerce form.register {
  color: var(--ink) !important;
  background: #ffffff !important;
  border: 1px solid rgba(176, 128, 112, 0.24) !important;
  border-radius: 28px !important;
  box-shadow: 0 18px 44px rgba(63, 51, 48, 0.08) !important;
}

body .page-content-card {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 44px);
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

body .page-content-card h2,
body .page-content-card h3,
body .page-content-card h4 {
  margin: 1.35em 0 0.55em;
  color: var(--plum) !important;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
}

body .page-content-card h2:first-child,
body .page-content-card h3:first-child,
body .page-content-card h4:first-child {
  margin-top: 0;
}

body .page-content-card p,
body .page-content-card li {
  color: #7c6b66 !important;
  line-height: 1.8;
}

body .page-content-card p {
  text-align: justify;
}

body .page-content-card ul,
body .page-content-card ol {
  padding-left: 1.35rem;
}

body .page-content-card a {
  color: var(--plum) !important;
  font-weight: 800;
}

body .contents-item {
  min-height: 78px;
  padding: 16px 20px;
  color: var(--plum) !important;
  background: rgba(255, 255, 255, 0.86) !important;
}

body .contents-item:hover {
  background: #fff8f4 !important;
  border-color: rgba(183, 110, 121, 0.36) !important;
}

body .product-card {
  overflow: hidden;
}

body .product-media {
  min-height: 240px;
  background-color: #f8efea !important;
  background-blend-mode: normal !important;
}

body .product-media::before {
  border-color: rgba(255, 255, 255, 0.68) !important;
  border-radius: 22px !important;
}

body .product-info,
body.gwb-light-theme .product-info {
  gap: 12px;
  padding: 22px;
  background: #ffffff !important;
}

.product-subtitle {
  color: var(--rose) !important;
  font-weight: 800;
}

.product-price,
.woocommerce .price {
  color: var(--ink) !important;
  font-weight: 900;
}

.product-badge,
.woocommerce span.onsale {
  color: #fff !important;
  background: #9f6b73 !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  box-shadow: 0 12px 24px rgba(63, 51, 48, 0.13) !important;
}

.chip-list li,
.inline-list li {
  color: var(--plum) !important;
  background: #fff8f4 !important;
  border-color: rgba(176, 128, 112, 0.28) !important;
}

.feature-list {
  color: #7c6b66 !important;
}

.feature-list li::before {
  background: var(--peach) !important;
}

.aroma-card {
  background:
    linear-gradient(145deg, #ffffff, rgba(248, 239, 234, 0.7)) !important;
}

.event-date {
  color: #9f6b48 !important;
}

.btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  border-radius: 999px !important;
  letter-spacing: 0;
}

.btn-primary,
.gwb-add-to-list,
.gwb-list-toggle,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  color: #fff !important;
  background: var(--rose) !important;
  border-color: var(--rose) !important;
}

.btn-primary:hover,
.gwb-add-to-list:hover,
.gwb-list-toggle:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  color: #fff !important;
  background: var(--coral) !important;
  border-color: var(--coral) !important;
}

.btn-ghost,
.text-link {
  color: var(--plum) !important;
  border-color: rgba(176, 128, 112, 0.28) !important;
}

.product-actions,
.gwb-woo-list-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.product-actions .btn {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.92rem;
}

.single_add_to_cart_button,
.add_to_cart_button,
.woocommerce form.cart,
.woocommerce .quantity,
.woocommerce-message .button.wc-forward {
  display: none !important;
}

.gwb-list-toggle {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(63, 51, 48, 0.18);
}

.gwb-list-toggle strong {
  min-width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--plum);
  background: #fff;
  font-size: 0.82rem;
}

.gwb-list-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  width: min(100%, 430px);
  padding: 18px;
  background: rgba(63, 51, 48, 0.2);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.gwb-list-panel.is-open {
  transform: translateX(0);
}

.gwb-list-panel-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(176, 128, 112, 0.3);
  border-radius: 28px;
  background: #fffcfa;
  box-shadow: 0 28px 70px rgba(63, 51, 48, 0.18);
}

.gwb-list-close {
  align-self: flex-end;
  border: 1px solid rgba(176, 128, 112, 0.28);
  border-radius: 999px;
  color: var(--plum);
  background: #fff;
  padding: 7px 12px;
  font-weight: 800;
}

.gwb-list-panel h2 {
  margin: 0;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.1;
}

.gwb-list-panel p {
  margin: 0;
  color: #7c6b66;
}

.gwb-list-items {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.gwb-list-items li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px solid rgba(176, 128, 112, 0.22);
  border-radius: 18px;
  background: #fff;
}

.gwb-list-items strong {
  display: block;
  color: var(--ink);
}

.gwb-list-items small {
  color: #7c6b66;
}

.gwb-list-remove {
  border: 0;
  color: var(--plum);
  background: transparent;
  font-weight: 900;
}

.gwb-list-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.gwb-list-note {
  font-size: 0.9rem;
}

.site-footer,
body .site-footer {
  color: var(--ink) !important;
  background: #f8efea !important;
}

.social-layout {
  align-items: center;
}

.instagram-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(176, 128, 112, 0.24);
  border-radius: 28px;
  color: var(--plum);
  background:
    radial-gradient(circle at 14% 18%, rgba(183, 110, 121, 0.16), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(201, 138, 97, 0.18), transparent 30%),
    linear-gradient(135deg, #fff, #fff8f4);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.instagram-feature-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: url("../img/logo.jpeg") center / contain no-repeat;
  opacity: 0.2;
}

.instagram-feature-card span {
  color: var(--rose);
  font-weight: 900;
  text-transform: uppercase;
}

.instagram-feature-card strong {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 1;
}

.instagram-feature-card em {
  max-width: 360px;
  color: #7c6b66;
  font-style: normal;
}

.instagram-feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(183, 110, 121, 0.4);
  box-shadow: var(--shadow-md);
}

@media (min-width: 820px) {
  body .hero {
    grid-template-columns: 280px 1fr;
  }

  body .hero-copy {
    text-align: left;
  }
}
