/* Store Section Styles */
.store-section {
    padding: 2rem 1.5rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 60vh;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--primary-accent);
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.store-card {
    background-color: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.store-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.store-card:hover::before {
    transform: scaleX(1);
}

.store-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.6);
    border-color: var(--primary-accent);
}

.store-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.6);
    transition: all 0.3s ease;
}

.store-card:hover .store-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.8);
}

.store-info {
    flex-grow: 1;
    margin-bottom: 2rem;
    width: 100%;
}

.store-info h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.3);
}

.store-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.store-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.store-stats span {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.telegram-button {
    background: linear-gradient(135deg, #0088cc, #229ED9);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
    width: 100%;
    justify-content: center;
}

.telegram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.6);
    background: linear-gradient(135deg, #229ED9, #0088cc);
}

.telegram-button svg {
    width: 24px;
    height: 24px;
}

/* Features Section */
.features-section {
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--glass-bg);
    border-radius: 30px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-accent);
    background-color: rgba(168, 85, 247, 0.1);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .store-section {
        padding: 2rem 1rem;
    }

    .store-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .store-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .store-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .store-info h3 {
        font-size: 1.6rem;
    }

    .store-stats {
        flex-direction: column;
        gap: 0.8rem;
    }

    .telegram-button {
        padding: 14px 28px;
        font-size: 1.1rem;
    }

    .features-section {
        padding: 2rem 1rem;
    }
}
