/* editorial.css - Premium Magazine Style Layout for Product Detail Page */

.e-detail-page { max-width: 1400px; margin: 0 auto; background: #fff; padding-top: 40px;}

/* 1. Top Split Hero */
.e-split-hero { display: flex; gap: 80px; padding: 0 40px; margin-bottom: 120px; align-items: flex-start; }

/* Left Grid */
.e-left-gallery { flex: 7; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.e-gallery-wrap { width: 100%; aspect-ratio: 3/4; background: #f8f9fa; overflow: hidden; }
.e-gallery-wrap.lead { grid-column: span 2; min-height: 600px; aspect-ratio: auto; }
.e-gallery-wrap img { display: block; }

/* Right Sticky Info */
.e-right-info { flex: 4; max-width: 450px; position: sticky; top: 120px; }
.e-style-code { font-size: 0.85rem; color: #888; margin-bottom: 8px; font-family: monospace; letter-spacing: 1px;}
.e-title { font-size: 1.8rem; font-weight: 700; line-height: 1.3; margin-bottom: 30px; }
.e-price { font-size: 1.8rem; font-weight: 800; border-bottom: 1px solid #e5e5e5; padding-bottom: 30px; margin-bottom: 30px; }

.e-info-row { display: flex; font-size: 0.9rem; margin-bottom: 15px; }
.e-info-label { width: 100px; color: #777; font-weight: 600;}
.e-info-val { flex: 1; color: #111; font-weight: 500;}

.e-size-box { border-top: 1px solid #e5e5e5; padding-top: 30px; margin-top: 20px; margin-bottom: 30px;}
.e-select { width: 100%; padding: 18px; border: 1px solid #ddd; font-size: 0.95rem; margin-top: 15px; font-family: inherit; appearance: none; background: #fff url('data:image/svg+xml;utf8,<svg fill="black" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 15px center; background-size: 20px; cursor: pointer; border-radius: 0; outline: none; transition: border-color 0.2s; }
.e-select:focus { border-color: #000; }

.e-btns { display: flex; gap: 10px; }
.e-btn { flex: 1; padding: 22px 0; font-size: 1.05rem; font-weight: 800; border: 1px solid #000; text-align: center; cursor: pointer; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);}
.e-btn.white { background: #fff; color: #000; }
.e-btn.white:hover { background: #f8f9fa; }
.e-btn.black { background: #000; color: #fff; }
.e-btn.black:hover { opacity: 0.9; }

/* 2. Middle Campaign Banner */
.e-campaign-banner { text-align: center; padding: 120px 20px; background: #f4f6f8; margin-bottom: 120px; }
.e-campaign-banner h2 { font-size: 3rem; font-weight: 800; letter-spacing: 4px; margin-bottom: 20px; color: #111;}
.e-campaign-banner p { font-size: 1.2rem; color: #555; }

/* 3. Editorial Lookbook */
.e-lookbook { padding: 0 40px; margin-bottom: 120px; display: flex; flex-direction: column; gap: 150px; }

/* GSAP Start state */
.e-anim { opacity: 0; transform: translateY(50px); }

/* Editorial Blocks */
.e-ed-full { text-align: center; position: relative; }
.e-ed-full img { width: 100%; max-width: 1100px; height: auto; display: block; margin: 0 auto; background: #f0f0f0; }

.e-ed-split { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; max-width: 1200px; margin: 0 auto; }
.e-ed-split-text h3 { font-size: 2.2rem; font-weight: 800; margin-bottom: 25px; line-height: 1.2;}
.e-ed-split-text p { font-size: 1.05rem; color: #555; line-height: 1.8; word-break: keep-all; }
.e-ed-split img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; box-shadow: 0 30px 60px rgba(0,0,0,0.1); }

/* Responsive adjustments */
@media(max-width: 1024px) {
    .e-split-hero { flex-direction: column; padding: 0 20px; }
    .e-right-info { position: static; max-width: 100%; width: 100%; }
    .e-ed-split { grid-template-columns: 1fr; gap: 40px; }
    .e-lookbook { padding: 0 20px; gap: 80px; }
}
