/* ============================================
   DevMarket — Aurora Design 2026
   ============================================ */

:root {
    --bg-base: #05050d;
    --bg-elevated: #0c0c1a;
    --bg-glass: rgba(20, 20, 40, 0.5);
    --bg-glass-hover: rgba(30, 30, 55, 0.65);

    --aurora-1: #00d9ff;
    --aurora-2: #7c3aed;
    --aurora-3: #ec4899;
    --aurora-4: #10b981;

    --text-primary: #ffffff;
    --text-secondary: #b4b4d0;
    --text-muted: #6b6b8f;

    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.15);

    --success: #10b981;
    --danger: #ef4444;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Aurora-фон */
body::before {
    content: '';
    position: fixed;
    inset: -20%;
    background:
        radial-gradient(ellipse 60% 40% at 15% 20%, rgba(0, 217, 255, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 85% 15%, rgba(124, 58, 237, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 50% 90%, rgba(236, 72, 153, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 90% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    animation: auroraMove 25s ease-in-out infinite alternate;
    z-index: -2;
    pointer-events: none;
    filter: blur(40px);
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

@keyframes auroraMove {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(-3%, 2%) rotate(3deg) scale(1.05); }
    100% { transform: translate(2%, -2%) rotate(-2deg) scale(1); }
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Навигация */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(5, 5, 13, 0.6);
    backdrop-filter: saturate(180%) blur(24px);
    -webkit-backdrop-filter: saturate(180%) blur(24px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
}

.logo-mark {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
    background-size: 200% 200%;
    animation: gradientMove 4s ease infinite;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.5);
    color: white;
    font-size: 1.1rem;
    font-weight: 900;
}

.burger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 200;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover { color: var(--text-primary); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--aurora-1), var(--aurora-3));
    transition: width 0.3s;
    border-radius: 2px;
}

.nav-links a:hover::after { width: 100%; }

/* Контейнер */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

/* Hero */
.hero {
    text-align: center;
    padding: 3rem 0 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--aurora-1);
    margin-bottom: 1.75rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.15);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aurora-1);
    box-shadow: 0 0 10px var(--aurora-1);
    animation: pulseDot 2s infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 40%, #f0abfc 70%, #67e8f9 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 8s ease infinite;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

/* Преимущества */
.advantages {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.advantage-icon {
    font-size: 1.2rem;
}

/* Сетка товаров */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

.product-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5), 0 0 60px rgba(124, 58, 237, 0.25);
}

.product-card:hover::before { opacity: 1; }

.product-image-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.product-card:hover .product-image { transform: scale(1.08); }

.product-image-placeholder {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--bg-elevated), #1a1a35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--aurora-2);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    z-index: 3;
    color: white;
}

.badge-hit { background: rgba(236, 72, 153, 0.9); box-shadow: 0 0 20px rgba(236, 72, 153, 0.6); }
.badge-new { background: rgba(16, 185, 129, 0.9); box-shadow: 0 0 20px rgba(16, 185, 129, 0.6); }
.badge-top { background: rgba(0, 217, 255, 0.9); color: #05050d; box-shadow: 0 0 20px rgba(0, 217, 255, 0.6); }
.badge-pro { background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3)); box-shadow: 0 0 20px rgba(124, 58, 237, 0.6); }

.product-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--aurora-1);
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.2);
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    margin-bottom: 0.85rem;
    align-self: flex-start;
}

.product-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    line-height: 1.35;
}

.product-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    flex: 1;
    line-height: 1.55;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--aurora-2), var(--aurora-3));
    color: white;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.6);
}

.btn-success {
    background: linear-gradient(135deg, var(--aurora-4), #0891b2);
    color: white;
    font-size: 1.05rem;
    padding: 1rem 2.25rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(16, 185, 129, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-strong);
}

.btn-outline:hover {
    color: var(--text-primary);
    border-color: var(--aurora-1);
    background: rgba(0, 217, 255, 0.05);
}

.btn-sm {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
}

/* Страница товара */
.product-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 1rem;
    align-items: start;
}

.product-page-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 80px rgba(124, 58, 237, 0.2);
}

.product-page-info h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900;
    margin: 0.75rem 0 1rem;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.product-page-description {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.product-page-price {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.75rem;
    letter-spacing: -2px;
    animation: gradientMove 6s ease infinite;
}

.features-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.features-box h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.features-box ul { list-style: none; padding: 0; }

.features-box li {
    color: var(--text-secondary);
    line-height: 2;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.features-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aurora-4);
    box-shadow: 0 0 10px var(--aurora-4);
}

