/* ===== MONCOULOIR.CI - Main Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --navy: #0a0f2e;
  --navy-mid: #0d1640;
  --blue-electric: #FF6C37;
  --blue-bright: #ff824f;
  --blue-glow: #ff9a72;
  --blue-pale: #fff0ea;
  --white: #ffffff;
  --gray-light: #f0f4f8;
  --gray-mid: #b0bec5;
  --gray-dark: #546e7a;
  --accent-orange: #ff6b35;
  --accent-green: #00d4aa;
  --text-dark: #0a0f2e;
  --text-light: #546e7a;

  --font-heading: 'Montserrat', sans-serif;
  --font-title: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(255,108,55,0.12);
  --shadow-lg: 0 8px 48px rgba(255,108,55,0.2);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--blue-electric); border-radius: 3px; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: var(--gray-mid);
  font-family: var(--font-title);
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: var(--blue-glow); transition: var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item .icon { font-size: 0.9rem; }

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(10,15,46,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,108,55,0.2);
  padding: 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo span {
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-glow));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(255,108,55,0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: var(--font-title);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,108,55,0.15);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--blue-electric);
  border-radius: 50%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-search {
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn-search:hover { background: rgba(255,108,55,0.3); }
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 10px;
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.cart-btn {
  position: relative;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-btn:hover { background: rgba(255,108,55,0.3); }
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-orange);
  color: var(--white);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,108,55,0.08);
  color: var(--blue-electric);
  font-family: var(--font-title);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,108,55,0.2);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title span {
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-bright));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(255,108,55,0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(255,108,55,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue-electric);
  border: 2px solid var(--blue-electric);
}
.btn-outline-blue:hover {
  background: var(--blue-electric);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,108,55,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(255,108,55,0.15);
  border-color: rgba(255,108,55,0.2);
}
.product-img-wrap {
  position: relative;
  background: linear-gradient(135deg, #f0f4f8, #e8f0fe);
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img-wrap img {
  height: 160px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 6px;
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-new { background: var(--blue-electric); color: var(--white); }
.badge-used { background: var(--accent-orange); color: var(--white); }
.badge-promo { background: var(--accent-green); color: var(--navy); }
.product-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-size: 0.9rem;
  transition: var(--transition);
  color: var(--gray-dark);
}
.product-wishlist:hover { color: var(--accent-orange); transform: scale(1.1); }
.product-info { padding: 18px; }
.product-category {
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-electric);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-title);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.product-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.spec-tag {
  background: var(--gray-light);
  color: var(--gray-dark);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: var(--font-title);
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--navy);
}
.product-price .old-price {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-mid);
  text-decoration: line-through;
  margin-left: 6px;
}
.btn-add-cart {
  background: var(--blue-electric);
  color: var(--white);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.btn-add-cart:hover { background: var(--blue-bright); transform: scale(1.1); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-electric), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand .logo { font-size: 1.4rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 260px; color: rgba(255,255,255,0.55); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
  cursor: pointer;
}
.social-btn:hover { background: var(--blue-electric); transform: translateY(-3px); }
.footer-col h4 {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul li a::before { content: '›'; color: var(--blue-glow); }
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--blue-electric); }
.newsletter-form button {
  background: var(--blue-electric);
  border: none;
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--blue-bright); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--blue-glow); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0a1a4e 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(255,108,55,0.15) 0%, transparent 70%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,108,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,108,55,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}
.page-hero h1 span {
  background: linear-gradient(135deg, var(--blue-electric), var(--blue-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto 24px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-title);
}
.breadcrumb a { color: var(--blue-glow); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(30px); }
.fade-in { opacity: 0; }
.slide-left { opacity: 0; transform: translateX(-30px); }
.slide-right { opacity: 0; transform: translateX(30px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  z-index: 2000;
  padding: 30px;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  border-left: 1px solid rgba(255,108,55,0.2);
  overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.mobile-menu-close {
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu nav a {
  display: block;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.mobile-menu nav a:hover, .mobile-menu nav a.active { color: var(--blue-glow); padding-left: 8px; }
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(2px);
}
.overlay.open { display: block; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  font-family: var(--font-title);
  font-size: 0.88rem;
  border: 1px solid rgba(255,108,55,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.2rem; }

/* ===== TRUST BADGES ===== */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,108,55,0.15);
}
.trust-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-title);
  font-size: 0.85rem;
}
.trust-icon {
  font-size: 1.4rem;
  color: var(--blue-glow);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .navbar .container { padding: 14px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn-whatsapp { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .topbar-left { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
}
