:root{
  --bg: #f7f4ef;
  --bg-2: #fffdf9;
  --surface: rgba(255,255,255,0.88);
  --surface-solid: #ffffff;
  --card: #ffffff;
  --text: #1c1714;
  --text-soft: #6f655d;
  --border: rgba(30,22,17,0.08);
  --gold: #b8891f;
  --gold-soft: #e8c86f;
  --gold-deep: #8f6812;
  --shadow: 0 14px 35px rgba(24,16,10,0.08);
  --shadow-strong: 0 22px 50px rgba(24,16,10,0.12);
  --hero-overlay: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,248,238,0.90));
  --btn-dark: #191512;
  --btn-dark-text: #ffffff;
  --badge-bg: rgba(184,137,31,.08);
  --facebook-bg: #1877f2;
  --instagram-bg: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  --tiktok-bg: #111111;
  --whatsapp-bg: #25d366;
  --youtube-bg: #ff0000;
}

body.dark{
  --bg: #19191a;
  --bg-2: #242424;
  --surface: rgba(20,28,38,0.88);
  --surface-solid: #414141;
  --card: #16222d;
  --text: #edf3fb;
  --text-soft: #a8b7c8;
  --border: rgba(255,255,255,0.08);
  --gold: #d4af37;
  --gold-soft: #f4db8d;
  --gold-deep: #e0c365;
  --shadow: 0 16px 38px rgba(0,0,0,0.34);
  --shadow-strong: 0 24px 60px rgba(0,0,0,0.42);
  --hero-overlay: linear-gradient(180deg, rgba(7,13,20,0.30), rgba(8,13,20,0.88));
  --btn-dark: #edf3fb;
  --btn-dark-text: #102030;
  --badge-bg: rgba(212,175,55,.14);
  --facebook-bg: #1a3555;
  --instagram-bg: rgba(212,175,55,.10);
  --tiktok-bg: #102030;
  --whatsapp-bg: #174f41;
  --youtube-bg: #5b1d24;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:"Michroma", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(210,166,59,0.10), transparent 18%),
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 20%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color:var(--text);
  overflow-x:hidden;
  transition:background .35s ease, color .35s ease;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

button,
input{
  font-family:inherit;
}

.container{
  width:min(1280px, calc(100% - 32px));
  margin:auto;
}

.section{
  padding:92px 0;
  scroll-margin-top:110px;
}

.section-title{
  font-family: "Michroma", sans-serif;;
  font-size:clamp(2.2rem,4vw,3.7rem);
  color:var(--gold);
  text-align:center;
  margin-bottom:10px;
}

.section-subtitle{
  text-align:center;
  max-width:760px;
  margin:0 auto 34px;
  color:var(--text-soft);
  line-height:1.8;
  font-size:1rem;
}

.mini-title{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:var(--badge-bg);
  border:1px solid rgba(184,137,31,.18);
  color:var(--gold);
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.section-heading{
  text-align:center;
  margin-bottom:30px;
}

.topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  padding:16px 0;
  transition:transform .35s ease, opacity .35s ease, padding .3s ease;
}

.topbar.scrolled{
  padding:10px 0;
}

.topbar.hide-nav{
  transform:translateY(-140%);
  opacity:0;
  pointer-events:none;
}

.topbar.show-nav{
  transform:translateY(0);
  opacity:1;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 18px;
  background:var(--surface);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
  transition:all .3s ease;
}

.brand-block{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:max-content;
  flex-shrink:0;
}

.brand-icon{
  width:52px;
  height:52px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, var(--gold), var(--gold-soft));
  color:#2d1f08;
  font-size:1.1rem;
  box-shadow:0 12px 24px rgba(184,137,31,.18);
  flex-shrink:0;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}

