body.store-page {
    overflow-y: auto; 
    overflow-x: hidden;
    background-color: #000000;
}


.static-header .logo,
.static-header .hire-btn {
    opacity: 1;
    transform: none;
    transition: none;
}

.static-header .back-btn {
    font-size: 30px; 
}

/* Контейнер магазину */
.store-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 50px 20px; 
}

.store-title {
    font-family: 'Lexend Zetta', sans-serif;
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 60px;
    text-align: center;
}

/* Сітка карток послуг */
.services-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Стиль картки */
.service-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
}

.card-content {
    margin-bottom: 40px;
}

.service-card .step-counter {
    font-size: 24px;
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

.service-name {
    font-family: 'Lexend Zetta', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.service-desc {
    font-family: 'Lexend Zetta', sans-serif;
    font-weight: 200;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
}

/* Нижня частина картки (Ціна і кнопка) */
.card-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-price {
    font-family: 'Libre Barcode 39 Text', sans-serif;
    font-size: 45px;
    color: #ffffff;
    text-align: center;
}

.buy-btn {
    display: block;             
    text-align: center;         
    text-decoration: none;
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 15px;
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: #ffffff;
    color: #000000;
}

.pricing-note {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 10px;
    font-weight: 200;
    color: #666666; 
    text-align: center;
    max-width: 600px;
    margin-top: 25px;
    line-height: 1.8;
    letter-spacing: 1px;
}
