/* Modern REO SEO Landing Page Stylesheet for ZSync Smart Finder Card (Shopee Traffic Redirection) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Noto+Sans+TC:wght@400;500;700;900&display=swap');

:root {
  --bg-dark: #090d16;
  --bg-card: #121826;
  --bg-card-hover: #1a2235;
  --bg-surface: #1e293b;
  --primary: #ee4d2d; /* Shopee signature orange */
  --primary-hover: #d73211;
  --primary-glow: rgba(238, 77, 45, 0.4);
  --accent-green: #10b981;
  --accent-green-glow: rgba(16, 185, 129, 0.4);
  --accent-red: #ef4444;
  --accent-amber: #f59e0b;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-sub: #cbd5e1;
  --border-color: rgba(255, 255, 255, 0.1);
  --border-active: #ee4d2d;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-main: 0 20px 40px -15px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 25px rgba(238, 77, 45, 0.3);
  --font-family: 'Plus Jakarta Sans', 'Noto Sans TC', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-dark);
  color: var(--text-main);
}

body {
  overflow-x: hidden;
  line-height: 1.6;
}

/* Announcement Top Bar */
.announcement-bar {
  background: linear-gradient(90deg, #9a1c06, #ee4d2d, #9a1c06);
  color: #ffffff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.countdown-box {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-weight: 700;
  color: #fbbf24;
}

/* Navigation Header */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 13, 22, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 24px;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-main);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.brand-badge {
  background: linear-gradient(135deg, #ee4d2d, #ff7355);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ff7355;
}

.btn-nav-buy {
  background: linear-gradient(135deg, #ee4d2d, #f53d2d);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: 0 4px 14px rgba(238, 77, 45, 0.45);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-nav-buy:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(238, 77, 45, 0.65);
  color: white;
}

/* Common Layout Containers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(238, 77, 45, 0.12);
  color: #ff7355;
  border: 1px solid rgba(238, 77, 45, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* HERO SECTION */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
  padding-top: 30px;
}

.hero-gallery {
  position: sticky;
  top: 90px;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-main);
  aspect-ratio: 4 / 3;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

.gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(16, 185, 129, 0.9);
  backdrop-filter: blur(8px);
  color: white;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.thumb-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--bg-card);
  transition: all 0.2s;
}

.thumb-item.active,
.thumb-item:hover {
  border-color: #ee4d2d;
  transform: translateY(-2px);
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HERO CONTENT (PRODUCT DETAILS) */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.store-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.badge-shopee {
  background: #ee4d2d;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-sub);
}

.stars {
  color: #fbbf24;
  letter-spacing: 1px;
}

.sales-count {
  color: var(--text-muted);
}

.product-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-main);
}

.price-card {
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.7), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

.current-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ff7355;
  letter-spacing: -0.5px;
}

.original-price {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.discount-badge {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(239, 68, 68, 0.4);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
}

.coupons-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.coupon-tag {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border: 1px dashed rgba(245, 158, 11, 0.4);
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}

/* Variant Selector */
.variant-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.variant-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-sub);
}

.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.variant-btn:hover {
  border-color: #ff7355;
  background: var(--bg-card-hover);
}

.variant-btn.active {
  border-color: #ee4d2d;
  background: rgba(238, 77, 45, 0.15);
  color: #ff7355;
  box-shadow: 0 0 12px rgba(238, 77, 45, 0.25);
}

.variant-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

/* Feature Highlights bullet points */
.bullet-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 6px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-sub);
}

.bullet-icon {
  color: var(--accent-green);
  font-weight: bold;
}

/* Primary Shopee Redirect Button */
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.btn-primary-shopee {
  flex: 1;
  min-width: 240px;
  background: linear-gradient(135deg, #ee4d2d, #f53d2d);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(238, 77, 45, 0.45);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.btn-primary-shopee:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(238, 77, 45, 0.65);
  color: white;
}

.btn-secondary-demo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary-demo:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  color: white;
}

