:root {
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --light-gray: #F3F3F0;
  --mid-gray: #E4E4DF;
  --border: #D8D8D2;
  --text: #1A1A18;
  --text-mid: #4A4A45;
  --text-light: #8A8A82;
  --accent: #C67B3C;
  --accent-dark: #A55E26;
  --accent-pale: #FDF0E4;
  --black: #111110;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 6px 24px rgba(0,0,0,0.09);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.13);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', sans-serif;
  --font-mono: 'DM Mono', monospace;
  --nav-h: 68px;
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea {
  font-family: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(198,123,60,0.35);
}

.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 24px rgba(198,123,60,0.45);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.full-width {
  width: 100%;
  justify-content: center;
}

.section {
  padding: 100px 0;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.navbar {
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-mark {
  color: var(--accent);
  font-size: 1.1rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 32px;
  flex: 1;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--light-gray);
  border: 1px solid var(--mid-gray);
  border-radius: 40px;
  padding: 6px 14px;
  transition: all var(--transition);
  width: 40px;
  overflow: hidden;
}

.search-wrap.open {
  width: 200px;
}

.nav-search {
  border: none;
  background: none;
  outline: none;
  font-size: 0.82rem;
  color: var(--text);
  width: 100%;
  opacity: 0;
  transition: opacity var(--transition);
}

.search-wrap.open .nav-search {
  opacity: 1;
}

.search-icon {
  color: var(--text-mid);
  display: flex;
  cursor: pointer;
  flex-shrink: 0;
}

.search-icon:hover {
  color: var(--accent);
}

.cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-gray);
  position: relative;
  transition: all var(--transition);
}

.cart-btn:hover {
  background: var(--accent-pale);
  color: var(--accent);
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0);
  transition: all var(--transition);
}

.cart-count.show {
  opacity: 1;
  transform: scale(1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  justify-content: center;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-8px);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.cart-dropdown {
  position: fixed;
  top: calc(var(--nav-h) + 10px);
  right: 32px;
  z-index: 2000;
  width: 340px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px) scale(0.97);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(.4,0,.2,1);
  transform-origin: top right;
}

.cart-dropdown.open {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.cart-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--mid-gray);
}

.cart-dropdown-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.cart-clear-btn {
  font-size: 0.75rem;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  transition: color var(--transition);
}

.cart-clear-btn:hover {
  color: #D94040;
}

.cart-items-list {
  max-height: 320px;
  overflow-y: auto;
  padding: 10px 0;
}

.cart-items-list::-webkit-scrollbar {
  width: 4px;
}

.cart-items-list::-webkit-scrollbar-track {
  background: transparent;
}

.cart-items-list::-webkit-scrollbar-thumb {
  background: var(--mid-gray);
  border-radius: 4px;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 36px 0;
  color: var(--text-light);
  font-size: 0.88rem;
}

.cart-empty span {
  font-size: 2rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  transition: background var(--transition);
  animation: itemFadeIn 0.2s ease both;
}

.cart-item:hover {
  background: var(--light-gray);
}

@keyframes itemFadeIn {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.cart-item-img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--mid-gray);
}

.cart-item-info {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-owner {
  font-size: 0.74rem;
  color: var(--text-light);
  margin-top: 1px;
}

.cart-item-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.cart-item-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  transition: all var(--transition);
  flex-shrink: 0;
}

.cart-item-remove:hover {
  background: #FEE2E2;
  color: #D94040;
}

.cart-dropdown-footer {
  padding: 14px 20px 18px;
  border-top: 1px solid var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-total {
  font-size: 0.88rem;
  color: var(--text-mid);
}

.cart-total strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text);
  margin-left: 4px;
}

.cart-checkout-btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: var(--nav-h) 32px 0;
  padding-top: 0;
  gap: 64px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s 0.1s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.8s 0.2s both;
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 460px;
  animation: fadeSlideUp 0.8s 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.8s 0.4s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: fadeSlideUp 0.8s 0.5s both;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-image-col {
  position: relative;
  z-index: 1;
  animation: fadeSlideUp 0.8s 0.3s both;
}

.hero-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100%;
}

