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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
}

button,
input,
textarea{
  border:none;
  outline:none;
  font-family:inherit;
}

button{
  cursor:pointer;
}

textarea{
  resize:none;
}

ul{
  list-style:none;
}

/* =========================
   VARIABLES
========================= */

:root{

  --primary:#ff7a00;
  --primary-dark:#e66d00;
  --primary-light:#fff1e5;

  --white:#ffffff;
  --black:#111111;

  --text:#171717;
  --text-light:#666666;
  --text-muted:#8b8b8b;

  --bg:#fbfaf8;
  --bg-soft:#fff5eb;
  --bg-warm:#fff7ef;

  --card:#ffffff;

  --border:#ece2d9;
  --border-light:rgba(0,0,0,.06);

  --overlay:rgba(0,0,0,.45);

  --shadow-sm:0 4px 12px rgba(0,0,0,.04);
  --shadow-md:0 12px 35px rgba(0,0,0,.08);
  --shadow-lg:0 22px 60px rgba(0,0,0,.16);

  --radius-sm:12px;
  --radius-md:18px;
  --radius-lg:30px;
  --radius-full:999px;

  --transition-fast:.2s ease;
  --transition:.3s ease;
  --transition-slow:.5s ease;

  --section-padding:80px;
  --container-width:1320px;

  --secondary:#31aee2;
  --secondary-dark:#1899cd;

  --secondary-light:#e8f8ff;

  --bg:#fbfaf8;
  --hero-bg:#f5f5f5;


}

/* =========================
   UTILITIES
========================= */

.container{
  width:min(var(--container-width), 88%);
  margin-inline:auto;
}

.container-small{
  width:min(560px, 88%);
  margin-inline:auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:15px 34px;

  border-radius:13px;

  font-size:.95rem;
  font-weight:700;

  transition:var(--transition);
}

.btn--primary{
  background:var(--secondary);
  color:var(--white);
}

.btn--primary:hover{
  background:var(--secondary-dark);
  transform:translateY(-2px);
}

.btn--outline{
  border:1.5px solid var(--secondary);
  color:var(--text);
  background:var(--white);
}

.btn--outline:hover{
  background:var(--secondary);
  color:var(--white);
}

.btn--full{
  width:100%;
}

/* =========================
   OVERLAY
========================= */

.overlay{
  position:fixed;
  inset:0;

  background:var(--overlay);

  opacity:0;
  visibility:hidden;

  transition:var(--transition);

  z-index:90;
}

.overlay.active{
  opacity:1;
  visibility:visible;
}

/* =========================
   HEADER
========================= */

.header{
  position:sticky;
  top:0;

  background:rgba(255,255,255,.92);
  backdrop-filter:blur(12px);

  border-bottom:1px solid var(--border-light);

  z-index:100;
}

.header__content{
  height:82px;

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

  gap:30px;
}

/* LOGO */

.logo{
  display:flex;
  align-items:center;
  gap:12px;

  flex-shrink:0;
}

.logo__img{
  width:100px;
  max-width:100%;
  object-fit:contain;
}

.footer__logo .logo__img{
  width:170px;
}
.logo strong{
  display:block;

  font-size:1.35rem;
  line-height:1;
}

.logo small{
  display:block;

  margin-top:4px;

  color:var(--text-light);

  font-size:.62rem;
  text-transform:uppercase;
  letter-spacing:.08em;
}

/* NAV */

.nav{
  display:flex;
  align-items:center;
  gap:42px;
}

.nav a{
  position:relative;

  font-size:.95rem;
  font-weight:700;

  transition:var(--transition);
}

.nav a::after{
  content:"";

  position:absolute;
  left:0;
  bottom:-7px;

  width:0%;
  height:2px;

  background:var(--primary);

  transition:var(--transition);
}

.nav a:hover{
  color:var(--primary);
}

.nav a:hover::after{
  width:100%;
}

.nav__close{
  display:none;
}

/* ACTIONS */

.header__actions{
  display:flex;
  align-items:center;
  gap:14px;
}

.icon-btn,
.cart-btn{
  width:44px;
  height:44px;

  border-radius:50%;

  background:transparent;

  display:grid;
  place-items:center;

  font-size:1.2rem;

  transition:var(--transition);

  position:relative;
}

