:root {
    --primary-color: #E63946;
    --primary-dark: #C5303E;
    --primary-light: #FF4757;
    --secondary-color: #1D3557;
    --accent-color: #F1FAEE;
    --text-dark: #1A1A1A;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --bg-dark: #0A1929;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
}

.store-selector-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0A1929 0%, #1D3557 50%, #2A4A6F 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(230, 57, 70, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.main-logo {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(230, 57, 70, 0.4));
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.stores-grid-section {
    background: var(--bg-light);
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.store-selector-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.store-selector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.store-selector-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(230, 57, 70, 0.3);
}

.store-selector-card:hover::before {
    opacity: 0.05;
}

.store-selector-card > * {
    position: relative;
    z-index: 1;
}

.store-badge-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.store-selector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.store-selector-card:hover .store-selector-icon {
    transform: rotate(10deg) scale(1.1);
}

.store-selector-icon i {
    font-size: 2.5rem;
    color: white;
}

.store-selector-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.store-selector-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.store-selector-address i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.store-selector-info {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.info-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-light);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.info-badge i {
    color: var(--primary-color);
}

.store-selector-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.store-selector-card:hover .store-selector-action i {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

.footer {
    background: var(--secondary-color) !important;
    color: white;
}