.hero-img-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 40px;
  box-shadow: var(--shadow-sm);
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.categories-section {
  background: var(--light-gray);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.category-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.category-card.active-cat {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.category-card.active-cat .cat-name {
  color: white;
}

.category-card.active-cat .cat-count {
  color: rgba(255,255,255,0.75);
}

.cat-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

.category-card:hover .cat-img {
  transform: scale(1.04);
}

.cat-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 14px;
  margin-bottom: 4px;
  padding: 0 16px;
}

.cat-count {
  font-size: 0.78rem;
  color: var(--text-light);
  display: block;
  padding: 0 16px 18px;
}

.featured-section {
  background: var(--cream);
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all var(--transition);
}

.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.featured-slider-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.featured-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.featured-card {
  min-width: calc((100% - 48px) / 3);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  flex-shrink: 0;
}

.featured-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.featured-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.featured-card:hover .featured-img-wrap img {
  transform: scale(1.06);
}

.featured-card-body {
  padding: 20px;
}

.featured-card-cat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}

.featured-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.featured-card-owner {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.featured-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.featured-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

.add-btn {
  padding: 7px 16px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--accent-pale);
  color: var(--accent);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.add-btn:hover {
  background: var(--accent);
  color: white;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.products-section {
  background: var(--light-gray);
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  background: var(--white);
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  animation: cardIn 0.4s ease both;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  background: var(--light-gray);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.07);
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 40px;
}

.badge-new {
  background: #E8F5E9;
  color: #2E7D32;
}

.badge-popular {
  background: #FFF3E0;
  color: #E65100;
}

.badge-sale {
  background: #FCE4EC;
  color: #C62828;
}

.product-body {
  padding: 16px;
}

.product-cat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-owner {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
}

.product-add-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-pale);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  transition: all var(--transition);
}

.product-add-btn:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.1) rotate(90deg);
}

.no-results {
  text-align: center;
  padding: 64px 0;
  color: var(--text-light);
  font-size: 1.1rem;
}

.hidden {
  display: none !important;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.about-section {
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-col {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
}

.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.accent-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.accent-label {
  font-size: 0.75rem;
  opacity: 0.9;
  margin-top: 4px;
  text-align: center;
}

.about-content {
  padding-bottom: 24px;
}

.about-text {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feat-icon {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.feat-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.feat-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
}

.contact-section {
  background: var(--light-gray);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-text {
  color: var(--text-mid);
  line-height: 1.8;
  margin: 20px 0 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.contact-detail span {
  color: var(--accent);
  font-size: 0.7rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 4px 12px rgba(198,123,60,0.2);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(198,123,60,0.12);
  background: var(--white);
}

.form-success {
  margin-top: 16px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 500;
}

.input-error {
  border-color: #D94040 !important;
  background: #FFF7F7 !important;
  box-shadow: 0 0 0 3px rgba(217,64,64,0.12) !important;
}

.field-error-msg {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: #D94040;
  font-weight: 500;
  letter-spacing: 0.01em;
  animation: errorFadeIn 0.2s ease both;
}

.field-error-msg::before {
  content: "⚠ ";
  font-size: 0.72rem;
}

@keyframes errorFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(4px);
  }
}

.shake {
  animation: shake 0.35s ease both;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--light-gray);
}

.faq-item.open .faq-question {
  background: var(--accent-pale);
  color: var(--accent);
}

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform var(--transition);
  color: var(--accent);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
}

.footer {
  background: var(--black);
  color: var(--mid-gray);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo .logo-text {
  color: var(--cream);
}

.footer-brand .logo-mark {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  line-height: 1.8;
  max-width: 260px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col strong {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.footer-links-col a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}

.footer-links-col a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 32px;
  max-width: 1240px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.cart-toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9000;
  background: var(--text);
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

.cart-toast.show {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.toast-icon {
  color: var(--accent);
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .featured-card {
    min-width: calc((100% - 24px) / 2);
  }
  .about-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-accent-card {
    right: 0;
    bottom: -16px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image-col {
    max-width: 480px;
  }
  .hero-bg-text {
    display: none;
  }
  .cart-dropdown {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 72px 0;
  }
  .navbar {
    top: 0;
  }
  .nav-inner {
    justify-content: space-between;
    gap: 0;
  }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform var(--transition);
    box-shadow: var(--shadow);
  }
  .nav-links.open {
    transform: none;
  }
  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--light-gray);
  }
  .nav-link:last-child {
    border: none;
  }
  .hamburger {
    display: flex;
  }
  .search-wrap {
    display: none;
  }
  .hero {
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top) + 20px);
    padding-bottom: 48px;
  }
  .hero-image-col {
    display: none;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-stats {
    gap: 16px;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .featured-card {
    min-width: 85vw;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .products-search-bar {
    min-width: unset;
    width: 100%;
  }
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .about-accent-card {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }
  .cart-dropdown {
    width: calc(100vw - 32px);
    right: 16px;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
}
