/**
 * Amazon-Style CSS v2
 * Header, Navigation, Hero, Categories
 */

/* ========================================
   HEADER
   ======================================== */
.amz-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #131921;
}

.amz-header__top {
    background: #131921;
    padding: 8px 0;
}

.amz-header__container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Logo */
.amz-header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    padding: 6px 8px;
    border: 1px solid transparent;
    border-radius: 3px;
    flex-shrink: 0;
}

.amz-header__logo:hover {
    border-color: #fff;
}

.amz-header__logo i {
    color: #febd69;
}

/* Search Bar */
.amz-header__search {
    flex: 1;
    display: flex;
    height: 42px;
    border-radius: 4px;
    overflow: visible;
    background: #fff;
    position: relative;
}

/* Category Dropdown in Search */
.amz-header__search-cat-wrapper {
    position: relative;
    flex-shrink: 0;
}

.amz-header__search-cat-btn {
    height: 100%;
    background: #e6e6e6;
    border: none;
    padding: 0 12px;
    font-size: 0.85rem;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 4px 0 0 4px;
    min-width: 70px;
}

.amz-header__search-cat-btn:hover {
    background: #d4d4d4;
}

.amz-header__search-cat-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1002;
    visibility: hidden;
    opacity: 0;
}

.amz-header__search-cat-dropdown.active {
    display: block;
    visibility: visible;
    opacity: 1;
}

.amz-header__search-cat-dropdown a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
}

.amz-header__search-cat-dropdown a:hover,
.amz-header__search-cat-dropdown a.active {
    background: #f0f0f0;
}

.amz-header__search-input {
    flex: 1;
    border: none;
    padding: 0 15px;
    font-size: 1rem;
    min-width: 0;
}

.amz-header__search-input:focus {
    outline: none;
}

.amz-header__search-btn {
    background: #febd69;
    border: none;
    width: 50px;
    cursor: pointer;
    font-size: 1.1rem;
    color: #131921;
    transition: background 0.2s;
    border-radius: 0 4px 4px 0;
}

.amz-header__search-btn:hover {
    background: #f3a847;
}

/* Actions */
.amz-header__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

/* Desktop/Mobile visibility */
.amz-header__actions--desktop {
    display: flex;
}

.amz-header__actions--mobile {
    display: none;
}

.amz-header__search--desktop {
    display: flex;
}

.amz-header__mobile-search {
    display: none;
}

.amz-header__hamburger {
    display: none;
}

/* Language Select */
.amz-header__lang-select {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    color: #febd69;
    border: 1px solid transparent;
    border-radius: 3px;
    flex-shrink: 0;
    cursor: pointer;
    margin: 0 10px;
}

.amz-header__lang-select:hover {
    border-color: #febd69;
}

.amz-header__lang-select i {
    color: #febd69;
    font-size: 0.9rem;
}

.amz-header__lang-dropdown {
    background: #131921;
    border: none;
    color: #febd69;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    padding: 2px 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23febd69' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 18px;
}

.amz-header__lang-dropdown option {
    background: #131921;
    color: #febd69;
    padding: 8px;
}

/* mobiKoins */
.amz-header__koins {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    border: 1px solid transparent;
    flex-shrink: 0;
}

.amz-header__koins:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
}

.amz-header__koins-icon {
    font-size: 1rem;
}

/* Icon Button (Favoritos) */
.amz-header__icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.amz-header__icon-btn:hover {
    border-color: #fff;
    color: #febd69;
}

/* Links */
.amz-header__link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 6px 10px;
    color: #fff;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 0.85rem;
    white-space: nowrap;
    background: none;
    cursor: pointer;
    flex-shrink: 0;
}

.amz-header__link:hover {
    border-color: #fff;
}

.amz-header__link-small {
    font-size: 0.7rem;
    color: #ccc;
}

.amz-header__link-big {
    font-weight: 700;
    font-size: 0.85rem;
}

/* Publish Button */
.amz-header__publish {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #febd69;
    color: #131921 !important;
    font-weight: 700;
    border-radius: 3px;
    text-decoration: none;
    flex-shrink: 0;
}

.amz-header__publish:hover {
    background: #f3a847;
}

/* Dropdown */
.amz-header__dropdown {
    position: relative;
    flex-shrink: 0;
}

.amz-header__dropdown-toggle {
    background: none;
    border: 1px solid transparent;
    cursor: pointer;
}

.amz-header__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 220px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    z-index: 1001;
    padding: 10px 0;
}

.amz-header__dropdown:hover .amz-header__dropdown-menu {
    display: block;
}

