/* ================= BASIC RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ================= BODY ================= */
body {
  background: linear-gradient(180deg, #eef4ff, #ffffff);
  color: #0A2540;
}

/* ================= HEADER ================= */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: #ffffff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.back-btn {
  text-decoration: none;
  font-weight: 600;
  color: #0A4A78;
}

.brand {
  font-weight: 800;
  font-size: 18px;
}

/* ================= HERO ================= */
.hero {
  height: 280px;
  background: url("../images/tshirts/tshirt1.jpg") center/cover no-repeat;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,74,120,0.85), rgba(0,0,0,0.5));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
  color: #fff;
}

.hero h1 {
  font-size: 42px;
  font-weight: 800;
}

.hero p {
  margin-top: 8px;
  font-size: 16px;
  opacity: 0.9;
}

/* ================= PRODUCTS ================= */
.products {
  padding: 70px 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 34px;
  font-weight: 800;
}

.section-title p {
  margin-top: 8px;
  color: #6b7b8c;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

/* Product card */
.product-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,74,120,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 80px rgba(10,74,120,0.18);
}

.product-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

/* Product info */
.product-info {
  padding: 26px;
}

.type {
  font-size: 13px;
  font-weight: 700;
  color: #D4AF37;
  text-transform: uppercase;
}

.product-info h3 {
  margin: 10px 0 14px;
  font-size: 22px;
  font-weight: 700;
}

/* Sizes */
.sizes span {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #eef3f9;
  font-size: 13px;
  font-weight: 600;
}

/* WhatsApp button */
.whatsapp-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 22px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
}

/* ================= CTA ================= */
.cta {
  margin: 90px 60px;
  padding: 60px;
  text-align: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #0A4A78, #08345c);
  color: #fff;
}

.cta h2 {
  font-size: 30px;
  font-weight: 800;
}

.cta p {
  margin-top: 10px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  margin-top: 24px;
  padding: 16px 30px;
  background: #D4AF37;
  color: #0A2540;
  font-weight: 800;
  border-radius: 14px;
  text-decoration: none;
}

/* ================= FOOTER ================= */
.footer {
  text-align: center;
  padding: 28px;
  background: #fff;
  font-size: 14px;
  color: #6b7b8c;
}
/* ================= HEADER ================= */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: #ffffff;
  box-shadow: 0 6px 30px rgba(0,0,0,0.06);
}

.logo {
  font-weight: 800;
  font-size: 18px;
  color: #0A4A78;
}

.header-nav a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
  color: #333;
}

/* Admin link special style */
.admin-header-link {
  font-size: 13px;
  color: #0A4A78;
  border: 1px solid #e5e9f0;
  padding: 6px 12px;
  border-radius: 8px;
}

.admin-header-link:hover {
  background: #0A4A78;
  color: #fff;
}
/* ===== PRODUCT IMAGE FIX ===== */
.product-card img {
  width: 100%;
  height: auto;              /* 🔥 IMPORTANT */
  max-height: 320px;         /* control height */
  object-fit: contain;       /* 🔥 FULL IMAGE SHOW */
  background: #f8f9fb;       /* nice background */
  padding: 12px;             /* breathing space */
  border-radius: 16px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #0A4A78;
  margin: 6px 0;
}
