﻿/* ====== OFFERS PRO UI (RTL) ====== */
.am-offers-hero{
  padding: 90px 0 35px;
  background: radial-gradient(1200px 450px at 50% 0%, rgba(37,99,235,.12), transparent 60%),
              linear-gradient(180deg, #f8fafc, #ffffff);
}

.am-breadcrumb{
  display:flex; justify-content:flex-end; align-items:center; gap:10px;
  font-size:13px; color:#6b7280; margin-bottom:18px;
}
.am-breadcrumb a{ color:#334155; text-decoration:none; }
.am-breadcrumb a:hover{ text-decoration:underline; }
.am-breadcrumb .sep{ opacity:.6; }

.am-hero-grid{
  display:grid; grid-template-columns: 1.25fr .75fr; gap:24px;
  align-items:stretch;
}
@media (max-width: 991px){
  .am-hero-grid{ grid-template-columns: 1fr; }
}

.am-hero-title{
  font-size:40px; line-height:1.2; margin:0 0 12px;
  letter-spacing:-.4px; color:#0f172a; font-weight:800;
}
@media (max-width: 575px){
  .am-hero-title{ font-size:30px; }
}

.am-hero-sub{
  margin:0 0 18px; color:#475569; font-size:15px; line-height:1.9;
  max-width: 720px;
}

.am-hero-pills{
  display:flex; flex-wrap:wrap; gap:10px;
  justify-content:flex-start;
}
.am-pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px; border-radius:999px;
  background:#fff; border:1px solid #e5e7eb;
  color:#0f172a; box-shadow: 0 10px 25px rgba(15,23,42,.04);
  font-size:13px;
}
.am-pill i{ opacity:.8; }
.am-pill b{ font-weight:800; }
.am-pill-link{ text-decoration:none; }
.am-pill-link:hover{ border-color:#cbd5e1; }

.am-hero-filter{ display:flex; flex-direction:column; gap:14px; }
.am-filter-card{
  background:#fff; border:1px solid #e5e7eb; border-radius:18px;
  padding:18px; box-shadow: 0 18px 45px rgba(15,23,42,.06);
}
.am-field{ margin-bottom:12px; }
.am-field label{ display:block; font-size:13px; color:#334155; margin-bottom:6px; font-weight:700; }

.am-input, .am-select{
  position:relative;
}
.am-input i, .am-select i{
  position:absolute; right:12px; top:50%; transform:translateY(-50%);
  color:#64748b; font-size:14px;
}
.am-input input{
  width:100%;
  padding:12px 40px 12px 12px;
  border-radius:12px; border:1px solid #e5e7eb;
  outline:none;
}
.am-input input:focus{ border-color:#93c5fd; box-shadow: 0 0 0 4px rgba(37,99,235,.12); }

.am-select select{
  width:100%;
  padding:12px 40px 12px 12px;
  border-radius:12px; border:1px solid #e5e7eb;
  outline:none;
}

.am-btn{
  width:100%;
  border:none;
  background:#2563eb;
  color:#fff;
  padding:12px 14px;
  border-radius:12px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}
.am-btn:hover{ filter:brightness(.96); }

.am-side-card{
  background:#0f172a;
  color:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow: 0 18px 45px rgba(15,23,42,.18);
}
.am-side-card h4{ margin:0 0 8px; font-weight:900; }
.am-side-card p{ margin:0 0 10px; color:rgba(255,255,255,.85); font-size:13px; line-height:1.9; }
.am-link{ color:#fff; text-decoration:none; font-weight:800; display:inline-flex; gap:8px; align-items:center; }
.am-link:hover{ text-decoration:underline; }

.am-offers-page{
  padding: 28px 0 80px;
  background:#fff;
}

.am-section-head{
  text-align:right;
  margin-bottom:18px;
}
.am-section-head h2{
  margin:0 0 6px;
  font-size:22px;
  font-weight:900;
  color:#0f172a;
}
.am-section-head p{
  margin:0;
  color:#64748b;
  font-size:13px;
}

/* ====== Offer Card ====== */
.am-offer-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 16px 40px rgba(15,23,42,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  height:100%;
  display:flex;
  flex-direction:column;
}
.am-offer-card:hover{
  transform: translateY(-6px);
  border-color:#cbd5e1;
  box-shadow: 0 26px 70px rgba(15,23,42,.12);
}

.am-offer-media{
  position:relative;
  display:block;
  height:220px;
  background:#f1f5f9;
}
.am-offer-media img{
max-width: 100%;
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.am-offer-tag{
  position:absolute;
  right:12px;
  top:12px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(226,232,240,.9);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  color:#0f172a;
}
.am-offer-discount{
  position:absolute;
  left:12px;
  top:12px;
  background:#ef4444;
  color:#fff;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}

.am-offer-body{
  padding:16px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.am-offer-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
  margin-bottom:10px;
}
.am-offer-title{
  margin:0;
  font-size:15px;
  line-height:1.6;
  font-weight:900;
  color:#0f172a;
  flex:1;
}
.am-offer-prices{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:3px;
  white-space:nowrap;
}
.am-price{
  font-weight:900;
  color:#2563eb;
  font-size:14px;
}
.am-old{
  color:#94a3b8;
  font-size:12px;
  text-decoration: line-through;
}

.am-offer-desc{
  margin:0 0 14px;
  color:#475569;
  font-size:13px;
  line-height:1.9;
  flex:1;
}

.am-offer-foot{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
}
.am-offer-store{
  display:flex;
  align-items:center;
  gap:8px;
  color:#334155;
  font-size:12px;
  font-weight:800;
}
.am-offer-store i{ color:#64748b; }

.am-offer-btn{
  text-decoration:none;
  background:#0f172a;
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  font-weight:900;
  font-size:12px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.am-offer-btn:hover{ filter:brightness(.95); }

/* Empty */
.am-empty{
  background:#f8fafc;
  border:1px dashed #cbd5e1;
  border-radius:18px;
  padding:30px;
  text-align:center;
}
.am-empty h3{ margin:0 0 8px; font-weight:900; }
.am-empty p{ margin:0 0 14px; color:#64748b; }

.am-btn-light{
  background:#0f172a;
  width:auto;
  padding:10px 14px;
}

/* Load more */
.am-loadmore{
  border:none;
  background:#2563eb;
  color:#fff;
  padding:12px 24px;
  border-radius:12px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.am-loadmore:disabled{ opacity:.7; }
.am-spinner{
  width:16px; height:16px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.45);
  border-top-color:#fff;
  display:inline-block;
  animation: amspin 1s linear infinite;
}
@keyframes amspin { to { transform: rotate(360deg); } }

/* ===== HERO DESKTOP OPTIMIZATION ===== */

@media (min-width: 1200px){

  .am-hero-grid{
    grid-template-columns: 1.4fr .8fr; /* 60% / 40% */
    align-items: center;
  }

  .am-hero-text{
    text-align: right;
    padding-left: 40px;
  }

  .am-hero-title{
    font-size: 44px;
    text-align: right;
  }

  .am-hero-sub{
    text-align: right;
    max-width: 700px;
  }

  .am-hero-pills{
    justify-content: flex-start;
  }

  .am-filter-card{
    margin-top: 0;
  }

  .am-offers-hero{
    padding-top: 110px;
    padding-bottom: 60px;
  }

}

/* ===== FORCE RTL ALIGNMENT ===== */

.am-offers-hero,
.am-offers-page,
.am-offer-card,
.am-section-head,
.am-offer-body{
  text-align: right;
  direction: rtl;
}

/* Pills align right */
.am-hero-pills{
  justify-content: flex-start;
}

/* Offer grid spacing desktop */
@media (min-width: 1400px){
  .am-offer-card{
    border-radius: 20px;
  }
}

/* ===== HERO ===== */

.am-events-hero{
  padding:110px 0 70px;
  background:linear-gradient(135deg,#f8fafc,#eef2f7);
  text-align:right;
}

.am-events-title{
  font-size:42px;
  font-weight:800;
  margin-bottom:15px;
}

.am-events-sub{
  font-size:18px;
  color:#6b7280;
  max-width:650px;
}

.am-events-meta{
  margin-top:25px;
}

.meta-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 18px;
  background:#ffffff;
  border-radius:30px;
  box-shadow:0 8px 20px rgba(0,0,0,.05);
  font-weight:600;
}

/* ===== PAGE ===== */

.am-events-page{
  padding:70px 0;
  background:#ffffff;
}

/* ===== CARD ===== */

.am-event-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:.3s;
  height:100%;
  display:flex;
  flex-direction:column;
}

.am-event-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.am-event-image{
  position:relative;
  height:240px;
  overflow:hidden;
}

.am-event-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s;
}

.am-event-card:hover img{
  transform:scale(1.05);
}

.am-event-date{
  position:absolute;
  top:15px;
  left:15px;
  background:#2563eb;
  color:#fff;
  padding:10px 12px;
  border-radius:12px;
  text-align:center;
}

.am-event-date .day{
  display:block;
  font-size:18px;
  font-weight:700;
}

.am-event-date .month{
  font-size:12px;
  opacity:.9;
}

/* BODY */

.am-event-body{
  padding:22px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.am-event-body h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
}

.am-event-body p{
  font-size:14px;
  color:#6b7280;
  margin-bottom:15px;
}

.am-event-meta-row{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  font-size:13px;
  color:#6b7280;
  margin-bottom:18px;
}

.am-event-btn{
  margin-top:auto;
  display:inline-block;
  padding:10px 20px;
  border-radius:10px;
  background:#2563eb;
  color:#fff;
  font-weight:600;
  text-align:center;
  transition:.3s;
}

.am-event-btn:hover{
  background:#1e40af;
  color:#fff;
}

.am-loadmore-btn{
  padding:12px 30px;
  border-radius:30px;
  background:#111827;
  color:#fff;
  font-weight:600;
  border:none;
}




/* HERO */

.events-hero{
  padding:110px 0 70px;
  background:linear-gradient(135deg,#f9fafb,#eef2f7);
}

.events-title{
  font-size:42px;
  font-weight:800;
}

.events-subtitle{
  color:#6b7280;
  max-width:650px;
  font-size:18px;
  margin-top:10px;
}

.events-stats{
  margin-top:25px;
}

.stat-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:#fff;
  padding:10px 20px;
  border-radius:30px;
  box-shadow:0 10px 25px rgba(0,0,0,.06);
}

/* FILTER */

.events-filter-bar{
  background:#fff;
  padding:25px 0;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}

.events-search{
  border-radius:10px;
}

.events-select{
  border-radius:10px;
}

.events-filter-btn{
  background:#2563eb;
  color:#fff;
  border-radius:10px;
}

/* PAGE */

.events-page{
  padding:70px 0;
}

/* CARD */

.event-card-modern{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.07);
  transition:.3s;
  height:100%;
  display:flex;
  flex-direction:column;
}

.event-card-modern:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.event-image{
  height:230px;
  position:relative;
}

.event-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.event-date{
  position:absolute;
  top:15px;
  left:15px;
  background:#2563eb;
  color:#fff;
  padding:10px 12px;
  border-radius:10px;
  text-align:center;
}

.event-date .day{
  display:block;
  font-weight:700;
}

.event-content{
  padding:20px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.event-meta{
  font-size:13px;
  color:#6b7280;
  display:flex;
  gap:15px;
  margin:12px 0;
}

.event-btn{
  margin-top:auto;
  background:#111827;
  color:#fff;
  padding:10px;
  text-align:center;
  border-radius:10px;
}

.load-more-btn{
  background:#111827;
  color:#fff;
  padding:12px 35px;
  border-radius:30px;
}



.events-hero{
    background:#f4f6fb;
    padding:60px 0 40px;
}

.hero-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    flex-wrap:wrap;
}

.hero-text{
    max-width:520px;
    text-align:right;
}

.hero-text h1{
    font-size:34px;
    font-weight:800;
    margin-bottom:10px;
}

.hero-text p{
    color:#6b7280;
    line-height:1.8;
}

.hero-stats{
    margin-top:15px;
    font-weight:600;
    color:#1e293b;
}

.hero-filter{
    background:white;
    padding:18px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    min-width:280px;
}

.filter-box{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.filter-box input,
.filter-box select{
    border:1px solid #e5e7eb;
    border-radius:10px;
    padding:10px;
}

.filter-box button{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:10px;
    border-radius:10px;
    font-weight:600;
}

.breadcrumb-modern{
    margin-bottom:10px;
    color:#9ca3af;
}

.breadcrumb-modern a{
    color:#2563eb;
}

/* ًں“± ظ…ظˆط¨ط§ظٹظ„ */
@media(max-width:768px){
    .hero-inner{
        flex-direction:column;
        text-align:right;
    }

    .hero-filter{
        width:100%;
    }
}

/* HERO */

.event-hero{
position:relative;
height:380px;
display:flex;
align-items:center;
overflow:hidden;
}

.hero-bg{
position:absolute;
width:100%;
height:100%;
object-fit:cover;
}
/* Event hero overlay */
.event-hero .hero-overlay{
position:absolute;
width:100%;
height:100%;
background:linear-gradient(to left, rgba(0,0,0,.6), rgba(0,0,0,.2));
}

.event-hero .hero-content{
position:relative;
color:#fff;
}

.event-hero .hero-content h1{
font-size:42px;
font-weight:800;
margin-top:10px;
}

.event-hero .hero-meta{
margin-top:10px;
opacity:.9;
}

.breadcrumb-modern{
color:#fff;
font-size:14px;
opacity:.8;
}

.breadcrumb-modern a{
color:#fff;
text-decoration:none;
}

/* CONTENT */

.event-content{
padding:60px 0;
background:#f8fafc;
}

/* GALLERY */

.event-gallery{
background:#fff;
padding:15px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.main-img{
width:100%;
border-radius:12px;
margin-bottom:10px;
}

.thumbs{
display:flex;
gap:8px;
overflow:auto;
}

.thumb{
width:70px;
border-radius:8px;
cursor:pointer;
}

/* DESCRIPTION */

.event-description{
margin-top:25px;
background:#fff;
padding:25px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.event-description h2{
font-size:24px;
font-weight:700;
margin-bottom:10px;
}

/* SIDEBAR */

.event-info-card{
background:#fff;
padding:25px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
position:sticky;
top:120px;
}

.event-info-card h3{
font-weight:700;
margin-bottom:15px;
}

.event-info-card ul{
list-style:none;
padding:0;
}

.event-info-card li{
margin-bottom:10px;
color:#475569;
}

.btn-contact{
display:block;
text-align:center;
background:#22c55e;
color:#fff;
padding:14px;
border-radius:10px;
margin-top:15px;
font-weight:700;
text-decoration:none;
}

.btn-contact:hover{
background:#16a34a;
}



/* HERO */
.blog-hero{
    background:#f4f7fb;
    padding:70px 0 50px;
}

.hero-content{
    max-width:700px;
}

.hero-breadcrumb{
    color:#7b8794;
    font-size:14px;
}

.blog-hero h1{
    font-size:40px;
    font-weight:800;
    margin:10px 0;
}

.blog-hero p{
    color:#6b7280;
    font-size:18px;
}

/* categories */
.blog-categories{
    padding:25px 0;
    border-bottom:1px solid #eee;
}

.cat-pill{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#f1f3f7;
    margin:5px;
    color:#333;
    font-size:14px;
    transition:.3s;
}

.cat-pill:hover{
    background:#0d6efd;
    color:#fff;
}

.cat-pill.active{
    background:#0d6efd;
    color:#fff;
}

/* blog cards */
.blog-section{
    padding:60px 0;
}

.blog-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:.3s;
    margin-bottom:30px;
}

.blog-card:hover{
    transform:translateY(-8px);
}

.blog-image img{
  max-width: 100%;
    width:100%;
    height:220px;
    object-fit:cover;
}

.blog-body{
    padding:20px;
    text-align:right;
}

.blog-date{
    font-size:13px;
    color:#888;
    margin-bottom:8px;
}

.blog-card h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:10px;
}

.blog-card p{
    color:#666;
    font-size:15px;
    line-height:1.8;
}

.read-more{
    color:#0d6efd;
    font-weight:600;
    text-decoration:none;
}

.read-more:hover{
    text-decoration:underline;
}



body{
direction: rtl;
text-align: right;
font-family: "Tajawal", sans-serif;
}

/* HERO */
.blog-hero-ar{
padding:60px 0 30px;
background:#fff;
border-bottom:1px solid #eee;
}

.blog-title-ar{
font-size:36px;
font-weight:800;
line-height:1.6;
margin:15px 0;
color:#111;
}

.blog-meta-ar{
color:#777;
font-size:14px;
display:flex;
gap:20px;
}

/* READING AREA */
.blog-reading-area{
padding:50px 0;
background:#f7f8fb;
}

.reading-content{
background:#fff;
padding:40px;
border-radius:14px;
box-shadow:0 5px 20px rgba(0,0,0,.05);
font-size:19px;
line-height:2;
color:#222;
}

.reading-content p{
margin-bottom:18px;
}

.reading-cover{
width:100%;
border-radius:12px;
margin-bottom:25px;
}

/* AUTHOR */
.author-box{
background:#fff;
padding:25px;
border-radius:14px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.author-box img{
width:80px;
height:80px;
border-radius:50%;
margin-bottom:10px;
}


/* Verify Email Page */
.am-verify-page{
  min-height: 75vh;
  padding: 90px 0 70px;
  background: radial-gradient(900px 320px at 50% 0%, rgba(37,99,235,.10), transparent 65%), #f8fafc;
}

.am-verify-wrap{
  display:flex;
  justify-content:center;
}

.am-verify-card{
  width:100%;
  max-width:720px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:20px;
  padding:34px 28px;
  box-shadow:0 20px 50px rgba(15,23,42,.08);
  text-align:right;
}

.am-verify-icon{
  width:64px;
  height:64px;
  border-radius:16px;
  background:#eff6ff;
  color:#2563eb;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:16px;
}

.am-verify-title{
  margin:0 0 10px;
  font-size:30px;
  font-weight:800;
  color:#0f172a;
}

.am-verify-sub{
  margin:0 0 18px;
  color:#475569;
  line-height:1.9;
  font-size:15px;
}

.am-verify-alert{
  background:#ecfdf3;
  color:#166534;
  border:1px solid #bbf7d0;
  border-radius:12px;
  padding:12px 14px;
  margin-bottom:16px;
  font-weight:700;
}

.am-verify-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
}

.am-verify-btn{
  border:none;
  background:#2563eb;
  color:#fff;
  padding:12px 18px;
  border-radius:12px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.am-verify-btn:hover{ filter:brightness(.96); }

.am-verify-link{
  border:none;
  background:transparent;
  color:#334155;
  text-decoration:underline;
  font-weight:700;
}
/* Home Hero Categories responsive fix */
.hero-section .hero-categories {
  display: flex;
  flex-wrap: wrap !important;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  padding: 0 8px;
  overflow: visible !important;
}

.hero-section .hero-category {
  min-width: 120px !important;
  flex: 0 1 140px !important;
}

@media (max-width: 768px) {
  .hero-section .hero-categories {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 0 10px;
    margin-top: 24px;
    overflow: visible !important;
  }

  .hero-section .hero-category {
    min-width: 0 !important;
    width: 100%;
    flex: initial !important;
    padding: 12px 8px;
    border-radius: 12px;
  }

  .hero-section .hero-category i {
    font-size: 18px;
  }

  .hero-section .hero-category span {
    font-size: 12px;
    line-height: 1.3;
  }
}

@media (max-width: 520px) {
  .hero-section .hero-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Weekly stores carousel spacing */
.weekly-stores-carousel .weekly-store-item{
  padding: 0 2px 14px;
}

.weekly-stores-carousel .store-carousel-item,
.home-stores-carousel .store-carousel-item{
  padding: 0 2px 14px;
}

/* Fallback: show carousels as grid if Owl is not initialized */
.weekly-stores-carousel,
.home-stores-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.weekly-stores-carousel.owl-loaded,
.home-stores-carousel.owl-loaded {
  display: block;
}

@media (max-width: 991px) {
  .weekly-stores-carousel,
  .home-stores-carousel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .weekly-stores-carousel,
  .home-stores-carousel {
    grid-template-columns: 1fr;
  }
}


/* Home Hero Categories responsive fix */
.hero-section .hero-categories {
  display: flex;
  flex-wrap: wrap !important;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  padding: 0 8px;
  overflow: visible !important;
}

.hero-section .hero-category {
  min-width: 120px !important;
  flex: 0 1 140px !important;
}

@media (max-width: 768px) {
  .hero-section .hero-categories {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 0 10px;
    margin-top: 24px;
    overflow: visible !important;
  }

  .hero-section .hero-category {
    min-width: 0 !important;
    width: 100%;
    flex: initial !important;
    padding: 12px 8px;
    border-radius: 12px;
  }

  .hero-section .hero-category i {
    font-size: 18px;
  }

  .hero-section .hero-category span {
    font-size: 12px;
    line-height: 1.3;
  }
}

@media (max-width: 520px) {
  .hero-section .hero-categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


