/* ==================================================
   RESET
================================================== */

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

html, body {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden; /* Evita que aparezca la barra de desplazamiento horizontal */
}

/* ========================================= */
/* MAIN */
/* ========================================= */

main{

    margin:0;
    padding-bottom:0 !important;

}

/* ========================================= */
/* ULTIMA SECTION */
/* ========================================= */

section:last-of-type{

    margin-bottom:0 !important;
    padding-bottom:0 !important;

}

/* SECCIONES */

section{

    margin-bottom:0 !important;

}


/* ==================================================
   TOPBAR
================================================== */

.topbar{
    background:#ff0000;
    color:white;
    text-align:center;
    padding:12px;
    font-size:.9rem;
    font-weight:600;
    letter-spacing:.5px;
}

/* ==================================================
   NAVBAR
================================================== */

.custom-navbar{
    background:white;
    padding:16px 0;
    box-shadow:0 3px 15px rgba(0,0,0,.06);
}

.logo img{
    width:180px;
}

/* LINKS */

.navbar-nav{
    gap:10px;
}

.nav-link{
    color:#111 !important;
    font-weight:700;
    font-size:.95rem;
    transition:.3s;
}

.nav-link:hover{
    color:#c1121f !important;
}

/* DROPDOWN */

.custom-dropdown{
    border:none;
    border-radius:18px;
    padding:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.dropdown-item{
    border-radius:10px;
    padding:12px 15px;
    transition:.2s;
    font-weight:600;
}

.dropdown-item:hover{
    background:#f5f5f5;
    padding-left:20px;
}

/* ==================================================
   SEARCH
================================================== */

.search-container{
    width:100%;
    max-width:420px;
}

.search-input{
    border-radius:14px 0 0 14px !important;
    border:1px solid #ddd;
    padding:13px;
    box-shadow:none !important;
}

.search-button{
    border:none;
    background:#111;
    color:white;
    width:60px;
    border-radius:0 14px 14px 0;
    transition:.3s;
}

.search-button:hover{
    background:#c1121f;
}

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

.header-icons{
    display:flex;
    align-items:center;
    gap:25px;
}

.icon-box{
    text-decoration:none;
    color:#111;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    transition:.3s;
}

.icon-box:hover{
    color:#c1121f;
}

.logged-user{
    display:flex;
    align-items:center;
    gap:10px;
}

.hello-user{
    font-weight:700;
    font-size:.95rem;
}

.logout-link{
    font-size:.85rem;
    color:#6c2bd9;
    text-decoration:none;
}

.logout-link:hover{
    color:black;
}
/* ==================================================
   HEADER ICONS
================================================== */

.header-icons{
    display:flex;
    align-items:center;
    gap:25px;
}

.icon-box{
    text-decoration:none;
    color:#111;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    transition:.3s;
}

.icon-box:hover{
    color:#c1121f;
}

.logged-user{
    display:flex;
    align-items:center;
    gap:10px;
}

.hello-user{
    font-weight:700;
    font-size:.95rem;
}

.logout-link{
    font-size:.85rem;
    color:#6c2bd9;
    text-decoration:none;
}

.logout-link:hover{
    color:black;
}

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

.hero-section{
    padding:90px 0;
    background:white;
}

.hero-content h1{
    font-size:4rem;
    font-weight:900;
    line-height:1.1;
    margin:20px 0;
}

.hero-content p{
    color:#666;
    font-size:1.1rem;
    line-height:1.7;
    margin-bottom:30px;
}

.hero-label{
    background:#111;
    color:white;
    padding:10px 18px;
    border-radius:999px;
    font-size:.85rem;
    font-weight:700;
    display:inline-block;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:40px;
}

.hero-btn{
    background:#111;
    color:white;
    padding:15px 28px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.hero-btn:hover{
    background:#c1121f;
    color:white;
}

.hero-outline{
    border:2px solid #111;
    color:#111;
    padding:15px 28px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.hero-outline:hover{
    background:#111;
    color:white;
}

.hero-image-wrapper{
    position:relative;
}

.hero-image{
    border-radius:30px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* ==================================================
   FEATURES
================================================== */

.hero-features{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.feature-box{
    background:#fff;
    border-radius:14px;
    padding:12px 18px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}

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

.section-header span{
    color:#c1121f;
    font-weight:800;
    letter-spacing:1px;
}

.section-header h2{
    font-size:2.8rem;
    font-weight:900;
    margin-top:10px;
}
.main-header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 60px;
    background:white;
    gap:40px;
}

/* IZQUIERDA */

.header-left{
    display:flex;
    align-items:center;
    gap:30px;
}

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

.category-card{
    position:relative;
    border-radius:24px;
    overflow:hidden;
    display:block;
}



.category-card:hover img{
    transform:scale(1.06);
}

.category-content{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.7),
        transparent
    );

    display:flex;
    align-items:flex-end;
    padding:25px;
}

.category-content h3{
    color:white;
    font-size:1.7rem;
    font-weight:800;
}


.search-box{
    display:flex;
    align-items:center;
}

.search-box input{
    width:420px;
    height:60px;
    border:none;
    background:#f3f3f3;
    padding:0 20px;
    font-size:1rem;
    outline:none;
    border-radius:12px 0 0 12px;
}

.search-box button{
    width:70px;
    height:60px;
    border:none;
    background:black;
    color:white;
    font-size:1.2rem;
    border-radius:0 12px 12px 0;
    cursor:pointer;
}

/* DERECHA */

.header-right{
    display:flex;
    align-items:center;
    gap:40px;
}

/* NAV */

nav ul{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    color:black;
    font-weight:700;
    font-size:1rem;
}

/* ICONOS */

.header-icons{
    display:flex;
    align-items:center;
    gap:25px;
}

/* LOGIN */

.icon-box{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:black;
    font-weight:700;
}

/* CARRITO */



.cart-count{
    position:absolute;
    top:-10px;
    right:-12px;
    width:22px;
    height:22px;
    background:#d61f26;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.8rem;
    font-weight:700;
}
/* ==================================================
   PROMO
================================================== */

.promo-wrapper{
    background:#111;
    color:white;
    border-radius:30px;
    padding:60px;
}

.promo-wrapper h2{
    font-size:2.5rem;
    font-weight:900;
}

.promo-wrapper p{
    color:#ccc;
    margin-top:15px;
}

.promo-btn{
    background:white;
    color:#111;
    padding:16px 30px;
    border-radius:14px;
    text-decoration:none;
    font-weight:700;
}

footer{

    background:#111;

    width:100%;

    margin:0 !important;

    padding-top:60px;

    padding-bottom:25px;

}

/* HOVER */

.footer-links a:hover{

    color:#c62828;

    padding-left:5px;

}

/* ICONOS */

.social-icon{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#1f1f1f;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    text-decoration:none;

    transition:.3s;

    font-size:1.1rem;

}

/* HOVER */

.social-icon:hover{

    background:#c62828;

    transform:translateY(-3px);

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

#toast{
    position:fixed;
    top:-100px;
    left:50%;
    transform:translateX(-50%);
    background:#22c55e;
    color:white;
    padding:16px 28px;
    border-radius:14px;
    z-index:99999;
    transition:.4s;
    font-weight:700;
}

#toast.show{
    top:20px;
}

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


footer{

    width:100%;

}

/* LINKS */

.footer-links a{

    color:#d7d7d7;

    text-decoration:none;

    transition:.3s;

    font-weight:600;

}

/* HOVER */

.footer-links a:hover{

    color:#c62828;

    padding-left:5px;

}

/* ICONOS */

.social-icon{

    width:45px;

    height:45px;

    border-radius:50%;

    background:#1f1f1f;

    display:flex;

    align-items:center;

    justify-content:center;

    color:white;

    text-decoration:none;

    transition:.3s;

    font-size:1.1rem;

}

/* HOVER */

.social-icon:hover{

    background:#c62828;

    transform:translateY(-3px);

}
footer .container{

    margin-bottom:0 !important;

}
/* ========================================= */
/* RESET TOTAL */
/* ========================================= */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}



