/* RESET */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html,
body{
  width:100%;
  overflow-x:hidden;
  scroll-behavior:smooth;
}

body{
  font-family:'Inter', sans-serif;
  background:#f5f1ea;
  color:#111;
}

/* HERO */

.hero{
  position:relative;

  width:100%;

  min-height:100svh;

  overflow:hidden;

  touch-action: pan-y;

  color:white;

  background:black;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;

  background:
    radial-gradient(
      circle at center,
      rgba(0,0,0,0) 38%,
      rgba(0,0,0,.22) 72%,
      rgba(0,0,0,.55) 100%
    );
}



/* HERO SLIDES */

.hero-slide{
  position:absolute;
  inset:0;

  background-size:cover;
  background-position:center 28%;
  background-repeat:no-repeat;

filter:
  brightness(.88)
  contrast(1.08)
  saturate(.95);

  opacity:0;

  transition:opacity 1.2s ease;

  transform:none;

    animation:none;
}

.hero-slide.active{
  opacity:1;
}

/* HERO IMAGES */

.hero1{
    background-image:url("images/hero1.jpg");
}

.hero2{
    background-image:url("images/hero2.jpg");
}

.hero3{

    background-image:url("images/hero3.jpg");

}

/* HERO CONTROLS */

.hero-controls{
    position:absolute;

    left:50%;
    bottom:42px;

    transform:translateX(-50%);

    display:flex;
    align-items:center;
    gap:18px;

    z-index:30;
}

.hero-indicators{
    display:flex;
    gap:10px;
}

.hero-pill{

    width:42px;
    height:3px;

    border:none;
    border-radius:999px;

    background:rgba(255,255,255,.22);

    transition:.25s ease;

    cursor:pointer;

}

.hero-pill.active{

    background:#fff;

}

.hero-arrow{

    display:flex;
    align-items:center;
    justify-content:center;

    width:52px;
    height:52px;

    font-size:34px;
    font-weight:300;
    line-height:1;

    cursor:pointer;

    color:rgba(255,255,255,.45);

    transition:
        color .25s ease,
        transform .25s ease,
        opacity .25s ease;

    flex-shrink:0;

}

.hero-arrow,
.hero-arrow:hover,
.hero-arrow:focus,
.hero-arrow:active{

    appearance:none;
    -webkit-appearance:none;

    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
    outline:none !important;

    color:rgba(255,255,255,.35);

}

.hero-arrow:hover{

    color:#fff;
    opacity:1;

}

/* FILM GRAIN */

.grain{
  position:absolute;
  inset:0;

  background-image:url("https://www.transparenttextures.com/patterns/asfalt-light.png");

  opacity:.05;

  mix-blend-mode:soft-light;

  animation:grain 8s steps(10) infinite;

  z-index:1;

  pointer-events:none;
}

/* NAV */

nav{
  position:absolute;

  top:0;
  left:0;

  width:100%;

  display:flex;
  justify-content:space-between;
  align-items:center;

  padding:28px 42px;

  z-index:10;
}

/* NAV SIDES */

.nav-left,
.nav-right{
  display:flex;
  align-items:center;

  gap:22px;

  flex:1;
}

.nav-right{
  justify-content:flex-end;
}

nav a{
  color:white;

  text-decoration:none;

  font-size:12px;

  text-transform:uppercase;

  letter-spacing:1.5px;

  font-weight:500;

  white-space:nowrap;

  opacity:.92;

  transition:
  opacity .35s ease,
  transform .35s ease;
}

nav:hover .nav-left a,
nav:hover .nav-right a{
  opacity:.45;
}

.nav-left a:hover,
.nav-right a:hover{
  opacity:1;
  transform:translateY(-1px);
}

.logo:hover{
  opacity:1;
  transform:translateX(-50%);
}

/* LOGO */

.logo{
  position:absolute;

  left:50%;
  transform: translate(-50%, -4px);

  display:flex;
  align-items:center;

  gap:10px;

  text-decoration:none;

  cursor:pointer;
}

.logo span{
  color:white;

  font-size:22px;
  font-weight:600;

  letter-spacing:8px;
}

.logo img{
  width:30px;
  height:auto;

  object-fit:contain;

  transition:
  transform .45s ease,
  filter .45s ease,
  opacity .45s ease;
}

