:root {
  --coffee-dark: #1a0f0a;
  --coffee-brown: #2c1810;
  --coffee-medium: #4a2c2a;
  --coffee-light: #6b4423;
  --cream: #f5e6d3;
  --cream-light: #faf3ea;
  --gold: #c4a35a;
  --gold-light: #e8d5a3;
  --text-dark: #1a0f0a;
  --text-muted: #7a6a5a;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(26, 15, 10, 0.12);
  --shadow-lg: 0 20px 60px rgba(26, 15, 10, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: IRANSans, Tahoma, sans-serif;
  background: var(--cream-light);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(26, 15, 10, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  padding: 0.75rem 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--cream);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--cream);
  font-weight: 500;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cart-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: var(--transition);
}

.cart-btn:hover {
  background: var(--gold);
  color: var(--coffee-dark);
  transform: scale(1.05);
}

.cart-badge {
  position: absolute;
  top: -4px;
  left: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  background: var(--gold);
  color: var(--coffee-dark);
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8923f);
  color: var(--coffee-dark);
  box-shadow: 0 4px 20px rgba(196, 163, 90, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196, 163, 90, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--coffee-dark);
}

.btn-dark {
  background: var(--coffee-brown);
  color: var(--cream);
}

.btn-dark:hover {
  background: var(--coffee-medium);
}

.btn-sm {
  padding: 0.55rem 1.1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--coffee-dark) 0%, var(--coffee-brown) 50%, var(--coffee-medium) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle at 20% 50%, var(--gold) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--gold-light) 0%, transparent 40%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: float-particle 8s infinite ease-in-out;
}

@keyframes float-particle {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  50% { transform: translateY(-100px) translateX(30px); opacity: 0.6; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.2;
  margin: 0 0 1.5rem;
}

.hero-text h1 span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.15rem;
  color: rgba(245, 230, 211, 0.8);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-cup {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--coffee-light) 0%, var(--coffee-brown) 70%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 8rem;
  animation: float-cup 6s ease-in-out infinite;
  box-shadow: 0 0 80px rgba(196, 163, 90, 0.3), inset 0 0 60px rgba(0, 0, 0, 0.3);
}

@keyframes float-cup {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

.hero-ring {
  position: absolute;
  width: 400px;
  height: 400px;
  border: 2px solid rgba(196, 163, 90, 0.2);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
}

.stat-item strong {
  display: block;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 800;
}

.stat-item span {
  font-size: 0.85rem;
  color: rgba(245, 230, 211, 0.6);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(196, 163, 90, 0.15);
  color: var(--coffee-light);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 0.8rem;
  color: var(--coffee-brown);
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  group: category;
}

.category-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--coffee-medium), var(--coffee-brown));
  transition: transform var(--transition);
}

.category-card:hover .category-card-bg {
  transform: scale(1.08);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 10, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.category-card h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin: 0 0 0.3rem;
}

.category-card p {
  color: rgba(245, 230, 211, 0.7);
  font-size: 0.85rem;
  margin: 0;
}

.category-card-icon {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 2rem;
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}

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

.product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--cream), #e8d5c0);
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 4rem;
  opacity: 0.4;
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.3rem 0.8rem;
  background: var(--gold);
  color: var(--coffee-dark);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.product-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}

.product-category {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.product-card-body h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.product-card-body h3 a:hover {
  color: var(--coffee-light);
}

.product-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--coffee-brown);
}