/* ========================================= */
/* BOOTSTRAP FIX */
/* ========================================= */


.row{

    margin-left:0 !important;
    margin-right:0 !important;

}

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

footer{

    background:#111;

    color:white;
    width:100%;

    margin:0 !important;

    padding:60px 0 25px 0;

    overflow:hidden;

}
/* ========================================= */
/* HERO SLIDER */
/* ========================================= */

.hero-slider{

    width:100%;
    height:92vh;

    position:relative;

    overflow:hidden;

    background:black;

}

/* CONTENEDOR */

.slides-container{

    width:100%;
    height:100%;

    position:relative;

}

/* SLIDE */

.slide{

    position:absolute;

    inset:0;

    width:100%;
    height:100%;

    opacity:0;

    transition:1s ease;

}

.slide.active{

    opacity:1;

    z-index:2;

}

/* IMG */

.slide img{

    width:100%;
    height:100%;

    object-fit:cover;

    transform:scale(1.05);

}

/* OVERLAY */

.slide-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to right,
        rgba(0,0,0,.72),
        rgba(0,0,0,.15)
    );

}

/* CONTENT */

.slide-content{

    position:absolute;

    top:50%;
    left:7%;

    transform:translateY(-50%);

    z-index:5;

    max-width:650px;

    color:white;

}