.icon-btn:hover,
.cart-btn:hover{
  background:rgba(255,122,0,.08);
}

.cart-btn span{
  position:absolute;

  top:2px;
  right:0;

  width:20px;
  height:20px;

  border-radius:50%;

  background:var(--primary);
  color:var(--white);

  font-size:.7rem;
  font-weight:700;

  display:grid;
  place-items:center;
}

/* HAMBURGER */

.hamburger{
  display:none;

  width:44px;
  height:44px;

  border-radius:50%;

  background:transparent;

  flex-direction:column;
  justify-content:center;
  align-items:center;

  gap:5px;
}

.hamburger span{
  width:23px;
  height:2px;

  background:var(--black);

  border-radius:20px;

  transition:var(--transition);
}

.hamburger.active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* =========================
   HERO
========================= */

.hero{
  padding:55px 0 40px;
  background:#f5f5f5;
}

.hero__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:45px;
  align-items:center;
}

.hero__content h1{
  max-width:610px;

  font-size:clamp(2.7rem, 5vw, 4.6rem);
  line-height:1.02;

  margin-bottom:22px;

  text-transform:uppercase;
}

.hero__content h1 span{
  display:inline-block;

  color:var(--white);
  background:#d97c2b;

  padding:0 10px 4px;

  margin-top:4px;
}


.hero__content p{
  max-width:470px;

  color:var(--text);

  line-height:1.55;

  font-size:1.12rem;

  margin-bottom:34px;
}

.hero__buttons{
  display:flex;
  align-items:center;
  gap:16px;

  margin-bottom:46px;
}

.hero__features{
  display:flex;
  align-items:center;
  gap:44px;
  flex-wrap:wrap;
}

.hero__features div{
  display:flex;
  align-items:center;
  gap:13px;
}

.hero__features span{
  font-size:2rem;
  color:var(--primary);
}

.hero__features p{
  margin:0;

  font-size:.9rem;
  font-weight:700;
  line-height:1.35;
}

.hero__image{
  position:relative;

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

.hero__mockup{
  width:100%;
  max-width:620px;

  object-fit:contain;

  animation:float 5s ease-in-out infinite;
}

.hero__circle{
  display:none;
}

@keyframes float{
  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-10px);
  }

  100%{
    transform:translateY(0);
  }
}

.hero__features img{
  width:42px;
  height:42px;
  object-fit:contain;
}

.hero__features span{
  display:none;
}

.hero__image img{
  position:relative;
  z-index:2;

  height:auto;
  object-fit:cover;

  border-radius:0 0 0 120px;
}

.hero__circle{
  position:absolute;

  right:-12px;
  top:50%;
  transform:translateY(-50%);

  width:315px;
  height:315px;

  background:var(--primary);

  border-radius:50%;

  z-index:1;
}

/* =========================
   BENEFITS
========================= */

.benefits{
  padding:44px 0 20px;
}

.benefits__box{
  display:grid;
  grid-template-columns:repeat(4,1fr);

  background:linear-gradient(135deg,#fff,#fff7ef);

  border-radius:var(--radius-md);

  box-shadow:var(--shadow-sm);

  overflow:hidden;
}

.benefits article{
  position:relative;

  padding:36px 30px;

  text-align:center;
}

.benefits article:not(:last-child)::after{
  content:"";

  position:absolute;
  right:0;
  top:25%;

  width:1px;
  height:50%;

  background:var(--border);
}

.benefits span{
  width:58px;
  height:58px;

  margin:0 auto 14px;

  display:grid;
  place-items:center;

  border:1.5px solid var(--primary);
  border-radius:50%;

  font-size:1.7rem;
}

.benefits h3{
  margin-bottom:7px;

  font-size:1.05rem;
}

.benefits p{
  color:var(--text);
  line-height:1.35;
  font-size:.9rem;
}

/* =========================
   SECTION TITLE
========================= */

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

  margin-bottom:28px;

  gap:24px;
}

.section-title h2{
  font-size:1.9rem;
}

.section-title span{
  display:block;

  width:30px;
  height:3px;

  margin-top:12px;

  background:var(--primary);

  border-radius:var(--radius-full);
}

.section-title a{
  color:var(--primary);

  font-size:.95rem;
  font-weight:700;
}

