:root {
  --bg: #faf9f6;
  --surface: #f4f2ec;
  --text: #1a1a1a;
  --muted: #5a5a5a;
  --gold: #b5a46d;
  --gold-soft: #cbc09c;
  --line: #d8d2c0;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}

a {
  color: inherit;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(216, 210, 192, 0.86);
  backdrop-filter: blur(10px);
}

.header-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.store-top-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 6px 0;
  min-height: 56px;
}

.left-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo {
  text-decoration: none;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  max-width: 140px;
}

.main-nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 4px;
  width: 100%;
  position: relative;
  overflow: visible;
}

.main-nav a,
.nav-link {
  text-decoration: none;
  border: none;
  padding: 13px 11px;
  color: var(--text);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.65px;
  text-transform: uppercase;
  transition: color 0.22s ease, background 0.22s ease;
  position: relative;
}

.main-nav a:hover,
.nav-link:hover {
  color: var(--gold);
  background: rgba(181, 164, 109, 0.08);
}

.nav-link.is-active {
  color: var(--gold);
  background: rgba(181, 164, 109, 0.1);
}

.mini-admin-link {
  border-color: var(--gold) !important;
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.main-nav > .nav-link,
.main-nav > .nav-item > .nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
}

.has-dropdown > .nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  margin-top: -2px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.75;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  width: min(1060px, 94vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  box-shadow: 0 20px 36px rgba(32, 28, 20, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 40;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-column {
  padding: 4px 12px 8px;
  border-left: 1px solid rgba(216, 210, 192, 0.6);
}

.dropdown-column:first-child {
  border-left: none;
}

.nav-dropdown h4 {
  margin: 0 0 9px;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3f3419;
}

.nav-dropdown a {
  display: block;
  text-decoration: none;
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.6px;
  text-transform: none;
  padding: 7px 8px;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(181, 164, 109, 0.11);
}

.nav-dropdown a.is-active {
  color: #3f3419;
  background: rgba(181, 164, 109, 0.17);
  font-weight: 600;
}

.dropdown-group {
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(216, 210, 192, 0.55);
}

.dropdown-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.dropdown-group p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 600;
}

.icon-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--gold-soft);
  background: rgba(244, 242, 236, 0.55);
  border-radius: 50%;
  appearance: none;
  display: grid;
  place-items: center;
  position: relative;
  overflow: visible;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.icon-btn:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
}

.nav-toggle {
  display: none;
}

.mobile-category-panel {
  display: none;
}
.icon-svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(420px, 65vh, 720px);
  overflow: hidden;
  background: #231d13;
}

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

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(108%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center start;
  text-align: left;
  color: #f8f2df;
  background: linear-gradient(108deg, rgba(23, 18, 12, 0.72) 0%, rgba(23, 18, 12, 0.42) 46%, rgba(23, 18, 12, 0.18) 100%);
  padding: 30px clamp(20px, 6vw, 90px);
}

.hero-overlay__inner {
  width: min(760px, 92%);
}

.eyebrow {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-overlay h1 {
  margin-top: 8px;
  line-height: 1.05;
  font-size: clamp(2rem, 5vw, 4.2rem);
  text-wrap: balance;
}

.hero-subtitle {
  margin: 14px 0 0;
  max-width: 52ch;
  color: rgba(248, 242, 223, 0.94);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.hero-cta {
  margin-top: 22px;
  width: fit-content;
  border-color: #d9c189;
  color: #f4e5c2;
  background: rgba(155, 118, 43, 0.16);
}

.hero-cta:hover {
  background: #c6a358;
  border-color: #c6a358;
  color: #221b12;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 1px solid rgba(242, 228, 194, 0.54);
  border-radius: 50%;
  background: rgba(30, 24, 17, 0.42);
  color: #f5e6c1;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  z-index: 4;
}

.hero-nav:hover {
  background: rgba(198, 163, 88, 0.9);
  border-color: rgba(198, 163, 88, 0.9);
  color: #251f14;
}

.hero-nav--prev {
  left: 16px;
}

.hero-nav--next {
  right: 16px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(243, 231, 202, 0.78);
  background: rgba(33, 26, 17, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dot.active {
  transform: scale(1.15);
  background: #d8b770;
}

.section {
  padding: 100px 0;
}

.section h2 {
  margin-bottom: 26px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.whats-new-section {
  display: grid;
  grid-template-columns: 0.95fr 1.55fr;
  gap: 40px;
  align-items: start;
}

.whats-new-intro {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(244, 242, 236, 0.9), rgba(255, 255, 255, 0.56));
  padding: 26px;
  border-radius: 14px;
  position: sticky;
  top: 118px;
}

.whats-new-eyebrow {
  color: var(--gold);
}

.whats-new-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-grid,
.product-grid {
  display: grid;
  gap: 40px;
}

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

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

.news-card,
.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
  border-radius: 14px;
}

.news-card img,
.card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
}

.news-card:hover img,
.card:hover img {
  transform: scale(1.06);
}

.news-card-body,
.card-content {
  padding: 18px 18px 20px;
}

.news-date {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "Manrope", sans-serif;
}

.news-card h3,
.card h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: none;
  line-height: 1.8;
}

.news-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.2px;
  line-height: 1.7;
}