/* LABEL */

.hero-label{

    background:black;

    color:white;

    padding:12px 22px;

    border-radius:999px;

    font-size:.9rem;

    font-weight:700;

    display:inline-block;

    margin-bottom:20px;

}

/* TITULO */

.slide-content h1{

    font-size:5rem;

    font-weight:900;

    line-height:1.05;

    margin-bottom:20px;

}

/* TEXTO */

.slide-content p{

    font-size:1.15rem;

    color:#e5e5e5;

    line-height:1.8;

    margin-bottom:35px;

}

/* BOTONES */

.hero-buttons{

    display:flex;

    gap:15px;

    margin-bottom:35px;

}

.hero-btn{

    background:white;

    color:black;

    padding:16px 34px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.hero-btn:hover{

    background:red;

    color:white;

}

.hero-outline{

    border:2px solid white;

    color:white;

    padding:16px 34px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.hero-outline:hover{

    background:white;

    color:black;

}

/* FEATURES */

.hero-features{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.feature-box{

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

    backdrop-filter:blur(12px);

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

    border-radius:16px;

    padding:14px 18px;

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

/* FLECHAS */

.slider-btn{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:65px;
    height:65px;

    border:none;

    border-radius:50%;

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

    backdrop-filter:blur(12px);

    color:white;

    font-size:1.2rem;

    cursor:pointer;

    z-index:20;

    transition:.3s;

}

.slider-btn:hover{

    background:red;

}

/* POSICION */

.prev-btn{

    left:30px;

}

.next-btn{

    right:30px;

}

/* MOBILE NAV */

.mobile-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.mobile-search{
    flex:1;
}

.mobile-search .search-input{
    height:42px;
    border-radius:12px 0 0 12px;
    font-size:14px;
}

.mobile-search .search-button{
    border-radius:0 12px 12px 0;
}

.mobile-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

.mobile-cart{
    color:#000;
    font-size:22px;
    text-decoration:none;
}

.mobile-top .logo img{
    width:42px;
}

.navbar-toggler{
    border:none !important;
    box-shadow:none !important;
}

/* DESKTOP */

@media(min-width:992px){

    .search-container{
        width:500px;
    }

}
.mobile-menu-user{
    border-bottom:1px solid #e5e5e5;
    padding-bottom:15px;
    margin-top:15px;
}

.mobile-user-info{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    text-align:center;
    font-weight:700;
    font-size:15px;
    margin-bottom:10px;
}

.mobile-user-info i{
    font-size:18px;
}

.mobile-login-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    text-align:center;
    text-decoration:none;
    color:#000;
    font-weight:700;
    font-size:16px;
    padding:12px 0;
}
.mobile-logout{
    display:flex;
    justify-content:center;
    align-items:center;
    width:100%;
    text-align:center;
    text-decoration:none;
    color:#000;
    font-weight:600;
    font-size:14px;
    padding-bottom:10px;
}

.search-modal{

    position: fixed;

    inset: 0;

    display: none;

    align-items: center;

    justify-content: center;

    z-index: 999999;

}

.search-modal.active{

    display: flex;

}

.search-overlay{

    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.6);

    backdrop-filter: blur(4px);

}

.search-box-results{

    position: relative;

    width: 95%;

    max-width: 700px;

    background: white;

    border-radius: 24px;

    overflow: hidden;

    z-index: 10;

    animation: showSearch .25s ease;

}

@keyframes showSearch{

    from{

        opacity: 0;

        transform: scale(.9);

    }

    to{

        opacity: 1;

        transform: scale(1);

    }

}

.search-header{

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 24px;

    border-bottom: 1px solid #eee;

}

.search-header h2{

    margin: 0;

    font-size: 24px;

    font-weight: 800;

}

.close-search{

    border: none;

    background: transparent;

    font-size: 28px;

    cursor: pointer;

}

.search-results-list{

    max-height: 500px;

    overflow-y: auto;

}

.search-item{

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 22px 24px;

    text-decoration: none;

    color: black;

    border-bottom: 1px solid #f3f3f3;

    transition: .2s;

}

.search-item:hover{

    background: #f7f7f7;

    padding-left: 34px;

}

.search-item h3{

    margin: 0;

    font-size: 18px;

    font-weight: 700;

}

.search-item p{

    margin: 0;

    color: gray;

    font-size: 14px;

}

.not-found{

    padding: 70px 20px;

    text-align: center;

}

.not-found h2{

    font-size: 30px;

    font-weight: 800;

}

.not-found p{

    color: gray;

    margin-top: 10px;

}

@media(max-width:768px){

    .search-box-results{

        width: 92%;

    }

}
.slider-btn{

    width:38px;

    height:38px;

    border:none !important;

    background:transparent !important;

    box-shadow:none !important;

    opacity:.75;

}

/* SACAR CIRCULO */

.slider-btn::before{

    display:none;

}

/* FLECHAS */

.slider-btn i{

    font-size:18px;

    color:#fff;

}
/* =========================================
SECTION
========================================= */

.categories-section{

    padding:90px 7%;

    background:#f7f7f7;

    text-align:center;

}

/* MINI TITLE */

.mini-title{

    color:#b30017;

    font-weight:800;

    letter-spacing:3px;

    font-size:14px;

}

/* TITLE */

.categories-section h2{

    font-size:68px;

    font-weight:900;

    margin-top:10px;

    margin-bottom:60px;

    color:#111;

}

/* =========================================
GRID
========================================= */

.categories-grid{

    display:grid;

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

    gap:26px;

}

/* =========================================
CARD
========================================= */

.category-card{

    position:relative;

    overflow:hidden;

    border-radius:34px;

    height:420px;

    text-decoration:none;

    transition:.35s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

}

/* IMG */

.category-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

    transform:scale(1.08);

}

/* OVERLAY */

.category-card .overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.75),
        transparent 55%
    );

}

