/* =========================
   GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#f4f1ea;
  color:#111;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

section{
  padding:120px 7%;
}

.section-header{
  margin-bottom:70px;
}

.section-header span{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
  color:#777;
  font-weight:700;
}

.section-header h2{
  font-size:68px;
  line-height:1;
  font-weight:900;
  letter-spacing:-3px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
  width:100%;
  padding:30px 7%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  backdrop-filter:blur(12px);
  background:rgba(244,241,234,.7);
}

.logo{
  font-size:28px;
  font-weight:900;
  letter-spacing:4px;
}

nav{
  display:flex;
  gap:40px;
}

nav a{
  color:#111;
  font-weight:500;
  position:relative;
}

nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  background:#111;
  transition:.4s;
}

nav a:hover::after{
  width:100%;
}

.nav-right{
  display:flex;
  gap:25px;
  font-weight:600;
}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid rgba(17,17,17,.18);
  border-radius:999px;
  background:rgba(255,255,255,.45);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.nav-toggle span{
  width:18px;
  height:2px;
  border-radius:999px;
  background:#111;
  transition:.25s ease;
}

.nav-toggle.is-open span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2){
  opacity:0;
}

.nav-toggle.is-open span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO
========================= */

.hero{
  min-height:100vh;
  padding:160px 7% 80px;
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:60px;
  align-items:center;
  position:relative;
}

.hero-label{
  display:inline-block;
  padding:12px 18px;
  border:1px solid #111;
  border-radius:50px;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:30px;
}

.hero-left h1{
  font-size:95px;
  line-height:.95;
  letter-spacing:-5px;
  margin-bottom:30px;
  font-weight:900;
}

.hero-left p{
  max-width:520px;
  font-size:18px;
  line-height:1.8;
  color:#555;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  gap:20px;
}

.hero-buttons a{
  padding:18px 30px;
  border-radius:18px;
  font-weight:700;
  transition:.4s;
  background:#111;
  color:#fff;
}

.hero-buttons a:hover{
  transform:translateY(-4px);
}

.hero-right{
  position:relative;
}

.hero-image-large{
  border-radius:40px;
  overflow:hidden;
}

.hero-image-large img{
  height:780px;
  object-fit:cover;
}

.floating-card{
  position:absolute;
  left:-60px;
  bottom:50px;
  background:#fff;
  padding:30px;
  width:280px;
  border-radius:28px;
  box-shadow:0 30px 60px rgba(0,0,0,.08);
}

.floating-card span{
  font-size:11px;
  letter-spacing:2px;
  color:#777;
}

.floating-card h3{
  font-size:28px;
  line-height:1.1;
  margin:14px 0;
}

.floating-card p{
  font-size:24px;
  font-weight:800;
}

.hero-bg-text{
  position:absolute;
  bottom:-30px;
  left:50%;
  transform:translateX(-50%);
  font-size:250px;
  font-weight:900;
  opacity:.04;
  letter-spacing:20px;
  pointer-events:none;
}

/* =========================
   FEATURE STRIP
========================= */

.feature-strip{
  padding:40px 7%;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.08);
}

.strip-item{
  text-align:center;
  font-size:15px;
  font-weight:700;
  letter-spacing:1px;
}

/* =========================
   CATEGORIES
========================= */

.categories-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:25px;
}

.category-tall{
  position:relative;
  border-radius:40px;
  overflow:hidden;
}

.category-tall img{
  height:760px;
  object-fit:cover;
  transition:.6s;
}

.category-stack{
  display:grid;
  grid-template-rows:1fr 1fr;
  gap:25px;
}

.category-small{
  position:relative;
  border-radius:40px;
  overflow:hidden;
}

.category-small img{
  height:367px;
  object-fit:cover;
  transition:.6s;
}

.category-tall:hover img,
.category-small:hover img{
  transform:scale(1.08);
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.55), transparent);
  display:flex;
  align-items:flex-end;
  padding:40px;
}

.overlay h3{
  color:#fff;
  font-size:42px;
  font-weight:800;
}

/* =========================
   PRODUCTS
========================= */

.products-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.product-card{
  transition:.4s;
}

.offset-card{
  margin-top:70px;
}

.product-card:hover{
  transform:translateY(-10px);
}

.product-image{
  border-radius:36px;
  overflow:hidden;
  margin-bottom:25px;
}

.product-image img{
  height:540px;
  object-fit:cover;
  transition:.6s;
}

.product-card:hover img{
  transform:scale(1.08);
}

.product-info{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
}

.product-info h3{
  font-size:28px;
  margin-bottom:8px;
}

.product-info span{
  color:#777;
}

.product-info p{
  font-size:24px;
  font-weight:800;
}

/* =========================
   PROMO
========================= */

.promo{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:40px;
  align-items:center;
}

.promo-left{
  padding-right:40px;
}

.promo-left span{
  font-size:12px;
  letter-spacing:2px;
  font-weight:700;
  color:#666;
}

.promo-left h2{
  font-size:80px;
  line-height:.95;
  margin:25px 0 40px;
  letter-spacing:-4px;
}

.promo-left a{
  display:inline-block;
  padding:18px 32px;
  background:#111;
  color:#fff;
  border-radius:18px;
  font-weight:700;
}

.promo-right{
  border-radius:40px;
  overflow:hidden;
}

.promo-right img{
  height:700px;
  object-fit:cover;
}

/* =========================
   ABOUT
========================= */

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.about-image{
  border-radius:40px;
  overflow:hidden;
}

.about-image img{
  height:760px;
  object-fit:cover;
}

