.announcement-bar {
  background: rgba(17, 34, 30, 0.96);
  color: #f9f5ef;
  font-size: 0.9rem;
}

.announcement-bar__inner,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.announcement-bar__inner {
  padding: 0.7rem 0;
}

.announcement-bar p {
  margin: 0;
}

.announcement-bar a {
  color: var(--accent-soft);
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-sticky {
  background: rgba(246, 242, 235, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px rgba(22, 33, 27, 0.08);
  padding: 0.85rem 0;
}

.header-shell {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(210, 193, 164, 0.36);
  border-radius: 36px;
  padding: 1.1rem 1.25rem;
  backdrop-filter: blur(16px);
}

.header-brand-row,
.header-nav-row,
.header-quick,
.header-auth {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-brand-row,
.header-nav-row {
  justify-content: space-between;
}

.header-nav-row {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(210, 193, 164, 0.32);
}

.header-quick {
  justify-content: flex-end;
}

.header-auth {
  justify-content: flex-end;
  flex-shrink: 0;
  min-width: 0;
}

.auth-guestbar,
.account-pill,
.account-pill__main,
.auth-pill {
  display: inline-flex;
  align-items: center;
}

.auth-guestbar,
.account-pill {
  gap: 0.65rem;
}

.auth-link {
  padding: 0.7rem 0.2rem 0.7rem 0.6rem;
  color: var(--muted);
  font-weight: 700;
}

.auth-link:hover,
.auth-link.is-active {
  color: var(--text);
}

.auth-pill,
.account-pill {
  border: 1px solid rgba(210, 193, 164, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 34px rgba(22, 33, 27, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.auth-pill:hover,
.account-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(22, 33, 27, 0.12);
}

.auth-pill {
  gap: 0.95rem;
  padding: 0.42rem 0.45rem 0.42rem 1rem;
}

.auth-pill.is-active {
  border-color: rgba(17, 34, 30, 0.24);
}

.auth-pill__copy,
.account-pill__copy {
  display: grid;
  line-height: 1.12;
}

.auth-pill__copy strong,
.account-pill__copy strong {
  font-size: 0.92rem;
}

.auth-pill__copy small,
.account-pill__copy small {
  color: var(--muted);
  font-size: 0.72rem;
}

.auth-pill__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(17, 34, 30, 0.98), rgba(23, 79, 73, 0.92));
  color: #f9f5ef;
}

.auth-pill__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.account-pill {
  padding: 0.4rem;
}

.account-pill__main {
  gap: 0.72rem;
  padding: 0.16rem 0.6rem 0.16rem 0.16rem;
  border-radius: 999px;
}

.account-pill__main.is-active {
  background: rgba(17, 34, 30, 0.06);
}

.account-pill__avatar {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(187, 109, 40, 0.94), rgba(17, 34, 30, 0.92));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.account-pill__logout {
  width: 42px;
  height: 42px;
  border-color: transparent;
  background: rgba(17, 34, 30, 0.06);
}

.account-pill__logout:hover {
  background: rgba(17, 34, 30, 0.96);
  color: #f9f5ef;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand--compact {
  pointer-events: none;
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand__text strong {
  font-size: 1rem;
}

.brand__text small {
  color: var(--muted);
}

.desktop-nav,
.header-actions,
.search-panel__tags,
.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.desktop-nav > a,
.nav-item > a {
  font-weight: 700;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
}

.desktop-nav > a:hover,
.nav-item > a:hover {
  background: rgba(17, 34, 30, 0.08);
}

.desktop-nav > a.is-active,
.nav-item > a.is-active {
  background: rgba(17, 34, 30, 0.12);
  color: var(--text);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  inset: calc(100% + 16px) auto auto 50%;
  transform: translateX(-50%) translateY(12px);
  width: 760px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mega-menu__content {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(210, 193, 164, 0.34);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
}

.mega-menu__content a {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--muted);
}

.mega-menu__label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--text);
  font-weight: 800;
}

.mega-menu__feature {
  padding: 1.25rem;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(23, 79, 73, 0.96), rgba(17, 34, 30, 0.99));
  color: #f9f5ef;
}

.mega-menu__feature p {
  color: rgba(249, 245, 239, 0.8);
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(210, 193, 164, 0.44);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.icon-btn:hover {
  transform: translateY(-2px);
  background: #fff;
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.badge-button {
  position: relative;
}

.badge {
  position: absolute;
  top: -4px;
  right: -3px;
  min-width: 22px;
  height: 22px;
  padding: 0 0.35rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-panel {
  display: none;
  padding-top: 0.9rem;
}

.search-panel.is-open {
  display: block;
}

.search-panel__inner {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(210, 193, 164, 0.34);
  border-radius: 28px;
  backdrop-filter: blur(12px);
}

.search-panel__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem;
}

.search-panel__tags {
  flex-wrap: wrap;
  margin-top: 1rem;
}

.search-panel__tags a {
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(17, 34, 30, 0.06);
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0 1rem;
  background: rgba(17, 34, 30, 0.98);
  color: #f9f5ef;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.brand--footer .brand__text small,
.footer-copy,
.footer-links a,
.social-links a,
.footer-meta {
  color: rgba(249, 245, 239, 0.72);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(249, 245, 239, 0.12);
}

.mobile-app-nav {
  display: none;
}

.mobile-app-nav__item {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  padding: 0.8rem 0.45rem;
  border: 0;
  border-radius: 18px;
  background: transparent;
  color: inherit;
  text-align: center;
  transition: transform var(--transition), background var(--transition), color var(--transition);
}

.mobile-app-nav__item svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.mobile-app-nav__item span {
  font-size: 0.74rem;
  font-weight: 700;
}

.mobile-app-nav .badge {
  top: 0.35rem;
  right: 0.8rem;
}

.mobile-app-nav__item.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-2px);
}

.product-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(210, 193, 164, 0.34);
  border-radius: 30px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(187, 109, 40, 0.28);
}

.product-card__media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(239, 231, 218, 0.86));
}

