@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700;800&display=swap');

:root {
  --font-main: 'Plus Jakarta Sans', sans-serif;
  --bg-color: #f8fafc;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --accent-gold: #f59e0b;
  --accent-blue: #2563eb;
  --whatsapp-green: #25d366;
  --border-light: #e2e8f0;
}

* { box-sizing: border-box; margin: 0; padding: 0; font-family: var(--font-main); }
body { background-color: var(--bg-color); color: var(--text-dark); scroll-behavior: smooth; }

/* Top Announcement Banner */
.announcement-bar {
  background: linear-gradient(90deg, #1e293b, #0f172a);
  color: #fbbf24;
  text-align: center;
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Glassmorphism Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.brand-logo { font-size: 1.8rem; font-weight: 800; text-decoration: none; color: var(--text-dark); letter-spacing: -1px; }
.brand-logo span { color: var(--accent-blue); }

.nav-links { display: flex; list-style: none; gap: 28px; }
.nav-links a { text-decoration: none; color: var(--text-dark); font-weight: 700; font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent-blue); }

.cart-trigger {
  background: var(--text-dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}
.cart-trigger:hover { transform: translateY(-2px); background: var(--accent-blue); }

/* High-Impact Dual Split Hero */
.hero-split { display: flex; height: 75vh; min-height: 500px; gap: 12px; padding: 12px; }
.hero-card {
  flex: 1;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 48px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-card.mens { background-image: url('images/images1.jpeg'); }
.hero-card.kids { background-image: url('images/images2.jpeg'); }
.hero-card:hover { flex: 1.4; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 30%, rgba(0,0,0,0.85) 100%);
}

.hero-content { position: relative; z-index: 2; color: #fff; }
.hero-content span { font-size: 0.85rem; letter-spacing: 3px; font-weight: 800; color: var(--accent-gold); text-transform: uppercase; }
.hero-content h2 { font-size: 2.5rem; margin: 8px 0 16px; font-weight: 800; line-height: 1.1; }

.btn-hero {
  display: inline-block;
  padding: 12px 24px;
  background: #ffffff;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 30px;
  transition: all 0.3s;
}
.btn-hero:hover { background: var(--accent-blue); color: #fff; transform: translateX(5px); }

/* Catalog Layout */
.catalog-container { padding: 60px 6%; }
.catalog-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.catalog-header h2 { font-size: 1.8rem; font-weight: 800; }

.filter-tabs .tab-btn {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  margin-left: 8px;
  transition: all 0.2s;
}
.filter-tabs .tab-btn.active, .filter-tabs .tab-btn:hover {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
}

/* Product Grid & Cards */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.product-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border-light);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 30px rgba(0,0,0,0.08); }

.product-img-wrapper {
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
  background: #f1f5f9;
}
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img { transform: scale(1.08); }

.product-tag { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; color: var(--accent-blue); letter-spacing: 1px; }
.product-title { font-size: 1.1rem; font-weight: 700; margin: 6px 0 8px; }
.product-price { font-size: 1.25rem; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; }

.btn-add {
  width: 100%;
  padding: 14px;
  background: var(--text-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-add:hover { background: var(--accent-blue); }

/* Cart Drawer UI */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); display: none; z-index: 200; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: 400px; height: 100vh; background: #fff; z-index: 201; display: flex; flex-direction: column; transition: right 0.3s ease; padding: 28px; }
.cart-drawer.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--border-light); padding-bottom: 18px; }
.close-btn { background: none; border: none; font-size: 2rem; cursor: pointer; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 0; }
.cart-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; border-bottom: 1px dashed var(--border-light); padding-bottom: 12px; }
.cart-footer { border-top: 1px solid var(--border-light); padding-top: 18px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 1.3rem; font-weight: 800; margin-bottom: 18px; }
.checkout-form input, .checkout-form textarea { width: 100%; padding: 12px; margin-bottom: 12px; border: 1px solid var(--border-light); border-radius: 8px; font-size: 0.95rem; }
.btn-whatsapp { width: 100%; padding: 16px; background: var(--whatsapp-green); color: #fff; border: none; border-radius: 8px; font-weight: 800; font-size: 1rem; cursor: pointer; }

@media (max-width: 768px) {
  .hero-split { flex-direction: column; height: auto; }
  .cart-drawer { width: 100%; right: -100%; }
}