/* =========================
   PRODUCTS
========================= */

.products{
  padding:45px 0 35px;
}

.products__wrap{
  position:relative;
}

.products__grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:28px;
}

.product-card{
  position:relative;
  width:100%;
  min-width:0;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  cursor:pointer;
  transition:var(--transition);
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-md);
}

.product-card img{
  width:100%;
  height:300px;
  object-fit:cover;
}

.product-card__info{
  min-height:115px;

  padding:18px 18px 16px;

  background:var(--white);
}

.product-card h3{
  max-width:150px;

  margin-bottom:13px;

  font-size:.9rem;
  line-height:1.25;
}

.product-card strong{
  font-size:1.05rem;
}

.add-to-cart{
  position:absolute;

  right:14px;
  bottom:14px;

  width:38px;
  height:38px;

  border-radius:50%;

  background:var(--primary);
  color:var(--white);

  display:grid;
  place-items:center;

  font-size:1rem;

  transition:var(--transition);
}

.add-to-cart:hover{
  background:var(--primary-dark);
  transform:scale(1.1);
}

.slider-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);

  width:48px;
  height:48px;

  border-radius:50%;

  background:var(--white);
  color:var(--primary);

  box-shadow:var(--shadow-md);

  font-size:2rem;

  z-index:3;
}

.slider-btn--left{
  left:-70px;
}

.slider-btn--right{
  right:-70px;
}

/* =========================
   CATEGORIES
========================= */

.categories{
  padding:36px 0 46px;

  background:
    radial-gradient(circle at left bottom, rgba(255,122,0,.12), transparent 22%),
    linear-gradient(90deg,#fff,#fff5eb,#fff);
}

.categories h2{
  text-align:center;

  margin-bottom:34px;

  font-size:1.75rem;
}

.categories h2 span{
  display:inline-block;

  width:26px;
  height:3px;

  margin-left:10px;

  background:var(--primary);

  vertical-align:middle;
}

.categories__grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:28px;
}

.categories article{
  text-align:center;
}

.categories article > span{
  width:72px;
  height:72px;

  margin:0 auto 13px;

  display:grid;
  place-items:center;

  background:var(--white);

  border-radius:50%;

  box-shadow:var(--shadow-sm);

  font-size:2rem;

  transition:var(--transition);
}

.categories article:hover > span{
  transform:translateY(-6px);
  box-shadow:var(--shadow-md);
}

.categories h3{
  font-size:.92rem;
}

/* =========================
   STEPS
========================= */

.steps{
  padding:55px 0 58px;

  background:var(--white);
}

.steps__content{
  display:grid;
  grid-template-columns:270px 1fr;
  gap:42px;
  align-items:center;
}

.steps__intro h2{
  font-size:1.8rem;
}

.steps__intro span{
  display:block;

  width:30px;
  height:3px;

  margin:12px 0 22px;

  background:var(--primary);
}

.steps__intro p{
  margin-bottom:24px;

  font-size:1.1rem;
  line-height:1.35;
}

.steps__list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

.steps__list article{
  position:relative;

  text-align:center;
}

.steps__list article b{
  position:absolute;

  top:-25px;
  left:50%;
  transform:translateX(-50%);

  width:34px;
  height:34px;

  display:grid;
  place-items:center;

  border-radius:50%;

  background:var(--primary);
  color:var(--white);

  font-size:.95rem;
}

.steps__list article > span{
  width:94px;
  height:94px;

  margin:0 auto 18px;

  display:grid;
  place-items:center;

  background:var(--bg-soft);

  border-radius:50%;

  font-size:2.35rem;

  box-shadow:var(--shadow-sm);
}

.steps__list h3{
  margin-bottom:8px;

  font-size:.95rem;
}

.steps__list p{
  color:var(--text);
  font-size:.82rem;
  line-height:1.35;
}

/* =========================
   IMPACT
========================= */

.impact{
  overflow:hidden;
}

.impact__grid{
  display:grid;
  grid-template-columns:1fr 1.4fr;
}

.impact__orange{
  background:var(--primary);
  color:var(--white);

  padding:42px 0;
}

.impact__orange span{
  font-size:3rem;
}

.impact__orange h2{
  margin:8px 0 12px;
}

