/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2d3748;
  background: #faf5eb;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; }

/* ===== Container ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-title { font-size: 36px; font-weight: 700; color: #1a365d; margin-bottom: 12px; }
.section-subtitle { font-size: 16px; color: #718096; max-width: 500px; margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 6px; font-weight: 600; font-size: 15px;
  transition: all 0.3s ease; border: 2px solid transparent;
}
.btn-primary { background: #1a365d; color: #fff; border-color: #1a365d; }
.btn-primary:hover { background: #2a4a7f; border-color: #2a4a7f; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,54,93,0.3); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-gold { background: #d69e2e; color: #fff; border-color: #d69e2e; }
.btn-gold:hover { background: #b8860b; border-color: #b8860b; }
.btn.added { background: #38a169; border-color: #38a169; color: #fff; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.3s ease;
  background: transparent;
}
.navbar.scrolled { background: rgba(26,54,93,0.97); padding: 10px 0; box-shadow: 0 2px 20px rgba(0,0,0,0.15); }
.nav-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; }
.logo-icon { color: #d69e2e; font-size: 20px; }
.nav-links { display: flex; gap: 32px; }
.nav-link { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; transition: color 0.3s; }
.nav-link:hover, .nav-link.active { color: #d69e2e; }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.cart-btn { position: relative; color: #fff; padding: 8px; transition: color 0.3s; }
.cart-btn:hover { color: #d69e2e; }
.cart-count {
  position: absolute; top: 0; right: 0; background: #d69e2e; color: #fff;
  font-size: 11px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
}
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; border-radius: 1px; }
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,54,93,0.98);
    flex-direction: column; align-items: center; justify-content: center; gap: 24px;
    transform: translateX(100%); transition: transform 0.3s ease;
  }
  .nav-links.active { transform: translateX(0); }
  .nav-link { font-size: 20px; }
  .mobile-menu-btn { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a365d 40%, #2a4a7f 70%, #1a365d 100%);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(214,158,46,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(26,54,93,0.3) 0%, transparent 50%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; background: rgba(214,158,46,0.4); border-radius: 50%;
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; }
  25% { transform: translate(30px, -40px) scale(1.2); opacity: 0.5; }
  50% { transform: translate(-20px, -80px) scale(0.8); opacity: 0.3; }
  75% { transform: translate(40px, -40px) scale(1.1); opacity: 0.4; }
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 800px; }
.hero-subtitle { color: #d69e2e; font-size: 14px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px; }
.hero-title { color: #fff; font-size: 56px; font-weight: 700; line-height: 1.15; margin-bottom: 24px; }
.hero-desc { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.7; margin-bottom: 36px; max-width: 560px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
  .hero-title { font-size: 36px; }
  .hero-desc { font-size: 15px; }
}

/* ===== Carousel ===== */
.featured-section { background: #fff; }
.carousel-wrapper { position: relative; }
.carousel-track {
  display: flex; gap: 24px; transition: transform 0.5s ease-in-out;
  padding: 8px 0;
}
.carousel-card {
  min-width: calc(33.333% - 16px); flex-shrink: 0; background: #fff;
  border-radius: 8px; overflow: hidden; border: 1px solid #e2e8f0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.carousel-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.carousel-card-img { position: relative; height: 220px; overflow: hidden; }
.carousel-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.carousel-card:hover .carousel-card-img img { transform: scale(1.05); }
.carousel-card-badge {
  position: absolute; top: 12px; left: 12px; background: rgba(26,54,93,0.85);
  color: #fff; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 4px;
}
.carousel-card-body { padding: 20px; }
.carousel-card-dest { font-size: 12px; color: #d69e2e; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.carousel-card-title { font-size: 18px; font-weight: 600; color: #1a365d; margin-bottom: 10px; line-height: 1.3; }
.carousel-card-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.carousel-card-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; color: #718096; }
.carousel-card-price { font-size: 16px; font-weight: 700; color: #1a365d; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 44px; height: 44px; border-radius: 50%; background: #fff;
  border: 1px solid #e2e8f0; color: #1a365d; display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.carousel-btn:hover { background: #1a365d; color: #fff; }
.carousel-prev { left: -22px; }
.carousel-next { right: -22px; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e0; transition: all 0.3s; }
.carousel-dot.active { background: #d69e2e; width: 28px; border-radius: 5px; }

@media (max-width: 1024px) {
  .carousel-card { min-width: calc(50% - 12px); }
  .carousel-prev, .carousel-next { display: none; }
}
@media (max-width: 640px) {
  .carousel-card { min-width: 100%; }
  .carousel-card-img { height: 200px; }
}

/* ===== Categories ===== */
.categories-section { background: #faf5eb; }
.categories-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 24px 16px; background: #fff; border-radius: 8px; border: 1px solid #e2e8f0;
  transition: all 0.3s; text-align: center;
}
.category-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); border-color: #d69e2e; }
.category-icon { color: #1a365d; transition: color 0.3s; }
.category-card:hover .category-icon { color: #d69e2e; }
.category-name { font-size: 13px; font-weight: 600; color: #2d3748; }

@media (max-width: 1024px) { .categories-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .categories-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Product Filters ===== */
.product-filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn {
  padding: 8px 20px; border-radius: 6px; font-size: 14px; font-weight: 500;
  color: #718096; border: 1px solid #e2e8f0; background: #fff; transition: all 0.3s;
}
.filter-btn:hover { border-color: #1a365d; color: #1a365d; }
.filter-btn.active { background: #1a365d; color: #fff; border-color: #1a365d; }

/* ===== Product Grid ===== */
.products-section { background: #fff; }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #e2e8f0;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.1); }
.product-card-img { position: relative; height: 200px; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-badge {
  position: absolute; top: 10px; left: 10px; background: rgba(26,54,93,0.85);
  color: #fff; font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 4px;
}
.product-card-body { padding: 16px; }
.product-card-dest { font-size: 11px; color: #d69e2e; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.product-card-title { font-size: 15px; font-weight: 600; color: #1a365d; margin-bottom: 8px; line-height: 1.3; }
.product-card-title a { color: inherit; transition: color 0.3s; }
.product-card-title a:hover { color: #d69e2e; }
.product-card-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; color: #718096; margin-bottom: 12px; }
.review-count { color: #a0aec0; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-card-price { font-size: 18px; font-weight: 700; color: #1a365d; }

@media (max-width: 1024px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .products-grid { grid-template-columns: 1fr; } }

/* ===== Trust Badges ===== */
.trust-section { background: #faf5eb; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card {
  text-align: center; padding: 32px 20px; background: #fff; border-radius: 8px;
  border: 1px solid #e2e8f0; transition: transform 0.3s;
}
.trust-card:hover { transform: translateY(-2px); }
.trust-icon { color: #d69e2e; margin-bottom: 16px; }
.trust-title { font-size: 16px; font-weight: 600; color: #1a365d; margin-bottom: 8px; font-family: 'Playfair Display', serif; }
.trust-desc { font-size: 13px; color: #718096; }

@media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Footer ===== */
.footer { background: #0d1b2a; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.footer-about { font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-heading { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; transition: color 0.3s; }
.footer-links a:hover { color: #d69e2e; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 13px; }
.payment-methods { display: flex; gap: 10px; }
.payment-badge { background: rgba(255,255,255,0.1); color: #d69e2e; padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===== Product Detail Page ===== */
.product-detail { padding: 120px 0 80px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.product-detail-img { border-radius: 8px; overflow: hidden; }
.product-detail-img img { width: 100%; height: 450px; object-fit: cover; border-radius: 8px; }
.product-detail-info { padding-top: 8px; }
.product-detail-dest { font-size: 13px; color: #d69e2e; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.product-detail-title { font-size: 36px; font-weight: 700; color: #1a365d; margin-bottom: 16px; line-height: 1.2; }
.product-detail-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 20px; }
.product-detail-rating .stars { display: flex; gap: 2px; }
.product-detail-desc { font-size: 15px; color: #718096; line-height: 1.8; margin-bottom: 24px; }
.product-detail-price { font-size: 32px; font-weight: 700; color: #1a365d; margin-bottom: 8px; }
.product-detail-duration { font-size: 14px; color: #718096; margin-bottom: 24px; }
.product-detail-actions { display: flex; gap: 12px; align-items: center; }
.qty-control { display: flex; align-items: center; border: 1px solid #e2e8f0; border-radius: 6px; overflow: hidden; }
.qty-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #2d3748; background: #f7fafc; transition: background 0.2s; }
.qty-btn:hover { background: #edf2f7; }
.qty-input { width: 50px; height: 40px; text-align: center; border: none; border-left: 1px solid #e2e8f0; border-right: 1px solid #e2e8f0; font-size: 15px; font-weight: 600; }

@media (max-width: 768px) {
  .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .product-detail-img img { height: 300px; }
  .product-detail-title { font-size: 28px; }
}

/* ===== Cart Page ===== */
.cart-page { padding: 120px 0 80px; min-height: 80vh; }
.cart-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; }
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
  display: flex; gap: 16px; padding: 16px; background: #fff; border-radius: 8px;
  border: 1px solid #e2e8f0; transition: box-shadow 0.3s;
}
.cart-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.cart-item-img { width: 100px; height: 80px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 15px; font-weight: 600; color: #1a365d; margin-bottom: 4px; }
.cart-item-dest { font-size: 12px; color: #718096; margin-bottom: 8px; }
.cart-item-price { font-size: 16px; font-weight: 700; color: #1a365d; }
.cart-item-actions { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; }
.cart-item-remove { font-size: 13px; color: #e53e3e; transition: color 0.3s; }
.cart-item-remove:hover { color: #c53030; }
.cart-empty { text-align: center; padding: 60px 20px; }
.cart-empty h3 { font-size: 24px; color: #1a365d; margin-bottom: 12px; }
.cart-empty p { color: #718096; margin-bottom: 24px; }

/* Cart Summary */
.cart-summary {
  background: #fff; border-radius: 8px; border: 1px solid #e2e8f0; padding: 24px;
  position: sticky; top: 100px;
}
.cart-summary h3 { font-size: 20px; font-weight: 700; color: #1a365d; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid #e2e8f0; }
.summary-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; color: #718096; }
.summary-total { display: flex; justify-content: space-between; padding-top: 16px; border-top: 2px solid #1a365d; margin-top: 16px; font-size: 18px; font-weight: 700; color: #1a365d; }
.checkout-btn { width: 100%; margin-top: 20px; padding: 14px; font-size: 16px; }

@media (max-width: 768px) {
  .cart-grid { grid-template-columns: 1fr; }
  .cart-item { flex-direction: column; }
  .cart-item-img { width: 100%; height: 160px; }
}

/* ===== Modal ===== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 2000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: #fff; border-radius: 12px; padding: 32px; max-width: 460px; width: 100%;
  transform: translateY(20px); transition: transform 0.3s;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal h3 { font-size: 22px; font-weight: 700; color: #1a365d; margin-bottom: 8px; }
.modal p { font-size: 14px; color: #718096; margin-bottom: 20px; }
.modal-close { position: absolute; top: 16px; right: 16px; color: #a0aec0; font-size: 20px; }

/* Form styles */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #2d3748; margin-bottom: 6px; }
.form-group input {
  width: 100%; padding: 10px 14px; border: 1px solid #e2e8f0; border-radius: 6px;
  font-size: 14px; transition: border-color 0.3s; background: #fff;
}
.form-group input:focus { outline: none; border-color: #1a365d; }
.otp-inputs { display: flex; gap: 8px; justify-content: center; }
.otp-input {
  width: 46px; height: 50px; text-align: center; font-size: 20px; font-weight: 700;
  border: 2px solid #e2e8f0; border-radius: 8px; transition: border-color 0.3s;
}
.otp-input:focus { outline: none; border-color: #d69e2e; }
.resend-link { text-align: center; margin-top: 12px; font-size: 13px; color: #718096; }
.resend-link a { color: #1a365d; font-weight: 600; cursor: pointer; }
.resend-link a:hover { color: #d69e2e; }

/* Payment section */
.payment-methods-section { margin-top: 24px; }
.payment-option {
  display: flex; align-items: center; gap: 14px; padding: 16px; border: 2px solid #e2e8f0;
  border-radius: 8px; margin-bottom: 12px; cursor: pointer; transition: all 0.3s;
}
.payment-option:hover { border-color: #1a365d; }
.payment-option.selected { border-color: #d69e2e; background: #fffbeb; }
.payment-radio { width: 20px; height: 20px; border: 2px solid #cbd5e0; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.payment-option.selected .payment-radio { border-color: #d69e2e; }
.payment-option.selected .payment-radio::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: #d69e2e; }
.payment-info h4 { font-size: 15px; font-weight: 600; color: #1a365d; }
.payment-info p { font-size: 12px; color: #718096; }

/* ===== Policy Pages ===== */
.policy-page { padding: 120px 0 80px; }
.policy-content { max-width: 800px; margin: 0 auto; background: #fff; padding: 48px; border-radius: 8px; border: 1px solid #e2e8f0; }
.policy-content h1 { font-size: 32px; font-weight: 700; color: #1a365d; margin-bottom: 24px; }
.policy-content h2 { font-size: 20px; font-weight: 600; color: #1a365d; margin: 28px 0 12px; }
.policy-content p { font-size: 15px; line-height: 1.8; color: #4a5568; margin-bottom: 14px; }
.policy-content ul { margin: 12px 0 14px 20px; }
.policy-content li { font-size: 15px; line-height: 1.8; color: #4a5568; margin-bottom: 6px; list-style: disc; }
.policy-updated { font-size: 13px; color: #a0aec0; margin-bottom: 24px; }

@media (max-width: 640px) {
  .policy-content { padding: 24px; }
}

/* ===== Animations ===== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-in { animation: fadeIn 0.5s ease forwards; }