.brand-sub{
  font-size:.72rem;
  color:var(--text-soft);
  margin-bottom:4px;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.logo{
  font-family: "Michroma", sans-serif;;
  font-weight:700;
  font-size:1.9rem;
  color:var(--gold);
  letter-spacing:.5px;
  white-space:nowrap;
}

.topbar-actions{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:1;
}

.search-box{
  width:250px;
  height:48px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 14px;
  border-radius:999px;
  background:var(--surface-solid);
  border:1px solid var(--border);
  color:var(--text-soft);
}

.search-box i{
  color:var(--gold);
}

.search-box input{
  width:100%;
  border:none;
  outline:none;
  background:transparent;
  color:var(--text);
  font-size:.95rem;
}

.search-box input::placeholder{
  color:var(--text-soft);
}

.theme-toggle{
  width:48px;
  height:48px;
  border:none;
  border-radius:50%;
  background:var(--btn-dark);
  color:var(--btn-dark-text);
  cursor:pointer;
  font-size:1rem;
  transition:.25s ease;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}

.theme-toggle:hover{
  transform:translateY(-2px) scale(1.03);
}

.hero{
  min-height:100vh;
  position:relative;
  display:flex;
  align-items:center;
  overflow:hidden;
  padding:140px 0 60px;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    var(--hero-overlay),
    url('https://images.unsplash.com/photo-1594035910387-fea47794261f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  z-index:-2;
  transform:scale(1.03);
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.18), transparent 20%),
    radial-gradient(circle at 85% 20%, rgba(210,166,59,0.15), transparent 16%);
  z-index:-1;
  pointer-events:none;
}

.hero-content{
  max-width:800px;
}

.hero-badge{
  display:inline-block;
  margin-bottom:18px;
  padding:9px 15px;
  border-radius:999px;
  background:var(--badge-bg);
  border:1px solid rgba(184,137,31,.18);
  color:var(--gold);
  font-size:.9rem;
  font-weight:600;
  backdrop-filter:blur(8px);
}

.hero h1{
  font-family: "Michroma", sans-serif;;
  font-size:clamp(2.9rem,7vw,5.9rem);
  line-height:.96;
  margin-bottom:16px;
  color:var(--text);
  text-shadow:0 6px 22px rgba(0,0,0,.08);
}

.hero p{
  max-width:650px;
  font-size:1.06rem;
  line-height:1.85;
  color:var(--text-soft);
  margin-bottom:28px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:26px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 24px;
  border-radius:999px;
  font-weight:700;
  border:none;
  cursor:pointer;
  transition:.28s ease;
}

.btn-primary{
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color:#24190a;
  box-shadow:0 12px 25px rgba(184,137,31,.18);
}

.btn-primary:hover,
.btn-secondary:hover{
  transform:translateY(-2px);
}

.btn-secondary{
  background:var(--surface);
  color:var(--text);
  border:1px solid var(--border);
  backdrop-filter:blur(10px);
}

.socials,
.footer-socials{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.social-link{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  transition:.3s ease;
  font-size:1.15rem;
  color:#ffffff;
}

.social-link.facebook{ background:var(--facebook-bg); }
.social-link.instagram{ background:var(--instagram-bg); }
.social-link.tiktok{ background:var(--tiktok-bg); }
.social-link.whatsapp{ background:var(--whatsapp-bg); }
.social-link.youtube{ background:var(--youtube-bg); }

body.dark .social-link{
  color:var(--gold);
  border-color:rgba(212,175,55,.25);
}

.social-link:hover{
  transform:translateY(-4px) scale(1.04);
  box-shadow:0 16px 28px rgba(0,0,0,.16);
}

.slider-header{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.slider-header-left h2{
  font-family: "Michroma", sans-serif;;
  font-size:clamp(2rem,4vw,3rem);
  color:var(--gold);
  margin-bottom:8px;
}

.slider-header-left p{
  color:var(--text-soft);
  line-height:1.75;
  max-width:720px;
}

.slider-tools{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
}

.see-more-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--gold);
  font-weight:700;
  padding:10px 14px;
  border-radius:999px;
  background:var(--surface);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  transition:.25s ease;
}

.see-more-link:hover{
  transform:translateY(-2px);
}

.slider-controls{
  display:flex;
  gap:10px;
}

