/* ─── FOOTER LAYOUT (home: 4 columns) ─── */
.footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

/* ─── HERO ─── */
.hero-section {
  padding: 50px 40px 0;
  text-align: center;
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #487657;
  margin-bottom: 30px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 580px;
  position: relative;
}

.hero-logo-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.hero-logo-overlay span {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 6px;
  color: #f4f4f4;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
  white-space: nowrap;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-img-placeholder-left {
  background: url('../topleft.jpg') center center / cover no-repeat;
}

.hero-img-placeholder-right {
  background: url('../topright.jpg') center center / cover no-repeat;
}

/* ─── COLLECTIONS ─── */
.collections { background: #f9f9f9; }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.collection-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: linear-gradient(135deg, #487657 0%, #2c3a2f 100%);
  display: block;
  transition: transform 0.4s ease;
}

.collection-card:hover .collection-card-img { transform: scale(1.04); }

.collection-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 31, 35, 0.7);
  color: #f4f4f4;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 20px;
}

/* ─── PRODUCT GRID ─── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card { cursor: pointer; }

.product-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #c8d5c0 0%, #a2b89a 100%);
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s;
}

.product-card:hover .product-img { opacity: 0.88; }

.sale-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d54d4d;
  color: #fff;
  font-size: 11px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 8px;
}

.product-name {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #333;
  margin-bottom: 6px;
}

.product-price {
  font-size: 14px;
  color: #7c7b7b;
}

.product-price .old-price {
  text-decoration: line-through;
  margin-right: 6px;
}

.product-price .sale-price { color: #d54d4d; }

.quick-add {
  margin-top: 10px;
  width: 100%;
  padding: 9px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #1b1f23;
  color: #f4f4f4;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.quick-add:hover { background: #487657; }

/* ─── NEWSLETTER ─── */
.newsletter {
  background: #7c7b7b;
  text-align: center;
  padding: 60px 40px;
  color: #f4f4f4;
}

.newsletter h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.newsletter p { margin-bottom: 28px; font-size: 14px; }

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 460px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  outline: none;
}

.newsletter-form button {
  padding: 12px 24px;
  background: #1b1f23;
  color: #f4f4f4;
  border: none;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: #487657; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 798px) {
  .collections-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-split { grid-template-columns: 1fr; height: 760px; }
}

@media (max-width: 480px) {
  .collections-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-split { grid-template-columns: 1fr; height: 520px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-logo-img { max-height: 50% !important; max-width: 50% !important; }
}
