:root {
  color-scheme: light;
  --ink: #111;
  --muted: #666b72;
  --paper: #f8f1e8;
  --surface: #fffaf3;
  --line: #deded8;
  --green: #dcece3;
  --blue: #dcecf5;
  --yellow: #fff0b9;
  --coral: #ffe0d7;
  --orange: #d96b27;
  --orange-soft: #f7eadf;
  --accent: #111;
  --sale: #f47b20;
  --shadow: 0 18px 50px rgba(18, 18, 18, 0.12);
  --soft-shadow: 0 10px 28px rgba(18, 18, 18, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "SamsungOne", Arial, sans-serif;
  letter-spacing: 0;
  font-weight: 400;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(217, 107, 39, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(217, 107, 39, 0.05) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 62%);
  opacity: 0.45;
}

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

button,
input {
  font: inherit;
}

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

.soon-body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(217, 107, 39, 0.16), transparent 28%),
    linear-gradient(135deg, #fffaf3 0%, #f8f1e8 48%, #f2e3d1 100%);
}

.soon-page {
  min-height: 100vh;
  padding: clamp(18px, 3.5vw, 44px);
}

.soon-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - clamp(36px, 8vw, 92px));
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 4.4vw, 58px);
  align-items: center;
}

.soon-hero::before,
.soon-hero::after {
  z-index: 0;
  position: absolute;
  content: "";
  pointer-events: none;
}

.soon-hero::before {
  top: 7%;
  right: 5%;
  width: 118px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 107, 39, 0.72), transparent);
}

.soon-hero::after {
  right: 16%;
  bottom: 12%;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(217, 107, 39, 0.24);
  border-radius: 50%;
  filter: blur(0.2px);
}

.soon-visual {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  min-height: min(72vh, 720px);
  border-radius: 8px;
  background: #f6e7d7;
  box-shadow: 0 30px 90px rgba(44, 28, 16, 0.16);
  pointer-events: none;
}

.soon-visual::before,
.soon-visual::after {
  display: none;
  content: none;
}

.soon-visual img {
  width: 100%;
  height: 100%;
  min-height: min(72vh, 720px);
  object-fit: cover;
  backface-visibility: hidden;
  pointer-events: none;
  transform: translateZ(0);
  user-select: none;
}

.soon-content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 580px;
  gap: 20px;
}

.soon-brand {
  width: max-content;
  margin-bottom: clamp(18px, 4vw, 48px);
}

.soon-content h1 {
  max-width: 620px;
  margin: 0;
  color: #24211f;
  font-size: clamp(40px, 4.9vw, 62px);
  line-height: 0.98;
  letter-spacing: 0;
}

.soon-content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: #5f5a54;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
}

.soon-form {
  display: grid;
  max-width: 540px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  margin-top: 12px;
}

.soon-form label,
.soon-form label span {
  display: grid;
}

.soon-form label {
  gap: 8px;
}

.soon-form label span {
  color: #6a625b;
  font-size: 12px;
  font-weight: 800;
}

.soon-form input {
  min-height: 50px;
  border: 1px solid rgba(36, 33, 31, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.78);
  padding: 0 18px;
  outline: 0;
}

.soon-form .primary-button {
  min-width: 122px;
}

.soon-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.soon-status[data-type="success"] {
  color: #3d7a42;
}

.soon-status[data-type="error"] {
  color: #b93d1f;
}

.soon-notes {
  display: flex;
  max-width: 620px;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.soon-notes span {
  border: 1px solid rgba(217, 107, 39, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.6);
  color: #504a44;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
}

.promo-slider {
  overflow: hidden;
  background: linear-gradient(90deg, #e66f24, #f18431);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  position: relative;
}

.promo-slider::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  content: "";
  transform: translateX(-100%);
  animation: bandSheen 5.5s ease-in-out infinite;
}

.promo-track {
  display: grid;
  min-height: 38px;
  place-items: center;
  opacity: 0;
  text-align: center;
  transition: opacity 180ms ease, transform 180ms ease;
  transform: translateY(4px);
}

.promo-track.message-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(248, 241, 232, 0.92);
  backdrop-filter: blur(20px);
}

