/* ─── 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; }

/* ─── HERO QUOTE ─── */
.hero-quote {
  padding: 40px 40px 10px;
  text-align: center;
}

.hero-quote-text {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: #487657;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.hero-quote-en {
  font-size: 13px;
  color: #7c7b7b;
  margin-bottom: 6px;
  font-style: italic;
}

.hero-quote-attr {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #a0a0a0;
}

/* ─── ABOUT SECTION ─── */
.about-section {
  background: #fff;
  padding: 70px 40px;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}

.about-text p {
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

.about-text .btn { margin-top: 10px; }

.about-list {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.about-list li {
  padding: 6px 0 6px 20px;
  position: relative;
  color: #444;
  line-height: 1.7;
}

.about-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #487657;
  font-weight: 400;
}

.about-social {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #444;
  font-size: 13px;
  transition: color 0.2s;
}

.social-link:hover { color: #487657; }

.social-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ─── DRESSMAKING STEPS ─── */
.dressmaking-intro {
  max-width: 900px;
  margin: 0 0 40px;
}

.dressmaking-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.dm-step {
  padding: 24px 20px;
  background: #fff;
  border-top: 3px solid #487657;
}

.dm-num {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: #487657;
  display: block;
  margin-bottom: 10px;
}

.dm-step p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

.dressmaking-price {
  font-size: 14px;
  color: #444;
  line-height: 1.7;
}

.dressmaking-price strong { color: #1b1f23; }

/* ─── STORY SECTION ─── */
.story-section {
  background: #1b1f23;
  padding: 70px 40px;
}

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

.story-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.story-section .section-title { color: #f4f4f4; }

.story-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #487657;
  margin-bottom: 28px;
}

.story-text p {
  line-height: 1.9;
  color: #a0a0a0;
  margin-bottom: 16px;
  font-size: 14px;
}

.story-where { color: #d9d9d9 !important; }

.story-text strong { color: #f4f4f4; font-weight: 400; }

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

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; }
  .story-img img { aspect-ratio: 16/9; }
}

@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: 600px) {
  .dressmaking-steps { grid-template-columns: 1fr 1fr; }
}

@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; }
  .dressmaking-steps { grid-template-columns: 1fr; }
  .hero-quote { padding: 30px 20px 0; }
  .about-section,
  .story-section { padding: 50px 20px; }
}
