﻿/* ==== Reset & Base ==== */
* { margin:0; padding:0; box-sizing:border-box; }
html,body { font-family: "Poppins", system-ui, -apple-system, Roboto, Arial, sans-serif; color:#0f1115; background:#ffffff; line-height:1.6; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; }
/* ==== Toast Notifications ==== */
.toast-container { position: fixed; top: 20px; right: 20px; display:flex; flex-direction:column; gap:12px; z-index:1200; pointer-events:none; }
.toast { min-width: 220px; max-width: 320px; padding:14px 18px; border-radius:12px; font-weight:600; font-size:.95rem; color:#fff; background:#111; box-shadow:0 16px 36px rgba(15,17,21,.22); opacity:0; transform: translateY(-14px); transition: opacity .35s ease, transform .35s ease; pointer-events:auto; }
.toast-visible { opacity:1; transform: translateY(0); }
.toast-success { background:#1eb955; }
.toast-error { background:#e63946; }
.toast-info { background:#0066ff; }
.toast-warning { background: linear-gradient(135deg,#f59e0b,#d97706); color:#fff; box-shadow:0 18px 40px rgba(217,119,6,.28); border:1px solid rgba(255,191,101,.45); }

/* ==== Layout Helpers ==== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.btn { display:inline-block; padding:12px 18px; border-radius:10px; background:#111; color:#fff; font-weight:600; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.15); background:#000; }

/* Accent */
:root{ --accent:#e63946; --ink:#0f1115; --ink-2:#3b3f46; --ink-3:#6b717c; --surface:#f6f7f9; --whatsapp:#25D366; }

/* ==== Header / Nav ==== */
header { position: sticky; top:0; z-index:10; background:rgba(255,255,255,.9); backdrop-filter: blur(10px); border-bottom: 1px solid #eef0f3; }
.navbar { display:flex; align-items:center; justify-content:space-between; gap:20px; min-height:64px; padding:10px 0; }
.brand { font-weight:800; letter-spacing:.5px; font-size:1.15rem; color:var(--ink); }
.nav-links { display:flex; align-items:center; gap:18px; }
.nav-links a { padding:10px 14px; border-radius:10px; font-weight:600; color:var(--ink-2); transition: background .2s ease, color .2s ease, transform .2s ease; }
.nav-links a:hover { background:var(--surface); color:var(--ink); transform: translateY(-1px); }
.nav-links a:focus-visible { outline:2px solid var(--accent); outline-offset:3px; }

@media (max-width: 820px){
  .navbar { flex-wrap:wrap; justify-content:center; text-align:center; }
  .brand { width:100%; }
  .nav-links { width:100%; justify-content:center; flex-wrap:wrap; gap:12px; padding-bottom:6px; }
  .nav-links a { background:var(--surface); border:1px solid transparent; }
  .nav-links a:hover { background:#fff; border-color:#e4e7ec; }
}

@media (max-width: 520px){
  .nav-links { gap:10px; }
  .nav-links a { flex:1 1 calc(50% - 10px); min-width:140px; text-align:center; }
}

/* ==== Hero ==== */
.hero { background: radial-gradient(1200px 600px at 80% -10%, #ffe7e9 0%, #fff 45%), linear-gradient(180deg,#ffffff 0%, #fbfcff 100%); }
.hero .wrap { display:grid; grid-template-columns: 1.1fr .9fr; gap:28px; align-items:center; padding: 44px 0; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); line-height:1.1; margin-bottom:10px; font-weight:800; letter-spacing:.2px; }
.hero p { color:var(--ink-2); margin-bottom:16px; }
.hero .cta { display:flex; gap:12px; flex-wrap:wrap; }
.hero-img { width:100%; height:auto; border-radius:16px; box-shadow: 0 20px 40px rgba(0,0,0,.08); object-fit:contain; background:#fff; }
.hero-img-wrap { position: relative; display:inline-block; }
/* ==== Products Grid ==== */

.products { padding: 60px 20px; max-width: 1100px; margin: auto; }
.products h2 { text-align:center; font-size:2rem; font-weight:700; margin-bottom:20px; }
/* ==== Product Filters ==== */
.filter-bar { display:flex; justify-content:center; gap:12px; margin-bottom:30px; flex-wrap:wrap; }
.filter-btn { padding:10px 18px; border-radius:999px; background:var(--surface); color:var(--ink-2); font-weight:600; border:1px solid transparent; transition:all .2s ease; }
.filter-btn:hover { background:#fff; border-color:#d7dbe3; color:var(--ink); box-shadow:0 6px 14px rgba(0,0,0,.08); }
.filter-btn.active { background:var(--accent); color:#fff; border-color:var(--accent); box-shadow:0 10px 24px rgba(230,57,70,.25); }
.product-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap:24px; }
.product { border:1px solid #eee; border-radius:12px; padding:20px; background:#fff; text-align:center; transition:all .25s ease; }
.product:hover { transform:translateY(-5px); box-shadow:0 10px 25px rgba(0,0,0,.08); }
.product img { width:100%; border-radius:8px; margin-bottom:15px; }
.product-img-wrap.dual {
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
.product-img-wrap.dual .dual-frame {
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:center;
}
.product-img-wrap.dual .dual-frame img {
  width:100%;
  border-radius:12px;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  object-fit:cover;
}
.product-img-wrap.dual .dual-frame figcaption {
  font-size:.82rem;
  font-weight:600;
  color:var(--ink-2);
  text-transform:uppercase;
  letter-spacing:.4px;
}
@media (max-width: 600px){
  .product-img-wrap.dual { grid-template-columns: 1fr; }
}
.sizes { margin-bottom:12px; }
.size-option { background:#f2f2f2; border-radius:6px; padding:6px 10px; margin:0 3px; transition:all .2s; }
.size-option.active, .size-option:hover { background:var(--accent); color:#fff; }

/* ==== Badges ==== */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #555;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  animation: pulse 1.5s infinite;
}
.badge.new { background: #e63946; }
.badge.sale { background: #1eb955; }
.badge.hot { background: #ff8c00; }
.badge.restocked { background: #2a9d8f; }
.badge.limited { background: #0066ff; }
.badge.trending { background: #ff1493; }

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

/* ==== Cart Page ==== */
.cart-list { display:flex; flex-direction:column; gap:15px; }
.cart-item { display:flex; justify-content:space-between; align-items:center; padding:15px; background:#fff; border:1px solid #eee; border-radius:10px; box-shadow:0 4px 10px rgba(0,0,0,.05); transition: all .2s ease; }
.cart-item:hover { transform: translateY(-3px); box-shadow:0 6px 15px rgba(0,0,0,.08); }
.cart-item p { margin:0; font-size:1rem; font-weight:500; }
.remove-btn { background:var(--accent); color:#fff; font-size:.9rem; padding:8px 14px; border-radius:8px; }
.remove-btn:hover { background:#c71c29; }
#cart-total { text-align:right; font-size:1.2rem; font-weight:700; }
#checkout-whatsapp { background:var(--whatsapp); width:100%; max-width:280px; display:block; margin:20px auto 0; text-align:center; }
#checkout-whatsapp:hover { background:#1eb955; }

/* ==== Newsletter ==== */
.newsletter { background: var(--surface); border-top:1px solid #eef0f3; margin-top: 120px; padding: 80px 0; }
.newsletter .wrap { display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap; }
.newsletter h2 { font-size:1.4rem; font-weight:700; }

/* Newsletter form (if used) */
#newsletter-form { display:flex; gap:8px; }
#newsletter-form input { padding:12px 14px; border:1px solid #e2e6ec; border-radius:10px; min-width:240px; }
#newsletter-form button { background:var(--accent); }
#newsletter-form button:hover { background:#c71c29; }

/* ==== Footer ==== */
footer { border-top:1px solid #eef0f3; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:16px 0; color:var(--ink-3); font-size:.95rem; }

/* ==== Contact Page ==== */
#whatsapp-btn { background:var(--whatsapp); }
#whatsapp-btn:hover { background:#1eb955; }

/* ==== Responsive (Better Media Queries) ==== */
@media (max-width: 900px){
  .hero .wrap { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .hero .cta { justify-content: center; }
  .hero-img { max-width: 85%; margin: 0 auto; display: block; }
}

@media (max-width: 600px){
  .nav-links a { font-size: 1rem; padding: 6px 10px; }
  .hero h1 { font-size: 1.8rem; }
  .hero p { font-size: 1rem; }
  .product-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; max-width: 280px; margin: 6px auto; display: block; }
  #newsletter-form { flex-direction: column; width: 100%; }
  #newsletter-form input { width: 100%; }
  .cart-item { flex-direction: column; text-align: center; gap: 10px; }
  #cart-total { text-align: center; }
}





















