* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-main {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.categories-dropdown {
    position: relative;
}

.categories-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #FFD700;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s;
}

.categories-btn:hover {
    background: #e6c200;
}

.categories-btn i:first-child {
    font-size: 16px;
}

.categories-btn i:last-child {
    font-size: 10px;
    transition: transform 0.3s;
}

.categories-dropdown:hover .categories-btn i:last-child {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
    padding: 10px 0;
}

.categories-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background: #f8f8f8;
    color: #FFD700;
    padding-left: 25px;
}

.access-btn {
    padding: 12px 25px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.access-btn:hover {
    background: #FFD700;
    color: #1a1a1a;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo img {
    height: 45px;
    width: auto;
}

.search-box {
    flex: 1;
    max-width: 450px;
    display: flex;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 45px 10px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.search-box input:focus {
    outline: none;
    border-color: #FFD700;
}

.search-box button {
    position: absolute;
    right: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: #FFD700;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-box button:hover {
    background: #e6c200;
}

.search-box button i {
    color: #1a1a1a;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #eee;
    border-radius: 50%;
    font-size: 18px;
    color: #333;
    transition: all 0.3s;
}

.action-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #FFD700;
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav {
    background: #1a1a1a;
}

.main-nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 0;
}

.nav-menu li a {
    display: block;
    padding: 15px 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s;
}

.nav-menu li a:hover {
    background: #FFD700;
    color: #1a1a1a;
}

.nav-menu li.has-submenu {
    position: relative;
}

.nav-menu li.has-submenu > a i {
    font-size: 10px;
    margin-left: 5px;
    transition: transform 0.3s;
}

.nav-menu li.has-submenu:hover > a i {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #1a1a1a;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.nav-menu li.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li a {
    padding: 12px 20px !important;
    font-size: 13px !important;
    text-transform: none !important;
    border-bottom: 1px solid #333;
}

.submenu li:last-child a {
    border-bottom: none;
}

.nav-highlight {
    background: #ff4444 !important;
    color: #fff !important;
}

.nav-highlight:hover {
    background: #cc0000 !important;
}

.nav-highlight-gold {
    background: #FFD700 !important;
    color: #1a1a1a !important;
}

.nav-highlight-gold:hover {
    background: #e6c200 !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.hero-section {
    width: 100%;
    background: #f8f8f8;
}

.hero-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.hero-swiper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.hero-slide-custom {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFD700 0%, #FFC000 50%, #FFD700 100%);
    z-index: 0;
}

.hero-slide-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
    padding: 30px 20px;
}

.hero-badge {
    display: inline-block;
    background: #FFD700;
    color: #1a1a1a;
    font-size: 2rem;
    font-weight: 800;
    font-style: italic;
    padding: 8px 50px;
    margin-bottom: 8px;
    clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
}

.hero-title {
    display: inline-block;
    background: #FFD700;
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 800;
    font-style: italic;
    padding: 12px 60px;
    text-transform: uppercase;
    margin-bottom: 30px;
    clip-path: polygon(3% 0%, 100% 0%, 97% 100%, 0% 100%);
}