/* TITLE */

.category-card h3{

    position:absolute;

    bottom:28px;

    left:24px;

    color:white;

    font-size:38px;

    font-weight:800;

    z-index:2;

    text-align:left;

}

/* HOVER */

.category-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 20px 45px rgba(0,0,0,.18);

}

.category-card:hover img{

    transform:scale(1.08);

}



.category-card{

    position:relative;

    overflow:hidden;

    border-radius:34px;

    height:420px;

    text-decoration:none;

    transition:
    transform .5s,
    box-shadow .5s,
    opacity .8s,
    filter .8s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

    opacity:0;

    transform:
    translateY(80px);

    filter:blur(8px);

}

/* CUANDO APARECE */

.category-card.show{

    opacity:1;

    transform:
    translateY(0);

    filter:blur(0);

}
.cart-box{
    position:relative;
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:black;
    font-weight:700;
}

.cart-count{
    position:absolute;
    top:-10px;
    right:-12px;
    width:22px;
    height:22px;
    background:#d61f26;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.8rem;
    font-weight:700;
}
.cart-box{

    display:flex;

    align-items:flex-start;

    gap:10px;

    text-decoration:none;

    color:#111;

}

.cart-box i{

    font-size:18px;

    margin-top:4px;

}

.cart-info-nav{

    display:flex;

    flex-direction:column;

    line-height:1;

}