/* Страницы about/contact */
.page-content {
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 40%, #f0abfc 70%, #67e8f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.page-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
    color: var(--text-primary);
}

.page-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.page-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.page-content ul li {
    color: var(--text-secondary);
    padding: 0.5rem 0;
    font-size: 1rem;
}

.page-content a {
    color: var(--aurora-1);
    text-decoration: none;
    transition: opacity 0.2s;
}

.page-content a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.contact-block {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: var(--bg-glass);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--aurora-1);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.contact-info {
    padding: 1.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.contact-info h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-info a {
    color: var(--aurora-1);
    text-decoration: none;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6ee7b7;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

/* Страница успеха */
.success-page {
    text-align: center;
    padding: 5rem 2rem;
    max-width: 640px;
    margin: 0 auto;
}

.success-icon {
    font-size: 6rem;
    margin-bottom: 2rem;
    animation: pulseIcon 2s infinite;
    filter: drop-shadow(0 0 40px rgba(16, 185, 129, 0.6));
    display: inline-block;
}

.success-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--success);
    font-weight: 800;
    letter-spacing: -1px;
}

.error-page .success-icon { filter: drop-shadow(0 0 40px rgba(239, 68, 68, 0.6)); }
.error-page h1 { color: var(--danger); }

.success-page p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

/* Пустая витрина */
.empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--text-secondary);
}

.empty-state-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.empty-state h2 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

/* Футер */
.footer {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    margin-top: 4rem;
    font-size: 0.9rem;
    background: rgba(5, 5, 13, 0.4);
    backdrop-filter: blur(10px);
}

.footer-content p {
    margin-bottom: 0.4rem;
}

.footer strong {
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-contacts a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contacts a:hover {
    color: var(--aurora-1);
}

/* ============================================
   Мобильная адаптация
   ============================================ */

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 10, 25, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 0;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--border);
        z-index: 150;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        padding: 18px 0;
        font-size: 1.15rem;
        font-weight: 600;
        border-bottom: 1px solid var(--border);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a::after {
        display: none;
    }

    .container {
        padding: 1.5rem 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 0 2.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .hero p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 0.35rem 0.9rem;
        margin-bottom: 1.25rem;
    }

    .advantages {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.25rem;
        margin-top: 1.75rem;
    }

    .advantage-item {
        font-size: 0.95rem;
        width: 100%;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .product-card {
        border-radius: 20px;
    }

    .product-image-wrap {
        height: 180px;
    }

    .product-body {
        padding: 1.25rem;
    }

    .product-title {
        font-size: 1.1rem;
        line-height: 1.35;
        margin-bottom: 0.5rem;
    }

    .product-description {
        font-size: 0.92rem;
        line-height: 1.55;
        margin-bottom: 1rem;
    }

    .product-footer {
        padding-top: 1rem;
    }

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

    .btn {
        padding: 0.85rem 1.4rem;
        font-size: 0.95rem;
        min-height: 44px;
    }

    .btn-sm {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-height: 38px;
    }

    .btn-success {
        font-size: 1rem;
        padding: 1rem 1.75rem;
        width: 100%;
    }

    .product-page {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-page-info h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .product-page-description {
        font-size: 1rem;
        line-height: 1.65;
    }

    .product-page-price {
        font-size: 2.2rem;
        margin-bottom: 1.25rem;
    }

    .features-box {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .features-box li {
        font-size: 0.95rem;
        line-height: 1.9;
    }

    .page-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .page-content h2 {
        font-size: 1.25rem;
        margin: 1.5rem 0 0.75rem;
    }

    .page-content h3 {
        font-size: 1.1rem;
    }

    .page-content p,
    .page-content li {
        font-size: 1rem;
        line-height: 1.7;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        font-size: 1rem;
        padding: 0.85rem 1rem;
    }

    .footer {
        padding: 2rem 1rem;
        font-size: 0.88rem;
    }

    .footer-contacts {
        line-height: 1.9;
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }

    .success-page {
        padding: 3rem 1.25rem;
    }

    .success-icon {
        font-size: 4.5rem;
        margin-bottom: 1.25rem;
    }

    .success-page h1 {
        font-size: 1.6rem;
    }

    .success-page p {
        font-size: 1rem;
    }
}

@media (max-width: 380px) {
    .hero h1 {
        font-size: 1.9rem;
    }

    .product-page-price {
        font-size: 1.9rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-mark {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}