/* Базові налаштування сторінки */
body.design-page {
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #000000;
    color: #ffffff;
}

.top-header {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 100; /* Додаємо цей рядок, щоб шапка була поверх усього контенту */
}
/* Статична шапка (як в store.css) */
.static-header .logo,
.static-header .hire-btn {
    opacity: 1;
    transform: none;
    transition: none;
}
.static-header .back-btn {
    font-size: 30px;
}

/* Головний екран (Hero) */
.design-hero {
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    text-align: center;
    position: relative;
}

.barcode-accent {
    font-family: 'Libre Barcode 39 Text', sans-serif;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
    display: block;
    margin-bottom: -10px;
}

.hero-title {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 5vw;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-desc {
    font-family: 'Lexend Zetta', sans-serif;
    font-weight: 200;
    font-size: 14px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Нескінченна стрічка (Marquee) */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 15px 0;
    transform: rotate(-2deg) scale(1.05); /* Злегка нахиляємо для стилю */
    margin: 50px 0 100px 0;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-family: 'Lexend Zetta', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #000000;
    margin-right: 50px;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); } /* Зсуваємо на третину, бо текст продубльовано 3 рази */
}

/* Секція процесу */
.process-section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 60px;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.process-card {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 30px;
    transition: border-color 0.4s ease;
}

.process-card:hover {
    border-top-color: #ffffff;
}

.process-card .step-counter {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 40px;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.2);
    display: block;
    margin-bottom: 20px;
}

.process-card h3 {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.process-card p {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 12px;
    font-weight: 200;
    color: #888;
    line-height: 1.8;
}

/* Call to action секція */
.design-cta {
    padding: 150px 5%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.cta-title {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 3px;
}

.price-barcode {
    font-family: 'Libre Barcode 39 Text', sans-serif;
    font-size: 100px;
    color: #ffffff;
    line-height: 1;
}

.buy-btn-large {
    background: #ffffff;
    color: #000000;
    border: none;
    padding: 20px 50px;
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-btn-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Футер */
.relative-footer {
    position: relative;
    padding-bottom: 40px;
    text-align: center;
}

.relative-footer p {
    font-family: 'Lexend Zetta', sans-serif;
    font-size: 10px;
    color: #4d4d4d;
    letter-spacing: 2px;
    font-weight: 300;
}