.mobile-logo img{
  width:26px;
  height:auto;

  object-fit:contain;

  transition:
  transform .45s ease,
  filter .45s ease,
  opacity .45s ease;
}

.logo:hover img{
  transform:
  rotate(-8deg)
  scale(1.08);

  filter:
  drop-shadow(0 0 10px rgba(255,255,255,.75));

  opacity:1;
}

.mobile-nav{

    position:fixed;

    inset:0;

    background:
linear-gradient(
rgba(0,0,0,.74),
rgba(0,0,0,.74)
),
url("images/mobile_img.png");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

    z-index:999;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;
    align-items:center;
    padding-top:60px;

    align-items:center;

    opacity:0;

    visibility:hidden;

    transition:
    opacity .35s ease,
    visibility .35s ease;

    backdrop-filter: blur(2px);
}

.close-menu{

    position:absolute;

    top:20px;
    left:20px;

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

    border:none;
    background:transparent;

    appearance:none;
    -webkit-appearance:none;

    color:#fff;

    font-size:42px;
    font-weight:300;
    line-height:1;

    cursor:pointer;

    z-index:1001;
}

.close-menu:hover{

    opacity:1;

    transform:scale(1.08);

}

.mobile-logo{

    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    margin-top:-15px;
    transition:opacity .25s ease;
    opacity:0;
transform:translateY(12px);
transition:all .5s ease;

}

.mobile-logo:hover{

    opacity:.8;

}

.mobile-logo span{
    color:white;
    font-size:22px;
    font-weight:600;
    letter-spacing:8px;
}

.mobile-nav-links{
    display:flex;
    flex-direction:column;
    gap:26px;
    align-items:center;

    transform:translateY(20px);
    opacity:0;

    margin-top:50px;

    transition:
        transform .35s ease,
        opacity .35s ease;
}

.mobile-nav-links a{
    color:white;
    text-decoration:none;
    font-size:36px;
    letter-spacing:.18em;
    text-transform:uppercase;
    font-weight:300;

    opacity:0;
transform:translateY(12px);
transition:all .5s ease;
}

.mobile-nav-links a:first-child{
    font-family:"Cormorant Garamond", serif;
    font-size:64px;
    letter-spacing:0;
    text-transform:none;
    font-weight:500;
    margin-bottom:18px;
}

.mobile-tagline{
    margin-top:70px;
    color:white;
    opacity:.65;
    font-size:16px;
    letter-spacing:.12em;
    text-transform:uppercase;
}

.mobile-nav.open{

    opacity:1;

    visibility:visible;

}

.mobile-nav.open .mobile-logo{
    opacity:1;
    transform:translateY(0);
}

.mobile-nav.open .mobile-nav-links a{
    opacity:1;
    transform:translateY(0);
}

.mobile-nav.open .mobile-tagline{
    opacity:1;
    transform:translateY(0);
}

.mobile-nav.open .mobile-logo{
    transition-delay:.08s;
}

.mobile-nav.open .mobile-nav-links a:nth-child(1){
    transition-delay:.16s;
}

.mobile-nav.open .mobile-nav-links a:nth-child(2){
    transition-delay:.24s;
}

.mobile-nav.open .mobile-tagline{
    transition-delay:.32s;
}

.mobile-nav.open .mobile-nav-links{
    transform:translateY(0);
    opacity:1;
}

.mobile-nav.open .mobile-nav-links a{
    opacity:1;
    transform:translateY(0);
}

.mobile-nav.open .mobile-nav-links a:nth-child(1){
    transition-delay:.10s;
}

.mobile-nav.open .mobile-nav-links a:nth-child(2){
    transition-delay:.18s;
}

.mobile-nav.closing .mobile-logo,
.mobile-nav.closing .mobile-nav-links a,
.mobile-nav.closing .mobile-tagline{

    opacity:0;
    transform:translateY(12px);

}

/* HERO CONTENT */

.hero-content{
  position:relative;
  z-index:3;

  padding-top:180px;
  padding-left:74px;

  max-width:420px;

  text-shadow:
  0 2px 18px rgba(0,0,0,.18);

}

.eyebrow{
  letter-spacing:3px;

  font-size:12px;

  margin-bottom:50px;

  opacity:.95;
}