.site-header::after {
  position: absolute;
  right: clamp(16px, 5vw, 72px);
  bottom: -1px;
  left: clamp(16px, 5vw, 72px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 107, 39, 0.45), transparent);
  content: "";
}

.service-row,
.main-row,
.category-row {
  padding-inline: clamp(16px, 5vw, 72px);
}

.service-row {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  padding-block: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.main-row {
  display: grid;
  grid-template-columns: auto minmax(220px, 560px) auto;
  gap: 24px;
  align-items: center;
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 150px;
}

.brand::before {
  width: 38px;
  height: 46px;
  display: inline-block;
  background: url("assets/yonibon-thread-carrot.svg") center / contain no-repeat;
  content: "";
  filter: drop-shadow(0 7px 11px rgba(217, 107, 39, 0.16));
  transform: rotate(-7deg);
}

.brand::after {
  color: #24211f;
  content: "yonibon";
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.brand::before {
  animation: carrotGlow 4.5s ease-in-out infinite;
}

.brand {
  position: relative;
}

.brand span {
  display: none;
}

.brand::before {
  flex: 0 0 auto;
}

.brand-logo {
  display: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, #fff 0 9%, transparent 10%),
    linear-gradient(135deg, #ffe089, #ffc3b6 45%, #b9dcec);
  font-size: 13px;
  box-shadow: var(--soft-shadow);
}

.search-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.86);
}

.search-box span {
  width: 15px;
  height: 15px;
  border: 2px solid #111;
  border-radius: 50%;
  position: relative;
}

.search-box span::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  border-radius: 2px;
  background: #111;
  content: "";
  transform: rotate(45deg);
}

.search-box input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
}

.quick-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
}

.quick-actions a {
  display: inline-flex;
  width: 42px;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.68);
  padding: 0;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quick-actions a::after {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 30;
  border-radius: 8px;
  background: #111;
  color: #fff;
  content: attr(data-label);
  font-size: 11px;
  font-weight: 500;
  opacity: 0;
  padding: 5px 8px;
  pointer-events: none;
  transform: translate(-50%, -3px);
  transition: opacity 150ms ease, transform 150ms ease;
  white-space: nowrap;
}

.quick-actions a:hover::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.quick-icon::before {
  display: block;
  width: 22px;
  height: 22px;
  background: center / contain no-repeat;
  content: "";
  opacity: 0.82;
  transition: opacity 180ms ease, transform 180ms ease;
}

.quick-icon:hover::before {
  opacity: 1;
  transform: scale(1.04);
}

.truck-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 8.5h9.2v7.1H4.5V8.5Z' stroke='%23111' stroke-width='1.35' stroke-linejoin='round'/%3E%3Cpath d='M13.7 11h3.1l2.7 2.8v1.8h-5.8V11Z' stroke='%23111' stroke-width='1.35' stroke-linejoin='round'/%3E%3Ccircle cx='7.2' cy='17.1' r='1.25' stroke='%23111' stroke-width='1.35'/%3E%3Ccircle cx='17.1' cy='17.1' r='1.25' stroke='%23111' stroke-width='1.35'/%3E%3C/svg%3E");
}

.user-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='8.2' r='3' stroke='%23111' stroke-width='1.35'/%3E%3Cpath d='M6.2 19.3c.8-3.3 2.8-5 5.8-5s5 1.7 5.8 5' stroke='%23111' stroke-width='1.35' stroke-linecap='round'/%3E%3C/svg%3E");
}

.heart-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 19.2s-6.3-4-6.3-9.1a3.55 3.55 0 0 1 6.3-2.25 3.55 3.55 0 0 1 6.3 2.25c0 5.1-6.3 9.1-6.3 9.1Z' stroke='%23111' stroke-width='1.35' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.bag-icon-link::before {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.2 8.4h9.6l-.8 10.8H8L7.2 8.4Z' stroke='%23111' stroke-width='1.35' stroke-linejoin='round'/%3E%3Cpath d='M9.5 8.4a2.5 2.5 0 0 1 5 0' stroke='%23111' stroke-width='1.35' stroke-linecap='round'/%3E%3C/svg%3E");
}

