/* ============================================================
   NOOR ATELIER — pages.css
   Page-specific styles: shop, product, bridal, about
   ============================================================ */


/* ══════════════════ SHOP PAGE ══════════════════ */
.shop-banner {
  background: linear-gradient(to right, var(--emerald-dark), var(--emerald));
  padding: 56px 80px;
  text-align: center;
}
.shop-banner-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3.5rem); color: white; font-weight: 400; margin-bottom: 8px; }
.shop-banner-title em { font-style: italic; color: var(--gold); }
.shop-banner-sub { font-size: 0.82rem; color: rgba(248,245,240,0.65); letter-spacing: 0.05em; }

.shop-layout { display: grid; grid-template-columns: 280px 1fr; max-width: 1440px; margin: 0 auto; padding: 56px 80px; align-items: start; }
.shop-filters { padding-right: 40px; border-right: 1px solid var(--border); position: sticky; top: 100px; }
.filter-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 28px; color: var(--charcoal); }
.filter-group { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-group-title { font-size: 0.67rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--text-mid); margin-bottom: 14px; }
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-check { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: 0.82rem; color: var(--text); }
.filter-check input { width: 15px; height: 15px; accent-color: var(--emerald); }
.filter-color-row { display: flex; gap: 8px; flex-wrap: wrap; }
.color-swatch { width: 24px; height: 24px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.color-swatch:hover, .color-swatch.active { border-color: var(--charcoal); }
.price-range { width: 100%; accent-color: var(--emerald); margin-top: 8px; }

.shop-grid-area { padding-left: 48px; }
.shop-grid-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.shop-result-count { font-size: 0.82rem; color: var(--text-mid); }
.shop-sort { font-family: 'Poppins', sans-serif; font-size: 0.78rem; border: 1px solid var(--border); padding: 8px 14px; background: white; color: var(--charcoal); cursor: pointer; outline: none; }
.shop-product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.shop-cta { background: var(--charcoal); padding: 80px; text-align: center; }
.shop-cta h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: white; font-weight: 400; margin-bottom: 12px; }
.shop-cta h2 em { font-style: italic; color: var(--gold); }
.shop-cta p { color: rgba(248,245,240,0.55); font-size: 0.86rem; margin-bottom: 32px; max-width: 400px; margin-left: auto; margin-right: auto; }

@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; padding: 32px 28px; }
  .shop-filters { position: static; border-right: none; padding-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 32px; margin-bottom: 32px; }
  .shop-grid-area { padding-left: 0; }
  .shop-product-grid { grid-template-columns: 1fr 1fr; }
  .shop-banner { padding: 48px 28px; }
  .shop-cta { padding: 56px 28px; }
}
@media (max-width: 600px) {
  .shop-product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}


/* ══════════════════ PRODUCT DETAIL PAGE ══════════════════ */
.product-page { max-width: 1440px; margin: 0 auto; padding: 56px 80px; }

.breadcrumb { font-size: 0.72rem; color: var(--text-light); margin-bottom: 40px; display: flex; gap: 8px; align-items: center; }
.breadcrumb span { color: var(--text-mid); cursor: pointer; transition: color 0.2s; }
.breadcrumb span:hover { color: var(--emerald); }
.breadcrumb span.current { color: var(--charcoal); cursor: default; }
.breadcrumb-sep { color: var(--border); }