.hero h1,
.featured h2,
.club h2{
  font-family:'Cormorant Garamond', serif;

  font-size:72px;

  line-height:.92;
   
  margin-top:60px;
  margin-bottom:28px;

  font-weight:600;
}

.sub{
  max-width:520px;

  line-height:1.6;

  margin-bottom:38px;

  font-size:22px;
}

/* BUTTON */

.hero-button{
  right:80px;
  bottom:80px;

  
  background:rgba(255,255,255,.06);

  color:white;

    text-decoration:none;
  display:inline-block;

  border:1px solid rgba(255,255,255,.22);

  padding:17px 34px;

  cursor:pointer;

  font-weight:500;

  letter-spacing:1.6px;

  text-transform:uppercase;

  font-size:11px;

  backdrop-filter:blur(10px);

  transition:
  background .35s ease,
  border .35s ease,
  transform .35s ease,
  color .35s ease;
}

button:hover,
.hero-button:hover{
  background:white;

  color:black;

  border-color:white;

  transform:translateY(-2px);
}

/* INFO STRIP */

.info-strip{
    display:flex;
    justify-content:center;
    align-items:center;

    background:white;
    color:black;

    text-align:center;

    padding:18px 40px;

    font-size:12px;
    letter-spacing:2px;
    text-transform:uppercase;
}

/* SECTIONS */

.collection-section{
  background:#f5f1ea;
}

.journal{
  background:#efe7dc;
}

.playlists{
  background:#f5f1ea;
}

.collection-section,
.journal,
.playlists{
  padding:110px 70px;
}

.section-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;

  margin-bottom:46px;
}

.section-header h2{
  font-size:48px;

  font-family:'Cormorant Garamond', serif;

  color:black;
}

.section-header a{
  color:black;
  text-decoration:none;

  opacity:.7;
}

/* PRODUCTS */

/* PRODUCTS */

.products-slider{
  display:flex;
  gap:28px;

  overflow-x:auto;
  scroll-behavior:smooth;

  scrollbar-width:none;

  padding-bottom:10px;
}

.products-slider::-webkit-scrollbar{
  display:none;
}

.product-card{
  flex:0 0 calc((100% - 84px) / 4);
}

.product-card:hover{
  transform:translateY(-6px);
}

.product-image{
  width:100%;
  aspect-ratio:7/9;

  background-size:cover;
  background-position:center;

  border-radius:2px;
  margin-bottom:12px;
}

/* ARROWS */

.slider-arrows{
  display:flex;
  gap:12px;
}

.arrow{
  width:42px;
  height:42px;

  border-radius:50%;

  border:1px solid rgba(0,0,0,.12);

  background:white;
  color:black;

  font-size:18px;

  cursor:pointer;

  padding:0;
}

.arrow:hover{
  background:black;
  color:white;
}

/* PLACEHOLDERS */

.essentials{
  background-image:url('classic_hoodie.png');
    background-size:140%;
    background-position:center 45%;
}
.cream{
    background-image:url('crewneck.png');
    background-size:140%;
    background-position:center 45%;
}

.hat{
  background-image:url('classic_hat.png');

  background-size:cover;

  background-position:center top;
}

.tote{
    background-image:url('tote_bag.png');

  background-size:cover;

  background-position:center bottom;
}

/* FEATURED */

.featured{
  display:grid;

  grid-template-columns:1fr 1fr;

  min-height:760px;
}

.featured.dark{
  background:#151515;
  color:white;
}