.control-btn{
  width:48px;
  height:48px;
  border-radius:50%;
  border:1px solid var(--border);
  background:var(--surface-solid);
  color:var(--text);
  cursor:pointer;
  font-size:1rem;
  box-shadow:var(--shadow);
  transition:.25s ease;
}

.control-btn:hover{
  color:var(--gold);
  transform:translateY(-2px);
}

.slider{
  display:flex;
  gap:22px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
  padding:6px 2px 10px;
}

.slider::-webkit-scrollbar{
  display:none;
}

.card{
  min-width:295px;
  max-width:295px;
  flex-shrink:0;
  background:linear-gradient(180deg, var(--card), var(--surface-solid));
  border:1px solid var(--border);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.3s ease;
  position:relative;
}

.card.hide,
.masonry-item.hide{
  display:none !important;
}

.card::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:4px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity:.0;
  transition:.3s ease;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-strong);
}

.card:hover::after{
  opacity:1;
}

.card-image{
  height:320px;
  overflow:hidden;
  position:relative;
  background:#ddd;
}

.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.card:hover .card-image img{
  transform:scale(1.06);
}

.tag{
  position:absolute;
  top:16px;
  left:16px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(20,20,20,.58);
  color:#fff3cf;
  border:1px solid rgba(255,255,255,.14);
  font-size:.82rem;
  font-weight:700;
  backdrop-filter:blur(8px);
}

.card-body{
  padding:22px;
}

.rating-line{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-bottom:10px;
}

.stars{
  display:flex;
  align-items:center;
  gap:4px;
  color:var(--gold);
  font-size:.92rem;
}

.rating-value{
  font-size:.92rem;
  font-weight:800;
  color:var(--gold);
}

.card-title{
  font-family: "Michroma", sans-serif;;
  font-size:1.95rem;
  color:var(--text);
  text-align:center;
  margin-bottom:10px;
}

.card-desc{
  font-size:.96rem;
  color:var(--text-soft);
  line-height:1.7;
  min-height:66px;
  margin-bottom:16px;
  text-align:center;
}

.price-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.center-price{
  text-align:center;
}

.price{
  font-size:1.22rem;
  font-weight:800;
  color:var(--gold);
}

.old-price{
  color:var(--text-soft);
  text-decoration:line-through;
  font-size:.95rem;
  margin-left:6px;
  font-weight:500;
}

.people-rate{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color:var(--text-soft);
  font-size:.9rem;
  margin-bottom:16px;
  text-align:center;
}

.people-rate i{
  color:var(--gold);
}

.people-rate-light{
  color:#f7eddc;
  justify-content:flex-start;
}

.small-btn{
  width:100%;
  border:none;
  padding:13px 16px;
  border-radius:14px;
  cursor:pointer;
  font-weight:700;
  background:linear-gradient(135deg, rgba(184,137,31,.12), rgba(232,200,111,.18));
  color:var(--gold);
  border:1px solid rgba(184,137,31,.16);
  transition:.25s ease;
}

.small-btn:hover{
  transform:translateY(-1px);
  background:linear-gradient(135deg, rgba(184,137,31,.18), rgba(232,200,111,.25));
}

.offers-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  margin-top:24px;
}

.offer-card{
  position:relative;
  min-height:330px;
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  background:var(--card);
}

.offer-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.offer-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:26px;
  background:linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.78));
  color:#fff;
}

.offer-badge{
  display:inline-block;
  width:max-content;
  margin-bottom:12px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.16);
  font-size:.82rem;
  font-weight:700;
}

.offer-rating{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
}

.offer-rating .stars{
  color:#ffd86b;
}

.offer-rating-value{
  font-size:.92rem;
  font-weight:800;
  color:#ffd86b;
}

.offer-title{
  font-family: "Michroma", sans-serif;;
  font-size:2rem;
  margin-bottom:10px;
}

.offer-text{
  line-height:1.7;
  color:#f2eae3;
  margin-bottom:14px;
  max-width:96%;
}