.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.product-gallery { position: sticky; top: 100px; }
.gallery-main { aspect-ratio: 3/4; position: relative; overflow: hidden; margin-bottom: 12px; }
.gallery-main-bg { position: absolute; inset: 0; background: linear-gradient(145deg,#3d1a3a,#5c2858 40%,#7a3d75); }
.gallery-main-pattern { position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(199,166,106,0.15) 0%, transparent 50%), radial-gradient(ellipse 60% 40% at 20% 70%, rgba(248,245,240,0.08) 0%, transparent 40%); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.gallery-thumb { aspect-ratio: 3/4; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; overflow: hidden; }
.gallery-thumb.active { border-color: var(--gold); }
.thumb-bg-1 { background: linear-gradient(135deg,#3d1a3a,#7a3d75); width:100%; height:100%; }
.thumb-bg-2 { background: linear-gradient(135deg,#4a2060,#8b4da0); width:100%; height:100%; }
.thumb-bg-3 { background: linear-gradient(135deg,#2d1230,#6b2d70); width:100%; height:100%; }
.thumb-bg-4 { background: linear-gradient(135deg,#1a0d2d,#4a2060); width:100%; height:100%; }

.product-detail { padding-top: 8px; }
.product-detail-fabric { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.product-detail-name { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 500; color: var(--charcoal); line-height: 1.15; margin-bottom: 12px; }
.product-detail-price-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.product-detail-price { font-size: 1.4rem; font-weight: 600; color: var(--emerald); }
.product-detail-orig { font-size: 1rem; color: var(--text-light); text-decoration: line-through; }
.product-detail-save { background: var(--gold); color: white; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; font-weight: 600; }
.product-ratings { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.8rem; }
.rating-count { font-size: 0.78rem; color: var(--text-mid); }
.product-desc { font-size: 0.86rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }

.product-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); margin-bottom: 28px; border: 1px solid var(--border); }
.product-meta-item { background: white; padding: 14px 18px; }
.product-meta-label { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-light); font-weight: 600; margin-bottom: 4px; }
.product-meta-val { font-size: 0.84rem; color: var(--charcoal); font-weight: 500; }

.option-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; }
.size-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.size-btn { width: 48px; height: 48px; border: 1.5px solid var(--border); background: white; font-size: 0.78rem; font-family: 'Poppins', sans-serif; cursor: pointer; transition: all 0.2s; font-weight: 500; }
.size-btn:hover { border-color: var(--emerald); color: var(--emerald); }
.size-btn.active { background: var(--emerald); color: white; border-color: var(--emerald); }
.size-btn.unavailable { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }
.size-guide-link { font-size: 0.76rem; color: var(--emerald); text-decoration: underline; cursor: pointer; margin-bottom: 24px; display: inline-block; }

.qty-row { display: flex; align-items: center; margin-bottom: 24px; }
.qty-btn { width: 44px; height: 44px; border: 1.5px solid var(--border); background: white; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.qty-btn:hover { background: var(--emerald); color: white; border-color: var(--emerald); }
.qty-val { width: 56px; height: 44px; border-top: 1.5px solid var(--border); border-bottom: 1.5px solid var(--border); border-left: none; border-right: none; text-align: center; font-family: 'Poppins', sans-serif; font-size: 0.88rem; font-weight: 500; background: white; }

.add-to-cart-row { display: flex; gap: 10px; margin-bottom: 20px; }
.add-to-cart-row .btn { flex: 1; justify-content: center; }
.btn-wish { border: 1.5px solid var(--border); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: white; cursor: pointer; font-size: 1rem; transition: all 0.2s; }
.btn-wish:hover { border-color: #c0392b; color: #c0392b; }

.delivery-badge { background: rgba(14,75,67,0.06); border: 1px solid rgba(14,75,67,0.15); padding: 14px 18px; margin-bottom: 28px; display: flex; align-items: flex-start; gap: 12px; }
.delivery-icon { font-size: 1.1rem; margin-top: 2px; }
.delivery-text { font-size: 0.8rem; color: var(--text-mid); line-height: 1.6; }
.delivery-text strong { color: var(--emerald); }

.complete-look { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border); }
.complete-look-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 500; margin-bottom: 32px; }
.complete-look-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.look-item { background: white; border: 1px solid var(--border); padding: 16px; text-align: center; cursor: pointer; transition: box-shadow 0.2s; }
.look-item:hover { box-shadow: var(--shadow); }
.look-item-img { width: 60px; height: 60px; background: var(--beige); border-radius: 50%; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.look-item-name { font-size: 0.78rem; font-weight: 600; margin-bottom: 4px; }
.look-item-price { font-size: 0.75rem; color: var(--gold); font-weight: 600; }

.reviews-section { margin-top: 80px; padding-top: 56px; border-top: 1px solid var(--border); }
.reviews-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.reviews-header h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 500; }
.review-card { padding: 28px 0; border-bottom: 1px solid var(--border); }
.review-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.review-name { font-weight: 600; font-size: 0.88rem; }
.review-date { font-size: 0.75rem; color: var(--text-light); }
.review-location { font-size: 0.72rem; color: var(--text-mid); margin-top: 2px; }
.review-stars { color: var(--gold); margin-bottom: 8px; font-size: 0.8rem; }
.review-text { font-size: 0.85rem; color: var(--text-mid); line-height: 1.75; }

@media (max-width: 900px) {
  .product-page   { padding: 40px 28px; }
  .product-layout { grid-template-columns: 1fr; }
  .product-gallery{ position: static; }
}
@media (max-width: 600px) {
  .product-page   { padding: 28px 20px; }
  .complete-look-grid { grid-template-columns: repeat(3,1fr); }
}


/* ══════════════════ BRIDAL CONSULTATION PAGE ══════════════════ */
.bridal-hero {
  background: linear-gradient(to bottom right, var(--emerald-dark), var(--emerald));
  padding: 120px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bridal-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(199,166,106,0.1) 0%, transparent 70%); }
.bridal-hero-tag { display: inline-flex; align-items: center; gap: 10px; border: 1px solid rgba(199,166,106,0.4); color: var(--gold); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 8px 20px; margin-bottom: 24px; position: relative; }
.bridal-headline { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem,6vw,5rem); font-weight: 400; color: white; line-height: 1.1; margin-bottom: 16px; position: relative; }
.bridal-headline em { font-style: italic; color: var(--gold); }
.bridal-sub { font-size: 0.9rem; color: rgba(248,245,240,0.65); max-width: 480px; margin: 0 auto 40px; line-height: 1.8; position: relative; }

.bridal-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); max-width: 1440px; margin: 0 auto; }
.bridal-feature { background: white; padding: 40px 32px; text-align: center; }
.bridal-feature-icon { font-size: 2rem; margin-bottom: 16px; }
.bridal-feature-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 500; margin-bottom: 8px; }
.bridal-feature-desc { font-size: 0.8rem; color: var(--text-mid); line-height: 1.7; }

.bridal-form-section { padding: 96px 80px; max-width: 860px; margin: 0 auto; }
.bridal-form-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem,2.5vw,2.2rem); font-weight: 500; margin-bottom: 8px; }
.bridal-form-sub { font-size: 0.86rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 48px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: var(--charcoal); }
.form-input, .form-select, .form-textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--emerald); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-radio-group { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-radio { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.82rem; }
.form-radio input { accent-color: var(--emerald); width: 16px; height: 16px; }
.form-submit-area { text-align: center; margin-top: 40px; grid-column: 1 / -1; }
.form-submit-note { font-size: 0.74rem; color: var(--text-light); margin-top: 14px; }

@media (max-width: 900px) {
  .bridal-hero    { padding: 80px 28px; }
  .bridal-features{ grid-template-columns: 1fr; }
  .bridal-form-section { padding: 56px 28px; }
  .form-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bridal-hero    { padding: 72px 20px; }
  .bridal-form-section { padding: 48px 20px; }
}


/* ══════════════════ ABOUT PAGE ══════════════════ */
.about-hero { background: var(--beige); padding: 120px 80px; }
.about-hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-story h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3.5rem); font-weight: 400; line-height: 1.15; margin-bottom: 28px; }
.about-story h2 em { font-style: italic; color: var(--emerald); }
.about-story p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 18px; }
.about-story-ctas { margin-top: 36px; display: flex; gap: 14px; }