.impact__orange p{
  max-width:440px;

  margin-bottom:28px;

  line-height:1.45;
}

.impact__stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.impact__stats strong{
  display:block;

  font-size:1.45rem;
}

.impact__stats small{
  display:block;

  margin-top:5px;

  font-size:.78rem;
  line-height:1.3;
}

.impact__testimonial{
  position:relative;

  padding:55px 80px;

  background:linear-gradient(90deg,#fff,#fff4e9);
}

.impact__testimonial::after{
  content:"";

  position:absolute;
  right:-80px;
  bottom:-80px;

  width:260px;
  height:260px;

  border:18px solid var(--primary);
  border-radius:50%;

  background:
    url("https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=900&q=80")
    center/cover;
}

.impact__testimonial blockquote{
  max-width:580px;

  margin-bottom:18px;

  font-size:1rem;
  line-height:1.45;
}

.impact__testimonial p{
  font-weight:700;
}

.dots{
  display:flex;
  gap:10px;

  margin-top:26px;
}

.dots span{
  width:10px;
  height:10px;

  border-radius:50%;

  background:#d6d6d6;
}

.dots .active{
  background:var(--primary);
}

/* =========================
   NEWSLETTER
========================= */

.newsletter{
  padding:0;

  background:#ffe2c7;
}

.newsletter__content{
  min-height:118px;

  display:grid;
  grid-template-columns:110px 1fr 460px;
  align-items:center;
  gap:28px;
}

.newsletter__icon{
  width:92px;
  height:72px;

  display:grid;
  place-items:center;

  font-size:3rem;
}

.newsletter h2{
  margin-bottom:8px;

  font-size:1.55rem;
}

.newsletter p{
  color:var(--text);
  line-height:1.35;
}

.newsletter form{
  display:flex;
  gap:12px;
}

.newsletter input{
  flex:1;

  height:52px;

  border-radius:12px;

  padding:0 18px;

  background:var(--white);
}

.newsletter button{
  height:52px;
}

/* =========================
   FOOTER
========================= */

.footer{
  padding:34px 0 28px;

  background:var(--white);
}

.footer__grid{
  display:grid;
  grid-template-columns:1.8fr 1fr 1.1fr 1.1fr 1.3fr;
  gap:42px;
}

.footer__logo{
  margin-bottom:15px;
}

.footer p{
  color:var(--text);
  font-size:.88rem;
  line-height:1.45;
}

.footer h4{
  margin-bottom:16px;

  font-size:.95rem;
}

.footer a{
  display:block;

  margin-bottom:10px;

  color:var(--text);

  font-size:.86rem;

  transition:var(--transition);
}

.footer a:hover{
  color:var(--primary);
}

.socials{
  display:flex;
  gap:12px;

  margin-top:20px;
}

.socials a{
  width:28px;
  height:28px;

  display:grid;
  place-items:center;

  border-radius:50%;

  background:#f1f1f1;

  margin:0;
}

.payment-methods{
  display:flex;
  flex-wrap:wrap;
  gap:8px;

  margin-bottom:22px;
}

.payment-methods span{
  padding:8px 12px;

  border:1px solid var(--border);
  border-radius:8px;

  font-size:.78rem;
  font-weight:800;

  background:#fafafa;
}

.copyright{
  font-size:.8rem;
}

/* =========================
   CART SIDEBAR
========================= */

.cart{
  position:fixed;

  top:0;
  right:-430px;

  width:410px;
  max-width:100%;

  height:100vh;

  background:var(--white);

  z-index:120;

  display:flex;
  flex-direction:column;

  transition:var(--transition);

  box-shadow:var(--shadow-lg);
}

.cart.active{
  right:0;
}

.cart__header{
  padding:24px;

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

  border-bottom:1px solid var(--border);
}

.cart__header h3{
  font-size:1.35rem;
}

.cart__header button{
  background:transparent;

  font-size:2rem;
}

.cart__items{
  flex:1;

  overflow-y:auto;

  padding:24px;
}

.cart__empty{
  color:var(--text-light);
}

.cart__product{
  display:flex;
  justify-content:space-between;
  gap:14px;

  margin-bottom:20px;

  padding-bottom:20px;

  border-bottom:1px solid var(--border);
}

.cart__product-info h4{
  margin-bottom:8px;

  font-size:.95rem;
}

.cart__product-info p{
  color:var(--text-light);

  font-size:.9rem;
}

.remove-item{
  margin-top:8px;

  background:transparent;
  color:#d62929;

  font-size:.85rem;
}

.cart__footer{
  padding:24px;

  border-top:1px solid var(--border);
}

.cart__subtotal{
  display:flex;
  justify-content:space-between;

  margin-bottom:20px;

  font-size:1.12rem;
}

/* =========================
   MODALS
========================= */

.modal{
  position:fixed;
  inset:0;

  background:var(--overlay);

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

  padding:20px;

  opacity:0;
  visibility:hidden;

  transition:var(--transition);

  z-index:200;
}

.modal.active{
  opacity:1;
  visibility:visible;
}

.modal__content{
  position:relative;

  width:min(900px, 100%);

  background:var(--white);

  border-radius:var(--radius-lg);

  padding:34px;

  box-shadow:var(--shadow-lg);

  transform:translateY(20px);

  transition:var(--transition);
}

.modal.active .modal__content{
  transform:translateY(0);
}

.modal__content--small{
  width:min(520px, 100%);
}

.modal__close{
  position:absolute;

  top:18px;
  right:18px;

  width:38px;
  height:38px;

  border-radius:50%;

  background:var(--primary-light);

  font-size:1.5rem;

  color:var(--black);
}

.modal__content h2{
  margin-bottom:12px;

  font-size:2rem;
}

.modal__content p{
  color:var(--text-light);
  line-height:1.6;
}

.contact-form{
  display:grid;
  gap:14px;

  margin-top:24px;
}

.contact-form input,
.contact-form textarea{
  width:100%;

  border:1px solid var(--border);

  border-radius:var(--radius-sm);

  padding:15px 16px;

  font-size:1rem;

  background:var(--bg);
}

.contact-form textarea{
  min-height:130px;
}

.product-detail{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:center;
}

.product-detail img{
  height:420px;
  object-fit:cover;

  border-radius:var(--radius-md);
}

.product-detail h2{
  margin:10px 0 14px;

  font-size:2rem;
}

.product-detail strong{
  display:block;

  color:var(--primary);

  font-size:1.5rem;

  margin-bottom:20px;
}

.product-detail p{
  color:var(--text-light);

  line-height:1.7;

  margin-bottom:28px;
}

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

@media (max-width:1200px){

  .products__grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }

  .slider-btn{
    display:none;
  }

  .footer__grid{
    grid-template-columns:repeat(3,1fr);
  }

}