.masonry-section{
  position:relative;
}

.masonry-grid{
  column-count:4;
  column-gap:20px;
}

.masonry-item{
  break-inside:avoid;
  margin-bottom:20px;
  background:linear-gradient(180deg, var(--card), var(--surface-solid));
  border:1px solid var(--border);
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  transition:.3s ease;
}

.masonry-item:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-strong);
}

.masonry-image{
  position:relative;
  overflow:hidden;
}

.masonry-image img{
  width:100%;
  height:auto;
  display:block;
}

.masonry-badge{
  position:absolute;
  top:14px;
  left:14px;
  background:rgba(20,20,20,.58);
  color:#fff1c7;
  border:1px solid rgba(255,255,255,.12);
  padding:7px 11px;
  border-radius:999px;
  font-size:.76rem;
  font-weight:700;
  backdrop-filter:blur(8px);
}

.masonry-body{
  padding:18px 18px 20px;
}

.masonry-title{
  font-family: "Michroma", sans-serif;;
  font-size:1.7rem;
  color:var(--text);
  text-align:center;
  margin-bottom:8px;
}

.masonry-text{
  font-size:.95rem;
  line-height:1.7;
  color:var(--text-soft);
  text-align:center;
  margin-bottom:14px;
}

.masonry-price{
  text-align:center;
  color:var(--gold);
  font-size:1.12rem;
  font-weight:800;
  margin-bottom:10px;
}

.load-status{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:26px;
  color:var(--text-soft);
  text-align:center;
}

.loader-ring{
  width:22px;
  height:22px;
  border:2px solid rgba(184,137,31,.25);
  border-top-color:var(--gold);
  border-radius:50%;
  animation:spin .8s linear infinite;
}

@keyframes spin{
  to{ transform:rotate(360deg); }
}

.footer{
  padding:54px 0 44px;
  border-top:1px solid var(--border);
  color:var(--text-soft);
  background:linear-gradient(180deg, transparent, rgba(184,137,31,.03));
}

.footer .container{
  display:flex;
  flex-direction:column;
  gap:24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:20px;
}
.payment-methods-center{
  width:100%;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.payment-methods-center .payment-card{
  width:170px;
  max-width:100%;
}

.footer-box,
.payment-methods-box{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:24px;
  padding:24px;
  box-shadow:var(--shadow);
}


.footer-box h3,
.payment-methods-box h3{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--gold);
  margin-bottom:14px;
  font-size:1.1rem;
}

.footer-box p{
  line-height:1.85;
  color:var(--text-soft);
}

.contact-card-single{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-line{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:14px 16px;
  background:var(--surface-solid);
  border:1px solid var(--border);
  border-radius:16px;
}

.contact-line i{
  color:var(--gold);
  margin-top:3px;
}

.payment-methods{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:14px;
}

.payment-card{
  min-height:84px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:var(--surface-solid);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow);
  transition:.25s ease;
  color:var(--text);
  text-align:center;
  padding:12px;
}

.payment-card i{
  font-size:1.8rem;
  color:var(--gold);
}

.payment-card span{
  font-size:.92rem;
  font-weight:700;
}

.payment-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-strong);
}

.footer-links-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.footer-link-card{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:72px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:20px;
  box-shadow:var(--shadow);
  font-weight:700;
  color:var(--text);
  transition:.25s ease;
}

.footer-link-card i{
  color:var(--gold);
}

.footer-link-card:hover{
  transform:translateY(-4px);
  color:var(--gold);
}

.footer-socials{
  justify-content:center;
}

.footer-copy{
  text-align:center;
}

.scroll-fab{
  position:fixed;
  right:22px;
  bottom:22px;
  width:58px;
  height:58px;
  border:none;
  border-radius:50%;
  background:linear-gradient(135deg, var(--gold), var(--gold-soft));
  color:#201607;
  font-size:1.05rem;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 16px 35px rgba(0,0,0,.25);
  z-index:1200;
  transition:transform .25s ease, opacity .25s ease, box-shadow .25s ease;
}

