/* Zeeni Shirts Homepage Styles - Updated White & Purple Theme */

/* HERO SECTION - Simple & Modern */
.zeeni-hero{
  background-color: #B7A3E3; /* Solid purple background */
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zeeni-hero-inner{
  max-width: 1100px;
}
.zeeni-title{
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffffff; /* White heading */
}
.zeeni-sub{
  font-size: 20px;
  color: #f5f5f5; /* Slightly lighter white for subtitle */
  margin-bottom: 30px;
}

/* CTA BUTTON */
.zeeni-cta{
  display:inline-block;
  padding:14px 36px;
  background: #ffffff; /* White button */
  color: #B7A3E3; /* Purple text */
  font-weight:700;
  border-radius:999px;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
.zeeni-cta:hover{
  background: #d4c0f0; /* Lighter purple on hover */
  color: #0b0b0b;
  transform: translateY(-2px);
  box-shadow:0 8px 24px rgba(0,0,0,0.35);
}

/* SECTIONS */
.zeeni-section{
  padding:60px 20px;
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}
.zeeni-section h2{
  font-size:36px;
  margin-bottom:30px;
  color: #B7A3E3;
}
.zeeni-products-shortcode .products{
  display:block;
}

/* SHIPPING / PROMO BAR */
.zeeni-shipping-bar{
  background:#B7A3E3;
  color:#ffffff;
  padding:20px 10px;
  text-align:center;
  font-weight:600;
  font-size:16px;
}

/* FEATURED CATEGORIES */
.zeeni-category-grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:20px;
  max-width:900px;
  margin:0 auto;
}
.zeeni-category-card{
  background:#f5f5f5;
  color:#B7A3E3;
  padding:40px 20px;
  text-decoration:none;
  font-weight:700;
  font-size:20px;
  border-radius:12px;
  transition: all 0.3s ease;
}
.zeeni-category-card:hover{
  background:#d4c0f0;
  color:#ffffff;
  transform: translateY(-5px);
  box-shadow:0 10px 20px rgba(0,0,0,0.2);
}

/* GALLERY */
.zeeni-gallery-grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:16px;
  max-width:900px;
  margin:20px auto 0;
}
.zeeni-gallery-grid img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:12px;
  border: 2px solid #B7A3E3;
  transition: transform 0.3s ease;
}
.zeeni-gallery-grid img:hover{
  transform: scale(1.05);
}

/* RESPONSIVE TABLETS & UP */
@media(min-width:768px){
  .zeeni-title{ font-size:80px; }
  .zeeni-sub{ font-size:24px; }
  .zeeni-gallery-grid{ grid-template-columns: repeat(4,1fr); }
}

/* MOBILE ADJUSTMENTS */
@media(max-width:767px){
  .zeeni-hero{ padding:80px 15px; }
  .zeeni-title{ font-size:36px; }
  .zeeni-sub{ font-size:18px; }
  .zeeni-category-grid{ grid-template-columns: 1fr; }
  .zeeni-gallery-grid{ grid-template-columns: 1fr; }
}