@media (max-width:992px){

  .container{
    width:min(100% - 40px, var(--container-width));
  }

  .header__content{
    height:72px;
  }

  .logo strong{
    font-size:1.1rem;
  }

  .logo small{
    font-size:.58rem;
  }

  .icon-btn{
    display:none;
  }

  .hamburger{
    display:flex;
  }

  .nav{
    position:fixed;

    top:0;
    left:-100%;

    width:310px;
    max-width:86%;

    height:100vh;

    background:var(--white);

    flex-direction:column;
    align-items:flex-start;

    padding:88px 30px;

    z-index:120;

    box-shadow:10px 0 35px rgba(0,0,0,.12);

    transition:var(--transition);
  }

  .nav.active{
    left:0;
  }

  .nav a{
    font-size:1rem;
  }

  .nav__close{
    display:block;

    position:absolute;
    top:18px;
    right:20px;

    background:transparent;

    font-size:2rem;
  }

  .hero{
    padding:45px 0 50px;
  }

  .hero__grid{
    grid-template-columns:1fr;
    gap:36px;
  }

  .hero__content h1{
    font-size:clamp(2.4rem, 9vw, 4rem);
  }

  .hero__image img{
    height:auto;
    border-radius:var(--radius-lg);
  }

  .hero__circle{
    width:190px;
    height:190px;

    right:-20px;
  }

  .benefits__box{
    grid-template-columns:repeat(2,1fr);
  }

  .benefits article:nth-child(2)::after{
    display:none;
  }

  .products__wrap{
    width:100%;
    overflow:visible;
  }

  .products__grid{
    grid-template-columns:1fr;
    gap:24px;
  }

  .product-card{
    width:100%;
  }

  .product-card img{
    width:100%;
    height:auto;
    aspect-ratio:4 / 5;
    object-fit:cover;
  }

  .product-card__info{
    min-height:auto;
  }

  .product-card h3{
    max-width:calc(100% - 55px);
  }

  .categories__grid{
    grid-template-columns:repeat(3,1fr);
  }

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

  .steps__list{
    grid-template-columns:repeat(2,1fr);
    gap:42px 24px;
  }

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

  .impact__testimonial{
    padding:45px 30px;
  }

  .impact__testimonial::after{
    display:none;
  }

  .newsletter__content{
    grid-template-columns:1fr;
    padding:28px 0;
  }

  .newsletter__icon{
    display:none;
  }

  .newsletter form{
    max-width:100%;
  }

}

