/* =========================
   IRIE LUXURY OVERRIDE
========================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root{
  --black:#000;
  --white:#fff;
  --gray:#666;
  --light:#f5f5f5;
}

body{
  font-family:'Montserrat',sans-serif!important;
  background:#fff!important;
  color:#000!important;
  letter-spacing:.02em;
  line-height:1.6;
}

/* HEADER */

.header{
  background:#fff!important;
  border:none!important;
  box-shadow:none!important;
}

.header-nav-container{
  border:none!important;
}

.header-pages{
  display:flex;
  justify-content:center;
  gap:50px;
}

.header-pages a{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:11px;
  font-weight:600;
  color:#000;
}

.header-pages a:hover{
  opacity:.5;
}

/* LOGO */

.store-logo{
  max-height:120px!important;
}

.store-name{
  text-align:center;
}

/* HERO */

.home-hero{
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
}

.home-hero h1{
  font-size:clamp(5rem,15vw,12rem);
  font-weight:800;
  letter-spacing:.15em;
  text-transform:uppercase;
  margin:0;
  line-height:.9;
}

.home-hero p{
  text-transform:uppercase;
  letter-spacing:.3em;
  font-size:12px;
}

/* PAGE TITLES */

.page-title{
  font-size:72px!important;
  font-weight:800!important;
  letter-spacing:.12em!important;
  text-transform:uppercase!important;
  text-align:center!important;
  margin:100px 0 70px!important;
}

/* PRODUCT GRID */

.product-list{
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  gap:50px!important;
}

.product-list-thumb{
  transition:.35s ease;
}

.product-list-thumb:hover{
  transform:translateY(-8px);
}

.product-list-image-container{
  background:#fafafa;
}

.product-list-image{
  transition:.4s ease;
}

.product-list-thumb:hover .product-list-image{
  transform:scale(1.03);
}

.product-list-thumb-info{
  padding-top:18px;
}

.product-list-thumb-name{
  font-size:13px!important;
  text-transform:uppercase!important;
  letter-spacing:.18em!important;
  font-weight:700!important;
}

.product-list-thumb-price{
  margin-top:10px!important;
  font-size:12px!important;
  letter-spacing:.15em!important;
  color:#555!important;
}

/* PRODUCT PAGE */

.product-container{
  max-width:1600px!important;
}

.product-images{
  gap:20px!important;
}

.product-image{
  border:none!important;
}

.product-name{
  font-size:48px!important;
  font-weight:800!important;
  letter-spacing:.1em!important;
  text-transform:uppercase!important;
}

.product-price{
  font-size:22px!important;
  font-weight:600!important;
}

.button,
button[type="submit"]{
  background:#000!important;
  color:#fff!important;
  border:none!important;
  border-radius:0!important;
  text-transform:uppercase!important;
  letter-spacing:.2em!important;
  padding:18px 35px!important;
  font-weight:700!important;
}

.button:hover{
  background:#111!important;
}

/* CART */

.cart-container{
  max-width:1200px;
  margin:auto;
}

.cart-item{
  border-bottom:1px solid #eee!important;
  padding:35px 0!important;
}

/* CONTACT */

.contact-form{
  max-width:800px;
  margin:auto;
}

input,
textarea,
select{
  border:1px solid #ddd!important;
  border-radius:0!important;
  padding:18px!important;
  font-family:Montserrat,sans-serif!important;
}

input:focus,
textarea:focus{
  border-color:#000!important;
  outline:none!important;
}

/* LOOKBOOK */

.lookbook-gallery{
  display:grid!important;
  grid-template-columns:repeat(2,1fr)!important;
  gap:25px!important;
}

.lookbook-gallery img{
  width:100%;
  display:block;
}

/* FOOTER */

.footer{
  margin-top:120px!important;
  border-top:1px solid #000!important;
  padding-top:50px!important;
}

.footer-nav-links ul{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:25px;
}

.footer-nav-links a{
  text-transform:uppercase;
  letter-spacing:.15em;
  font-size:11px;
}

.footer-nav-social{
  margin-top:30px;
}

.social-icons{
  justify-content:center!important;
}

/* MOBILE */

@media(max-width:900px){

  .product-list{
    grid-template-columns:1fr!important;
    gap:40px!important;
  }

  .page-title{
    font-size:42px!important;
  }

  .header-pages{
    gap:20px!important;
  }

  .home-hero h1{
    font-size:22vw;
  }

  .lookbook-gallery{
    grid-template-columns:1fr!important;
  }
}