.product-card__image-link img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-card:hover .product-card__image-link img {
  transform: scale(1.06);
}

.product-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 34, 30, 0.9);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.product-card__badge:empty,
.old-price:empty {
  display: none;
}

.product-card__wishlist {
  z-index: 2;
}

.product-card__wishlist.is-active,
.product-card__compare.is-active,
.btn.is-active {
  background: var(--text);
  color: #fff;
}

.product-card__utility {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: grid;
  gap: 0.6rem;
}

.product-card__quick {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translate(-50%, 20px);
  opacity: 0;
}

.product-card:hover .product-card__quick {
  opacity: 1;
  transform: translate(-50%, 0);
}

.product-card__body {
  padding: 1.35rem;
}

.product-card__meta,
.testimonial-meta,
.meta-inline,
.contact-list li,
.order-card__head,
.blog-meta,
.cart-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.product-card__meta,
.product-card__text,
.blog-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.product-card h3 {
  margin: 0.65rem 0 0.4rem;
  font-size: 1.25rem;
}

.product-card__text {
  margin: 0;
}

.product-card__bottom {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.product-card__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product-card__price {
  display: grid;
  gap: 0.2rem;
}

.product-card__price strong {
  font-size: 1.15rem;
}

.modal,
.toast-stack {
  position: fixed;
  z-index: 80;
}

.modal {
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(9, 15, 13, 0.6);
  padding: 1rem;
}

.modal.is-open {
  display: grid;
}

.modal__panel {
  width: min(980px, 100%);
  max-height: 92vh;
  overflow: auto;
  background: rgba(246, 242, 235, 0.98);
  border-radius: 32px;
  border: 1px solid rgba(210, 193, 164, 0.38);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.quick-view {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  padding: 1.5rem;
}

.quick-view__media img {
  width: 100%;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
}

.quick-view__content {
  display: grid;
  gap: 1rem;
}

.quick-view__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
}

.newsletter-popup .modal__panel {
  width: min(920px, 100%);
}

.newsletter-popup__panel {
  padding: 2rem;
}

.newsletter-popup__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: center;
}

.newsletter-popup__content h3 {
  margin: 0.6rem 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

.newsletter-popup__content p:last-child {
  color: var(--muted);
}

.newsletter-popup__form {
  padding: 1.5rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(210, 193, 164, 0.36);
}

.toast-stack {
  right: 1.25rem;
  bottom: 1.25rem;
  display: grid;
  gap: 0.75rem;
}

.toast {
  min-width: 260px;
  max-width: 360px;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(17, 34, 30, 0.95);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.toast--error {
  background: rgba(185, 74, 57, 0.95);
}

.toast--success {
  background: rgba(31, 123, 101, 0.95);
}

.skeleton-card {
  overflow: hidden;
  position: relative;
  min-height: 360px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(210, 193, 164, 0.34);
  border-radius: 30px;
}

.skeleton-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.6s infinite;
}

.skeleton-card__media {
  height: 260px;
  background: rgba(210, 193, 164, 0.22);
}

.skeleton-card__body {
  display: grid;
  gap: 0.8rem;
  padding: 1.25rem;
}

.skeleton-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(210, 193, 164, 0.24);
}

.skeleton-line.short {
  width: 45%;
}

.skeleton-line.medium {
  width: 70%;
}

.skeleton-line.long {
  width: 100%;
}