.bag-icon-link::after {
  content: attr(data-label);
}

.quick-actions a:hover {
  transform: translateY(-2px);
  background: #fff;
  border-color: rgba(217, 107, 39, 0.28);
  box-shadow: 0 10px 24px rgba(217, 107, 39, 0.12);
}

.cart-pill {
  gap: 0;
}

.cart-pill strong {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
}

.category-row {
  display: flex;
  gap: 28px;
  align-items: center;
  overflow-x: auto;
  padding-block: 12px;
  border-top: 1px solid rgba(222, 222, 216, 0.74);
  font-size: 13px;
  font-weight: 500;
  scrollbar-width: none;
}

.category-row::-webkit-scrollbar,
.service-row::-webkit-scrollbar,
.quick-actions::-webkit-scrollbar {
  display: none;
}

.category-row a {
  position: relative;
  white-space: nowrap;
}

.category-row a::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 200ms ease;
}

.category-row a:hover::after,
.category-row a.active::after {
  transform: scaleX(1);
}

.sale-link {
  color: var(--sale);
}

.home-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #ede9e2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: clamp(24px, 4vw, 42px) clamp(16px, 5vw, 72px);
  opacity: 0;
  transform: scale(0.985);
  pointer-events: none;
  transition: opacity 520ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 8, 0.72) 0%, rgba(10, 9, 8, 0.44) 38%, rgba(10, 9, 8, 0.1) 76%),
    linear-gradient(0deg, rgba(10, 9, 8, 0.28), transparent 42%);
  content: "";
}

.home-hero::before {
  position: absolute;
  top: 14%;
  left: 4%;
  z-index: 2;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 138, 52, 0.35);
  border-radius: 42% 58% 52% 48%;
  content: "";
  filter: drop-shadow(0 0 18px rgba(217, 107, 39, 0.14));
  pointer-events: none;
  animation: lineFloat 9s ease-in-out infinite alternate;
}

.eyebrow {
  margin: 0 0 12px;
  color: #c95e15;
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(29px, 3.4vw, 44px);
  line-height: 1.1;
  font-weight: 650;
}

h2 {
  margin: 0;
  font-size: clamp(23px, 2.6vw, 34px);
  line-height: 1.12;
  font-weight: 650;
}

h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
}

.hero-text p:not(.eyebrow) {
  max-width: 500px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 550;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button {
  background: linear-gradient(135deg, #e66f24, #d65d16);
  color: #fff;
  box-shadow: 0 16px 34px rgba(217, 107, 39, 0.22);
}

.ghost-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.64);
}

.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(217, 107, 39, 0.18);
}