.cart-count-text{

    font-size:14px;

    font-weight:700;

}

#cart-total{

    font-size:14px;

    font-weight:700;

    margin-top:5px;

}
.categories-section {
    padding: 90px 5%;
    background: #f8f9fa;
    text-align: center;
}

.mini-title {
    color: #c1121f;
    font-weight: 800;
    letter-spacing: 3px;
    font-size: 14px;
}

.categories-section h2 {
    font-size: 3.2rem;
    font-weight: 900;
    margin: 10px 0 60px;
    color: #111;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);   /* ← 5 en una sola fila */
    gap: 26px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    height: 380px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    /* Sin transiciones */
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent 50%);
}

.category-card h3 {
    position: absolute;
    bottom: 28px;
    left: 24px;
    color: white;
    font-size: 2.1rem;
    font-weight: 800;
    z-index: 2;
}
.search-dropdown.premium-search {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  font-size: 14.5px;
}

.search-result-item,
.search-recent-item {
  padding: 11px 16px;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid #f1f5f9;
}

.search-result-item:last-child,
.search-recent-item:last-child {
  border-bottom: none;
}

.search-result-item:hover,
.search-result-item.active,
.search-recent-item:hover {
  background: #f8fafc;
}

.search-result-content {
  display: flex;
  align-items: center;
  gap: 13px;
}

.search-result-img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
}

.search-result-name {
  font-weight: 600;
  color: #1e2937;
  line-height: 1.3;
}

.search-result-name mark.search-highlight {
  background: #fef08c;
  padding: 1px 3px;
  border-radius: 3px;
  font-weight: 700;
}

.search-result-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3px;
}

.search-result-category {
  font-size: 12.5px;
  color: #64748b;
}

.search-result-price {
  font-weight: 700;
  color: #c1121f;
  font-size: 14.5px;
}

.search-section-title {
    padding: 10px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
    background: #ffffff;           /* Fondo blanco */
    border-bottom: 1px solid #f1f5f9;
}

.search-no-results {
  padding: 18px 16px;
  color: #64748b;
  text-align: center;
  font-size: 14px;
}
.search-section-title {
    padding: 10px 16px;
    font-size: 12.5px;
    font-weight: 600;
    color: #64748b;
    background: #ffffff;           /* Fondo blanco */
    border-bottom: 1px solid #f1f5f9;
}

/* Items de búsquedas recientes */
.search-recent-item {
    padding: 10px 16px;
    cursor: pointer;
    color: #334155;
    background: #ffffff;
    transition: background 0.2s;
}

.search-recent-item:hover {
    background: #f8fafc;
}

/* Dropdown general del buscador */
.search-dropdown.premium-search {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
/* Ocultar sugerencias negras */
.search-keywords,
.search-suggestions,
.search-popular,
.search-autocomplete {
    display: none !important;
}
/* =========================================
   MEJOR RESPONSIVE PARA TODOS LOS CELULARES
   Detaquito Store - Home optimizado
========================================= */
@media (max-width: 576px) {
    .mobile-top { padding: 6px 0; }
    .search-container.mobile-search { margin-left: 8px; margin-right: 8px; }

    .hero-slider { min-height: 380px; }
    .slide-content h1 { font-size: 1.55rem; line-height: 1.2; }
    .slide-content p { font-size: 0.95rem; }

    .category-card { margin-bottom: 12px; }
    .category-card h3 { font-size: 1.05rem; }

    .promo-wrapper { padding: 24px 18px; }
}

.hero-btn, .promo-btn {
    min-height: 44px;
    padding: 12px 24px;
}
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .category-card {
        height: 240px;
        border-radius: 18px;
    }
    .category-card h3 {
        font-size: 1.35rem;
        bottom: 16px;
        left: 14px;
    }
}

/* Móvil chico (iPhone SE, etc) */
@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .category-card {
        height: 200px;
    }
    .category-card h3 {
        font-size: 1.15rem;
        bottom: 12px;
        left: 12px;
    }
}