.amz-header__dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
}

.amz-header__dropdown-menu a:hover {
    background: #f3f3f3;
}

.amz-header__dropdown-divider {
    height: 1px;
    background: #e7e7e7;
    margin: 8px 0;
}

/* Categories Navigation Bar */
.amz-header__nav {
    background: #232f3e;
    position: relative;
}

.amz-header__nav-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.amz-header__nav-scroll {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 0 10px;
}

.amz-header__nav-scroll::-webkit-scrollbar {
    display: none;
}

.amz-header__nav-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    white-space: nowrap;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: border-color 0.2s;
}

.amz-header__nav-item:hover {
    border-color: #fff;
}

.amz-header__nav-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(90deg, #232f3e 60%, transparent);
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.amz-header__nav-arrow--left {
    left: 0;
}

.amz-header__nav-arrow--right {
    right: 0;
    background: linear-gradient(-90deg, #232f3e 60%, transparent);
}

/* ========================================
   MAIN CONTENT BACKGROUND
   ======================================== */
.main--amazon {
    background: linear-gradient(180deg, #232f3e 0%, #394150 50px, #e3e6e6 100px);
    min-height: calc(100vh - 120px);
    padding-bottom: 80px;
}

/* ========================================
   CONTENT SECTIONS WITH WHITE BACKGROUND
   ======================================== */
.section-white {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.section-white--no-padding {
    padding: 0;
}

/* ========================================
   HERO SLIDER
   ======================================== */
.amz-hero {
    position: relative;
    background: #232f3e;
}

.amz-hero__slider {
    position: relative;
    height: 350px;
    overflow: hidden;
    background: #232f3e;
    display: flex;
    justify-content: center;
}

.amz-hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    justify-content: center;
}

.amz-hero__slide.active {
    opacity: 1;
}

.amz-hero__slide img {
    width: 90%;
    height: 100%;
    object-fit: cover !important;
    object-position: top center !important;
    border-radius: 0 0 8px 8px;
}

.amz-hero__slide-link {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.amz-hero__fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, #e3e6e6);
    pointer-events: none;
}

.amz-hero__arrows {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    left: 5%;
    right: 5%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.amz-hero__arrow {
    width: 45px;
    height: 90px;
    background: rgba(255,255,255,0.9);
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
    pointer-events: all;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.amz-hero__arrow:hover {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.amz-hero__dots {
    position: absolute;
    bottom: 210px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.amz-hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
}

.amz-hero__dot.active {
    background: #fff;
}

/* Categories Cards - Overlay Style */
.amz-hero__categories {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    padding: 0 20px 30px;
}

.amz-hero__categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1500px;
    margin: 0 auto;
}

.amz-hero__cat-card--overlay {
    position: relative;
    display: block;
    height: 280px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.amz-hero__cat-card--overlay:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.amz-hero__cat-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.amz-hero__cat-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.amz-hero__cat-card--overlay:hover .amz-hero__cat-card-bg img {
    transform: scale(1.1);
}

/* Overlay gradient - centered dark */
.amz-hero__cat-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at center, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    transition: background 0.3s ease;
}

.amz-hero__cat-card--overlay:hover .amz-hero__cat-card-bg::after {
    background: 
        radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

/* Content over image */
.amz-hero__cat-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 2;
    text-align: center;
}

.amz-hero__cat-card-content h3 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.8),
        0 4px 8px rgba(0,0,0,0.6),
        0 0 40px rgba(0,0,0,0.4);
    line-height: 1.1;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.amz-hero__cat-card--overlay:hover .amz-hero__cat-card-content h3 {
    transform: translateY(0);
    text-shadow: 
        0 2px 4px rgba(0,0,0,0.9),
        0 4px 12px rgba(0,0,0,0.7),
        0 0 60px rgba(254,189,105,0.3);
}

.amz-hero__cat-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #febd69;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    background: rgba(0,0,0,0.5);
    border: 2px solid #febd69;
    border-radius: 25px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.amz-hero__cat-card--overlay:hover .amz-hero__cat-card-cta {
    opacity: 1;
    transform: translateY(0);
    background: #febd69;
    color: #131921;
}

.amz-hero__cat-card-cta i {
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

.amz-hero__cat-card--overlay:hover .amz-hero__cat-card-cta i {
    transform: translateX(5px);
}

/* Gradient fallback for categories without image */
.amz-hero__cat-card--gradient .amz-hero__cat-card-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.amz-hero__cat-card--gradient .amz-hero__cat-card-bg i {
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
}

.amz-hero__cat-card--gradient .amz-hero__cat-card-bg::after {
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0,0,0,0.4) 100%
    );
}

/* Legacy styles for backward compatibility */
.amz-hero__cat-card {
    background: #fff;
    border-radius: 4px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    transition: box-shadow 0.2s;
}

.amz-hero__cat-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.amz-hero__cat-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f1111;
}

.amz-hero__cat-card-img {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 12px;
    display: block;
}

.amz-hero__cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.amz-hero__cat-card:hover .amz-hero__cat-card-img img {
    transform: scale(1.05);
}

.amz-hero__cat-card-link {
    color: #007185;
    font-size: 0.9rem;
    text-decoration: none;
}

.amz-hero__cat-card-link:hover {
    color: #c7511f;
    text-decoration: underline;
}

/* ========================================
   ADS SECTIONS
   ======================================== */
.ads-section {
    background: #fff;
    border-radius: 4px;
    padding: 20px;
    margin: 0 auto 20px;
    max-width: 1500px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.ads-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
}

.ads-section__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f1111;
    margin: 0;
}

.ads-section__link {
    color: #007185;
    text-decoration: none;
    font-size: 0.9rem;
}

.ads-section__link:hover {
    color: #c7511f;
    text-decoration: underline;
}

/* Dark section - color de barra de categorías */
.ads-section--dark {
    background: #232f3e;
    color: #fff;
}

.ads-section--dark .ads-section__title {
    color: #fff;
}

.ads-section--dark .ads-section__link {
    color: #febd69;
}

.ads-section--dark .ads-section__header {
    border-bottom-color: rgba(255,255,255,0.2);
}

/* ========================================
   FOOTER
   ======================================== */
.amz-footer__top {
    background: #37475a;
    text-align: center;
    padding: 15px;
}

.amz-footer__top a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.amz-footer__top a:hover {
    text-decoration: underline;
}

.amz-footer__main {
    background: #232f3e;
    padding: 40px 0;
}

.amz-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.amz-footer__col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
}

