/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: Arial, Helvetica, sans-serif;
}

/* ================= HEADER ================= */
.header{
  position:fixed;
  top:0;
  width:100%;
  background:transparent;
  transition:0.3s ease;
  z-index:1000;
}

body.scrolled .header{
  background:#fff;
  border-bottom:1px solid #eee;
}

/* HEADER ROW */
.header-row{
  height:72px;
  padding:0 40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
}

/* RESET HEADER LINKS */
.menu-link{
  text-decoration:none;
  color:#111;
  font-size:13px;
  letter-spacing:2px;
  padding:4px 0;
  position:relative;
}

/* UNDERLINE */
.menu-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:1px;
  background:#111;
  transition:0.25s ease;
}

.menu-link:hover::after{
  width:100%;
}

/* REMOVE VISITED COLOR */
.menu-link:visited{
  color:#111;
}

/* LOGO */
.logo{
  font-size:22px;
  letter-spacing:5px;
  font-weight:500;
}

/* CENTER LOGO */
.logo-center{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
}

/* LEFT LOGO */
.logo-left{
  display:none;
}

/* AFTER SCROLL */
body.scrolled .logo-center{
  display:none;
}

body.scrolled .logo-left{
  display:inline;
}

/* LEFT */
.left{
  display:flex;
  align-items:center;
}

/* ================= MENU ================= */
.menu{
  display:none;
  gap:28px;
  margin-left:32px;
}

.menu-link{
  font-size:13px;
  letter-spacing:2px;
  cursor:pointer;
}

/* SHOW MENU AFTER SCROLL */
body.scrolled .menu{
  display:flex;
}

/* RIGHT */
.right{
  display:flex;
  align-items:center;
  gap:16px;
}

.search{
  padding:8px 16px;
  border-radius:20px;
  border:1px solid #ccc;
}

/* MEGA MENU BASE */
.mega{
  position:fixed;
  top:72px;
  width:100%;
  background:#fff;
  border-bottom:1px solid #eee;
  display:none;
  z-index:900;
}

.mega.show{
  display:block;
}

.mega-panel{
  display:none;
}

.mega-panel.active{
  display:block;
}

.mega-inner{
  max-width:1200px;
  margin:0 auto;
  padding:40px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px;
}

.mega h4{
  font-size:14px;
  margin-bottom:14px;
  letter-spacing:1.5px;
}

.mega a{
  display:block;
  margin-bottom:10px;
  color:#333;
  text-decoration:none;
}

.mega a:hover{
  text-decoration:underline;
}

.mega.show{
  display:block;
}

.mega-inner{
  max-width:1200px;
  margin:0 auto;
  padding:40px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:60px;
}

.mega h4{
  margin-bottom:14px;
  font-size:14px;
  letter-spacing:1.5px;
}

.mega a{
  display:block;
  margin-bottom:10px;
  text-decoration:none;
  color:#333;
}

/* OVERLAY */
.overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.35);
  opacity:0;
  pointer-events:none;
  transition:0.3s ease;
  z-index:900;
}

.overlay.active{
  opacity:1;
  pointer-events:auto;
}

/* SIDE MENU */
.side-menu{
  position:fixed;
  top:120px; /* below header + nav */
  left:-520px;
  width:520px;
  height:calc(100vh - 120px);
  background:#fff;
  padding:56px 48px;
  transition:left 0.4s ease;
  z-index:1000;
  box-shadow:20px 0 40px rgba(0,0,0,0.08);
}

.side-menu.active{
  left:0;
}

/* SIDE CONTENT */
.side-content h3{
  font-size:26px;
  margin-bottom:24px;
}

.side-content a{
  display:block;
  font-size:17px;
  margin-bottom:14px;
  text-decoration:none;
  color:#111;
}

.side-content a:hover{
  text-decoration:underline;
}