.hero-media {
  position: absolute;
  inset: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.hero-media::before {
  display: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.liquid-card {
  transform: none;
}

.hero-text {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-text .eyebrow {
  color: #ff9a52;
}

.hero-text h1 {
  color: #fffaf4;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero-controls {
  position: absolute;
  right: clamp(16px, 5vw, 72px);
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero-arrow {
  display: none;
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dot {
  width: 48px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.hero-dot.active {
  background: var(--orange);
  color: #fff;
}

.category-showcase {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 14px;
  padding: clamp(24px, 5vw, 56px) clamp(16px, 5vw, 72px);
}

.category-tile {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-tile::before {
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 14px;
  content: "";
  pointer-events: none;
}

.category-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 17, 17, 0.52), transparent 58%);
  content: "";
  pointer-events: none;
}

.category-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

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

.category-tile:hover img {
  transform: scale(1.045);
}

.category-tile span {
  position: relative;
  z-index: 1;
  color: #c95e15;
  font-size: 11px;
  font-weight: 600;
}

.category-tile strong {
  position: relative;
  z-index: 1;
  max-width: 320px;
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.12;
  color: #fff;
  font-weight: 650;
}

.category-tile.big {
  background: var(--orange-soft);
}

.category-tile.mint {
  background: var(--green);
}

.category-tile.sky {
  background: var(--blue);
}

.category-tile.coral {
  background: linear-gradient(135deg, #ffe0d7, #fff0df);
}

.content-band,
.product-rail,
.liquid-service,
.listing-page,
.simple-page {
  padding: clamp(42px, 7vw, 86px) clamp(16px, 5vw, 72px);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.content-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1fr;
  gap: 28px;
  align-items: center;
  background: #fff;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-cloud a,
.filter-chip {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 0 17px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.section-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 22px;
}

.section-title > a {
  font-size: 13px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.filter-chip {
  cursor: pointer;
}

.filter-chip.active {
  background: var(--orange);
  color: #fff;
}

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

.product-card {
  overflow: hidden;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
  animation: cardIn 420ms ease both;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.product-card::after {
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(230, 111, 36, 0.38), transparent 34%, transparent 66%, rgba(230, 111, 36, 0.22)) border-box;
  content: "";
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

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

.product-card:hover::after {
  opacity: 1;
}

.product-art {
  min-height: 240px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--product-bg);
}

.product-art::before {
  display: none;
}

.product-art img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-art img {
  transform: scale(1.035);
}

/*
.product-art::before {
  width: 112px;
  height: 136px;
  border: 8px solid rgba(17, 17, 17, 0.1);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.44);
  content: "";
  clip-path: var(--shape);
  filter: drop-shadow(0 12px 16px rgba(17, 17, 17, 0.08));
}
*/

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  padding: 7px 10px;
  color: #c95e15;
  font-size: 12px;
  font-weight: 600;
}

.product-info {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.product-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.product-meta p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.price {
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.add-button,
.favorite-button {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #e66f24, #d65d16);
  color: #fff;
  font-size: 13px;
  font-weight: 550;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.add-button::after,
.primary-button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  content: "";
  transform: translateX(-120%);
  transition: transform 520ms ease;
}

.add-button:hover::after,
.primary-button:hover::after {
  transform: translateX(120%);
}

.favorite-button {
  width: 44px;
  border: 1px solid var(--line);
  background: #fff;
  color: #d65d16;
}

.add-button.added,
.favorite-button.active {
  background: var(--orange-soft);
  color: #111;
}

.liquid-service {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: linear-gradient(135deg, #fff0df, #fff7e2);
}

.liquid-service article {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  padding: 24px;
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.liquid-service article::after {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 128px;
  height: 128px;
  border-radius: 44% 56% 60% 40%;
  background: rgba(244, 123, 32, 0.26);
  content: "";
  animation: liquidBreath 6s ease-in-out infinite alternate;
}

.liquid-service span {
  color: #c95e15;
  font-size: 12px;
  font-weight: 600;
}

.liquid-service strong {
  display: block;
  margin-top: 18px;
  font-size: 19px;
  font-weight: 650;
}

.liquid-service p {
  max-width: 310px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
  font-weight: 500;
}

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

.blog-card {
  overflow: hidden;
  display: grid;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.05);
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.blog-card a {
  color: #d65d16;
  font-weight: 600;
}

.page-hero {
  padding: clamp(42px, 7vw, 86px) clamp(16px, 5vw, 72px);
  background: linear-gradient(135deg, #fff, #edf6f1);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.simple-card {
  max-width: 760px;
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: var(--soft-shadow);
}

.form-grid {
  display: grid;
  gap: 12px;
}

.account-page {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 420px));
  gap: 18px;
  align-items: start;
}

.account-card h2 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: 0;
}

.auth-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.auth-status[data-type="success"] {
  color: #3d7a42;
}

.auth-status[data-type="error"] {
  color: #b93d1f;
}

.admin-body {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
  background: #f7efe5;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  gap: 26px;
  padding: 28px 22px;
  border-right: 1px solid rgba(36, 33, 31, 0.1);
  background: rgba(255, 250, 243, 0.74);
  backdrop-filter: blur(18px);
}

.admin-sidebar .brand {
  min-width: auto;
}

.admin-sidebar nav {
  display: grid;
  gap: 8px;
}

.admin-sidebar nav a,
.admin-sidebar .ghost-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(36, 33, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  color: #302c29;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
}

.admin-main {
  display: grid;
  gap: 22px;
  padding: 32px clamp(18px, 4vw, 46px) 48px;
}

.admin-topbar,
.admin-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.admin-topbar h1,
.admin-section-title h2 {
  margin: 0;
  letter-spacing: 0;
}

.admin-topbar h1 {
  font-size: clamp(30px, 4vw, 46px);
}

.admin-section-title h2 {
  font-size: 24px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 12px;
}

.admin-stats article,
.admin-panel {
  border: 1px solid rgba(36, 33, 31, 0.09);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.82);
  box-shadow: var(--soft-shadow);
}

.admin-stats article {
  padding: 18px;
}

.admin-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.admin-stats strong {
  display: block;
  margin-top: 8px;
  color: #24211f;
  font-size: 28px;
}

.admin-panel {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 10px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(217, 107, 39, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
}

.admin-form input,
.admin-form select,
.admin-table select {
  min-height: 40px;
  border: 1px solid rgba(36, 33, 31, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #24211f;
  padding: 0 11px;
  font-size: 13px;
}

.admin-check {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-check input {
  min-height: auto;
}

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

.admin-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.admin-table th {
  color: var(--muted);
  font-size: 11px;
  text-align: left;
  text-transform: uppercase;
}

.admin-table th,
.admin-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(36, 33, 31, 0.08);
}

.admin-table td strong,
.admin-table td small {
  display: block;
}

.admin-table td small {
  margin-top: 4px;
  color: var(--muted);
}

.table-actions {
  display: flex;
  gap: 6px;
}

.table-actions button,
.admin-table td > button {
  min-height: 34px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: white;
  padding: 0 11px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.form-grid input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 34px clamp(16px, 5vw, 72px);
  background: #111;
  color: #fff;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes promoMove {
  to {
    transform: translateX(-50%);
  }
}

@keyframes bandSheen {
  0%,
  42% {
    transform: translateX(-100%);
  }

  72%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes carrotGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0 rgba(217, 107, 39, 0));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(217, 107, 39, 0.32));
  }
}

@keyframes lineFloat {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(18px, 10px, 0) rotate(8deg);
  }
}

@keyframes liquidBreath {
  from {
    border-radius: 44% 56% 60% 40%;
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    border-radius: 58% 42% 42% 58%;
    transform: translate3d(-12px, 8px, 0) scale(1.05);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .admin-body {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-sidebar nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .admin-stats,
  .admin-form,
  .account-page {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .main-row {
    grid-template-columns: 1fr auto;
  }

  .search-box {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hero-slide,
  .content-band,
  .soon-hero {
    grid-template-columns: 1fr;
  }

  .category-showcase,
  .product-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .admin-sidebar nav,
  .admin-stats,
  .admin-form,
  .account-page,
  .soon-form {
    grid-template-columns: 1fr;
  }

  .soon-page {
    padding: 0;
  }

  .soon-hero {
    min-height: 100vh;
    gap: 0;
  }

  .soon-visual {
    min-height: 42vh;
    border-radius: 0;
  }

  .soon-visual img {
    min-height: 42vh;
  }

  .soon-content {
    padding: 28px 18px 38px;
  }

  .admin-topbar,
  .admin-section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .service-row {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .main-row {
    gap: 12px;
  }

  .brand {
    min-width: 132px;
  }

  .brand::after {
    font-size: 22px;
  }

  .quick-actions {
    max-width: 100%;
    grid-column: 1 / -1;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .home-hero {
    min-height: 680px;
  }

  .hero-slide {
    align-content: start;
    padding-top: 34px;
    align-items: end;
  }

  h1 {
    font-size: clamp(29px, 8vw, 39px);
  }

  .hero-media img {
    height: 100%;
  }

  .hero-text {
    margin-top: auto;
  }

  .hero-arrow {
    display: none;
  }

  .hero-controls {
    right: 20px;
    bottom: 18px;
  }

  .category-showcase,
  .product-grid,
  .liquid-service,
  .product-detail,
  .blog-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .category-tile {
    min-height: 190px;
  }

  .section-title {
    display: grid;
    align-items: start;
  }
}