.product-price small {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.stock-badge {
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.in-stock {
  background: rgba(34, 139, 34, 0.1);
  color: #228b22;
}

.out-stock {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

/* Features */
.features-section {
  background: var(--coffee-brown);
  color: var(--cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
}

.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--gold), #b8923f);
  text-align: center;
  padding: 4rem 2rem;
  border-radius: var(--radius);
  margin: 0 auto;
  max-width: 900px;
}

.cta-section h2 {
  color: var(--coffee-dark);
  font-size: 2rem;
  margin: 0 0 1rem;
}

.cta-section p {
  color: rgba(26, 15, 10, 0.7);
  margin-bottom: 2rem;
}

/* Footer */
.footer {
  background: var(--coffee-dark);
  color: rgba(245, 230, 211, 0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer h4 {
  color: var(--cream);
  margin: 0 0 1.2rem;
  font-size: 1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.6rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

/* Page header */
.page-header {
  background: linear-gradient(135deg, var(--coffee-dark), var(--coffee-brown));
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--cream);
}

.page-header h1 {
  font-size: 2.5rem;
  margin: 0 0 0.5rem;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

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

/* Shop layout */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding: 3rem 0 5rem;
}

.sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}

.sidebar-card h3 {
  font-size: 1rem;
  margin: 0 0 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--cream);
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li {
  margin-bottom: 0.4rem;
}

.filter-list a {
  display: block;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: var(--transition);
}

.filter-list a:hover,
.filter-list a.active {
  background: rgba(196, 163, 90, 0.15);
  color: var(--coffee-light);
  font-weight: 600;
}

.filter-sub {
  padding-right: 1.2rem;
  margin-top: 0.3rem;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form input {
  padding: 0.7rem 1.2rem;
  border: 2px solid #e8e0d5;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.9rem;
  min-width: 250px;
  outline: none;
  transition: var(--transition);
}

.search-form input:focus {
  border-color: var(--gold);
}

.sort-select {
  padding: 0.7rem 1.2rem;
  border: 2px solid #e8e0d5;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0 5rem;
}

.product-gallery {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.product-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.meta-tag {
  padding: 0.3rem 0.8rem;
  background: var(--cream);
  border-radius: 50px;
  font-size: 0.85rem;
}

.product-info .product-price {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.product-description {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.9;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e8e0d5;
  background: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: grid;
  place-items: center;
}

.qty-btn:hover {
  border-color: var(--gold);
  background: var(--cream);
}

.qty-input {
  width: 60px;
  text-align: center;
  padding: 0.5rem;
  border: 2px solid #e8e0d5;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
}

.product-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Cart */
.cart-table {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 2rem;
}

.cart-table table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th,
.cart-table td {
  padding: 1.2rem 1.5rem;
  text-align: right;
}

.cart-table th {
  background: var(--cream);
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-table tr + tr {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-product-img {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 400px;
  margin-right: auto;
}

.cart-summary h3 {
  margin: 0 0 1.5rem;
  font-size: 1.2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 800;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 2px solid var(--cream);
  color: var(--coffee-brown);
}

/* Forms */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e8e0d5;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 163, 90, 0.15);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  padding: 3rem 0 5rem;
}

/* Orders */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  flex-wrap: wrap;
  gap: 1rem;
}

.order-card:hover {
  transform: translateX(-4px);
  box-shadow: var(--shadow-lg);
}

.order-status {
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-paid { background: #d4edda; color: #155724; }
.status-processing { background: #cce5ff; color: #004085; }
.status-shipped { background: #e2d9f3; color: #4a235a; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-failed { background: #fdecea; color: #c0392b; }

.order-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.order-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.detail-item label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.detail-item span {
  font-weight: 600;
}

/* Messages */
.messages-container {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: min(500px, 90%);
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  animation: slideDown 0.4s ease;
  box-shadow: var(--shadow);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.alert-success { background: #d4edda; color: #155724; border-right: 4px solid #28a745; }
.alert-error { background: #f8d7da; color: #721c24; border-right: 4px solid #dc3545; }
.alert-warning { background: #fff3cd; color: #856404; border-right: 4px solid #ffc107; }
.alert-info { background: #d1ecf1; color: #0c5460; border-right: 4px solid #17a2b8; }

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-state-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

.empty-state h3 {
  margin: 0 0 0.5rem;
}

.empty-state p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-cup {
    width: 220px;
    height: 220px;
    font-size: 5rem;
  }

  .hero-ring {
    width: 280px;
    height: 280px;
  }

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

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

  .sidebar {
    position: static;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--coffee-dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

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

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

  .page-header h1 {
    font-size: 1.8rem;
  }
}