@media (max-width:768px){

  .hero__buttons{
    display:grid;
    grid-template-columns:1fr;
  }

  .hero__features{
    gap:18px;
  }

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

  .benefits article::after{
    display:none;
  }

  .categories__grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }

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

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

  .newsletter form{
    flex-direction:column;
  }

  .newsletter input,
  .newsletter button{
    width:100%;
  }

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

  .product-detail{
    grid-template-columns:1fr;
  }

  .product-detail img{
    height:280px;
  }

}

@media (max-width:520px){

  .container{
    width:min(100% - 32px, var(--container-width));
  }

  .header__actions{
    gap:4px;
  }

  .cart-btn,
  .hamburger{
    width:42px;
    height:42px;
  }

  .hero__content h1{
    font-size:2.45rem;
  }

  .hero__content p{
    font-size:1rem;
  }

  .hero__image img{
    height:auto;
  }

  .hero__features{
    display:grid;
    grid-template-columns:1fr;
  }

  .section-title{
    flex-direction:column;
    align-items:flex-start;
  }

  .section-title h2,
  .categories h2,
  .steps__intro h2{
    font-size:1.55rem;
  }

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

  .categories article > span{
    width:62px;
    height:62px;

    font-size:1.7rem;
  }

  .cart{
    width:100%;
    right:-100%;
  }

  .modal{
    align-items:flex-end;
    padding:0;
  }

  .modal__content{
    max-height:92vh;
    overflow-y:auto;

    border-radius:24px 24px 0 0;

    padding:30px 22px;
  }

  .nav{
    width:280px;
  }

}
/* =========================
   SEARCH BAR
========================= */

.search-bar{
  position:sticky;
  top:82px;

  width:100%;

  background:var(--white);

  border-bottom:1px solid var(--border);

  overflow:hidden;

  max-height:0;

  transition:var(--transition);

  z-index:80;
}

.search-bar.active{
  max-height:120px;
}

.search-bar__content{
  display:flex;
  align-items:center;
  gap:14px;

  padding:18px 0;
}

.search-bar input{
  flex:1;

  height:54px;

  border:1px solid var(--border);

  border-radius:14px;

  padding:0 18px;

  background:var(--bg);

  font-size:1rem;
}

.search-bar button{
  width:54px;
  height:54px;

  border-radius:14px;

  background:var(--primary);
  color:var(--white);

  font-size:1.5rem;
}

/* PRODUCT HIDDEN */

.product-card.hidden{
  display:none;
}

@media (max-width:992px){

  .search-bar{
    top:72px;
  }

}
/* FIX WORDPRESS MENU */
.nav ul,
.nav li{
  list-style:none;
  margin:0;
  padding:0;
}

.nav .menu{
  display:flex;
  align-items:center;
  gap:42px;
}

.nav .menu-item{
  margin:0;
  padding:0;
}

.nav .menu-item a{
  display:block;
  text-decoration:none;
}


/* =========================
   LOGO WORDPRESS
========================= */

.logo .custom-logo-link{
  display:flex;
  align-items:center;
  justify-content:flex-start;

  width:auto;
  max-width:120px;

  overflow:hidden;
}

.logo .custom-logo{
  display:block;

  width:auto;
  max-width:120px;
  max-height:58px;
  height:auto;

  object-fit:contain;
}

.footer__logo .custom-logo-link{
  max-width:170px;
}

.footer__logo .custom-logo{
  max-width:170px;
  max-height:90px;
}

