/* Основные настройки */
* {
    box-sizing: border-box;
}

:root {
    --bg-color: #1A1A1A;
    /* Темно-серый фон */
    --accent-color: #CCFF00;
    /* Кислотный зеленый */
    --text-color: #FFFFFF;
    --secondary-text: #B0B0B0;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

body {
    background-color: var(--bg-color);
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    /* Размер мобильного экрана */
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
}

/* Эффект свечения (зеленое пятно на фоне) */
.glow-effect {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.glow-effect-2 {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    filter: blur(60px);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

/* Хедер (Лого) */
.header {
    position: relative;
    z-index: 2;
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header a {
    color: inherit;
    text-decoration: none;
}

/* Заголовок */
.hero-title {
    position: relative;
    z-index: 2;
    font-family: 'Unbounded', sans-serif;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
}

.hero-title span {
    color: var(--accent-color);
    /* Выделяем цветом часть текста */
}

/* Описание */
.description {
    position: relative;
    z-index: 2;
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-text);
    background: rgba(255, 255, 255, 0.05);
    /* Легкая подложка */
    padding: 15px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.description b {
    color: #fff;
    font-weight: 600;
}

/* Изображение */
.image-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    /* Делаем фото ч/б как в концепте */
    transition: 0.5s;
}

/* Кнопка (Самое важное) */
.cta-button {
    position: relative;
    z-index: 2;
    background-color: var(--accent-color);
    color: #000000;
    border: none;
    padding: 20px;
    border-radius: 50px;
    /* Сильное скругление */
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(204, 255, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    box-sizing: border-box;
}

.cta-button:active {
    transform: scale(0.98);
}

.arrow-icon {
    background: #000;
    color: var(--accent-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

/* Styles specific for Checkout page */
.product-price {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 20px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2;
}

.input-field {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.input-field:focus {
    outline: none;
    border-color: var(--accent-color);
}

.back-btn {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    margin-right: 15px;
    cursor: pointer;
}