.hero-products {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-product {
    position: relative;
    display: block;
    text-align: center;
    transition: transform 0.3s;
}

.hero-product:hover {
    transform: scale(1.05);
}

.hero-product img {
    height: 200px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.hero-product-name {
    display: block;
    background: #FFD700;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 800;
    font-style: italic;
    padding: 6px 20px;
    border-radius: 6px;
    margin-top: 10px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.3);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.hero-nav:hover {
    background: rgba(255,255,255,0.5);
}

.hero-nav.prev { left: 15px; }
.hero-nav.next { right: 15px; }

.hero-slide-promo {
    min-height: 450px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-promo-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
    padding: 30px;
    gap: 40px;
}

.promo-left {
    flex: 1;
    text-align: center;
}

.promo-badge {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.promo-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.promo-title strong {
    font-weight: 800;
    font-style: italic;
    font-size: 2.5rem;
}

.promo-scooters {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.promo-scooters img {
    height: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.2));
}

.promo-right {
    flex: 1;
    text-align: left;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.promo-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.promo-product-title {
    color: #1a1a1a;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
}

.promo-product-title strong {
    font-weight: 800;
    font-size: 1.8rem;
    color: #FFD700;
}

.promo-btn {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: background 0.3s;
}

.promo-btn:hover {
    background: #333;
}

.hero-swiper .swiper-pagination {
    bottom: 15px;
}

.hero-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #FFD700;
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-slide-custom { min-height: 400px; }
    .hero-badge { font-size: 1.5rem; padding: 6px 30px; }
    .hero-title { font-size: 1.1rem; padding: 10px 30px; }
    .hero-product img { height: 120px; }
    .hero-product-name { font-size: 0.9rem; padding: 4px 12px; }
    .hero-promo-content { flex-direction: column; padding: 20px; }
    .promo-title { font-size: 1.5rem; }
    .promo-title strong { font-size: 1.8rem; }
    .promo-scooters img { height: 120px; }
}

.categories-grid {
    padding: 40px 0;
    background: #fff;
}

.categories-wrapper {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.category-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 25px 12px 12px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 35px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #FFD700;
    margin: 12px auto 0;
    border-radius: 2px;
}

.best-sellers-2025 {
    position: relative;
    padding: 40px 0 60px;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.03) 2px,
            rgba(0,0,0,0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.03) 2px,
            rgba(0,0,0,0.03) 4px
        ),
        linear-gradient(135deg, #5a5a5a 0%, #7a7a7a 25%, #6a6a6a 50%, #7a7a7a 75%, #5a5a5a 100%);
    overflow: hidden;
}

.best-sellers-2025 .year-badge {
    text-align: center;
    margin-bottom: 5px;
}

.best-sellers-2025 .year-badge span {
    display: inline-block;
    background: #FFD700;
    color: #1a1a1a;
    font-size: 1.8rem;
    font-weight: 800;
    font-style: italic;
    padding: 8px 30px;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.best-sellers-2025 .main-title {
    text-align: center;
    margin-bottom: 30px;
}

.best-sellers-2025 .main-title h2 {
    display: inline-block;
    background: #FFD700;
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 800;
    font-style: italic;
    padding: 10px 40px;
    text-transform: uppercase;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.best-sellers-slider {
    position: relative;
}

.best-sellers-grid {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 60px;
}

.best-seller-item {
    position: relative;
    text-align: center;
    flex: 0 0 180px;
}

.best-seller-item img {
    height: 220px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.4));
    transition: transform 0.3s;
}

.best-seller-item:hover img {
    transform: scale(1.05);
}

.best-seller-item .product-label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 800;
    font-style: italic;
    padding: 5px 15px;
    border-radius: 6px;
    white-space: nowrap;
}

.best-sellers-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.best-sellers-nav:hover {
    background: rgba(255,255,255,0.4);
}

.best-sellers-nav.prev {
    left: 10px;
}

.best-sellers-nav.next {
    right: 10px;
}

.featured-products {
    padding: 50px 0;
}

.favorites-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.favorite-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.favorite-item:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.favorite-item img {
    width: 100%;
    height: auto;
}