.scroll-fab:hover{
  transform:translateY(-4px) scale(1.03);
}

.scroll-fab.is-top{
  background:linear-gradient(135deg, var(--surface-solid), var(--surface));
  color:var(--gold);
  border:1px solid var(--border);
}

.reveal{
  opacity:0;
  transform:translateY(36px);
  transition:opacity .8s ease, transform .8s ease;
}

.reveal.show{
  opacity:1;
  transform:translateY(0);
}

@media (max-width: 1200px){
  .topbar-inner{
    flex-wrap:wrap;
    justify-content:center;
  }

  .brand-block{
    width:100%;
    justify-content:center;
  }

  .topbar-actions{
    width:100%;
    justify-content:center;
    flex-wrap:wrap;
  }

  .search-box{
    width:min(320px, 100%);
  }

  .masonry-grid{
    column-count:3;
  }

  .payment-methods{
    grid-template-columns:repeat(3, 1fr);
  }
}

@media (max-width: 1024px){
  .offers-grid{
    grid-template-columns:1fr 1fr;
  }

  .footer-links-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .footer-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .hero{
    min-height:auto;
    padding:160px 0 80px;
  }

  .topbar{
    padding:12px 0;
  }

  .topbar-inner{
    padding:12px 14px;
    border-radius:20px;
    flex-wrap:nowrap;
    justify-content:space-between;
    gap:10px;
  }

  .brand-block{
    width:auto;
    justify-content:flex-start;
    min-width:0;
    flex:1;
  }

  .brand-text{
    min-width:0;
  }

  .brand-sub{
    font-size:.58rem;
    letter-spacing:.08em;
    margin-bottom:2px;
  }

  .logo{
    font-size:1.08rem;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .topbar-actions{
    width:auto;
    justify-content:flex-end;
    flex-wrap:nowrap;
    gap:8px;
    flex:0 0 auto;
  }

  .search-box{
    width:160px;
    height:42px;
    padding:0 12px;
    gap:8px;
  }

  .search-box input{
    font-size:.86rem;
  }

  .theme-toggle{
    width:42px;
    height:42px;
    min-width:42px;
  }

  .card{
    min-width:265px;
    max-width:265px;
  }

  .card-image{
    height:280px;
  }

  .offers-grid{
    grid-template-columns:1fr;
  }

  .masonry-grid{
    column-count:2;
  }

  .slider-header{
    flex-direction:column;
    align-items:flex-start;
  }

  .slider-tools{
    width:100%;
    flex-direction:row;
    justify-content:space-between;
    align-items:center;
  }

  .payment-methods{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .container{
    width:min(1280px, calc(100% - 20px));
  }

  .brand-icon{
    width:40px;
    height:40px;
    border-radius:13px;
    font-size:.92rem;
  }

  .logo{
    font-size:.96rem;
  }

  .brand-sub{
    font-size:.52rem;
  }

  .search-box{
    width:124px;
    height:40px;
    padding:0 10px;
  }

  .search-box input::placeholder{
    font-size:.78rem;
  }

  .topbar-actions{
    gap:6px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .btn{
    width:100%;
  }

  .slider-tools{
    flex-direction:column;
    align-items:flex-start;
  }

  .footer-links-grid{
    grid-template-columns:1fr;
  }

  .masonry-grid{
    column-count:1;
  }

  .payment-methods{
    grid-template-columns:1fr 1fr;
  }

  .scroll-fab{
    width:52px;
    height:52px;
    right:16px;
    bottom:16px;
  }
}

@media (max-width: 560px){
  .payment-methods-two{
    grid-template-columns:1fr;
  }
}

@media (max-width: 420px){
  .logo{
    font-size:.88rem;
  }

  .brand-sub{
    display:none;
  }

  .search-box{
    width:108px;
  }

  .search-box i{
    font-size:.82rem;
  }

  .search-box input{
    font-size:.78rem;
  }

  .theme-toggle{
    width:40px;
    height:40px;
    min-width:40px;
  }
}