.featured-text{
  padding:100px;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.featured-text p{
  line-height:1.8;

  margin-bottom:30px;

  font-size:18px;
}

.featured-image{
  background-size:cover;
  background-position:center;
}

.white-hoodie{
  background-image:url('white hoodie.png');

  background-size:cover;

  background-position:center right;
}

.maroon-crewneck{
  background-image:url('maroon-crewneck.png');

  background-size:cover;

  background-position:center;
}

/* JOURNAL */

.journal-grid{
  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:26px;
}

.journal-card{
  height:540px;

  background-size:cover;
  background-position:center;

  position:relative;

  overflow:hidden;

  transition:transform .5s ease;
}

.journal-card:hover{
  transform:scale(1.02);
}

.overlay{
  position:absolute;

  bottom:34px;
  left:34px;

  color:white;
}

.overlay h3{
  font-family:'Cormorant Garamond', serif;

  font-size:34px;

  margin-bottom:8px;
}

/* JOURNAL IMAGES */

.sunset{
  background-image:url('the_drive_home.png');
  background-position:center 75%;
}

.friends{
  background:url('https://images.unsplash.com/photo-1511988617509-a57c8a288659?q=80&w=1974&auto=format&fit=crop');
}

.wave{
  background:url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1973&auto=format&fit=crop');
}

/* PLAYLISTS */

.one{background:#2d3748;}
.two{background:#111827;}
.three{background:#93c5fd;}
.four{background:#18181b;}

/* CLUB */

.club{
  background:
  linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
  url('https://images.unsplash.com/photo-1529156069898-49953e39b3ac?q=80&w=1974&auto=format&fit=crop');

  background-size:cover;
  background-position:center;

  color:white;

  padding:160px 70px;
}

.club-content{
  max-width:720px;
}

/* EMAIL */

.email-row{
  display:flex;

  margin-top:34px;
}

.email-row input{
  flex:1;

  padding:18px;

  border:none;

  background:rgba(255,255,255,.08);

  color:white;

  backdrop-filter:blur(6px);
}

/* FOOTER */

footer{
  display:flex;

  justify-content:space-between;
  align-items:center;

  padding:42px 70px;

  background:#111;

  color:white;
}

.footer-logo{
  display:flex;
  align-items:center;

  gap:10px;

  letter-spacing:6px;

  font-size:14px;
}

.footer-logo img{
  width:18px;
}

.footer-links a{
  color:white;

  text-decoration:none;

  margin-left:20px;

  opacity:.7;
}

/* ANIMATIONS */

@keyframes grain{

  0% { transform:translate(0,0); }
  10% { transform:translate(-2%,-3%); }
  20% { transform:translate(1%,2%); }
  30% { transform:translate(-1%,1%); }
  40% { transform:translate(3%,1%); }
  50% { transform:translate(-2%,2%); }
  60% { transform:translate(2%,-1%); }
  70% { transform:translate(0%,3%); }
  80% { transform:translate(-3%,0%); }
  90% { transform:translate(2%,2%); }
  100% { transform:translate(0,0); }

}

@keyframes heroZoom{

  from{
    transform:scale(1.03);
  }

  to{
    transform:scale(1.06);
  }

}




/* =========================
   RESPONSIVE
========================= */

/* TABLET */

@media (max-width: 1000px){

  nav{
    padding:24px;
  }

  .nav-left,
  .nav-right{
    gap:14px;
  }

  nav a{
    font-size:10px;
  }

  .logo span{
    font-size:18px;
    letter-spacing:4px;
  }

  .hero-content{
    padding:
    180px
    40px
    100px;

    max-width:380px;
  }

  .hero h1{
    font-size:64px;
    line-height:.92;
  }

  .sub{
    font-size:18px;
  }

.products,
.products-slider,
.journal-grid,
.playlist-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .featured{
    grid-template-columns:1fr;
  }

  .featured-image{
    min-height:420px;
  }

}

/* MOBILE */

@media (max-width: 768px){

  /* NAV */

  nav{
    padding:20px 22px;

    align-items:center;
  }

  .nav-left{
    display:none;
}

.nav-right{
    display:flex;
}

  .logo{
    position:absolute;
    left:50%;
    top:16px;              /* adjust this */
    transform:translateX(-50%);
}

  /* HAMBURGER */

.mobile-menu{

    position:absolute;

    left:22px;
    top:16px;

    width:28px;
    height:20px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    z-index:30;

    cursor:pointer;
}

  .mobile-menu span{
    display:block;

    height:2px;

    background:white;

    border-radius:10px;
  }

 
  /* HERO */

.hero2{
    background-image:url("images/hero2-mobile.jpg") !important;
    background-size:cover;
    background-position:center 40%;
}

  .hero-content{
    padding-top:100px;
    padding-left:20px;
    max-width:420px;
}
 

.hero h1{
    display:none;
}

.sub{
    display:none;
}

.hero .hero-button{

    position:absolute;

    right:-5px;
    bottom:-420px;

    padding:14px 24px;

    font-size:11px;

}ok 

.hero-controls{

    position:absolute;

    left:0;
    right:0;

    bottom:120px;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:12px;

    z-index:30;

}

.hero-arrow{
    display:none;
    opacity:.55;
    color:rgba(255,255,255,.55);
    
}

.hero-indicators{

    display:flex;

    align-items:center;

    gap:10px;

}

.hero-pill{

    width:44px;

    height:3px;

    border-radius:999px;

    border:none;

    background:rgba(255,255,255,.28);

}

  /* SECTIONS */

  .collection-section,
  .journal,
  .playlists,
  .club{
    padding:
    80px
    22px
    20px;
  }

  .section-header h2{
    font-size:38px;
  }

.products,
.products-slider,
.journal-grid,
.playlist-grid{
    grid-template-columns:1fr;
  }

  .product-image,
  .playlist-cover{
    height:420px;
  }

  .featured-text{
    padding:60px 24px;
  }

  .featured h2{
    font-size:54px;
  }

  footer{
    flex-direction:column;

    gap:20px;

    text-align:center;
  }


  

}

/* PRODUCT PAGE */

.product-header{

padding:30px 60px;

display:flex;

justify-content:space-between;

align-items:center;

border-bottom:1px solid #eee;

background:white;

}

.product-header a{

text-decoration:none;

color:black;

font-size:13px;

letter-spacing:.08em;

text-transform:uppercase;

}

.product-page{

display:grid;

grid-template-columns:1.2fr .8fr;

gap:80px;

padding:80px 70px;

max-width:1500px;

margin:auto;

}

.product-gallery img{

width:100%;

display:block;

}

.product-info h1{

font-family:"Cormorant Garamond",serif;

font-size:54px;

margin-bottom:10px;

}

.price{

font-size:24px;

margin-bottom:45px;

}

.option-group{

margin-bottom:35px;

}

.option-group label{

display:block;

font-size:12px;

text-transform:uppercase;

letter-spacing:.12em;

margin-bottom:15px;

}

.color-options,
.sizes{

display:flex;

gap:12px;

}

.color-options button,
.sizes button{

padding:12px 18px;

border:1px solid #ccc;

background:white;

cursor:pointer;

transition:.3s;

}

.color-options button.active,
.color-options button:hover,
.sizes button.active,
.sizes button:hover{

    background:black;
    color:white;

}

.add-cart{

width:100%;

padding:18px;

background:black;

color:white;

border:none;

cursor:pointer;

font-size:13px;

text-transform:uppercase;

letter-spacing:.12em;

margin:35px 0;

}

.description{

border-top:1px solid #ddd;

padding-top:30px;

line-height:1.8;

color:#666;

max-width:420px;

}

.product-page{

    background:#f6f2eb;

    min-height:100vh;

    padding-top:120px;

}

/* DARK NAVBAR */

.nav-dark{

    background:#000;

    position:relative;

}

/* PRODUCT PAGE BUTTON COLORS */

.product-page .color-options button,
.product-page .sizes button{

    color:#111;

}

.product-page .color-options button.active,
.product-page .sizes button.active{

    color:white;

}

.product-link{
    text-decoration: none;
    color: inherit;
    display: block;
}

/* CART */

.cart-page{

    max-width:1100px;

    margin:auto;

    padding:80px 30px;

    min-height:calc(100vh - 140px);

}

.cart-page h1{

    font-size:60px;

    margin-bottom:60px;

}

.cart-item{

    display:flex;

    gap:42px;

    align-items:flex-start;

    padding:45px 0;

    border-bottom:1px solid #d8d2c8;

}

.cart-item img{

    width:140px;

    background:#fff;

    flex-shrink:0;

}

.cart-info{

    display:flex;

    flex-direction:column;

    justify-content:center;

}

.cart-info h3{

    font-size:24px;

    margin-bottom:16px;

}

.cart-info p{

    color:#555;

    margin:4px 0;

}

.cart-quantity{

    display:flex;
    align-items:center;
    gap:18px;

    margin-top:18px;

}

.cart-quantity button{

    width:42px;
    height:32px;

    border:1px solid #ddd4c8;
    background:#fff;
    color:#111;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;
    font-weight:500;
    line-height:1;

    cursor:pointer;

    transition:
    background .25s ease,
    color .25s ease,
    border-color .25s ease,
    transform .15s ease;

}

.cart-quantity button:hover{

    background:#111;
    color:#fff;
    transform:translateY(-1px);

}

.cart-quantity span{

    font-size:18px;
    font-weight:600;

    min-width:18px;

    text-align:center;

}
.remove-item{

    margin-top:18px;

    background:none;
    border:none;

    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;

    color:#666;

    cursor:pointer;

    transition:.25s;

}

.remove-item:hover{

    color:#000;

    text-decoration:underline;

}

.cart-summary{

    width:340px;

    margin-left:auto;

    margin-top:70px;

    padding:40px;

    background:#fff;

    border:1px solid #d8d2c8;

}

.cart-summary h3{

    margin-bottom:30px;

    font-size:28px;

    font-family:"Cormorant Garamond", serif;

}

.summary-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:18px 0;

    font-size:15px;

}

.total{

    margin-top:28px;

    font-size:18px;

    font-weight:700;

}

.cart-summary hr{

    border:none;

    border-top:1px solid #ddd;

    margin:24px 0;

}

.checkout-btn{

    width:100%;

    height:56px;

    margin-top:35px;

    background:#000;

    color:#fff;

    border:none;

    cursor:pointer;

    letter-spacing:2px;

    text-transform:uppercase;

    transition:.25s;

}

.checkout-btn:hover{

    opacity:.85;

}

/* EMPTY CART */

.empty-cart{

    text-align:center;

    padding:120px 0;

}

.empty-cart h2{

    font-family:"Cormorant Garamond", serif;

    font-size:44px;

    font-weight:500;

    margin-bottom:15px;

}

.empty-cart p{

    color:#777;

    margin-bottom:35px;

    font-size:16px;

}

.continue-shopping{

    display:inline-block;

    padding:18px 36px;

    background:#000;

    color:#fff;

    text-decoration:none;

    letter-spacing:2px;

    text-transform:uppercase;

    font-size:12px;

    transition:.25s;

}

.continue-shopping:hover{

    opacity:.8;

}

/* ======================
   TOAST
====================== */

.toast{

    position:fixed;

    top:80px;
    right:30px;

    width:340px;

    background:#111;

    color:#fff;

    padding:20px;

    border-radius:12px;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

    opacity:0;

    transform:translateY(-20px);

    pointer-events:none;

    transition:.35s ease;

    z-index:9999;

}

.toast.show{

    opacity:1;

    transform:translateY(0);

}

.toast strong{

    display:block;

    font-size:15px;

    font-weight:600;

    margin-bottom:10px;

}

.toast p{

    margin:4px 0;

    color:#d5d5d5;

    font-size:14px;

    line-height:1.5;

}

@media (max-width:768px){

    .product-page{
        display:flex;
        flex-direction:column;
        gap:40px;
        padding:90px 24px 40px;
    }

    .product-gallery{
    width:92%;
    margin:0 auto 20px;
}

    .product-gallery img{
        display:block;
        width:100%;
        height:auto;
    }

    .product-info{
        width:100%;
    }

.cart-summary{
    width:100%;
    max-width:380px;
    margin:50px auto 0;
}

}

/* SUCCESS PAGE */

.success-page{

    min-height:75vh;

    display:flex;

    justify-content:center;
    align-items:center;

    padding:120px 20px;

}

.success-box{

    max-width:560px;

    text-align:center;

}

.success-check{

    width:90px;
    height:90px;

    margin:0 auto 40px;

    border:1px solid #111;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:42px;
    font-weight:300;

}

.success-box h1{

    font-family:"Cormorant Garamond", serif;

    font-size:64px;

    margin-bottom:24px;

}

.success-message{

    font-size:20px;

    line-height:1.8;

    color:#555;

    margin-bottom:50px;

}

.continue-shopping{

    display:inline-block;

    padding:18px 42px;

    background:#111;

    color:#fff;

    text-decoration:none;

    letter-spacing:.18em;

    text-transform:uppercase;

    font-size:12px;

    transition:.3s;

}

.continue-shopping:hover{

    background:#333;

}

@media(max-width:768px){

.success-box h1{

    font-size:48px;

}

.success-message{

    font-size:18px;

}

}


.close-menu{

    position:absolute;

    top:20px;
    left:20px;

    width:48px;
    height:48px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:0;

    border:none;
    background:transparent;

    appearance:none;
    -webkit-appearance:none;

    color:white;

    font-size:42px !important;
    font-weight:300;
    line-height:1;

    cursor:pointer;

    z-index:1001;
}