.products-section {
    padding: 50px 0;
    background: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge.hot {
    background: #ff4444;
    color: #fff;
}

.badge.new {
    background: #00c853;
    color: #fff;
}

.badge.sale {
    background: #FFD700;
    color: #1a1a1a;
}

.product-image {
    display: block;
    padding: 15px;
    background: #fafafa;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-info {
    padding: 15px;
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-color {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
}

.original-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.product-sold {
    font-size: 11px;
    color: #888;
    margin-bottom: 12px;
}

.add-to-cart {
    width: 100%;
    padding: 10px;
    background: #FFD700;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart:hover {
    background: #1a1a1a;
    color: #FFD700;
}

.warning-banner {
    padding: 40px 0;
    background: #fff;
}

.warning-banner img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-banner {
    padding: 40px 0;
    background: #f8f8f8;
}

.info-banner img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    color: #fff;
    padding: 30px 20px;
}

.feature-item i {
    font-size: 48px;
    color: #FFD700;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    color: #aaa;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-brand p {
    color: #aaa;
    font-size: 14px;
    margin: 20px 0;
    line-height: 1.7;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #FFD700;
    color: #1a1a1a;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #FFD700;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
}

.contact-info li i {
    color: #FFD700;
    width: 20px;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
}

.payment-methods {
    display: flex;
    gap: 15px;
}

.payment-methods i {
    font-size: 32px;
    color: #666;
}

@media (max-width: 1200px) {
    .categories-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .favorites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-dropdown {
        display: none;
    }
    
    .access-btn {
        display: none;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .search-box {
        order: 3;
        max-width: 100%;
        width: 100%;
    }
    
    .main-nav {
        position: relative;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        padding: 12px 15px;
        border-bottom: 1px solid #333;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .categories-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-card img {
        height: 150px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .favorites-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 35px;
    }
    
    .header-actions {
        gap: 10px;
    }
    
    .action-btn {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .categories-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .category-card img {
        height: 120px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image img {
        height: 180px;
    }
}

.category-hero {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 40px;
}

.category-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.category-hero-overlay h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.category-hero-overlay p {
    font-size: 18px;
    max-width: 600px;
    opacity: 0.9;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    padding: 40px 0;
}

.shop-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FFD700;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
}

.filter-group label:hover {
    color: #FFD700;
}

.filter-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #FFD700;
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.filter-btn {
    width: 100%;
    padding: 12px;
    background: #FFD700;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    margin-top: 15px;
    transition: all 0.3s;
}

.filter-btn:hover {
    background: #1a1a1a;
    color: #FFD700;
}

.shop-content {
    min-width: 0;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.results-count {
    font-size: 14px;
    color: #666;
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination a {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.pagination a:hover {
    background: #FFD700;
    border-color: #FFD700;
    color: #1a1a1a;
}

.pagination .current {
    background: #FFD700;
    color: #1a1a1a;
    border: none;
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-form p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFD700;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #FFD700;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #1a1a1a;
    color: #FFD700;
}

.contact-info-card {
    background: #1a1a1a;
    color: #fff;
    padding: 40px;
    border-radius: 15px;
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #FFD700;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: #FFD700;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.info-item div h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-item div p {
    font-size: 14px;
    color: #aaa;
    margin: 0;
}

.map-container {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    height: 200px;
    background: #333;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 0;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-date {
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: #FFD700;
    font-weight: 600;
    font-size: 14px;
}

.read-more:hover {
    color: #e6c200;
}

.page-header {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    color: #aaa;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #888;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #FFD700;
}

.cart-page {
    padding: 60px 0;
}

.cart-table {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.cart-table th {
    background: #1a1a1a;
    color: #fff;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}

.cart-table td {
    padding: 20px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 8px;
}

.cart-product-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-product-info p {
    font-size: 12px;
    color: #888;
}

.qty-input {
    width: 60px;
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.remove-btn {
    color: #ff4444;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-btn:hover {
    color: #cc0000;
}

.promo-applied {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.promo-applied span {
    color: #00c853;
    font-weight: 600;
    font-size: 14px;
}

.promo-applied span i {
    margin-right: 8px;
}

.remove-promo {
    background: none;
    border: none;
    color: #ff4444;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.remove-promo:hover {
    color: #cc0000;
}

.cart-summary {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    margin-top: 30px;
    max-width: 400px;
    margin-left: auto;
}

.cart-summary h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 14px;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    border-top: 2px solid #eee;
    margin-top: 15px;
    padding-top: 15px;
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: #FFD700;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background: #1a1a1a;
    color: #FFD700;
}

.product-detail {
    padding: 60px 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-gallery {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 30px;
}

.product-gallery img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.product-gallery-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active {
    border-color: #FFD700;
}

.product-detail-info h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product-detail-price .current {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.product-detail-price .original {
    font-size: 20px;
    color: #999;
    text-decoration: line-through;
}

.product-detail-price .discount {
    background: #ff4444;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.product-stock {
    font-size: 14px;
    color: #00c853;
    margin-bottom: 20px;
}

.product-stock.low {
    color: #ff9800;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-qty {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-qty label {
    font-weight: 600;
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 2px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.qty-controls button {
    width: 45px;
    height: 45px;
    background: #f8f8f8;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
}

.qty-controls button:hover {
    background: #FFD700;
}

.qty-controls input {
    width: 60px;
    height: 45px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 15px;
}

.add-cart-btn {
    flex: 1;
    padding: 15px 30px;
    background: #FFD700;
    border: none;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s;
}

.add-cart-btn:hover {
    background: #1a1a1a;
    color: #FFD700;
}

.wishlist-btn {
    width: 55px;
    height: 55px;
    background: #fff;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
}

.wishlist-btn:hover {
    border-color: #ff4444;
    color: #ff4444;
}

.product-features {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.product-features h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.feature-list li i {
    color: #FFD700;
}

.sucursales-section {
    padding: 60px 0;
}

.sucursales-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.sucursal-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.sucursal-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.sucursal-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.sucursal-card p i {
    color: #FFD700;
    margin-top: 3px;
}

.promo-section {
    padding: 60px 0;
}

.promo-channel {
    margin-bottom: 50px;
}

.promo-channel h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.promo-channel h2 img {
    height: 40px;
    width: auto;
}

@media (max-width: 992px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sucursales-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-hero {
        height: 200px;
    }
    
    .category-hero-overlay h1 {
        font-size: 28px;
    }
    
    .category-hero-overlay p {
        font-size: 14px;
    }
    
    .shop-toolbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .sucursales-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}

.auth-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 200px);
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
}

.auth-tabs {
    display: flex;
    background: #fff;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
}

.auth-tab {
    flex: 1;
    padding: 18px;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.auth-tab.active {
    background: #fff;
    color: #FFD700;
}

.auth-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.auth-form h2 {
    margin-bottom: 8px;
    font-size: 24px;
}

.auth-subtitle {
    color: #888;
    margin-bottom: 30px;
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.input-icon {
    position: relative;
}

.input-icon i:first-child {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.input-icon input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.input-icon input:focus {
    outline: none;
    border-color: #FFD700;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.remember-me, .terms-accept {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.forgot-password {
    color: #FFD700;
    font-weight: 500;
}

.auth-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #FFD700, #FFC000);
    border: none;
    border-radius: 8px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #eee;
}

.auth-divider span {
    background: #fff;
    padding: 0 15px;
    position: relative;
    color: #888;
    font-size: 14px;
}

.social-auth {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
}

.social-btn.google:hover {
    border-color: #DB4437;
    color: #DB4437;
}

.social-btn.facebook:hover {
    border-color: #4267B2;
    color: #4267B2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.password-strength {
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin-top: 8px;
    overflow: hidden;
}

.strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.auth-benefits {
    margin-top: 30px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.auth-benefits h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.auth-benefits ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.auth-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.auth-benefits li i {
    color: #00c853;
}

.auth-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

.auth-message.success {
    background: #e8f5e9;
    color: #2e7d32;
}

.auth-message.error {
    background: #ffebee;
    color: #c62828;
}

.auth-message.info {
    background: #e3f2fd;
    color: #1565c0;
}

.auth-message.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.checkout-section {
    padding: 40px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 150px);
}

.checkout-progress {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ddd;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #FFD700, #FFC000);
    color: #000;
}

.step-label {
    font-size: 12px;
    color: #888;
}

.progress-step.active .step-label {
    color: #333;
    font-weight: 500;
}

.progress-line {
    width: 40px;
    height: 2px;
    background: #ddd;
}

.back-to-cart {
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.back-to-cart:hover {
    color: #FFD700;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.checkout-forms {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.checkout-step {
    display: none;
}

.checkout-step.active {
    display: block;
}

.checkout-step h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 22px;
}

.checkout-step h2 i {
    color: #FFD700;
}

.guest-notice {
    background: #fff8e1;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-size: 14px;
}

.guest-notice a {
    color: #FFD700;
    font-weight: 600;
}

.checkout-forms .form-group {
    margin-bottom: 20px;
}

.checkout-forms label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.checkout-forms input,
.checkout-forms select {
    width: 100%;
    padding: 14px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.checkout-forms input:focus,
.checkout-forms select:focus {
    outline: none;
    border-color: #FFD700;
}

.shipping-options {
    margin-top: 30px;
}

.shipping-options h3 {
    margin-bottom: 15px;
    font-size: 16px;
}

.shipping-option {
    display: block;
    padding: 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.shipping-option:hover {
    border-color: #ddd;
}

.shipping-option.selected {
    border-color: #FFD700;
    background: #fffdf5;
}

.shipping-option input {
    display: none;
}

.option-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.option-info strong {
    display: block;
    margin-bottom: 4px;
}

.option-info span {
    font-size: 13px;
    color: #888;
}

.option-price {
    font-weight: 600;
    color: #00c853;
}

.checkout-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    gap: 15px;
}

.checkout-back-btn {
    padding: 14px 28px;
    background: #f5f5f5;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
    font-family: inherit;
}

.checkout-back-btn:hover {
    background: #eee;
}

.checkout-next-btn {
    padding: 14px 28px;
    background: linear-gradient(135deg, #FFD700, #FFC000);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.checkout-next-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.payment-methods-checkout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.payment-option {
    display: block;
    padding: 18px;
    border: 2px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #ddd;
}

.payment-option.selected {
    border-color: #FFD700;
    background: #fffdf5;
}

.payment-option input {
    display: none;
}

.payment-option .option-content {
    flex-direction: column;
    gap: 8px;
}

.payment-option i {
    font-size: 24px;
    color: #333;
}

.payment-option span {
    font-size: 13px;
    font-weight: 500;
}

.payment-form {
    margin-top: 25px;
}

.card-preview {
    margin-bottom: 25px;
}

.card-front {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 15px;
    padding: 25px;
    color: #fff;
    max-width: 380px;
    position: relative;
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #f0d78c, #d4af37);
    border-radius: 8px;
    margin-bottom: 25px;
}

.card-number-preview {
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 25px;
    font-family: monospace;
}

.card-details-preview {
    display: flex;
    justify-content: space-between;
}

.card-name-preview {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-expiry-preview {
    font-size: 14px;
}

.card-brand {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 36px;
}

.save-card {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    cursor: pointer;
    font-size: 14px;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: #e8f5e9;
    border-radius: 8px;
    margin-top: 25px;
    font-size: 13px;
    color: #2e7d32;
}

.oxxo-info, .paypal-info, .transfer-info, .msi-info {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    text-align: center;
}

.oxxo-info ul {
    text-align: left;
    max-width: 300px;
    margin: 20px auto 0;
}

.oxxo-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

.oxxo-info li i {
    color: #00c853;
}

.transfer-info {
    text-align: left;
}

.transfer-info h4 {
    margin-bottom: 15px;
}

.transfer-info p {
    margin-bottom: 8px;
}

.transfer-note {
    margin-top: 15px;
    padding: 12px;
    background: #fff8e1;
    border-radius: 6px;
    font-size: 13px;
}

.msi-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.msi-option {
    padding: 12px 25px;
    border: 2px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.msi-option:has(input:checked) {
    border-color: #FFD700;
    background: #fffdf5;
}

.msi-option input {
    display: none;
}

.msi-note {
    font-size: 13px;
    color: #888;
}

.order-review {
    margin-bottom: 30px;
}

.review-section {
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.review-section h3 {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.review-section p {
    font-size: 15px;
    line-height: 1.6;
}

.edit-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #FFD700;
    font-weight: 500;
    cursor: pointer;
    font-size: 14px;
    font-family: inherit;
}

.terms-checkout {
    margin-bottom: 25px;
}

.terms-checkout label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
}

.terms-checkout a {
    color: #FFD700;
}

.place-order-btn {
    padding: 18px 40px;
    background: linear-gradient(135deg, #00c853, #00a844);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 200, 83, 0.4);
}

.place-order-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.order-success {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00c853, #00a844);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.success-icon i {
    font-size: 50px;
    color: #fff;
}

.order-success h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.order-number {
    font-size: 18px;
    color: #666;
    margin-bottom: 10px;
}

.next-steps {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.next-steps h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.next-steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
}

.next-steps li i {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.continue-shopping-btn, .home-btn {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.continue-shopping-btn {
    background: linear-gradient(135deg, #FFD700, #FFC000);
    color: #000;
}

.home-btn {
    background: #f5f5f5;
    color: #333;
}

.checkout-sidebar {
    position: sticky;
    top: 100px;
}

.order-summary-checkout {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.order-summary-checkout h3 {
    margin-bottom: 25px;
    font-size: 18px;
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.item-details h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.item-details p {
    font-size: 12px;
    color: #888;
}

.item-price {
    margin-left: auto;
    font-weight: 600;
}

.promo-code {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.promo-code input {
    flex: 1;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

.promo-code button {
    padding: 12px 20px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.3s ease;
}

.promo-code button:hover {
    background: #000;
}

.order-totals {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
}

.total-row.discount {
    background: #e8f5e9;
    padding: 10px;
    border-radius: 6px;
    margin: 10px 0;
}

.total-row.discount span:first-child {
    color: #00c853;
    font-weight: 600;
}

.total-row.discount span:last-child {
    color: #00c853;
    font-weight: 700;
}

.total-row.total {
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #eee;
}

.order-benefits {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

.order-benefits p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.order-benefits i {
    color: #00c853;
}

.checkout-footer {
    background: #333;
    padding: 20px 0;
    margin-top: 40px;
}

.checkout-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 14px;
}

.payment-icons i {
    font-size: 28px;
    margin-right: 10px;
    opacity: 0.7;
}

.footer-links a {
    color: #fff;
    margin-left: 20px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.checkout-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

.checkout-message.success {
    background: #e8f5e9;
    color: #2e7d32;
}

.checkout-message.error {
    background: #ffebee;
    color: #c62828;
}

.cvv-help {
    cursor: help;
    color: #888;
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .checkout-sidebar {
        position: static;
        order: -1;
    }
    
    .payment-methods-checkout {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkout-progress {
        display: none;
    }
}

@media (max-width: 768px) {
    .auth-benefits ul {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-auth {
        flex-direction: column;
    }
    
    .checkout-forms {
        padding: 25px;
    }
    
    .payment-methods-checkout {
        grid-template-columns: 1fr;
    }
    
    .msi-options {
        flex-wrap: wrap;
    }
    
    .checkout-footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

.account-section {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.account-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

.account-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.account-user {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFC000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.user-avatar i {
    font-size: 36px;
    color: #fff;
}

.account-user h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.account-user p {
    font-size: 14px;
    color: #888;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.account-nav-item:hover {
    background: #f5f5f5;
}

.account-nav-item.active {
    background: linear-gradient(135deg, #FFD700, #FFC000);
    color: #000;
    font-weight: 500;
}

.account-nav-item.logout {
    color: #e53935;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.account-nav-item.logout:hover {
    background: #ffebee;
}

.account-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.account-section-content {
    display: none;
}

.account-section-content.active {
    display: block;
}

.account-section-content h2 {
    font-size: 24px;
    margin-bottom: 25px;
}

.welcome-msg {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.dashboard-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
}

.dashboard-card i {
    font-size: 32px;
    color: #FFD700;
    margin-bottom: 15px;
}

.dashboard-card h4 {
    font-size: 28px;
    margin-bottom: 5px;
}

.dashboard-card p {
    font-size: 14px;
    color: #888;
}

.recent-orders h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.order-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 10px;
    align-items: center;
}

.order-id {
    font-weight: 600;
}

.order-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.order-status.confirmed {
    background: #e8f5e9;
    color: #2e7d32;
}

.order-status.pending {
    background: #fff8e1;
    color: #f57c00;
}

.order-status.shipped {
    background: #e3f2fd;
    color: #1565c0;
}

.no-orders {
    text-align: center;
    padding: 40px;
    color: #888;
}

.no-orders a {
    color: #FFD700;
    font-weight: 600;
}

.order-card {
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
}

.order-header strong {
    display: block;
    margin-bottom: 5px;
}

.order-header span {
    font-size: 13px;
    color: #888;
}

.order-items-list {
    padding: 20px;
}

.order-item-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.order-item-row:last-child {
    border-bottom: none;
}

.order-item-row img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
}

.order-item-row p {
    font-size: 14px;
    font-weight: 500;
}

.order-item-row small {
    font-size: 12px;
    color: #888;
}

.order-item-row span {
    margin-left: auto;
    font-weight: 600;
}

.order-footer {
    padding: 20px;
    background: #f8f9fa;
    text-align: right;
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.address-card {
    border: 2px dashed #ddd;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.address-card h4 {
    margin-bottom: 10px;
}

.address-card p {
    color: #888;
    margin-bottom: 20px;
}

.add-address-btn {
    padding: 12px 25px;
    background: linear-gradient(135deg, #FFD700, #FFC000);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.profile-form {
    max-width: 500px;
}

.profile-form .form-group {
    margin-bottom: 20px;
}

.profile-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.profile-form input {
    width: 100%;
    padding: 14px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
}

.profile-form input:focus {
    outline: none;
    border-color: #FFD700;
}

.save-profile-btn {
    padding: 14px 30px;
    background: linear-gradient(135deg, #FFD700, #FFC000);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.change-password {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.change-password h3 {
    margin-bottom: 25px;
}

.change-password-btn {
    padding: 14px 30px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}

.empty-wishlist {
    text-align: center;
    padding: 60px;
}

.empty-wishlist i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-wishlist p {
    font-size: 18px;
    color: #888;
    margin-bottom: 20px;
}

.browse-btn {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #FFD700, #FFC000);
    border-radius: 8px;
    font-weight: 600;
    color: #000;
}

@media (max-width: 992px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        position: static;
    }
    
    .dashboard-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .addresses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-cards {
        grid-template-columns: 1fr;
    }
    
    .order-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .account-content {
        padding: 25px;
    }
}

#processingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s;
}

.processing-content {
    background: #fff;
    padding: 50px 60px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.processing-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f0f0f0;
    border-top-color: #FFD700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 25px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.processing-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.processing-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.processing-steps {
    text-align: left;
}

.processing-steps .step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: #f8f8f8;
    color: #999;
    font-size: 14px;
    transition: all 0.3s;
}

.processing-steps .step i {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.processing-steps .step.active {
    background: #e8f5e9;
    color: #00c853;
}

.processing-steps .step.active i {
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