/* =========================
   FOOTER LOGO FIX
========================= */

.footer__logo{
  display:flex;
  align-items:flex-start;
}

.footer__logo .custom-logo-link{
  display:block;
  width:auto;
  max-width:170px;
}

.footer__logo .custom-logo{
  width:auto;
  max-width:140px;
  max-height:70px;
  height:auto;
  object-fit:contain;
  display:block;
}
/* HEADER MÁS ABIERTO */

.header .container{
  width:min(1600px, calc(100% - 40px));
}

.header__content{
  justify-content:space-between;
}
/* =========================
   LOGO WORDPRESS
========================= */

.logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
}

.logo .custom-logo-link{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  width:auto;
  max-width:120px;
}

.logo .custom-logo{
  display:block;
  width:auto;
  max-width:120px;
  max-height:58px;
  height:auto;
  object-fit:contain;
}
/* =========================
   404
========================= */

.error-404{
  min-height:75vh;

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

  padding:100px 0;

  background:
    radial-gradient(circle at top right, rgba(255,122,0,.12), transparent 25%),
    linear-gradient(180deg,#fff,#fff8f1);
}

.error-404__content{
  text-align:center;
  max-width:700px;
}

.error-404__content span{
  display:block;

  font-size:7rem;
  font-weight:900;
  line-height:1;

  color:var(--primary);

  margin-bottom:20px;
}

.error-404__content h1{
  font-size:2.6rem;

  margin-bottom:18px;
}

.error-404__content p{
  color:var(--text-light);

  line-height:1.7;

  margin-bottom:34px;
}
.woocommerce-cart main.container,
.woocommerce-checkout main.container {
  max-width: 1100px;
}

.woocommerce-cart .page-content,
.woocommerce-checkout .page-content {
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.woocommerce table.shop_table {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .checkout-button {
  background: #f28c28 !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 14px 24px !important;
  font-weight: 700 !important;
  border: none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .checkout-button:hover {
  background: #d97706 !important;
  color: #fff !important;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout form.checkout {
  background: #fafafa;
  padding: 24px;
  border-radius: 20px;
}

.header__actions a.icon-btn {
  text-decoration: none;
  position: relative;
}

.header__actions a.icon-btn span {
  background: #f28c28;
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  padding: 2px 7px;
  margin-left: 4px;
}
/* OCULTAR CARRITO LATERAL ANTIGUO DEL THEME */
.cart,
.cart.active {
  display: none !important;
  right: -9999px !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

/* Evitar overlay cuando el carrito viejo se active */
body .overlay.active {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
/* =========================
   WOOCOMMERCE SHOP FIX
========================= */

.woocommerce-shop main.container,
.post-type-archive-product main.container {
  width: min(1320px, 90%);
  margin: 0 auto;
  padding: 50px 0;
}

.woocommerce-shop ul.products,
.post-type-archive-product ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin: 30px 0 !important;
  padding: 0 !important;
}

.woocommerce-shop ul.products li.product,
.post-type-archive-product ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  list-style: none;
  background: #fff;
  border: 1px solid #ece2d9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  padding-bottom: 20px !important;
}

.woocommerce-shop ul.products li.product img,
.post-type-archive-product ul.products li.product img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin: 0 0 18px !important;
}

.woocommerce-shop ul.products li.product h2,
.post-type-archive-product ul.products li.product h2 {
  font-size: 1rem !important;
  padding: 0 18px !important;
  margin-bottom: 10px !important;
}

.woocommerce-shop ul.products li.product .price,
.post-type-archive-product ul.products li.product .price {
  display: block;
  padding: 0 18px;
  color: #ff7a00 !important;
  font-weight: 700;
}

.woocommerce-shop ul.products li.product .button,
.post-type-archive-product ul.products li.product .button {
  margin: 16px 18px 0 !important;
  background: #31aee2 !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 12px 18px !important;
}

.woocommerce-ordering {
  margin-bottom: 20px;
}

.widget-area,
.sidebar {
  display: none !important;
}

@media (max-width: 992px) {
  .woocommerce-shop ul.products,
  .post-type-archive-product ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .woocommerce-shop ul.products,
  .post-type-archive-product ul.products {
    grid-template-columns: 1fr;
  }
}
