/* ====== PRIMECUTS – STYLESHEET ====== */

:root {
  --bg: #f8f5f2;
  --bg-alt: #efe8e2;
  --surface: #ffffff;
  --surface-hover: #f7f2ed;
  --text: #1e1612;
  --text-secondary: #5a4840;
  --text-muted: #9a867a;
  --border: #e2d6ce;
  --shadow: rgba(30, 22, 18, 0.06);
  --shadow-lg: rgba(30, 22, 18, 0.12);
  --overlay: rgba(30, 22, 18, 0.55);
  --primary: #c0522a;
  --primary-hover: #a04320;
  --primary-light: rgba(192, 82, 42, 0.12);
  --accent: #b8863c;
  --accent-light: rgba(184, 134, 60, 0.15);
  --success: #3a7d44;
  --success-light: rgba(58, 125, 68, 0.12);
  --gradient: linear-gradient(135deg, #c0522a, #8a3a1e);
  --gradient-accent: linear-gradient(135deg, #b8863c, #9a6e30);
  --hero-gradient: linear-gradient(145deg, #1a110c 0%, #2d1a12 50%, #1a110c 100%);
  --card-bg: #ffffff;
  --input-bg: #ffffff;
  --input-border: #d6c8be;
  --badge-bg: var(--primary);
  --badge-text: #fff;
  --nav-shadow: 0 2px 24px rgba(30, 22, 18, 0.08);
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

[data-theme="dark"] {
  --bg: #0f0b09;
  --bg-alt: #1a1410;
  --surface: #241e1a;
  --surface-hover: #302822;
  --text: #f0eae4;
  --text-secondary: #c8beb6;
  --text-muted: #8a7a72;
  --border: #3a322c;
  --shadow: rgba(0, 0, 0, 0.35);
  --shadow-lg: rgba(0, 0, 0, 0.55);
  --overlay: rgba(0, 0, 0, 0.75);
  --primary: #d95a38;
  --primary-hover: #c44a28;
  --primary-light: rgba(217, 90, 56, 0.18);
  --accent: #e8b84b;
  --accent-light: rgba(232, 184, 75, 0.18);
  --success: #4caf50;
  --success-light: rgba(76, 175, 80, 0.15);
  --gradient: linear-gradient(135deg, #d95a38, #a04020);
  --gradient-accent: linear-gradient(135deg, #e8b84b, #c8962e);
  --hero-gradient: linear-gradient(145deg, #080504 0%, #1a0e0a 50%, #080504 100%);
  --card-bg: #241e1a;
  --input-bg: #302822;
  --input-border: #5a4840;
  --badge-bg: var(--accent);
  --badge-text: #1a110c;
  --nav-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

/* ====== RESET & BASE ====== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  transition: background 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.text-accent { color: var(--accent); }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 4px 20px var(--primary-light);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--primary-light);
}

.btn-outline {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-block { width: 100%; justify-content: center; }

/* ====== HEADER ====== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  transition: background 0.4s ease, box-shadow 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.logo i { color: var(--primary); font-size: 1.4rem; }
.logo-highlight { color: var(--accent); }

.nav-links { display: flex; gap: 8px; }
.nav-links a {
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-actions button {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.header-actions button:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.cart-btn { position: relative; }
.cart-count {
  position: absolute;
  top: 2px; right: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: 280px; height: 100vh;
  background: var(--surface);
  z-index: 2000;
  padding: 80px 30px 30px;
  flex-direction: column;
  gap: 8px;
  transition: right 0.4s ease;
  border-left: 1px solid var(--border);
  box-shadow: -10px 0 40px var(--shadow-lg);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}
.mobile-menu a:hover { background: var(--primary-light); color: var(--primary); }
.mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text-secondary);
  background: var(--bg-alt);
}

/* ====== HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  background: var(--hero-gradient);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('../images/products/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
  mix-blend-mode: overlay;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge i { font-size: 0.9rem; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-features span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}
.hero-features i { color: var(--accent); }

.hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.4s ease;
}
.hero-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-5px);
}
.hero-card i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 12px;
}
.hero-card h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.hero-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

/* ====== CATEGORIES ====== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.category-card:hover { transform: translateY(-8px); }
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.category-card .cat-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  color: #fff;
}
.category-card .cat-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.category-card .cat-info p {
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ====== PRODUCTS ====== */
.product-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px var(--primary-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}

.product-img-wrap {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--badge-bg);
  color: var(--badge-text);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}

.product-body {
  padding: 20px;
}
.product-body .cat-label {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.product-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-body .product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.product-body .product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-body .product-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}
.product-body .product-price .price-unit {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.add-to-cart {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px var(--primary-light);
}
.add-to-cart:hover { transform: scale(1.1); }

/* ====== QUALITY SECTION ====== */
.quality {
  background: var(--bg-alt);
}

.quality-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quality-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 500px;
}
.quality-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.quality-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 8px 30px var(--shadow-lg);
  font-weight: 600;
}
.quality-badge i { color: var(--success); font-size: 1.3rem; }

.quality-list { margin: 24px 0; }
.quality-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.quality-list i { color: var(--accent); }

/* ====== TESTIMONIALS ====== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-lg);
}
.testimonial-card .stars {
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-card .customer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-card .customer .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-card .customer h4 { font-size: 0.9rem; }
.testimonial-card .customer span { font-size: 0.8rem; color: var(--text-muted); }

/* ====== CONTACT ====== */
.contact {
  background: var(--bg-alt);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin: 24px 0;
}
.contact-card i {
  font-size: 2rem;
  color: var(--primary);
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--primary-light);
}
.contact-card h4 { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 4px; }
.contact-phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: color 0.3s ease;
}
.contact-phone:hover { color: var(--accent); }

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.contact-item i {
  width: 20px;
  color: var(--accent);
  font-size: 1rem;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
}
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1.5px solid var(--input-border);
  background: var(--input-bg);
  color: var(--text);
  font-size: 0.95rem;
  transition: border 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}
.form-group textarea { resize: vertical; }

/* ====== FOOTER ====== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 16px 0;
  max-width: 300px;
  line-height: 1.7;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.footer-grid h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text);
}
.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer-grid ul a:hover { color: var(--primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ====== CART SIDEBAR ====== */
.cart-sidebar {
  position: fixed;
  top: 0; right: -400px;
  width: 380px;
  height: 100vh;
  background: var(--surface);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transition: right 0.4s ease;
  box-shadow: -10px 0 40px var(--shadow-lg);
}
.cart-sidebar.open { right: 0; }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-header h3 { font-size: 1.2rem; }
.cart-header button {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.cart-header button:hover { background: var(--bg-alt); color: var(--text); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 0;
  font-size: 0.95rem;
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-img {
  width: 64px; height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 0.9rem; margin-bottom: 4px; }
.cart-item-info .cart-item-price { font-size: 0.85rem; color: var(--primary); font-weight: 600; }
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.cart-item-qty button {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  color: var(--text);
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.cart-item-qty button:hover { background: var(--primary); color: #fff; }
.cart-item-qty span { font-weight: 600; min-width: 20px; text-align: center; }
.cart-item-remove {
  color: var(--text-muted);
  font-size: 0.85rem;
  align-self: flex-start;
  padding: 4px;
  transition: color 0.3s ease;
}
.cart-item-remove:hover { color: var(--primary); }

.cart-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cart-delivery-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.cart-delivery-note i { color: var(--accent); }

.cart-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 2999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.cart-overlay.show { opacity: 1; pointer-events: all; }

/* ====== MODAL ====== */
.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  background: var(--surface);
  border-radius: 20px;
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  overflow-y: auto;
}
.modal.open { opacity: 1; pointer-events: all; transform: translate(-50%, -50%) scale(1); }

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2e7d32;
  color: #fff;
  font-size: 1.1rem;
  z-index: 10;
  transition: all 0.3s ease;
}
.modal-close:hover { background: #c62828; color: #fff; }

.modal-body { padding: 24px; }
.modal-body img { width: 100%; height: 280px; object-fit: cover; border-radius: 12px; margin-bottom: 20px; }
.modal-body .modal-cat { font-size: 0.8rem; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.modal-body h2 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin: 6px 0 10px; }
.modal-body .modal-price { font-size: 1.8rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.modal-body p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.modal-body .modal-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.modal-body .modal-meta span { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.modal-body .modal-meta i { color: var(--accent); }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 3999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.show { opacity: 1; pointer-events: all; }

/* ====== TOAST ====== */
.toast {
  position: fixed;
  bottom: 30px; right: 30px;
  padding: 14px 24px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px var(--shadow-lg);
  z-index: 5000;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { font-size: 1.2rem; }
.toast.success i { color: var(--success); }
.toast.error i { color: var(--primary); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-features { justify-content: center; }
  .hero-visual { max-width: 500px; margin: 0 auto; }
  .hero-title { font-size: 3rem; }

  .quality-wrapper { grid-template-columns: 1fr; }
  .quality-visual { height: 350px; }

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

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

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .section-title { font-size: 2rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 2.2rem; }
  .hero { min-height: auto; padding: 100px 0 50px; }
  .hero-visual { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-card { padding: 20px 16px; }
  .hero-card i { font-size: 1.6rem; }

  .categories-grid { grid-template-columns: 1fr 1fr; }
  .category-card { height: 220px; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-img-wrap { height: 160px; }
  .product-body { padding: 14px; }
  .product-body h3 { font-size: 0.95rem; }
  .product-body .product-price { font-size: 1.1rem; }

  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .cart-sidebar { width: 100%; right: -100%; }
  .mobile-menu { display: flex; }

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

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

  .modal-body img { height: 200px; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-visual { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.8rem; }
  .section-title { font-size: 1.6rem; }
}

/* ====== NEW: ANNOUNCEMENT BAR ====== */
.announcement {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.announcement span { opacity: 0.85; }
.announcement strong { color: #fff; }

/* ====== NEW: HERO V2 ====== */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--hero-gradient);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 20% 50%, rgba(192,82,42,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(184,134,60,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-v2::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-gradient);
  opacity: 0.7;
  pointer-events: none;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slideshow .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.05);
}
.hero-slideshow .slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-v2 .scroll-indicator {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceDown 2s ease infinite;
}
.hero-v2 .scroll-indicator i { font-size: 1rem; }

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.hero-v2 .container {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 820px;
}

.hero-v2 .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--accent);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-v2 h1 {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
}
.hero-v2 h1 .word-highlight {
  display: inline-block;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-v2 h1 .word-highlight-gold {
  color: var(--accent);
}

.hero-v2 .hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-v2 .hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero-v2 .hero-actions .btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 30px rgba(192,82,42,0.3);
}
.hero-v2 .hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.hero-v2 .hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}

.hero-v2 .hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-v2 .hero-stat {
  text-align: center;
}
.hero-v2 .hero-stat .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  display: block;
}
.hero-v2 .hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ====== NEW: STATS BAR ====== */
.stats-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-icon {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}
.stat-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ====== NEW: HOW IT WORKS ====== */
.how-section {
  background: var(--bg-alt);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.how-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--card-bg);
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
}
.how-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}
.how-card .step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 18px;
  font-family: var(--font-display);
}
.how-card .how-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 14px;
}
.how-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.how-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ====== NEW: COUNTRIES SECTION ====== */
.countries-section {
  overflow: hidden;
}
.countries-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.countries-showcase .flags-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.flag-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.4s ease;
}
.flag-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px var(--shadow-lg);
}
.flag-card .flag-icon {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
}
.flag-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.flag-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.countries-info { padding: 20px; }
.countries-info .section-tag { margin-bottom: 12px; }
.countries-info ul { margin: 24px 0; }
.countries-info ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.countries-info ul li i { color: var(--accent); }

/* ====== NEW: PHONE CTA ====== */
.phone-cta {
  background: var(--hero-gradient);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.phone-cta h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.phone-cta p {
  font-size: 1.05rem;
  opacity: 0.7;
  margin-bottom: 24px;
}
.phone-cta .phone-number {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 2px;
  padding: 20px 40px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 60px;
  transition: all 0.3s ease;
}
.phone-cta .phone-number:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--accent);
  transform: scale(1.03);
}
.phone-cta .phone-number i { font-size: 2rem; }

/* ====== NEW: FOOTER V2 ====== */
.footer-v2 {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-v2 .footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-v2 .footer-brand .logo { margin-bottom: 14px; }
.footer-v2 .footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 16px;
}
.footer-v2 .footer-social { display: flex; gap: 10px; }
.footer-v2 .footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.footer-v2 .footer-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.footer-v2 h4 {
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-v2 ul li { margin-bottom: 10px; }
.footer-v2 ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}
.footer-v2 ul a:hover { color: var(--primary); }
.footer-v2 .footer-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
}
.footer-v2 .footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ====== RESPONSIVE ADDITIONS ====== */
@media (max-width: 1024px) {
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 20px; margin-bottom: 4px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .countries-showcase { grid-template-columns: 1fr; }
  .footer-v2 .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-v2 h1 { font-size: 2.5rem; }
  .hero-v2 .hero-stats { gap: 24px; }
  .hero-v2 .hero-stat .num { font-size: 1.8rem; }

  .stats-bar .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item { border-right: none; }

  .how-grid { grid-template-columns: 1fr; }
  .how-card { padding: 30px 20px; }

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

  .phone-cta h2 { font-size: 1.8rem; }
  .phone-cta .phone-number { font-size: 1.6rem; padding: 14px 24px; }

  .footer-v2 .footer-main { grid-template-columns: 1fr; gap: 30px; }

  .categories-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
}

@media (max-width: 480px) {
  .hero-v2 h1 { font-size: 1.8rem; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .flags-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
