
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #c9a227;
  --accent-light: #e8d5a3;
  --accent-hover: #b8941d;
  --cream: #faf8f5;
  --white: #ffffff;
  --charcoal: #2d2d2d;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --border: #e5e7eb;
  --success: #059669;
  --whatsapp: #25D366;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 60px rgba(0,0,0,0.12);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* HEADER */
.header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.announcement-bar {
  background: var(--primary);
  color: var(--accent-light);
  text-align: center;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); font-weight: 400; }

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 14px;
  color: var(--charcoal);
  letter-spacing: 0.3px;
  position: relative;
  padding: 5px 0;
}

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

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.whatsapp-btn {
  background: linear-gradient(135deg, var(--whatsapp), #128C7E);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--primary);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #1a1a2e 100%);
  color: var(--white);
  padding: 100px 5% 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero h1 span { color: var(--accent); }

.hero p {
  font-size: 20px;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  background: rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--primary);
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
  background: var(--accent-hover);
}

.cta-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 18px 48px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: var(--transition);
  margin-left: 15px;
}

.cta-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* SECTIONS */
.section {
  padding: 100px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-alt { background: var(--white); }

.section-title {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 42px;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CATEGORIES */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid var(--border);
}

.category-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-light);
}

.category-img {
  height: 220px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  position: relative;
  overflow: hidden;
}

.category-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3));
}

.category-info { padding: 30px; }

.category-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--primary);
}

.category-info p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

.category-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.category-card:hover .category-arrow { gap: 15px; }

/* PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.product-img {
  height: 260px;
  background: linear-gradient(135deg, #f8f6f3, #f0ece5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
}

.product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.product-info { padding: 25px; }

.product-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--primary);
}

.product-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-price .old {
  font-size: 16px;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 400;
}

.product-price .save {
  font-size: 13px;
  color: var(--success);
  font-weight: 600;
  background: #d1fae5;
  padding: 4px 10px;
  border-radius: 20px;
}

.product-desc {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-actions {
  display: flex;
  gap: 12px;
}

.btn-primary {
  flex: 1;
  background: var(--primary);
  color: white;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent-light);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 24px;
  display: inline-block;
  padding: 20px;
  background: var(--gray-light);
  border-radius: 20px;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary);
}

.feature-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: var(--accent-light);
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: 1;
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 20px;
  margin-top: 30px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 25px;
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--primary);
  font-size: 15px;
}

.testimonial-card .location {
  color: var(--gray);
  font-size: 13px;
  margin-top: 4px;
}

/* FOOTER */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent);
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 15px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 25px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: 14px; }

.footer ul li a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 15px;
}

.footer ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

.footer-contact a {
  color: var(--accent);
  font-weight: 500;
}

.footer-contact a:hover { color: var(--accent-light); }

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  margin: 0 10px;
}

.footer-bottom a:hover { color: var(--accent); }

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 80px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: 18px;
  opacity: 0.85;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 20px 5%;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--gray);
  max-width: 1400px;
  margin: 0 auto;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

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

.breadcrumb span {
  margin: 0 10px;
  color: var(--gray);
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-box {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item .icon {
  font-size: 24px;
  background: var(--gray-light);
  padding: 15px;
  border-radius: 15px;
  flex-shrink: 0;
}

.contact-item h4 {
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 16px;
}

.contact-item p, .contact-item a {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.6;
}

.contact-form {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.form-group { margin-bottom: 25px; }

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
}

/* PAYMENT METHODS */
.payment-methods {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.payment-badge {
  background: var(--white);
  border: 2px solid var(--border);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: var(--transition);
}

.payment-badge:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ABOUT PAGE */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  height: 500px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.about-img::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 50%);
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 25px;
  color: var(--primary);
}

.about-text p {
  margin-bottom: 20px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--accent-light);
}

.stat-box .number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
}

.stat-box p {
  color: var(--gray);
  font-size: 14px;
  margin-top: 8px;
}