.guarantee-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* FIND MY INTERACTIVE SIMULATOR SECTION */
.simulator-bg {
  background: linear-gradient(180deg, #090d16 0%, #0f172a 100%);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.simulator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.iphone-mockup {
  width: 320px;
  margin: 0 auto;
  background: #000;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 0 2px #334155;
  position: relative;
}

.iphone-screen {
  background: #1c1c1e;
  border-radius: 34px;
  overflow: hidden;
  height: 580px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.iphone-notch {
  width: 110px;
  height: 24px;
  background: #000;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

.map-view {
  flex: 1;
  background: #111827;
  position: relative;
  overflow: hidden;
}

.map-grid-bg {
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(rgba(238, 77, 45, 0.15) 1px, transparent 1px),
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 20px 20px, 40px 40px, 40px 40px;
}

.map-pin-container {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pulse-ring {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(238, 77, 45, 0.2);
  border: 2px solid #ee4d2d;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-ring 2s infinite ease-out;
}

@keyframes pulse-ring {
  0% { transform: translate(-50%, -50%) scale(0.4); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.card-pin {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border: 2px solid #ff7355;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
  z-index: 2;
  position: relative;
  font-size: 1.2rem;
}

.pin-label {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 8px;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.sound-waves {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px dashed #10b981;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  top: 50%;
  left: 50%;
}

.sound-waves.beeping {
  animation: sound-beep 0.8s infinite alternate;
}

@keyframes sound-beep {
  0% { transform: translate(-50%, -50%) scale(0.6); opacity: 0.3; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; border-color: #34d399; }
}

/* iPhone Bottom Sheet */
.findmy-sheet {
  background: #2c2c2e;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sheet-handle {
  width: 36px;
  height: 5px;
  background: #545458;
  border-radius: 3px;
  margin: 0 auto;
}

.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sheet-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
}

.sheet-status {
  color: #30d158;
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.sheet-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.action-card-btn {
  background: #3a3a3c;
  border: none;
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}

.action-card-btn:hover {
  background: #48484a;
}

.action-card-btn.active-sound {
  background: #ee4d2d;
}

.action-icon {
  font-size: 1.3rem;
}

.action-text {
  font-size: 0.75rem;
  font-weight: 600;
}

/* Simulator Description List */
.sim-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sim-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: start;
}

.sim-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(238, 77, 45, 0.15);
  color: #ff7355;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.sim-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.sim-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* FEATURES GRID SECTION */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 77, 45, 0.4);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ee4d2d, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-box:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(238, 77, 45, 0.2), rgba(245, 158, 11, 0.2));
  border: 1px solid rgba(238, 77, 45, 0.3);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.feature-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* COMPARISON TABLE SECTION */
.table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-main);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.95rem;
}

.compare-table th {
  background: #0f172a;
  color: var(--text-main);
  font-weight: 700;
}

.compare-table th.highlight-col,
.compare-table td.highlight-col {
  background: rgba(238, 77, 45, 0.1);
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.check-green {
  color: var(--accent-green);
  font-size: 1.2rem;
  font-weight: bold;
}

.cross-red {
  color: #f87171;
  font-size: 1.2rem;
}

/* CUSTOMER REVIEWS SECTION */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ee4d2d, #f59e0b);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.user-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.user-verified {
  font-size: 0.78rem;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-body {
  font-size: 0.92rem;
  color: var(--text-sub);
}

/* FAQ SECTION */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: #ff7355;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px 24px;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0 100px;
  background: #060911;
  color: var(--text-muted);
  font-size: 0.88rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-main);
}

/* STICKY MOBILE BOTTOM BAR */
.sticky-buy-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-buy-bar.show {
  transform: translateY(0);
}

.sticky-price-info {
  display: flex;
  flex-direction: column;
}

.sticky-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ff7355;
}

.sticky-title {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 992px) {
  .hero-grid,
  .simulator-container {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    position: static;
  }

  .bullet-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 50px 0;
  }

  .product-title {
    font-size: 1.4rem;
  }

  .current-price {
    font-size: 1.8rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }
}
