/* ===== Lookbook Template ===== */

/* Catalog Hero */
.catalog-hero { padding: 120px 24px 40px; background: var(--bg); text-align: center; border-bottom: 1px solid var(--border); }
.catalog-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 400; color: var(--text); margin-bottom: 12px; }
.catalog-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.catalog-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.btn-outline { background: transparent; border: 1px solid var(--primary); color: var(--primary); font-family: var(--font-heading); font-weight: 400; letter-spacing: 0.03em; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.view-catalog-wrapper { text-align: center; margin-top: 48px; }
.view-catalog-btn { display: inline-block; padding: 14px 36px; font-size: 0.95rem; font-weight: 600; border-radius: var(--radius-full); transition: var(--transition); }
.view-catalog-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Navbar — transparent on hero, solid on scroll */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: transparent; transition: var(--transition); }
.navbar.scrolled { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400; color: #fff; display: flex; align-items: center; transition: var(--transition); }
.navbar.scrolled .logo { color: var(--text); }
.logo-mark { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--accent); color: var(--primary-dark); border-radius: var(--radius-sm); font-size: 1.2rem; font-style: italic; flex-shrink: 0; }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: rgba(255, 255, 255, 0.8); transition: var(--transition); position: relative; }
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--accent); transition: var(--transition); }
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.search-wrapper { position: relative; display: flex; align-items: center; }
.search-wrapper input { width: 0; padding: 0; border-radius: var(--radius-full); background: rgba(255, 255, 255, 0.15); font-size: 0.88rem; transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1); color: #fff; }
.search-wrapper input::placeholder { color: rgba(255, 255, 255, 0.6); }
.navbar.scrolled .search-wrapper input { background: var(--border-light); color: var(--text); }
.navbar.scrolled .search-wrapper input::placeholder { color: var(--text-muted); }
.search-wrapper.open input { width: 200px; padding: 10px 40px 10px 16px; }
.search-icon { position: absolute; right: 4px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: rgba(255, 255, 255, 0.8); cursor: pointer; transition: var(--transition); z-index: 2; }
.navbar.scrolled .search-icon { color: var(--text-muted); }
.search-icon:hover { color: #fff; }
.navbar.scrolled .search-icon:hover { color: var(--text); }
.cart-toggle { position: relative; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: rgba(255, 255, 255, 0.8); transition: var(--transition); font-size: 1.1rem; }
.navbar.scrolled .cart-toggle { color: var(--text-muted); }
.cart-toggle:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }
.navbar.scrolled .cart-toggle:hover { background: var(--border-light); color: var(--text); }
.cart-badge { position: absolute; top: 2px; right: 2px; width: 18px; height: 18px; background: var(--accent); color: var(--primary-dark); font-size: 0.65rem; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; transform: scale(0); transition: var(--transition); }
.cart-badge.visible { opacity: 1; transform: scale(1); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 28px; padding: 4px 0; }
.menu-toggle span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.navbar.scrolled .menu-toggle span { background: var(--text); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

body.solid-nav .navbar { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06); }
body.solid-nav .logo { color: var(--text); }
body.solid-nav .nav-links a { color: var(--text-muted); }
body.solid-nav .nav-links a:hover { color: var(--text); }
body.solid-nav .search-wrapper input { background: var(--border-light); color: var(--text); }
body.solid-nav .search-wrapper input::placeholder { color: var(--text-muted); }
body.solid-nav .search-icon { color: var(--text-muted); }
body.solid-nav .search-icon:hover { color: var(--text); }
body.solid-nav .cart-toggle { color: var(--text-muted); }
body.solid-nav .cart-toggle:hover { background: var(--border-light); color: var(--text); }
body.solid-nav .menu-toggle span { background: var(--text); }