.about-content span{
  font-size:12px;
  letter-spacing:2px;
  font-weight:700;
  color:#777;
}

.about-content h2{
  font-size:78px;
  line-height:.95;
  margin:25px 0;
  letter-spacing:-4px;
}

.about-content p{
  font-size:18px;
  line-height:1.9;
  color:#555;
  margin-bottom:35px;
  max-width:520px;
}

.about-content a{
  display:inline-block;
  padding:18px 30px;
  border:1px solid #111;
  color:#111;
  border-radius:18px;
  font-weight:700;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-wrapper{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.testimonial-card{
  background:#fff;
  padding:45px;
  border-radius:35px;
}

.dark-card{
  background:#111;
  color:#fff;
  transform:translateY(40px);
}

.testimonial-card p{
  font-size:26px;
  line-height:1.5;
  margin-bottom:40px;
}

.testimonial-card h4{
  font-size:16px;
  opacity:.8;
}

/* =========================
   NEWSLETTER
========================= */

.newsletter{
  text-align:center;
}

.newsletter span{
  font-size:12px;
  letter-spacing:2px;
  font-weight:700;
  color:#666;
}

.newsletter h2{
  font-size:90px;
  line-height:.95;
  margin:25px 0 50px;
  letter-spacing:-5px;
}

.newsletter form{
  display:flex;
  justify-content:center;
  gap:20px;
}

.newsletter input{
  width:420px;
  padding:22px 24px;
  border:none;
  border-radius:20px;
  font-size:16px;
  background:#fff;
}

.newsletter button{
  padding:22px 34px;
  border:none;
  border-radius:20px;
  background:#111;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

/* =========================
   FOOTER
========================= */

.footer{
  padding:100px 7% 40px;
  background:#111;
  color:#fff;
}

.footer-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  margin-bottom:70px;
}

.footer-top h2{
  font-size:90px;
  letter-spacing:-5px;
}

.footer-links{
  display:flex;
  gap:40px;
}

.footer-links a{
  color:#aaa;
  transition:.3s;
}

.footer-links a:hover{
  color:#fff;
}

.footer-bottom{
  padding-top:30px;
  border-top:1px solid rgba(255,255,255,.08);
  color:#777;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

  .hero,
  .about,
  .promo{
    grid-template-columns:1fr;
  }

  .hero-left h1,
  .promo-left h2,
  .about-content h2,
  .newsletter h2{
    font-size:72px;
  }

  .categories-grid{
    grid-template-columns:1fr;
  }

  .products-grid{
    grid-template-columns:1fr 1fr;
  }

  .testimonial-wrapper{
    grid-template-columns:1fr;
  }

  .dark-card{
    transform:none;
  }
}

@media(max-width:768px){

  section{
    padding:80px 6%;
  }

  nav{
    display:none;
  }

  .hero{
    padding-top:140px;
  }

  .hero-left h1{
    font-size:54px;
  }

  .hero-bg-text{
    display:none;
  }

  .hero-image-large img,
  .about-image img,
  .promo-right img{
    height:500px;
  }

  .floating-card{
    left:20px;
    bottom:20px;
    width:240px;
    padding:24px;
  }

  .feature-strip{
    grid-template-columns:1fr 1fr;
    gap:20px;
  }

  .products-grid{
    grid-template-columns:1fr;
  }

  .offset-card{
    margin-top:0;
  }

  .section-header h2,
  .promo-left h2,
  .about-content h2,
  .newsletter h2,
  .footer-top h2{
    font-size:48px;
    letter-spacing:-2px;
  }

  .newsletter form{
    flex-direction:column;
  }

  .newsletter input{
    width:100%;
  }

  .footer-top{
    flex-direction:column;
    gap:30px;
  }

  .footer-links{
    flex-wrap:wrap;
    gap:20px;
  }
}

/* =========================================
   PRODUCT PAGE
========================================= */

.product-page{
  padding:160px 7% 120px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:start;
}

/* =========================================
   GALLERY
========================================= */

.product-gallery{
  display:flex;
  flex-direction:column;
  gap:25px;
}

.gallery-main{
  border-radius:40px;
  overflow:hidden;
}

.gallery-main img{
  width:100%;
  height:780px;
  object-fit:cover;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.gallery-item{
  border-radius:28px;
  overflow:hidden;
  cursor:pointer;
}

.gallery-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:.5s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

/* =========================================
   PRODUCT INFO
========================================= */

.product-info-side{
  position:sticky;
  top:130px;
}

.product-tag{
  display:inline-block;
  padding:12px 18px;
  border:1px solid #111;
  border-radius:50px;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:28px;
}

.product-info-side h1{
  font-size:88px;
  line-height:.92;
  letter-spacing:-5px;
  margin-bottom:35px;
  font-weight:900;
}

.product-price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:30px;
}

.product-price-row h2{
  font-size:42px;
  font-weight:800;
}

.product-price-row span{
  font-size:14px;
  color:#4d7c4d;
  font-weight:700;
}

.product-description{
  font-size:18px;
  line-height:1.9;
  color:#555;
  margin-bottom:45px;
  max-width:520px;
}

/* =========================================
   PRODUCT SECTIONS
========================================= */

.product-section{
  margin-bottom:40px;
}

.product-section h4{
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
}

/* =========================================
   SIZES
========================================= */

.sizes{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.sizes button{
  width:62px;
  height:62px;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.sizes button:hover{
  transform:translateY(-3px);
}

.active-size{
  background:#111 !important;
  color:#fff;
  border-color:#111 !important;
}

/* =========================================
   COLORS
========================================= */

.colors{
  display:flex;
  gap:18px;
}

.color{
  width:42px;
  height:42px;
  border-radius:50%;
  cursor:pointer;
  position:relative;
}

.black{
  background:#111;
}

.beige{
  background:#d8c4a8;
}

.gray{
  background:#9b9b9b;
}

.active-color::after{
  content:'';
  position:absolute;
  inset:-6px;
  border:2px solid #111;
  border-radius:50%;
}

/* =========================================
   ACTIONS
========================================= */

.product-actions{
  display:flex;
  gap:18px;
  margin:50px 0;
}

.add-cart,
.wishlist{
  height:68px;
  border:none;
  border-radius:20px;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:.4s;
}

.add-cart{
  flex:1;
  background:#111;
  color:#fff;
}

.wishlist{
  width:180px;
  background:#fff;
  border:1px solid rgba(0,0,0,.1);
}

.add-cart:hover,
.wishlist:hover{
  transform:translateY(-4px);
}

/* =========================================
   BENEFITS
========================================= */

.product-benefits{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}

.benefit-box{
  background:#fff;
  padding:28px;
  border-radius:28px;
}

.benefit-box h5{
  font-size:20px;
  margin-bottom:10px;
}

.benefit-box p{
  color:#666;
  line-height:1.7;
}

/* =========================================
   DETAILS SECTION
========================================= */

.details-section{
  padding:40px 7% 120px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}

.details-left span{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:20px;
  color:#777;
  font-weight:700;
}

.details-left h2{
  font-size:72px;
  line-height:.95;
  letter-spacing:-4px;
  font-weight:900;
}

.details-right p{
  font-size:18px;
  line-height:1.9;
  color:#555;
  margin-bottom:35px;
}

.details-right ul{
  list-style:none;
}

.details-right ul li{
  padding:18px 0;
  border-bottom:1px solid rgba(0,0,0,.08);
  font-size:17px;
  font-weight:600;
}

/* =========================================
   RELATED PRODUCTS
========================================= */

.related-products{
  padding-top:20px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .product-page,
  .details-section{
    grid-template-columns:1fr;
  }

  .product-info-side{
    position:relative;
    top:0;
  }

  .product-info-side h1{
    font-size:68px;
  }

  .details-left h2{
    font-size:58px;
  }
}

@media(max-width:768px){

  .product-page{
    padding:130px 6% 80px;
    gap:50px;
  }

  .gallery-main img{
    height:500px;
  }

  .gallery-item img{
    height:140px;
  }

  .product-info-side h1{
    font-size:52px;
    letter-spacing:-2px;
  }

  .product-price-row h2{
    font-size:34px;
  }

  .product-actions{
    flex-direction:column;
  }

  .wishlist{
    width:100%;
  }

  .product-benefits{
    grid-template-columns:1fr;
  }

  .details-section{
    padding:20px 6% 80px;
    gap:40px;
  }

  .details-left h2{
    font-size:44px;
    letter-spacing:-2px;
  }
}

/* =========================================
   SHOP PAGE
========================================= */

.shop-hero{
  padding:160px 7% 60px;
}

.shop-hero-top{
  margin-bottom:50px;
}

.shop-hero-top span{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:20px;
  color:#777;
  font-weight:700;
}

.shop-hero-top h1{
  font-size:100px;
  line-height:.92;
  letter-spacing:-5px;
  font-weight:900;
}

/* =========================================
   SHOP FILTERS
========================================= */

.shop-filters{
  padding:20px 7% 80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

.filter-left,
.filter-right{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

/* SEARCH */

.search-box{
  width:320px;
}

.search-box input{
  width:100%;
  height:66px;
  border:none;
  outline:none;
  border-radius:22px;
  padding:0 24px;
  background:#fff;
  font-size:15px;
  font-family:'Inter',sans-serif;
  box-shadow:0 10px 30px rgba(0,0,0,.03);
}

/* SELECT */

.filter-select select{
  height:66px;
  padding:0 24px;
  border:none;
  outline:none;
  border-radius:22px;
  background:#fff;
  min-width:220px;
  font-size:15px;
  font-family:'Inter',sans-serif;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.03);
}

/* BUTTON */

.filter-btn{
  height:66px;
  padding:0 34px;
  border:none;
  border-radius:22px;
  background:#111;
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:.4s;
}

.filter-btn:hover{
  transform:translateY(-4px);
}

/* =========================================
   SHOP PRODUCTS
========================================= */

.shop-products{
  padding:0 7% 120px;
}

.shop-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.shop-card{
  transition:.4s;
}

.shop-card:hover{
  transform:translateY(-10px);
}

.card-offset{
  margin-top:80px;
}

.shop-image{
  border-radius:36px;
  overflow:hidden;
  margin-bottom:24px;
}

.shop-image img{
  width:100%;
  height:560px;
  object-fit:cover;
  transition:.6s;
}

.shop-card:hover img{
  transform:scale(1.08);
}

.shop-info{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}

.shop-info span{
  display:inline-block;
  color:#777;
  margin-bottom:8px;
  font-size:14px;
}

.shop-info h3{
  font-size:30px;
  line-height:1.1;
}

.shop-info p{
  font-size:24px;
  font-weight:800;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .shop-grid{
    grid-template-columns:1fr 1fr;
  }

  .shop-hero-top h1{
    font-size:72px;
  }
}

@media(max-width:768px){

  .shop-hero{
    padding:130px 6% 40px;
  }

  .shop-hero-top h1{
    font-size:52px;
    letter-spacing:-2px;
  }

  .shop-filters{
    padding:20px 6% 60px;
  }

  .filter-left,
  .filter-right{
    width:100%;
    flex-direction:column;
    align-items:stretch;
  }

  .search-box{
    width:100%;
  }

  .filter-select select,
  .filter-btn{
    width:100%;
  }

  .shop-products{
    padding:0 6% 80px;
  }

  .shop-grid{
    grid-template-columns:1fr;
  }

  .card-offset{
    margin-top:0;
  }

  .shop-image img{
    height:460px;
  }

  .shop-info h3{
    font-size:24px;
  }
}

/* =========================================
   SHOP FILTERS
========================================= */

.shop-filters{
  padding:40px 7% 70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  flex-wrap:wrap;
}

/* LEFT + RIGHT */

.filter-left,
.filter-right{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

/* SEARCH */

.search-box{
  width:320px;
}

.search-box input{
  width:100%;
  height:64px;
  border:none;
  outline:none;
  padding:0 24px;
  border-radius:20px;
  background:#fff;
  font-size:15px;
  font-family:'Inter',sans-serif;
  box-shadow:0 10px 30px rgba(0,0,0,.03);
}

/* SELECT */

.filter-select select{
  height:64px;
  padding:0 24px;
  border:none;
  outline:none;
  border-radius:20px;
  background:#fff;
  font-size:15px;
  font-family:'Inter',sans-serif;
  cursor:pointer;
  min-width:220px;
  box-shadow:0 10px 30px rgba(0,0,0,.03);
}

/* BUTTON */

.filter-btn{
  height:64px;
  padding:0 34px;
  border:none;
  border-radius:20px;
  background:#111;
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:.4s;
}

.filter-btn:hover{
  transform:translateY(-4px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

  .shop-filters{
    padding:30px 6% 50px;
  }

  .filter-left,
  .filter-right{
    width:100%;
    flex-direction:column;
    align-items:stretch;
  }

  .search-box{
    width:100%;
  }

  .filter-select select,
  .filter-btn{
    width:100%;
  }
}

/* =========================================
   CART PAGE
========================================= */

.cart-page{
  padding:160px 7% 120px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:start;
}

/* =========================================
   CART LEFT
========================================= */

.cart-heading{
  margin-bottom:50px;
}

.cart-heading span{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
  color:#777;
  font-weight:700;
}

.cart-heading h1{
  font-size:88px;
  line-height:.92;
  letter-spacing:-5px;
  font-weight:900;
}

/* =========================================
   CART ITEM
========================================= */

.cart-item{
  background:#fff;
  border-radius:36px;
  padding:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  margin-bottom:25px;
}

.cart-product{
  display:flex;
  align-items:center;
  gap:24px;
}

.cart-image{
  width:180px;
  min-width:180px;
  border-radius:26px;
  overflow:hidden;
}

.cart-image img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.cart-info span{
  display:inline-block;
  color:#777;
  margin-bottom:10px;
  font-size:14px;
}

.cart-info h3{
  font-size:34px;
  line-height:1;
  margin-bottom:16px;
}

.cart-info p{
  color:#666;
  margin-bottom:20px;
}

.cart-info button{
  border:none;
  background:none;
  color:#111;
  font-weight:700;
  cursor:pointer;
  font-size:15px;
}

/* =========================================
   CART ACTIONS
========================================= */

.cart-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:25px;
}

.quantity-box{
  display:flex;
  align-items:center;
  gap:16px;
  background:#f4f1ea;
  padding:14px 18px;
  border-radius:18px;
}

.quantity-box button{
  width:34px;
  height:34px;
  border:none;
  border-radius:10px;
  background:#fff;
  cursor:pointer;
  font-size:18px;
  font-weight:700;
}

.quantity-box span{
  min-width:20px;
  text-align:center;
  font-weight:700;
}

.cart-actions h4{
  font-size:28px;
  font-weight:800;
}

/* =========================================
   CART SUMMARY
========================================= */

.cart-summary{
  background:#111;
  color:#fff;
  padding:45px;
  border-radius:40px;
  position:sticky;
  top:130px;
  overflow:hidden;
}

.cart-summary::before{
  content:'';
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(255,255,255,.03);
  top:-200px;
  right:-140px;
}

.cart-summary span{
  position:relative;
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:20px;
  color:#aaa;
  font-weight:700;
}

.cart-summary h2{
  position:relative;
  font-size:68px;
  line-height:.92;
  letter-spacing:-4px;
  margin-bottom:45px;
}

.summary-row,
.summary-total{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.summary-row{
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.summary-row p{
  color:#aaa;
}

.summary-row span{
  margin:0;
  color:#fff;
  font-size:18px;
}

.summary-total{
  padding:30px 0;
}

.summary-total p{
  font-size:18px;
  font-weight:700;
}

.summary-total span{
  margin:0;
  color:#fff;
  font-size:34px;
}

/* =========================================
   COUPON
========================================= */

.coupon-box{
  display:flex;
  gap:15px;
  margin:20px 0 40px;
}

.coupon-box input{
  flex:1;
  height:62px;
  border:none;
  outline:none;
  border-radius:18px;
  padding:0 20px;
  background:#1b1b1b;
  color:#fff;
  font-family:'Inter',sans-serif;
}

.coupon-box button{
  width:120px;
  border:none;
  border-radius:18px;
  background:#fff;
  color:#111;
  font-weight:700;
  cursor:pointer;
}

/* =========================================
   BUTTONS
========================================= */

.summary-buttons{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.checkout-btn,
.continue-btn{
  height:66px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.4s;
}

.checkout-btn{
  background:#fff;
  color:#111;
}

.continue-btn{
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.checkout-btn:hover,
.continue-btn:hover{
  transform:translateY(-4px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .cart-page{
    grid-template-columns:1fr;
  }

  .cart-summary{
    position:relative;
    top:0;
  }

  .cart-heading h1{
    font-size:68px;
  }
}

@media(max-width:768px){

  .cart-page{
    padding:130px 6% 80px;
  }

  .cart-heading h1{
    font-size:52px;
    letter-spacing:-2px;
  }

  .cart-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .cart-product{
    flex-direction:column;
    align-items:flex-start;
  }

  .cart-image{
    width:100%;
    min-width:100%;
  }

  .cart-image img{
    height:340px;
  }

  .cart-actions{
    width:100%;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  .cart-summary{
    padding:35px 28px;
  }

  .cart-summary h2{
    font-size:46px;
    letter-spacing:-2px;
  }

  .coupon-box{
    flex-direction:column;
  }

  .coupon-box button{
    width:100%;
    height:62px;
  }
}

/* =========================================
   CHECKOUT PAGE
========================================= */

.checkout-page{
  padding:160px 7% 120px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:50px;
  align-items:start;
}

/* =========================================
   LEFT SIDE
========================================= */

.checkout-heading{
  margin-bottom:50px;
}

.checkout-heading span{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
  color:#777;
  font-weight:700;
}

.checkout-heading h1{
  font-size:88px;
  line-height:.92;
  letter-spacing:-5px;
  font-weight:900;
}

/* =========================================
   BOXES
========================================= */

.checkout-box{
  background:#fff;
  padding:38px;
  border-radius:36px;
  margin-bottom:28px;
}

.box-title{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:35px;
}

.box-title span{
  width:44px;
  height:44px;
  border-radius:14px;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:700;
}

.box-title h3{
  font-size:28px;
  font-weight:800;
}

/* =========================================
   FORM GRID
========================================= */

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.input-group{
  display:flex;
  flex-direction:column;
}

.input-group.full{
  grid-column:1 / -1;
}

.input-group label{
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
  color:#444;
  letter-spacing:.5px;
}

.input-group input,
.input-group select{
  height:64px;
  border:none;
  outline:none;
  border-radius:20px;
  background:#f4f1ea;
  padding:0 22px;
  font-size:15px;
  font-family:'Inter',sans-serif;
  color:#111;
}

/* =========================================
   PAYMENT OPTIONS
========================================= */

.payment-options{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.payment-option{
  background:#f4f1ea;
  border-radius:24px;
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  cursor:pointer;
  transition:.3s;
  border:2px solid transparent;
}

.payment-option:hover{
  transform:translateY(-3px);
}

.active-option{
  border-color:#111;
  background:#fff;
}

.payment-left{
  display:flex;
  align-items:center;
  gap:18px;
}

.payment-left input{
  width:20px;
  height:20px;
  accent-color:#111;
  cursor:pointer;
}

.payment-left h4{
  font-size:20px;
  margin-bottom:6px;
}

.payment-left p{
  color:#666;
  font-size:14px;
}

.payment-option span{
  margin:0;
  color:#111;
  font-size:14px;
  font-weight:700;
  letter-spacing:1px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

  .payment-option{
    flex-direction:column;
    align-items:flex-start;
  }

  .payment-left{
    align-items:flex-start;
  }
}

/* =========================================
   SUMMARY
========================================= */

.checkout-summary{
  background:#111;
  color:#fff;
  padding:42px;
  border-radius:40px;
  position:sticky;
  top:130px;
  overflow:hidden;
}

.checkout-summary::before{
  content:'';
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(255,255,255,.03);
  top:-180px;
  right:-120px;
}

.checkout-summary > *{
  position:relative;
}

.checkout-summary span{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  color:#aaa;
  margin-bottom:18px;
  font-weight:700;
}

.checkout-summary h2{
  font-size:68px;
  line-height:.92;
  letter-spacing:-4px;
  margin-bottom:40px;
}

/* =========================================
   SUMMARY PRODUCTS
========================================= */

.summary-product{
  display:flex;
  align-items:center;
  gap:18px;
  padding:22px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.summary-image{
  width:78px;
  min-width:78px;
  border-radius:18px;
  overflow:hidden;
}

.summary-image img{
  width:100%;
  height:92px;
  object-fit:cover;
}

.summary-info{
  flex:1;
}

.summary-info h4{
  font-size:18px;
  margin-bottom:8px;
}

.summary-info p{
  color:#999;
  font-size:14px;
}

.summary-product span{
  margin:0;
  color:#fff;
  font-size:18px;
}

/* =========================================
   CALCULATIONS
========================================= */

.summary-calculations{
  padding:30px 0;
}

.summary-line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:18px;
}

.summary-line p{
  color:#aaa;
}

.summary-line span{
  margin:0;
  color:#fff;
}

/* =========================================
   TOTAL
========================================= */

.checkout-total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:30px 0;
  border-top:1px solid rgba(255,255,255,.08);
  margin-bottom:30px;
}

.checkout-total p{
  font-size:20px;
  font-weight:700;
}

.checkout-total span{
  margin:0;
  font-size:36px;
  color:#fff;
}

/* =========================================
   BUTTON
========================================= */

.place-order-btn{
  width:100%;
  height:68px;
  border:none;
  border-radius:22px;
  background:#fff;
  color:#111;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  transition:.4s;
}

.place-order-btn:hover{
  transform:translateY(-4px);
}

.secure-note{
  margin-top:20px;
  text-align:center;
  color:#888;
  font-size:14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .checkout-page{
    grid-template-columns:1fr;
  }

  .checkout-summary{
    position:relative;
    top:0;
  }

  .checkout-heading h1{
    font-size:68px;
  }
}

@media(max-width:768px){

  .checkout-page{
    padding:130px 6% 80px;
  }

  .checkout-heading h1{
    font-size:52px;
    letter-spacing:-2px;
  }

  .checkout-box{
    padding:28px;
  }

  .box-title h3{
    font-size:22px;
  }

  .form-grid{
    grid-template-columns:1fr;
  }

  .input-group.full{
    grid-column:auto;
  }

  .checkout-summary{
    padding:34px 28px;
  }

  .checkout-summary h2{
    font-size:48px;
    letter-spacing:-2px;
  }

  .checkout-total span{
    font-size:28px;
  }
}

/* =========================================
   ORDER SUCCESS PAGE
========================================= */

.success-page{
  min-height:100vh;
  padding:160px 7% 120px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

/* =========================================
   CARD
========================================= */

.success-card{
  width:100%;
  max-width:900px;
  background:#fff;
  border-radius:50px;
  padding:70px;
  text-align:center;
  position:relative;
  z-index:2;
  box-shadow:0 30px 80px rgba(0,0,0,.05);
}

/* =========================================
   ICON
========================================= */

.success-icon{
  width:120px;
  height:120px;
  margin:0 auto 35px;
  border-radius:50%;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:52px;
  font-weight:800;
}

/* =========================================
   CONTENT
========================================= */

.success-label{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  color:#777;
  margin-bottom:24px;
  font-weight:700;
}

.success-card h1{
  font-size:92px;
  line-height:.92;
  letter-spacing:-5px;
  margin-bottom:30px;
  font-weight:900;
}

.success-text{
  max-width:620px;
  margin:0 auto 50px;
  font-size:18px;
  line-height:1.9;
  color:#555;
}

/* =========================================
   BUTTONS
========================================= */

.success-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.shop-btn{
  height:68px;
  padding:0 34px;
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.4s;
}

.shop-btn{
  border:1px solid rgba(0,0,0,.12);
  color:#111;
  background:#fff;
}

.shop-btn:hover{
  transform:translateY(-4px);
}

/* =========================================
   BG TEXT
========================================= */

.success-bg-text{
  position:absolute;
  bottom:-40px;
  left:50%;
  transform:translateX(-50%);
  font-size:240px;
  font-weight:900;
  letter-spacing:10px;
  opacity:.04;
  pointer-events:none;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .success-card h1{
    font-size:72px;
  }
}

@media(max-width:768px){

  .success-page{
    padding:130px 6% 80px;
  }

  .success-card{
    padding:40px 28px;
    border-radius:36px;
  }

  .success-icon{
    width:90px;
    height:90px;
    font-size:40px;
  }

  .success-card h1{
    font-size:52px;
    letter-spacing:-2px;
  }

  .success-text{
    font-size:16px;
  }

  .success-buttons{
    flex-direction:column;
  }

  .shop-btn{
    width:100%;
  }

  .success-bg-text{
    display:none;
  }
}

/* =========================================
   ORDERS PAGE
========================================= */

.orders-page{
  padding:160px 7% 120px;
}

/* =========================================
   HEADING
========================================= */

.orders-heading{
  margin-bottom:60px;
}

.orders-heading span{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
  color:#777;
  font-weight:700;
}

.orders-heading h1{
  font-size:92px;
  line-height:.92;
  letter-spacing:-5px;
  font-weight:900;
}

/* =========================================
   ORDER CARD
========================================= */

.order-card{
  background:#fff;
  border-radius:40px;
  padding:38px;
  margin-bottom:35px;
}

/* =========================================
   TOP
========================================= */

.order-top{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  padding-bottom:35px;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.order-top p{
  color:#777;
  margin-bottom:10px;
  font-size:14px;
}

.order-top h4{
  font-size:22px;
  font-weight:800;
}

/* =========================================
   STATUS
========================================= */

.status{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  padding:0 18px;
  border-radius:14px;
  font-size:14px;
  font-weight:700;
}

.delivered{
  background:#e8f7eb;
  color:#1f7a36;
}

.processing{
  background:#fff4df;
  color:#c98900;
}

/* =========================================
   PRODUCTS
========================================= */

.ordered-products{
  padding:35px 0;
}

.ordered-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  margin-bottom:25px;
}

.ordered-item:last-child{
  margin-bottom:0;
}

.ordered-left{
  display:flex;
  align-items:center;
  gap:22px;
}

.ordered-image{
  width:130px;
  min-width:130px;
  border-radius:24px;
  overflow:hidden;
}

.ordered-image img{
  width:100%;
  height:150px;
  object-fit:cover;
}

.ordered-info span{
  display:inline-block;
  color:#777;
  margin-bottom:10px;
  font-size:14px;
}

.ordered-info h3{
  font-size:30px;
  line-height:1;
  margin-bottom:14px;
}

.ordered-info p{
  color:#666;
}

.ordered-item h4{
  font-size:28px;
  font-weight:800;
}

/* =========================================
   BUTTONS
========================================= */

.order-buttons{
  display:flex;
  gap:18px;
  padding-top:35px;
  border-top:1px solid rgba(0,0,0,.08);
}

.track-order-btn{
  height:64px;
  padding:0 30px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.4s;
}

.track-order-btn{
  background:#111;
  color:#fff;
}

.track-order-btn:hover{
  transform:translateY(-4px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .order-top{
    grid-template-columns:1fr 1fr;
  }

  .orders-heading h1{
    font-size:72px;
  }
}

@media(max-width:768px){

  .orders-page{
    padding:130px 6% 80px;
  }

  .orders-heading{
    margin-bottom:40px;
  }

  .orders-heading h1{
    font-size:52px;
    letter-spacing:-2px;
  }

  .order-card{
    padding:28px;
    border-radius:30px;
  }

  .order-top{
    grid-template-columns:1fr;
    gap:20px;
    padding-bottom:28px;
  }

  .ordered-item{
    flex-direction:column;
    align-items:flex-start;
  }

  .ordered-left{
    flex-direction:column;
    align-items:flex-start;
  }

  .ordered-image{
    width:100%;
    min-width:100%;
  }

  .ordered-image img{
    height:260px;
  }

  .ordered-info h3{
    font-size:24px;
  }

  .ordered-item h4{
    font-size:24px;
  }

  .order-buttons{
    flex-direction:column;
  }

  .track-order-btn,
  .invoice-btn{
    width:100%;
  }
}

/* =========================================
   LOGIN / AUTH PAGE
========================================= */

.auth-page{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#f7f3ee;
}

/* =========================================
   LEFT SIDE
========================================= */

.auth-left{
  position:relative;
  overflow:hidden;
}

.auth-image{
  width:100%;
  height:100vh;
}

.auth-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.auth-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.7),
    rgba(0,0,0,.2)
  );
  padding:70px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  color:#fff;
}

.auth-overlay span{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:22px;
  font-weight:700;
}

.auth-overlay h1{
  font-size:82px;
  line-height:.92;
  letter-spacing:-4px;
  margin-bottom:24px;
  font-weight:900;
}

.auth-overlay p{
  max-width:520px;
  line-height:1.9;
  color:#ddd;
  font-size:17px;
}

/* =========================================
   RIGHT SIDE
========================================= */

.auth-right{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px;
}

.auth-box{
  width:100%;
  max-width:520px;
}

.auth-label{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:20px;
  color:#777;
  font-weight:700;
}

.auth-box h2{
  font-size:74px;
  line-height:.92;
  letter-spacing:-4px;
  margin-bottom:45px;
  font-weight:900;
}

/* =========================================
   FORM
========================================= */

.auth-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.auth-input{
  display:flex;
  flex-direction:column;
}

.auth-input label{
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
  color:#444;
}

.auth-input input{
  height:68px;
  border:none;
  outline:none;
  border-radius:22px;
  background:#fff;
  padding:0 22px;
  font-size:15px;
  font-family:'Inter',sans-serif;
}

/* =========================================
   BUTTON
========================================= */

.auth-btn{
  width:100%;
  height:70px;
  border:none;
  border-radius:22px;
  background:#111;
  color:#fff;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  margin-top:10px;
  transition:.4s;
}

.auth-btn:hover{
  transform:translateY(-4px);
}

/* =========================================
   SOCIAL
========================================= */

.social-login{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* =========================================
   FOOTER
========================================= */

.auth-footer{
  text-align:center;
  margin-top:35px;
  color:#666;
}

.auth-footer a{
  font-weight:700;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1100px){

  .auth-page{
    grid-template-columns:1fr;
  }

  .auth-left{
    display:none;
  }

  .auth-box h2{
    font-size:58px;
  }
}

@media(max-width:768px){

  .auth-right{
    padding:40px 24px;
  }

  .auth-box h2{
    font-size:46px;
    letter-spacing:-2px;
  }
}

/* =========================================
   PRIVACY PAGE
========================================= */

.privacy-page{
  padding:160px 7% 120px;
}

/* =========================================
   HEADING
========================================= */

.privacy-heading{
  margin-bottom:70px;
  max-width:900px;
}

.privacy-heading span{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
  color:#777;
  font-weight:700;
}

.privacy-heading h1{
  font-size:96px;
  line-height:.92;
  letter-spacing:-5px;
  margin-bottom:28px;
  font-weight:900;
}

.privacy-heading p{
  font-size:18px;
  line-height:1.9;
  color:#555;
  max-width:700px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .privacy-heading h1{
    font-size:72px;
  }
}

@media(max-width:768px){

  .privacy-page{
    padding:130px 6% 80px;
  }

  .privacy-heading{
    margin-bottom:45px;
  }

  .privacy-heading h1{
    font-size:52px;
    letter-spacing:-2px;
  }
}

/* =========================================
   REFUND POLICY PAGE
========================================= */

.refund-page{
  padding:160px 7% 120px;
}

/* =========================================
   HEADING
========================================= */

.refund-heading{
  margin-bottom:70px;
  max-width:900px;
}

.refund-heading span{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
  color:#777;
  font-weight:700;
}

.refund-heading h1{
  font-size:96px;
  line-height:.92;
  letter-spacing:-5px;
  margin-bottom:28px;
  font-weight:900;
}

.refund-heading p{
  font-size:18px;
  line-height:1.9;
  color:#555;
  max-width:700px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .refund-heading h1{
    font-size:72px;
  }
}

@media(max-width:768px){

  .refund-page{
    padding:130px 6% 80px;
  }

  .refund-heading{
    margin-bottom:45px;
  }

  .refund-heading h1{
    font-size:52px;
    letter-spacing:-2px;
  }
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page{
  padding:160px 7% 120px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}

/* =========================================
   LEFT
========================================= */

.contact-label{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  margin-bottom:18px;
  color:#777;
  font-weight:700;
}

.contact-left h1{
  font-size:92px;
  line-height:.92;
  letter-spacing:-5px;
  margin-bottom:28px;
  font-weight:900;
}

.contact-text{
  max-width:600px;
  color:#555;
  line-height:1.9;
  font-size:18px;
  margin-bottom:50px;
}

/* =========================================
   INFO BOXES
========================================= */

.contact-info{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.contact-box{
  background:#fff;
  padding:32px;
  border-radius:30px;
}

.contact-box h4{
  font-size:24px;
  margin-bottom:12px;
}

.contact-box p{
  color:#666;
  line-height:1.8;
}

/* =========================================
   FORM
========================================= */

.contact-right{
  background:#fff;
  padding:42px;
  border-radius:40px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:22px;
}

.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.contact-input{
  display:flex;
  flex-direction:column;
}

.contact-input label{
  font-size:13px;
  font-weight:700;
  margin-bottom:12px;
  color:#444;
}

.contact-input input,
.contact-input textarea{
  border:none;
  outline:none;
  background:#f4f1ea;
  border-radius:22px;
  padding:20px 22px;
  font-size:15px;
  font-family:'Inter',sans-serif;
  color:#111;
}

.contact-input input{
  height:68px;
}

.contact-input textarea{
  min-height:180px;
  resize:none;
  padding-top:24px;
}

/* =========================================
   BUTTON
========================================= */

.contact-btn{
  width:100%;
  height:70px;
  border:none;
  border-radius:22px;
  background:#111;
  color:#fff;
  font-size:16px;
  font-weight:800;
  cursor:pointer;
  transition:.4s;
  margin-top:10px;
}

.contact-btn:hover{
  transform:translateY(-4px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .contact-page{
    grid-template-columns:1fr;
  }

  .contact-left h1{
    font-size:72px;
  }
}

@media(max-width:768px){

  .navbar{
    padding:18px 6%;
    align-items:center;
  }

  .nav-toggle{
    display:flex;
    order:3;
  }

  .navbar nav{
    position:absolute;
    top:100%;
    left:6%;
    right:6%;
    display:none;
    flex-direction:column;
    gap:0;
    padding:16px;
    border:1px solid rgba(17,17,17,.12);
    border-radius:24px;
    background:rgba(244,241,234,.96);
    box-shadow:0 24px 70px rgba(17,17,17,.12);
  }

  .navbar nav.is-open{
    display:flex;
  }

  .navbar nav a{
    padding:14px 12px;
    border-radius:16px;
  }

  .navbar nav a:hover{
    background:rgba(17,17,17,.06);
  }

  .navbar nav a::after{
    display:none;
  }

  .nav-right{
    margin-left:auto;
    margin-right:12px;
    font-size:14px;
  }

  .contact-page{
    padding:130px 6% 80px;
    gap:40px;
  }

  .contact-left h1{
    font-size:52px;
    letter-spacing:-2px;
  }

  .contact-right{
    padding:28px;
    border-radius:30px;
  }

  .form-row{
    grid-template-columns:1fr;
  }

  .contact-box{
    padding:24px;
    border-radius:24px;
  }

  .contact-box h4{
    font-size:20px;
  }
}   

.template-flash{
  width:min(1180px,88%);
  margin:24px auto 0;
  padding:16px 20px;
  border-radius:18px;
  font-size:14px;
  font-weight:700;
}

.template-flash-success{
  background:#ecfdf5;
  color:#047857;
  border:1px solid #a7f3d0;
}

.template-flash-error,
.template-form-error{
  background:#fef2f2;
  color:#b91c1c;
  border:1px solid #fecaca;
}

.template-form-error{
  padding:12px 14px;
  border-radius:16px;
  font-size:14px;
  font-weight:700;
  margin:12px 0;
}

.hidden{
  display:none !important;
}

.navbar a.logo,
.navbar nav a,
.nav-right a,
.product-card,
.shop-card,
.category-tall,
.category-small{
  color:inherit;
  text-decoration:none;
}

.shop-card-form{
  display:flex;
  gap:10px;
  padding:0 4px 4px;
  margin-top:14px;
}

.shop-card-form button,
.shop-card-form a{
  flex:1;
  border:none;
  border-radius:16px;
  background:#111;
  color:#fff;
  padding:12px 14px;
  font-size:13px;
  font-weight:800;
  text-align:center;
  cursor:pointer;
}

.shop-card-form a{
  background:#f3f3f3;
  color:#111;
}

.shop-empty,
.cart-empty{
  background:#fff;
  border:1px solid #eee;
  border-radius:32px;
  padding:48px;
  text-align:center;
  color:#666;
}

.pagination{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:56px;
}

.pagination a{
  min-width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid #ddd;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  text-decoration:none;
  font-weight:800;
}

.pagination a.active{
  background:#111;
  color:#fff;
  border-color:#111;
}

.product-actions input[type="number"],
.quantity-box input[type="number"]{
  width:82px;
  border:1px solid #ddd;
  border-radius:16px;
  padding:0 12px;
  font-weight:800;
}

.quantity-box{
  gap:10px;
}

.quantity-box button{
  min-width:80px;
}

.checkout-box textarea{
  min-height:120px;
  resize:vertical;
  border:none;
  outline:none;
  background:#f4f4f4;
  border-radius:20px;
  padding:18px;
  font-size:15px;
  font-family:inherit;
}

.gallery-item{
  border:none;
  padding:0;
  cursor:pointer;
  background:transparent;
  display:block;
  overflow:hidden;
}

.gallery-item.active-gallery-item{
  outline:3px solid #111;
  outline-offset:4px;
}
