/* ============================================
   Sujal Handicrafts - Metal Handicrafts & Furniture
   ============================================ */

:root {
  --primary: #b45309;
  --primary-dark: #92400e;
  --primary-light: #d97706;
  --secondary: #1e3a5f;
  --secondary-light: #2c5282;
  --accent: #c9a227;
  --bg: #faf8f5;
  --bg-alt: #f0ebe3;
  --text: #1a1a1a;
  --text-light: #4a5568;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --transition: all 0.3s ease;
  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========== HEADER ========== */
.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}
.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}
.nav-links {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--primary);
  color: white !important;
  padding: 0.55rem 1.3rem;
  border-radius: 30px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-2px); }
.nav-cta::after { display: none !important; }

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
}
.cart-btn:hover { color: var(--primary); background: var(--bg-alt); }
.cart-count {
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  width: 26px; height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: var(--transition);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.75), rgba(180, 83, 9, 0.55)),
              url('https://images.unsplash.com/photo-1618220179428-22790b461013?w=1600&q=80') center/cover no-repeat;
  color: white;
  text-align: center;
}
.hero-content { max-width: 800px; margin: 0 auto; padding: 2rem; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,0.3);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.4);
}
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-outline:hover { background: white; color: var(--primary); }
.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: var(--secondary-light); }
.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  border-radius: 25px;
  background: var(--bg-alt);
  color: var(--text);
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn-sm:hover { background: var(--primary); color: white; }
.btn-add {
  background: var(--primary);
  color: white;
  padding: 0.5rem 1.1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
}
.btn-add:hover { background: var(--primary-dark); }

/* ========== SECTIONS ========== */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text);
  margin-bottom: 1rem;
}
.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========== PRODUCTS ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.product-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}
.product-info { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.product-category {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}
.product-info h3 { font-size: 1.1rem; margin-bottom: 0.5rem; font-weight: 600; }
.product-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

/* ========== CATEGORIES ========== */
.categories { background: var(--bg-alt); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.cat-icon {
  width: 70px; height: 70px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
}
.cat-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.cat-card p { color: var(--text-light); font-size: 0.9rem; }

/* ========== WHY US ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.why-card { text-align: center; padding: 1.5rem; }
.why-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.2rem;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
}
.why-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.why-card p { color: var(--text-light); font-size: 0.95rem; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: linear-gradient(135deg, var(--secondary), #0f2744);
  color: white;
}
.testimonials .section-header .subtitle { color: var(--accent); }
.testimonials .section-header h2,
.testimonials .section-header p { color: white; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem;
}
.testimonial-card .stars { color: #ffc107; margin-bottom: 1rem; font-size: 1.1rem; }
.testimonial-card p { font-style: italic; margin-bottom: 1.5rem; opacity: 0.95; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text);
}
.author-info h4 { font-size: 1rem; }
.author-info span { font-size: 0.85rem; opacity: 0.8; }

/* ========== CTA ========== */
.cta-section { background: var(--bg-alt); text-align: center; }
.cta-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 3.5rem 2rem;
  border-radius: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.cta-box h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: 1rem; }
.cta-box p { margin-bottom: 1.8rem; opacity: 0.95; }

/* ========== FOOTER ========== */
.footer {
  background: #121212;
  color: #ccc;
  padding: 4rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { color: var(--accent); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.8rem; }
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--primary); color: white; }
.footer h4 { color: white; font-size: 1.1rem; margin-bottom: 1.2rem; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a:hover { color: var(--accent); }
.footer-contact li {
  display: flex; gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, rgba(30, 58, 95, 0.8), rgba(180, 83, 9, 0.6)),
              url('https://images.unsplash.com/photo-1618220179428-22790b461013?w=1600&q=80') center/cover no-repeat;
  color: white;
  padding: 5.5rem 0 3.5rem;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 0.8rem;
}
.page-hero p { font-size: 1.1rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }

/* ========== ABOUT ========== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 1.2rem;
}
.about-text p { color: var(--text-light); margin-bottom: 1.2rem; }
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.stat-item {
  text-align: center;
  padding: 1.2rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.stat-item h3 { font-size: 1.8rem; color: var(--primary); margin-bottom: 0.3rem; }
.stat-item span { font-size: 0.9rem; color: var(--text-light); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.value-card .icon { font-size: 2.2rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: 0.7rem; }
.value-card p { color: var(--text-light); font-size: 0.95rem; }

/* ========== FILTER ========== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 25px;
  border: 2px solid var(--bg-alt);
  background: var(--white);
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: white; font-weight: 600; }

/* ========== CONTACT ========== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.contact-info > p { color: var(--text-light); margin-bottom: 2rem; }
.info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.info-icon {
  width: 48px; height: 48px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  flex-shrink: 0;
}
.info-item h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.info-item p { color: var(--text-light); font-size: 0.95rem; }
.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e0d9cf;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

/* ========== CART & CHECKOUT ========== */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cart-table th {
  background: var(--bg-alt);
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.95rem;
}
.cart-table td {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}
.cart-item-img {
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
.cart-item-name { font-weight: 600; margin-bottom: 0.2rem; }
.cart-item-cat { font-size: 0.85rem; color: var(--text-light); }
.qty-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.qty-btn {
  width: 32px; height: 32px;
  border: 1px solid #ddd;
  background: var(--bg);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.qty-value {
  min-width: 30px;
  text-align: center;
  font-weight: 600;
}
.remove-btn {
  background: none;
  border: none;
  color: #e53e3e;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
}
.remove-btn:hover { text-decoration: underline; }

.cart-summary {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}
.cart-summary h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}
.summary-row.total {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  border-top: 2px solid var(--bg-alt);
  padding-top: 1rem;
  margin-top: 1rem;
}
.cart-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.empty-cart {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.empty-cart .icon { font-size: 4rem; margin-bottom: 1rem; }
.empty-cart h3 { margin-bottom: 0.8rem; }
.empty-cart p { color: var(--text-light); margin-bottom: 1.5rem; }

.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2.5rem;
}
.checkout-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.checkout-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.order-summary {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}
.order-summary h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}
.order-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}
.order-item img {
  width: 60px; height: 60px;
  object-fit: cover;
  border-radius: 6px;
}
.order-item-info { flex: 1; }
.order-item-info h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.order-item-info span { font-size: 0.85rem; color: var(--text-light); }

.order-success {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}
.order-success .icon { font-size: 4rem; margin-bottom: 1rem; }
.order-success h2 { font-family: var(--font-display); margin-bottom: 1rem; color: #2e7d32; }
.order-success p { color: var(--text-light); margin-bottom: 0.5rem; }
.order-id {
  background: var(--bg-alt);
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  margin: 1.5rem 0;
  display: inline-block;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-content { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    gap: 1.2rem;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
  }
  .nav-links.active { transform: translateY(0); opacity: 1; }
  .hamburger { display: flex; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
  .hero { min-height: 70vh; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .cart-table thead { display: none; }
  .cart-table tr {
    display: block;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 1rem;
  }
  .cart-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 0.5rem 0;
  }
  .cart-table td::before {
    content: attr(data-label);
    font-weight: 600;
    margin-right: 1rem;
  }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
  .cart-actions { flex-direction: column; }
}