/* FAQ */
.faq-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover { border-color: var(--accent-light); }

.faq-question {
  padding: 25px 30px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--primary);
  font-size: 16px;
  transition: var(--transition);
}

.faq-question:hover { background: var(--cream); }

.faq-question .icon {
  font-size: 20px;
  color: var(--accent);
  transition: var(--transition);
}

.faq-answer {
  padding: 0 30px 25px;
  color: var(--gray);
  line-height: 1.8;
  font-size: 15px;
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

/* PRODUCT DETAIL */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  background: linear-gradient(135deg, #f8f6f3, #f0ece5);
  height: 550px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 150px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-gallery::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(0,0,0,0.05), transparent);
}

.product-details h1 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary);
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.rating { color: var(--accent); font-size: 16px; }

.reviews-count { color: var(--gray); font-size: 14px; }

.in-stock {
  color: var(--success);
  font-weight: 600;
  font-size: 14px;
  background: #d1fae5;
  padding: 6px 14px;
  border-radius: 20px;
}

.product-detail-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-detail-price .old {
  font-size: 22px;
  color: var(--gray);
  text-decoration: line-through;
  font-weight: 400;
}

.product-detail-price .save-tag {
  font-size: 14px;
  color: var(--success);
  font-weight: 700;
  background: #d1fae5;
  padding: 8px 16px;
  border-radius: 20px;
}

.product-description {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.features-list {
  background: var(--cream);
  padding: 30px;
  border-radius: 16px;
  margin-bottom: 30px;
}

.features-list h3 {
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 18px;
}

.features-list ul { list-style: none; }

.features-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-list li:last-child { border-bottom: none; }

.order-section {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.btn-large {
  flex: 1;
  background: var(--primary);
  color: white;
  padding: 18px;
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.btn-large:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-whatsapp-large {
  background: linear-gradient(135deg, var(--whatsapp), #128C7E);
  color: white;
  padding: 18px 30px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* TABLE */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.data-table th {
  background: var(--gray-light);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: var(--primary);
  border-bottom: 2px solid var(--border);
}

.data-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border);
  color: var(--charcoal);
}

.data-table tr:hover td { background: var(--cream); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid,
  .contact-grid,
  .about-content { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero h1 { font-size: 36px; }
  .hero p { font-size: 16px; }
  .section { padding: 60px 3%; }
  .section-title { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr; }
  .header-main { padding: 15px 3%; }
  .hero-badges { gap: 15px; }
  .badge { font-size: 12px; padding: 8px 14px; }
  .cta-btn, .cta-btn-outline {
    display: block;
    margin: 10px auto;
    width: 90%;
  }
  .product-actions { flex-direction: column; }
  .order-section { flex-direction: column; }
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 999;
  padding: 100px 30px 30px;
}

.mobile-menu.active { display: block; }

.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 20px;
  border-bottom: 1px solid var(--border);
  color: var(--primary);
  font-weight: 500;
}

.mobile-menu a:hover {
  color: var(--accent);
  padding-left: 10px;
}

.close-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary);
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-hover); }

::selection {
  background: var(--accent-light);
  color: var(--primary);
}

/* ===== IMAGES ===== */
.img-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.img-container:hover img {
  transform: scale(1.08);
}

/* Product Image Placeholders with Gradients */
.product-img-real {
  height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Category Image Placeholders */
.category-img-real {
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.category-img-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.category-card:hover .category-img-real img {
  transform: scale(1.1);
}

/* Hero Product Image */
.hero-product-img {
  width: 100%;
  max-width: 500px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

/* Gallery Images */
.gallery-img {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

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

.gallery-img:hover img {
  transform: scale(1.1);
}

/* About Page Image */
.about-img-real {
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Overlay for Text */
.img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}

/* Responsive Images */
@media (max-width: 768px) {
  .product-img-real,
  .category-img-real { height: 200px; }
  .hero-product-img { height: 300px; }
  .about-img-real { height: 350px; }
}