/* IMAGE GRID */
.side-images{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.side-images img{
  width:100%;
  height:150px;
  object-fit:cover;
}

/* ================= HERO ================= */

.hero{
  height:120vh;

  /* 🔥 IMPORTANT FIX */
  margin-top:-70px; /* SAME as header height */

  background:url("assets/shop/banner.jpg") center top / cover no-repeat;

  position:relative;
  display:flex;
  align-items:flex-end;
  padding:0 80px 100px;
}

/* HERO TEXT (PREMIUM PLACEMENT) */
.hero h1{
  color:white;
  font-size:52px;
  letter-spacing:4px;
  line-height:1.1;
  max-width:500px;
  text-shadow:0 4px 20px rgba(0,0,0,0.35);
}

/* ================= SHOP PAGE ================= */

.shop-products{
  max-width:1200px;
  margin:auto;

  padding:40px 20px;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}


.shop-card{
  background:white;

  padding:15px;

  text-align:center;

  border-radius:8px;

  box-shadow:0 2px 10px rgba(0,0,0,0.1);

  transition:0.3s;
}

.shop-card:hover{
  transform:translateY(-6px);
}


.shop-card img{
  width:100%;
  height:230px;
  object-fit:contain;
}


.shop-card button{
  margin-top:10px;

  padding:8px 15px;

  background:black;
  color:white;

  border:none;

  cursor:pointer;
}


/* ================= DETAIL PAGE ================= */

.shirt-detail{
  max-width:1200px;
  margin:auto;

  padding:40px 20px;

  display:flex;
  gap:50px;
  background:white;   /* FIXED */
}


.detail-images{
  flex:1;
}

.main-img{
  width:100%;
  max-width:400px;
  display:block;
  margin-bottom:15px;
}


.thumbs img{
  width:70px;
  margin:5px;
  cursor:pointer;
  border:1px solid #ddd;
}


.detail-info{
  flex:1;
}

.detail-info h1{
  font-size:28px;
}

.price{
  font-size:22px;
  font-weight:bold;
  margin:10px 0;
}


.sizes span{
  display:inline-block;

  border:1px solid black;

  padding:6px 12px;
  margin:5px;

  cursor:pointer;
}


.buy-btn{
  margin-top:20px;

  padding:12px 25px;

  background:black;
  color:white;

  border:none;

  cursor:pointer;
}
/* ===== PAGE BACKGROUND CONTROL ===== */

/* Collection / Rack Page (with blur bg) */
.product-page{
  background: transparent !important;
}

/* Sections on collection page */
.product-page .section{
  background: transparent !important;
}


/* Shop + Category + Detail Pages (White) */
.shop-page,
.product-grid,
.shirt-detail,
.category-header{
  background: white !important;
}

/* DARK OVERLAY */

.shop-hero::after{
  content:"";

  position:absolute;
  inset:0;

  background:rgba(0,0,0,0.4);
}


.hero-text{
  position:relative;
  z-index:2;

  text-align:center;
  color:white;
}


.hero-text h1{
  font-size:50px;
  letter-spacing:3px;
}


.hero-text p{
  margin:15px 0;
  font-size:18px;
  opacity:0.9;
}


.hero-text button{
  padding:12px 25px;

  background:white;
  color:black;

  border:none;
  font-weight:bold;

  cursor:pointer;
}

.hero-text button:hover{
  background:black;
  color:white;
}


/* ================= EDITORIAL SECTION ================= */

.editorial{
  width:100%;
  background:white;
}

/* FULL IMAGE BLOCK */

.editorial-full{
  position:relative;
  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;
}

/* IMAGE */

.editorial-image img{
  width:100%;
  height:100vh;
  object-fit:cover;
  display:block;
}

/* TEXT OVER IMAGE (MINIMAL) */

.editorial-text{
  position:absolute;
  bottom:80px;
  left:50%;
  transform:translateX(-50%);

  text-align:center;
  color:black;
}

.editorial-text h2{
  font-size:42px;
  font-weight:400;
  letter-spacing:2px;
  margin-bottom:10px;
}

.editorial-text p{
  font-size:16px;
  opacity:0.7;
}

/* MOBILE */

@media(max-width:768px){

  .editorial-text{
    bottom:40px;
    padding:0 20px;
  }

  .editorial-text h2{
    font-size:28px;
  }

}

/* ================= DOUBLE EDITORIAL ================= */

.editorial-double{
  display:flex;
  width:100%;
  min-height:100vh;
}

.editorial-half{
  flex:1;
  overflow:hidden;
}

.editorial-half img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* MOBILE STACK */

@media(max-width:768px){
  .editorial-double{
    flex-direction:column;
  }

  .editorial-half{
    min-height:60vh;
  }
}



/* ================= ZARA STYLE HORIZONTAL SHOP ================= */

.zara-shop{
  height:100vh;
  overflow:hidden;
  background:white;

  display:flex;
  align-items:center;
}

/* ================= PRODUCT SECTION ================= */

.shop-products-section{
  position: relative;
  width:100%;
  padding:60px 0;
  overflow:hidden;
}

/* ================= PRODUCT ROW ================= */

.shop-products{
  display:flex;
  gap:20px;

  padding:0;              /* ✅ FIX: remove invalid padding */
  margin:0;

  overflow-x:auto;
  scroll-behavior:smooth;

  scrollbar-width:none;   /* Firefox */
}

.shop-products::-webkit-scrollbar{
  display:none;           /* Chrome */
}

/* ================= PRODUCT ITEM ================= */

.zara-item{
  min-width:420px;
  display:flex;
  flex-direction:column;

  background:none;        /* ✅ FIX: no background on whole card */
}

/* ================= IMAGE ================= */

.zara-item img{
  width:100%;
  height:520px;

  object-fit:cover;       /* ✅ removes white canvas */
  display:block;          /* ✅ removes inline gap */

  background:#f2f2f2;     /* ✅ background ONLY for image */
}

/* ================= TEXT ================= */

.zara-item h3{
  margin:14px 0 4px;
  font-size:18px;
  font-weight:500;
  letter-spacing:0.5px;
  text-align:center;
}

.zara-item span{
  margin-bottom:12px;
  font-size:14px;
  opacity:0.6;
  text-align:center;
}

/* ================= ARROWS ================= */

.product-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:30px;
  height:30px;

  background:rgba(255,255,255,0.95);
  border:none;
  border-radius:50%;

  font-size:26px;
  cursor:pointer;
  z-index:10;

  box-shadow:0 4px 12px rgba(0,0,0,0.15);
  transition:0.3s ease;
}

