/* =========================================
   Tienda Pure Armor - Styles
   ========================================= */

/* =========================================
   Vehicle Selector
   ========================================= */
.vehicle-selector {
    margin-bottom: 35px;
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 16px;
    background: rgba(0, 242, 254, 0.04);
    padding: 20px 25px;
    overflow: hidden;
}

.vehicle-selector-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.vehicle-selector-header > svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary-accent);
    flex-shrink: 0;
}

.vehicle-selector-title {
    flex: 1;
    min-width: 180px;
}

.vehicle-selector-title h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.vehicle-selector-title p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    margin-top: 2px;
}

.vehicle-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    border-radius: 20px;
    padding: 6px 14px 6px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-primary-accent);
}

.vehicle-badge-clear {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.vehicle-badge-clear:hover {
    background: rgba(255,68,68,0.2);
    color: #ff4444;
}

.vehicle-badge-clear svg {
    width: 12px;
    height: 12px;
}

.vehicle-selector-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.vehicle-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vehicle-field label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text-muted);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.vehicle-field select,
.vehicle-field input {
    height: 42px;
    padding: 0 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--color-text-primary);
    font-family: var(--font-family-main);
    font-size: 0.82rem;
    outline: none;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.vehicle-field select:focus,
.vehicle-field input:focus {
    border-color: var(--color-primary-accent);
    background: rgba(0, 242, 254, 0.05);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.06);
}

.vehicle-field select:disabled,
.vehicle-field input:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.vehicle-field select option {
    background: #1a1a1a;
    color: var(--color-text-primary);
}

.vehicle-selector-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.vehicle-manual-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    user-select: none;
}

.vehicle-manual-checkbox input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.vehicle-manual-checkbox input:checked + .checkbox-custom {
    background: var(--color-primary-accent);
    border-color: var(--color-primary-accent);
}

.vehicle-manual-checkbox input:checked + .checkbox-custom::after {
    content: '✓';
    color: #000;
    font-size: 12px;
    font-weight: 700;
}

.vehicle-manual-checkbox:hover .checkbox-custom {
    border-color: var(--color-primary-accent);
}

.vehicle-manual-checkbox strong {
    color: var(--color-primary-accent);
}

.vehicle-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, #00F2FE 0%, #00c6d6 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-family: var(--font-family-main);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vehicle-filter-btn svg {
    width: 16px;
    height: 16px;
}

.vehicle-filter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.25);
}

.vehicle-filter-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.vehicle-manual-input {
    border-top: 1px solid rgba(0, 242, 254, 0.1);
    padding-top: 16px;
    margin-top: 4px;
}

.vehicle-manual-fields {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .vehicle-selector-row,
    .vehicle-manual-fields {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .vehicle-selector-row,
    .vehicle-manual-fields {
        grid-template-columns: 1fr;
    }

    .vehicle-selector-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .vehicle-filter-btn {
        justify-content: center;
    }
}

/* =========================================
   Store Hero Slider
   ========================================= */
.store-hero-slider {
    position: relative;
    width: 100%;
    height: 520px;
    margin-top: 0;
    overflow: hidden;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Slide background - supports both images and videos */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide-bg img,
.hero-slide-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gradient overlay per slide */
.hero-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, rgba(0,242,254,0.15) 100%);
    z-index: 1;
}

/* Slide content */
.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.8s ease 0.3s;
}

.hero-slide.active .hero-slide-content {
    transform: translateY(0);
}

.hero-slide-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #00F2FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.hero-slide-content p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
}

.hero-slide-content .btn-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #00F2FE 0%, #00c6d6 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    font-family: var(--font-family-main);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-slide-content .btn-slide-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 242, 254, 0.3);
}

/* Navigation arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
}

.store-hero-slider:hover .hero-slider-arrow {
    opacity: 1;
}

.hero-slider-arrow svg {
    width: 22px;
    height: 22px;
}

.hero-slider-arrow:hover {
    background: rgba(0, 242, 254, 0.2);
    border-color: var(--color-primary-accent);
    color: var(--color-primary-accent);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

/* Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.hero-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider-dots .dot.active {
    background: var(--color-primary-accent);
    border-color: var(--color-primary-accent);
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
    width: 28px;
    border-radius: 5px;
}

.hero-slider-dots .dot:hover {
    border-color: var(--color-primary-accent);
}

/* Responsive slider */
@media (max-width: 768px) {
    .store-hero-slider {
        height: 360px;
        margin-top: 0;
    }

    .hero-slide-content h2 {
        font-size: 1.8rem;
    }

    .hero-slide-content p {
        font-size: 0.95rem;
    }

    .hero-slider-arrow {
        width: 36px;
        height: 36px;
        opacity: 1;
    }

    .hero-slider-arrow svg {
        width: 16px;
        height: 16px;
    }

    .hero-slider-prev {
        left: 10px;
    }

    .hero-slider-next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .store-hero-slider {
        height: 300px;
    }

    .hero-slide-content h2 {
        font-size: 1.5rem;
    }

    .hero-slide-content {
        padding: 0 20px;
    }
}

/* Store Container */
.store-section {
    padding: 40px 0 80px;
}

.store-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Shipping Banner */
.store-shipping-banner {
    margin-bottom: 35px;
    border: 1px solid rgba(0, 242, 254, 0.15);
    border-radius: 16px;
    background: rgba(0, 242, 254, 0.04);
    padding: 20px 25px;
    overflow: hidden;
}

.shipping-banner-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.shipping-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 242, 254, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.shipping-icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-primary-accent);
}

.shipping-info {
    flex: 1;
    min-width: 250px;
}