.news-price {
  margin: 0;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.card-price {
  margin: 0 0 14px;
  color: #7d672f;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-weight: 600;
}

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

.category-card {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  padding: 14px 12px;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.category-card:hover,
.category-card.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(181, 164, 109, 0.08);
}

.instagram-feed {
  padding: 56px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.instagram-feed__header {
  margin-bottom: 18px;
}

.instagram-feed__header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.instagram-card {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  background: #f7f7f7;
  border: 1px solid #ece8de;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.instagram-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.instagram-card::after {
  content: "View Post";
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(20, 20, 20, 0.65);
  padding: 6px 10px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.instagram-card:hover,
.instagram-card:focus-visible {
  transform: translateY(-4px);
  border-color: #d5c8a2;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.instagram-card:hover img,
.instagram-card:focus-visible img {
  transform: scale(1.04);
}

.instagram-card:hover::after,
.instagram-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.instagram-feed__status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.instagram-feed__status.is-error {
  color: #9e4b4b;
}

.instagram-feed__cta {
  margin-top: 16px;
}

.instagram-feed__follow {
  display: inline-block;
  text-decoration: none;
  border: 1px solid #d5c8a2;
  color: #8a7440;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.instagram-feed__follow:hover {
  background: #b8a06a;
  color: #fff;
}

.btn-primary,
.btn-ghost {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn-primary:hover,
.btn-ghost:hover {
  background: var(--gold);
  color: var(--bg);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.card-actions .btn-primary,
.card-actions .btn-ghost {
  flex: 1;
  text-align: center;
}

body.cart-open {
  overflow: hidden;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #9d3535;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: grid;
  place-items: center;
  line-height: 1;
  z-index: 2;
}

.cart-badge.is-empty {
  display: none;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 80;
}

.cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 95vw);
  height: 100vh;
  background: #fff;
  border-left: 1px solid var(--line);
  box-shadow: -10px 0 28px rgba(0, 0, 0, 0.14);
  transform: translateX(100%);
  transition: transform 0.22s ease;
  z-index: 90;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

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

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 12px;
  border-bottom: 1px solid var(--line);
}

.cart-head h3 {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cart-close {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
}

.cart-items {
  overflow-y: auto;
  padding: 10px 14px;
  display: grid;
  gap: 10px;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
}

.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.cart-item-meta h4 {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  margin: 0 0 3px;
}

.cart-item-meta p {
  margin: 0 0 2px;
  font-size: 11px;
  color: var(--muted);
}

.cart-qty-row {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cart-qty-btn,
.cart-remove-btn {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 11px;
  padding: 3px 7px;
  cursor: pointer;
  border-radius: 6px;
}

.cart-foot {
  border-top: 1px solid var(--line);
  padding: 12px 14px;
  display: grid;
  gap: 10px;
}

.cart-summary {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.6px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 70px 0 24px;
  background: rgba(244, 242, 236, 0.55);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.footer-brand p,
.footer-col p,
.footer-col a {
  margin: 0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
  text-decoration: none;
}

.footer-col {
  display: grid;
  gap: 2px;
  align-content: start;
}

.footer-col h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.muted {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hidden {
  display: none !important;
}

.category-page .section {
  padding: 90px 0 110px;
}

.category-title {
  margin: 12px 0 12px;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
}

.category-subtitle {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.5px;
  line-height: 1.8;
  max-width: 70ch;
}

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

.placeholder-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  padding: 20px;
}

.placeholder-card h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.placeholder-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.product-detail img {
  width: 100%;
  border: 1px solid var(--line);
  object-fit: cover;
}

.product-meta h1 {
  margin-bottom: 10px;
  font-size: 2.4rem;
}

.admin-page {
  background:
    radial-gradient(circle at 15% 0%, rgba(203, 192, 156, 0.2), transparent 36%),
    radial-gradient(circle at 85% 100%, rgba(181, 164, 109, 0.14), transparent 42%),
    var(--bg);
}

.admin-header {
  background: rgba(250, 249, 246, 0.93);
  border-bottom-color: rgba(181, 164, 109, 0.38);
  backdrop-filter: blur(8px);
}

.admin-top {
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  text-align: center;
}

.admin-brand-wrap {
  display: grid;
  align-content: center;
  gap: 4px;
  justify-items: center;
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.admin-brand .logo-img {
  height: 56px;
}

.admin-brand-name {
  font-size: 1.7rem;
}

.admin-subtitle {
  margin: 0;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.admin-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  white-space: nowrap;
  padding: 10px 14px;
  border-color: rgba(181, 164, 109, 0.55);
  background: rgba(255, 255, 255, 0.7);
}

.admin-shell {
  width: min(1240px, 94%);
  padding-top: 38px;
}

.admin-login,
.admin-block,
.stat-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 28px rgba(32, 28, 20, 0.08);
}

.admin-login {
  width: min(840px, 100%);
  margin: 0 auto 26px;
  padding: 30px;
}

.admin-login-hero h1 {
  margin: 8px 0 10px;
  font-size: clamp(2rem, 4vw, 2.55rem);
}

.admin-login-hero .muted {
  max-width: 66ch;
  line-height: 1.6;
}

.login-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 14px;
}

.admin-login input,
.stack-form input,
.stack-form select,
.stack-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 13px;
  margin-bottom: 10px;
  font-size: 13px;
  letter-spacing: 0.4px;
}

.stack-form textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-login input:focus,
.stack-form input:focus,
.stack-form select:focus,
.stack-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181, 164, 109, 0.2);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 10px;
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

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

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

.stat-card {
  padding: 16px 16px 14px;
}

.stat-card p {
  margin: 0 0 6px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-card h3 {
  font-size: 1.85rem;
}

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

.admin-block {
  padding: 18px;
}

.block-title {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.block-title h2 {
  font-size: clamp(1.4rem, 2.1vw, 1.7rem);
}

.badge {
  border: 1px solid rgba(181, 164, 109, 0.55);
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #78653a;
  border-radius: 999px;
  background: rgba(181, 164, 109, 0.12);
}

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

.admin-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--line);
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 10px;
}

.item-main strong {
  display: block;
  margin-bottom: 4px;
  font-weight: 600;
  word-break: break-word;
}

.item-meta {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  line-height: 1.5;
  word-break: break-word;
}

.item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.copy-btn,
.delete-product,
.delete-post {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 7px 10px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.copy-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(181, 164, 109, 0.08);
}

.delete-product,
.delete-post {
  border-color: #9f6a62;
  color: #9f6a62;
}

.delete-product:hover,
.delete-post:hover {
  background: rgba(159, 106, 98, 0.08);
}

.status-text {
  margin: 10px 0 0;
  line-height: 1.5;
}

.admin-page .btn-primary {
  border-radius: 10px;
  background: rgba(181, 164, 109, 0.12);
}

.admin-page .btn-primary:hover {
  background: var(--gold);
}

.admin-page .btn-ghost {
  border-radius: 999px;
  white-space: nowrap;
}

.manage-section {
  background: rgba(235, 227, 199, 0.55);
  border-color: rgba(181, 164, 109, 0.45);
}

.hero-manage-links {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

.hero-slide-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
}

.hero-slide-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  border-right: 1px solid var(--line);
}

.hero-slide-card__content {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.hero-slide-card__content h3 {
  font-size: 1.35rem;
}

.hero-slide-card__subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.hero-slide-card__meta {
  margin: 0;
  color: #7c6a44;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .whats-new-section {
    grid-template-columns: 1fr;
  }

  .whats-new-intro {
    position: static;
  }

  .whats-new-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 768px) {
  .instagram-feed__grid {
    grid-template-columns: 1fr;
  }

  .site-header .container.header-wrap {
    width: 100%;
    max-width: none;
    padding-left: 12px;
    padding-right: 12px;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
  }

  .header-wrap {
    padding: 0;
    gap: 0;
  }

  .store-top-row {
    min-height: 85px;
    padding: 6px 0;
  }

  .left-actions {
    gap: 6px;
  }

  .left-actions .icon-btn:first-child {
    display: none;
  }

  .admin-top {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 10px 0;
  }

  .admin-page .btn-ghost {
    position: static;
    transform: none;
  }

  .admin-brand-wrap {
    justify-items: center;
    gap: 2px;
  }

  .admin-shell {
    width: min(1200px, 92%);
    padding-top: 28px;
  }

  .admin-login {
    padding: 22px;
  }

  .logo-img {
    height: 46px;
    max-width: 150px;
  }

  .store-top-row .icon-btn {
    width: 42px;
    height: 42px;
  }

  .admin-header .logo-img {
    height: 48px;
    max-width: 170px;
  }

  .admin-header .admin-subtitle {
    text-align: center;
    font-size: 10px;
    letter-spacing: 1.3px;
  }

  .admin-home-link {
    width: 100%;
    max-width: 240px;
    text-align: center;
    padding: 9px 12px;
  }

  .hero-manage-links .admin-home-link {
    width: auto;
    max-width: none;
  }

  .hero-overlay {
    place-items: center;
    text-align: center;
    padding: 24px 20px;
  }

  .hero-overlay__inner {
    width: min(780px, 100%);
  }

  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .hero-nav--prev {
    left: 10px;
  }

  .hero-nav--next {
    right: 10px;
  }

  .hero-dots {
    bottom: 16px;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 84px);
    margin-top: 2px;
    padding: 6px;
    width: 100%;
    border: 1px solid rgba(216, 210, 192, 0.72);
    border-radius: 0;
    border-left: none;
    border-right: none;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 6px 16px rgba(30, 26, 18, 0.06);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    font-size: 12px;
    padding: 8px 10px;
    white-space: normal;
    line-height: 1.35;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
  }

  .nav-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 74px 0;
  }

  .has-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .has-dropdown > .nav-link::after {
    margin-left: auto;
    transform: rotate(45deg);
    margin-top: -2px;
    transition: transform 0.2s ease;
  }

  .has-dropdown.mobile-open > .nav-link::after {
    transform: rotate(225deg);
    margin-top: 2px;
  }

  .nav-dropdown {
    display: none !important;
  }

  .mobile-category-panel {
    display: none;
    margin-top: 6px;
    width: 100%;
    border: 1px solid rgba(216, 210, 192, 0.72);
    border-radius: 8px;
    background: #faf9f6;
    overflow: hidden;
  }

  .has-dropdown.mobile-open .mobile-category-panel {
    display: block;
  }

  .mobile-cat-section {
    border-top: 1px solid rgba(216, 210, 192, 0.42);
  }

  .mobile-cat-section:first-child {
    border-top: none;
  }

  .mobile-col-title,
  .mobile-group-title {
    list-style: none;
    cursor: pointer;
  }

  .mobile-col-title::-webkit-details-marker,
  .mobile-group-title::-webkit-details-marker {
    display: none;
  }

  .mobile-col-title {
    margin: 0;
    padding: 10px 12px;
    color: #3f3419;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(181, 164, 109, 0.12);
    position: relative;
    line-height: 1.35;
  }

  .mobile-group-title {
    margin: 0;
    padding: 9px 12px;
    color: #5a5a5a;
    font-size: 11px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.68);
    border-top: 1px solid rgba(216, 210, 192, 0.36);
    position: relative;
    line-height: 1.35;
  }

  .mobile-col-title::after,
  .mobile-group-title::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.2s ease;
  }

  .mobile-cat-section[open] > .mobile-col-title::after,
  .mobile-group[open] > .mobile-group-title::after {
    transform: translateY(-35%) rotate(225deg);
  }

  .mobile-cat-section > a,
  .mobile-group > a {
    display: block;
    padding: 10px 12px;
    color: var(--text);
    text-decoration: none;
    font-size: 12px;
    line-height: 1.35;
    border-top: 1px solid rgba(216, 210, 192, 0.36);
    background: transparent;
  }

  .mobile-group > a {
    padding-left: 20px;
  }

  .category-placeholder {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-footer {
    padding-top: 48px;
  }

  .whats-new-grid,
  .product-grid,
  .category-grid,
  .product-detail,
  .stats-grid,
  .admin-grid,
  .login-row {
    grid-template-columns: 1fr;
  }

  .news-card img,
  .card img {
    height: 300px;
  }

  .item-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .admin-item {
    flex-direction: column;
    gap: 10px;
  }

  .hero-manage-links {
    position: static;
    transform: none;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-slide-card {
    grid-template-columns: 1fr;
  }

  .hero-slide-card img {
    border-right: none;
    border-bottom: 1px solid var(--line);
    min-height: 190px;
  }

  .block-title {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .news-card img,
  .card img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(1200px, 94%);
  }

  .hero-slider {
    height: clamp(360px, 56vh, 520px);
  }

  .hero-overlay h1 {
    font-size: clamp(1.45rem, 8.2vw, 2.1rem);
    line-height: 1.12;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .hero-nav {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .section {
    padding: 58px 0;
  }

  .whats-new-intro,
  .news-card-body,
  .card-content,
  .admin-block,
  .admin-login {
    padding: 16px;
  }

  .news-card h3,
  .card h3 {
    font-size: 1.28rem;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .hero-manage-links .btn-ghost {
    width: auto;
    max-width: 100%;
  }

  .login-row .btn-primary {
    width: 100%;
  }
}