.about-founder-card { background: white; padding: 40px; box-shadow: var(--shadow-lg); }
.about-founder-img { width: 100%; aspect-ratio: 4/5; margin-bottom: 24px; background: linear-gradient(145deg, var(--emerald-dark), var(--emerald-light)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.about-founder-img::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 30%, rgba(199,166,106,0.2) 0%, transparent 70%); }
.founder-initials { font-family: 'Playfair Display', serif; font-size: 4rem; color: rgba(248,245,240,0.3); font-style: italic; }
.about-founder-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 500; margin-bottom: 4px; }
.about-founder-title { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.about-founder-quote { font-size: 0.84rem; color: var(--text-mid); font-style: italic; line-height: 1.7; }

.about-values { padding: 96px 80px; background: var(--ivory); }
.about-values-header { text-align: center; margin-bottom: 64px; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card { border: 1px solid var(--border); padding: 40px 32px; }
.value-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 300; color: var(--beige); line-height: 1; margin-bottom: 16px; }
.value-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 500; margin-bottom: 12px; }
.value-desc { font-size: 0.83rem; color: var(--text-mid); line-height: 1.75; }

.about-cta { background: var(--emerald); padding: 96px 80px; text-align: center; }
.about-cta h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3.2rem); color: white; font-weight: 400; margin-bottom: 16px; }
.about-cta h2 em { font-style: italic; color: var(--gold); }
.about-cta p { color: rgba(248,245,240,0.65); font-size: 0.88rem; max-width: 420px; margin: 0 auto 36px; line-height: 1.8; }

@media (max-width: 900px) {
  .about-hero       { padding: 72px 28px; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-values     { padding: 72px 28px; }
  .values-grid      { grid-template-columns: 1fr; }
  .about-cta        { padding: 72px 28px; }
}
@media (max-width: 600px) {
  .about-hero   { padding: 60px 20px; }
  .about-values { padding: 56px 20px; }
  .about-cta    { padding: 56px 20px; }
  .about-story-ctas { flex-direction: column; }
}