.product-arrow:hover{
  background:black;
  color:white;
}

.product-arrow.left{
  left:10px;
}

.product-arrow.right{
  right:10px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){
  .product-arrow{
    display:none;
  }

  .zara-item{
    min-width:80vw;
  }

  .zara-item img{
    height:420px;
  }
}

/* ================= ZARA SLIDER ONLY ================= */

.zara-row{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;

  scrollbar-width:none;
}

.zara-row::-webkit-scrollbar{
  display:none;
}

/* ===== MAUN STORY ===== */

.maun-story{
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:60px;

  padding:120px 8vw;
  background:white;
}

.story-image img{
  width:100%;
  height:150vh;
  object-fit:cover;
}

.story-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.story-text h2{
  font-size:48px;
  font-weight:500;
  letter-spacing:1px;
  margin-bottom:20px;
}

.story-text p{
  font-size:18px;
  line-height:1.6;
  opacity:0.7;
}

/* ===== CURATED ROW ===== */

.curated-row{
  display:flex;
  gap:80px;

  padding:100px 8vw;
  background:rgb(255, 255, 255);
}

.curated-item{
  flex:1;
  text-align:center;
}

.curated-item img{
  width:100%;
  height:420px;
  object-fit:contain;

  transition:transform 0.5s ease;
}

.curated-item h4{
  margin-top:25px;
  font-size:16px;
  font-weight:500;
  letter-spacing:0.5px;
}

.curated-item span{
  display:inline-block;
  margin-top:8px;
  font-size:14px;
  opacity:0.6;
}

.curated-item:hover img{
  transform:scale(1.04);
}

/* ===== MAUN INFO (ZARA / H&M STYLE) ===== */

.maun-info{
  display:grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap:60px;

  padding:100px 8vw;
  background:#020202;
}

.info-col h3{
  font-size:22px;
  letter-spacing:2px;
  margin-bottom:15px;
   color:rgb(255, 255, 255);
}

.info-col h4{
  font-size:14px;
  font-weight:600;
  margin-bottom:12px;
  letter-spacing:0.5px;
   color:rgb(255, 255, 255);
}

.info-col p{
  font-size:14px;
  line-height:1.6;
  opacity:0.7;
   color:rgb(255, 255, 255);
}

.info-col a{
  display:block;
  font-size:14px;
  text-decoration:none;
  color:rgb(255, 255, 255);
  opacity:0.6;
  margin-bottom:8px;
}

.info-col a:hover{
  opacity:1;
}

/* MOBILE */
@media(max-width:768px){
  .maun-info{
    grid-template-columns:1fr;
    gap:40px;
  }
}