.shipping-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.shipping-title h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.shipping-badge {
    display: inline-block;
    background: var(--color-primary-accent);
    color: #000;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.shipping-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.shipping-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    min-width: 260px;
}

.shipping-feature {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center;
}

.shipping-feature svg {
    width: 16px;
    height: 16px;
    color: var(--color-primary-accent);
    margin-bottom: 4px;
}

.shipping-feature span {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-muted);
    line-height: 1.2;
}

/* Filters */
.store-filters {
    margin-bottom: 30px;
}

.search-bar {
    position: relative;
    margin-bottom: 15px;
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--color-text-muted);
    pointer-events: none;
}

#store-search {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 44px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--color-text-primary);
    font-family: var(--font-family-main);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

#store-search:focus {
    border-color: var(--color-primary-accent);
    background: rgba(0, 242, 254, 0.05);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.08);
}

#store-search::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

.filter-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    overflow-x: auto;
    padding-bottom: 5px;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    background: transparent;
    color: var(--color-text-muted);
    font-family: var(--font-family-main);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    border-color: var(--color-primary-accent);
    color: var(--color-text-primary);
    background: rgba(0, 242, 254, 0.05);
}

.filter-btn.active {
    background: var(--color-primary-accent);
    color: #000;
    border-color: var(--color-primary-accent);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.product-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    border-color: rgba(0, 242, 254, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 242, 254, 0.08);
    background: rgba(255,255,255,0.04);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-wrapper img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    color: var(--color-text-primary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 2;
}

.product-stock-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.stock-badge-in {
    display: inline-block;
    background: rgba(0, 255, 100, 0.15);
    color: #00ff64;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 100, 0.2);
}

.stock-badge-low {
    display: inline-block;
    background: rgba(255, 200, 0, 0.15);
    color: #ffc800;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid rgba(255, 200, 0, 0.2);
}

.product-info {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-category {
    font-size: 0.7rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.4em;
}

.product-description {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 10px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary-accent);
}

.btn-add-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--color-primary-accent);
    color: #000;
    border: none;
    border-radius: 8px;
    font-family: var(--font-family-main);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-add-cart svg {
    width: 16px;
    height: 16px;
}

.btn-add-cart:hover {
    background: var(--color-primary-accent-hover);
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 242, 254, 0.3);
}

.btn-add-cart.added {
    background: #00ff64;
    color: #000;
}

/* Products Footer */
.products-footer {
    text-align: center;
    padding: 10px 0;
}

.products-count {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    max-width: 100vw;
    height: 100vh;
    background: #0d0d0d;
    border-left: 1px solid rgba(0, 242, 254, 0.15);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cart-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-primary);
}

.cart-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cart-close svg {
    width: 18px;
    height: 18px;
}

.cart-close:hover {
    background: rgba(255,255,255,0.05);
    color: var(--color-text-primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: var(--color-text-muted);
    opacity: 0.6;
}

.cart-empty svg {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 0.9rem;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.cart-item-image {
    width: 70px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(0,0,0,0.3);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary-accent);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.cart-qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.cart-qty-btn:hover {
    border-color: var(--color-primary-accent);
    color: var(--color-primary-accent);
}

.cart-qty-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
    min-width: 24px;
    text-align: center;
}

.cart-item-remove {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255,255,255,0.2);
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: #ff4444;
}

.cart-item-remove svg {
    width: 16px;
    height: 16px;
}

.cart-footer {
    padding: 18px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.3);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.cart-total-amount {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary-accent);
}

.btn-cart-checkout {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #00F2FE 0%, #00c6d6 100%);
    color: #000;
    border: none;
    border-radius: 10px;
    font-family: var(--font-family-main);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cart-checkout svg {
    width: 18px;
    height: 18px;
}

.btn-cart-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 242, 254, 0.3);
}

.cart-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.6;
    margin-top: 10px;
}

/* Cart Floating Button - Mismo estilo que WhatsApp */
.cart-floating-btn {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: transparent;
    border: 2px solid var(--color-primary-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
    z-index: 999;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: cartPulse 2s infinite;
    color: var(--color-primary-accent);
}

.cart-floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.5);
    animation-play-state: paused;
}

.cart-floating-btn svg {
    width: 28px;
    height: 28px;
    fill: var(--color-primary-accent);
    stroke: var(--color-primary-accent);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ff4444;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    z-index: 2;
}

@keyframes cartPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0, 242, 254, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0);
    }
}

/* No Products Message */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-muted);
}

.no-products svg {
    width: 60px;
    height: 60px;
    opacity: 0.2;
    margin-bottom: 16px;
}

.no-products h3 {
    font-size: 1.2rem;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.no-products p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .store-hero {
        padding: 120px 0 40px;
    }

    .store-hero-content h1 {
        font-size: 1.8rem;
    }

    .store-hero-content p {
        font-size: 0.95rem;
    }

    .shipping-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .shipping-features {
        width: 100%;
        min-width: unset;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 14px;
    }

    .product-info {
        padding: 12px 14px 14px;
    }

    .product-title {
        font-size: 0.82rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .btn-add-cart {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .btn-add-cart span.btn-text {
        display: none;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .product-image-wrapper {
        aspect-ratio: 4/3;
    }
}

/* Scrollbar for cart */
.cart-items::-webkit-scrollbar {
    width: 4px;
}

.cart-items::-webkit-scrollbar-track {
    background: transparent;
}

.cart-items::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

/* Toast notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: rgba(0,0,0,0.9);
    border: 1px solid rgba(0, 242, 254, 0.2);
    color: var(--color-text-primary);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast svg {
    width: 20px;
    height: 20px;
    color: #00ff64;
    flex-shrink: 0;
}