/* Full-Bleed Hero */
.lookbook-hero { position: relative; min-height: 100vh; overflow: hidden; }
.hero-bg-image { position: absolute; inset: 0; }
.hero-bg-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%); }
.hero-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; max-width: 700px; width: 100%; }
.hero-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero-title { font-family: var(--font-heading); font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 24px; }
.hero-title em { font-style: italic; color: var(--accent); }
.hero-subtitle { font-size: 1.1rem; color: rgba(255, 255, 255, 0.8); line-height: 1.7; margin-bottom: 40px; max-width: 480px; font-weight: 300; }
.btn-primary { background: var(--accent); color: var(--primary-dark); }
.btn-primary:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { background: var(--text); color: #fff; }

/* Products — Alternating Full-Width Sections */
.products-section { padding: 80px 0 0; }
.section-eyebrow { font-size: 0.75rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; color: var(--text); }
.section-header { text-align: center; margin-bottom: 40px; padding: 0 24px; }
.category-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.category-pill { padding: 10px 24px; border-radius: var(--radius-full); font-size: 0.85rem; font-weight: 500; color: var(--text-muted); background: transparent; border: 1.5px solid var(--border); transition: var(--transition); letter-spacing: 0.3px; }
.category-pill:hover { border-color: var(--primary); color: var(--primary); }
.category-pill.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.lookbook-products { max-width: 100%; }
.lookbook-product { display: grid; grid-template-columns: 55% 45%; min-height: 70vh; border-bottom: 1px solid var(--border); }
.lookbook-product.hidden { display: none; }
.lookbook-product--reverse { direction: rtl; }
.lookbook-product--reverse > * { direction: ltr; }

.lookbook-product-image { position: relative; overflow: hidden; background: var(--secondary); }
.lookbook-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.lookbook-product:hover .lookbook-product-image img { transform: scale(1.04); }
.product-category-tag { position: absolute; top: 20px; left: 20px; padding: 5px 14px; font-size: 0.65rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(8px); color: var(--text-muted); }

.lookbook-product-info { display: flex; flex-direction: column; justify-content: center; padding: 60px 80px; }
.lookbook-product-index { font-family: var(--font-heading); font-size: 4rem; font-weight: 300; color: var(--text-light); line-height: 1; margin-bottom: 20px; display: block; }
.product-name { font-family: var(--font-heading); font-size: 2rem; font-weight: 400; margin-bottom: 12px; color: var(--text); line-height: 1.2; }
.product-desc { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; max-width: 400px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.product-price { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 400; color: #A88B5F; margin-bottom: 24px; }
.product-actions { display: flex; gap: 12px; }
.product-actions .product-add-btn { position: static; width: auto; height: auto; border-radius: 0; opacity: 1; transform: none; bottom: auto; right: auto; padding: 16px 32px; font-size: 0.875rem; }
.product-add-btn.added { background: var(--whatsapp); color: #fff; }
.discover-btn { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; padding: 0; border-radius: 50%; }
.no-results { text-align: center; padding: 80px 20px; color: var(--text-muted); font-size: 1.05rem; }
.no-results i { display: block; font-size: 2.5rem; margin-bottom: 16px; color: var(--text-light); }

/* How It Works — Vertical Timeline */
.how-it-works { padding: 100px 0; background: var(--secondary); }
.vertical-timeline { max-width: 600px; margin: 0 auto; }
.timeline-item { display: flex; gap: 24px; position: relative; }
.timeline-marker { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; z-index: 1; transition: var(--transition); }
.timeline-item:hover .timeline-dot { background: var(--accent); color: var(--primary-dark); transform: scale(1.1); }
.timeline-line { width: 2px; flex: 1; background: var(--border); margin: 0 auto; }
.timeline-content { padding: 8px 0 48px; }
.timeline-content h3 { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 400; margin-bottom: 8px; color: var(--text); }
.timeline-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* Testimonials — Full-Width Banner */
.testimonials { padding: 0; }
.testimonial-banner { background: var(--primary); color: #fff; padding: 100px 24px; text-align: center; }
.testimonial-content { max-width: 700px; margin: 0 auto; }
.quote-mark { font-family: var(--font-heading); font-size: 6rem; line-height: 0.5; color: var(--accent); opacity: 0.4; margin-bottom: 20px; }
.testimonial-content blockquote { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 400; font-style: italic; line-height: 1.6; color: #fff; margin-bottom: 32px; }
.quote-author { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-bottom: 20px; }
.quote-author strong { font-size: 0.95rem; font-weight: 600; color: var(--accent); }
.quote-author span { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }
.quote-stars { color: var(--accent); font-size: 0.85rem; display: flex; justify-content: center; gap: 3px; }

/* CTA Banner */
.cta-banner { background: var(--accent-soft); padding: 80px 24px; text-align: center; }
.cta-banner h2 { font-family: var(--font-heading); font-size: 2rem; font-weight: 400; color: var(--text); margin-bottom: 12px; }
.cta-banner p { font-size: 1rem; color: var(--text-muted); margin-bottom: 32px; max-width: 400px; margin-left: auto; margin-right: auto; }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 8px; padding: 16px 40px; background: var(--whatsapp); color: #fff; font-size: 1rem; font-weight: 600; transition: var(--transition); text-decoration: none; border-radius: var(--radius-full); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3); }
.cta-banner .btn-whatsapp { max-width: 280px; margin: 0 auto; }

/* Cart text colors override */
.cart-sidebar { color: var(--text); }
.cart-header h3 { color: var(--text); }
.cart-item-name { color: var(--text); }
.cart-item-price { color: var(--primary); }
.cart-total span { color: var(--text-muted); }
.cart-total strong { color: var(--text); }
.cart-empty p { color: var(--text-muted); }
.cart-empty span { color: var(--text-light); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3); }

/* Footer — Minimal */
.footer { background: var(--primary-dark); color: rgba(255, 255, 255, 0.5); padding: 32px 0; }

/* Product Page */
.product-detail-name { font-weight: 400; font-size: 2.4rem; letter-spacing: -0.01em; }
.product-detail-price { font-family: var(--font-heading); font-weight: 400; color: var(--accent); font-size: 1.6rem; }
.product-detail-category { background: var(--accent-soft); color: var(--accent); letter-spacing: 1.5px; }
.product-detail-description { font-size: 1.02rem; line-height: 1.8; }
.product-specs h3 { font-weight: 400; font-size: 1.1rem; letter-spacing: 0.5px; }
.related-products-section { border-top: 1px solid var(--border); }
.related-products-section .section-title { font-weight: 400; }
.related-products-grid .product-card { border-radius: 0; }
.related-products-grid .product-name { font-weight: 400; font-size: 1.15rem; }
.related-products-grid .product-price { font-family: var(--font-heading); font-weight: 400; color: var(--accent); }
.related-products-grid .product-add-btn { border-radius: 0; background: var(--accent); color: var(--primary-dark); }

@media (max-width: 768px) {
  .product-detail-name { font-size: 1.8rem; }
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand .logo { color: #fff; font-size: 1rem; font-weight: 400; }
.footer-brand .logo-mark { background: rgba(255,255,255,0.1); width: 28px; height: 28px; font-size: 0.9rem; }
.footer-brand span { font-size: 0.8rem; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.15); display: flex; align-items: center; justify-content: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); transition: var(--transition); }
.footer-links a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary-dark); }

/* Responsive */
@media (max-width: 1024px) {
  .lookbook-product { grid-template-columns: 1fr; min-height: auto; }
  .lookbook-product-image { height: 50vh; }
  .lookbook-product-info { padding: 40px 40px; }
  .lookbook-product-index { font-size: 3rem; }
  .product-name { font-size: 1.6rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--card); flex-direction: column; padding: 24px; gap: 0; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border-light); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; width: 100%; padding: 14px 0; color: var(--text); }
  .menu-toggle { display: flex; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .lookbook-product { padding-bottom: 10%; }
  .lookbook-product-image { height: 40vh; }
  .lookbook-product-info { padding: 32px 24px; }
  .lookbook-product-index { font-size: 2.5rem; margin-bottom: 16px; }
  .product-name { font-size: 1.4rem; }
  .product-desc { font-size: 0.85rem; }
  .product-price { font-size: 1.2rem; }
  .product-actions { flex-direction: column; }
  .product-actions .btn-outline { justify-content: center; }
  .discover-btn { display: none; }
  .testimonial-content blockquote { font-size: 1.2rem; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .cart-sidebar { width: 100vw; }
  .product-modal { grid-template-columns: 1fr; width: 95%; max-height: 90vh; overflow-y: auto; }
  .product-modal-image { height: 260px; min-height: auto; }
  .product-modal-info { padding: 28px 24px; }
  .product-modal-name { font-size: 1.4rem; }
  .product-modal-price { font-size: 1.6rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .lookbook-hero { min-height: 100vh; }
  .hero-content { padding: 100px 16px 60px; }
  .products-section { padding: 60px 0 0; }
  .how-it-works { padding: 70px 0; }
  .cta-banner { padding: 60px 16px; }
  .lookbook-product { padding-bottom: 10%; }
  .lookbook-product-image { height: 35vh; }
  .lookbook-product-info { padding: 24px 16px 32px; }
  .lookbook-product-index { font-size: 2rem; }
  .product-name { font-size: 1.2rem; }
  .product-desc { display: none; }
  .category-filters { gap: 8px; }
  .category-pill { padding: 8px 16px; font-size: 0.78rem; }
  .product-category-tag { max-width: 150px; font-size: 0.4375rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .timeline-dot { width: 44px; height: 44px; font-size: 0.9rem; }
  .timeline-content h3 { font-size: 1.1rem; }
  .testimonial-banner { padding: 70px 16px; }
  .quote-mark { font-size: 4rem; }
  .testimonial-content blockquote { font-size: 1rem; }
}

/* ===== About Section ===== */
.lookbook-about { position: relative; min-height: 25vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--bg); }
.lookbook-about-content { position: relative; z-index: 1; text-align: center; max-width: 600px; padding: 4rem 4rem 2rem 4rem; }
.lookbook-about-eyebrow { color: var(--accent); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; }
.lookbook-about-divider { width: 50px; height: 1px; background: var(--accent); margin: 1.5rem auto; }
.lookbook-about-description { font-size: 1.05rem; line-height: 1.8; color: var(--text-muted); }