.amz-footer__col a {
    display: block;
    color: #ddd;
    text-decoration: none;
    font-size: 0.85rem;
    padding: 4px 0;
}

.amz-footer__col a:hover {
    text-decoration: underline;
}

.amz-footer__social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.amz-footer__social a {
    font-size: 1.5rem;
    color: #fff;
}

.amz-footer__bottom {
    background: #131921;
    padding: 20px 0;
    text-align: center;
}

.amz-footer__logo {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.amz-footer__logo i {
    color: #febd69;
}

.amz-footer__bottom p {
    color: #999;
    font-size: 0.8rem;
}

/* ========================================
   MOBILE MENU (Hamburger)
   ======================================== */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    z-index: 1101;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #131921;
    color: #fff;
}

.mobile-menu__user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.mobile-menu__user i {
    font-size: 1.5rem;
    color: #febd69;
}

.mobile-menu__user a {
    color: #febd69;
    text-decoration: none;
    font-weight: 600;
}

.mobile-menu__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu__content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.mobile-menu__item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.mobile-menu__item:hover {
    background: #f5f5f5;
}

.mobile-menu__item i {
    width: 20px;
    text-align: center;
    color: #666;
    font-size: 1rem;
}

.mobile-menu__icon {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.mobile-menu__badge {
    margin-left: auto;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
}

.mobile-menu__koins {
    background: #fffbeb;
    border-left: 3px solid #f59e0b;
}

.mobile-menu__publish {
    background: #febd69;
    color: #131921 !important;
    font-weight: 700;
    margin: 10px 15px;
    border-radius: 6px;
    justify-content: center;
}

.mobile-menu__publish:hover {
    background: #f3a847;
}

.mobile-menu__publish i {
    color: #131921;
}

.mobile-menu__logout {
    color: #dc2626;
}

.mobile-menu__logout i {
    color: #dc2626;
}

.mobile-menu__divider {
    height: 1px;
    background: #e5e5e5;
    margin: 10px 20px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .amz-hero__categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .amz-header__search-cat-btn span {
        display: none;
    }
    .amz-header__search-cat-btn {
        min-width: auto;
        padding: 0 10px;
    }
    
    .amz-hero__slider {
        height: 280px;
    }
    
    .amz-hero__slide img {
        width: 94%;
        object-position: top center !important;
    }
    
    .amz-hero__arrows {
        left: 3%;
        right: 3%;
    }
    
    .amz-hero__categories {
        margin-top: -40px;
    }
    
    .amz-hero__categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amz-hero__cat-card--overlay {
        height: 200px;
    }
    
    .amz-hero__cat-card-content h3 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .amz-hero__cat-card-cta {
        font-size: 0.85rem;
        padding: 6px 15px;
    }
    
    .amz-hero__cat-card-img {
        height: 140px;
    }
}

@media (max-width: 768px) {
    /* Ocultar elementos desktop */
    .amz-header__search--desktop {
        display: none !important;
    }
    
    .amz-header__actions--desktop {
        display: none !important;
    }
    
    /* Mostrar elementos móvil */
    .amz-header__actions--mobile {
        display: flex !important;
        align-items: center;
        gap: 10px;
        margin-left: auto;
    }
    
    .amz-header__mobile-search {
        display: block !important;
        padding: 8px 12px 10px;
    }
    
    .amz-header__mobile-search .amz-header__search {
        display: flex;
        width: 100%;
        height: 42px;
        border-radius: 8px;
    }
    
    .amz-header__hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: none;
        border: 1px solid transparent;
        border-radius: 4px;
        color: #fff;
        font-size: 1.4rem;
        cursor: pointer;
    }
    
    .amz-header__hamburger:hover {
        border-color: #fff;
    }
    
    /* Header adjustments */
    .amz-header__top {
        padding: 8px 0 0 0;
    }
    
    .amz-header__container {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 0 12px;
    }
    
    /* Logo visible en móvil */
    .amz-header__logo {
        font-size: 1.4rem;
        padding: 4px 0;
    }
    
    .amz-header__logo span {
        display: inline !important;
        font-size: 1.3rem;
    }
    
    .amz-header__logo i {
        font-size: 1.5rem;
    }
    
    /* Mobile lang select */
    .amz-header__actions--mobile .amz-header__lang-select {
        padding: 6px 8px;
        margin: 0;
    }
    
    .amz-header__actions--mobile .amz-header__lang-select i {
        display: none;
    }
    
    /* Categories nav */
    .amz-header__nav-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    /* Hero */
    .amz-hero__slider {
        height: 180px;
    }
    
    .amz-hero__slide img {
        width: 96%;
        border-radius: 0 0 6px 6px;
        object-position: top center !important;
    }
    
    .amz-hero__arrows {
        left: 2%;
        right: 2%;
    }
    
    .amz-hero__fade {
        height: 120px;
    }
    
    .amz-hero__dots {
        bottom: 130px;
    }
    
    .amz-hero__categories {
        margin-top: -30px;
        padding: 0 10px 20px;
    }
    
    .amz-hero__categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .amz-hero__cat-card--overlay {
        height: 160px;
    }
    
    .amz-hero__cat-card-content {
        padding: 12px;
    }
    
    .amz-hero__cat-card-content h3 {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }
    
    .amz-hero__cat-card-cta {
        font-size: 0.75rem;
        padding: 5px 12px;
        opacity: 1;
        transform: translateY(0);
    }
    
    .amz-hero__cat-card {
        padding: 12px;
    }
    
    .amz-hero__cat-card h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .amz-hero__cat-card-img {
        height: 100px;
        margin-bottom: 8px;
    }
    
    .amz-hero__arrow {
        width: 35px;
        height: 70px;
        font-size: 1.2rem;
    }
    
    .ads-section {
        margin-left: 10px;
        margin-right: 10px;
        padding: 15px;
    }
    
    .ads-section__title {
        font-size: 1.1rem;
    }
    
    .amz-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .amz-header__logo {
        font-size: 1.2rem;
    }
    
    .amz-header__logo span {
        font-size: 1.1rem;
    }
    
    .amz-header__logo i {
        font-size: 1.3rem;
    }
    
    .amz-header__mobile-search .amz-header__search {
        height: 40px;
    }
    
    .amz-header__mobile-search .amz-header__search-input {
        font-size: 0.95rem;
        padding: 0 12px;
    }
    
    .amz-header__nav-item {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .amz-hero__slider {
        height: 150px;
    }
    
    .amz-hero__slide img {
        width: 96%;
        border-radius: 0 0 4px 4px;
        object-position: top center !important;
    }
    
    .amz-hero__categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .amz-hero__cat-card {
        padding: 10px;
    }
    
    .amz-hero__cat-card h3 {
        font-size: 0.85rem;
    }
    
    .amz-hero__cat-card-img {
        height: 80px;
    }
    
    .amz-hero__cat-card-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .amz-header__logo {
        font-size: 1.1rem;
    }
    
    .amz-header__logo span {
        font-size: 1rem;
    }
    
    .amz-header__hamburger {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Hide on mobile/desktop utilities */
@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .hide-desktop {
        display: none !important;
    }
}
