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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            radial-gradient(circle, #e0e0e0 1px, transparent 1px),
            radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 25px 25px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
}

.top-nav {
    position: sticky;
    top: 0;
    background: white;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    z-index: 1001;
    border-bottom: 1px solid #f0f0f0;
}

.company-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 200px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.brand-text {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E91E63 0%, #F48FB1 100%);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #E91E63;
}

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

.progress-header {
    background: white;
    padding: 32px 60px 24px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    border-bottom: 1px solid #f5f5f5;
}

.progress-container {
    max-width: 1200px;
    margin: 0 auto;
}

.progress-bar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.progress-line {
    position: absolute;
    top: 28px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: #f0f0f0;
    z-index: 0;
}

.progress-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #E91E63 0%, #F48FB1 100%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.progress-bar[data-step="1"] .progress-line-fill { width: 0%; }
.progress-bar[data-step="2"] .progress-line-fill { width: 25%; }
.progress-bar[data-step="3"] .progress-line-fill { width: 50%; }
.progress-bar[data-step="4"] .progress-line-fill { width: 75%; }
.progress-bar[data-step="5"] .progress-line-fill { width: 100%; }

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
    flex: 1;
    cursor: pointer;
}

.step-circle-wrapper {
    position: relative;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e8e8e8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ccc;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-indicator.active .step-circle {
    background: white;
    border-color: #E91E63;
    color: #E91E63;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.25);
}

.step-indicator.completed .step-circle {
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    border-color: #E91E63;
    color: white;
}

.step-indicator.completed .step-circle::after {
    content: '✓';
}

.step-text {
    text-align: center;
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
}

.step-indicator.active .step-label {
    color: #E91E63;
    font-weight: 700;
}

.step-indicator.completed .step-label {
    color: #4CAF50;
}

.main-content {
    padding: 80px 60px 180px;
    max-width: 1400px;
    margin: 0 auto;
}

.section {
    display: none;
    animation: fadeInUp 0.6s ease;
}

.section.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 56px;
    margin-bottom: 24px;
    text-align: center;
    font-weight: 800;
    line-height: 1.2;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 60px;
    font-weight: 500;
}

.card-display {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
    position: relative;
    gap: 40px;
    perspective: 2000px;
}

.nav-arrow {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #666;
    flex-shrink: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.nav-arrow:hover:not(:disabled) {
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.3);
}

.nav-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}


.custom-amount-wrapper {
    position: relative;
    max-width: 400px;
    margin: 30px auto;
}

.custom-amount-input {
    width: 100%;
    padding: 24px 60px 24px 28px;
    font-size: 24px;
    font-weight: 700;
    border: 3px solid #e8e8e8;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    text-align: center;
    color: #333;
}

.custom-amount-input:focus {
    outline: none;
    border-color: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
}

.custom-amount-input.error {
    border-color: #f44336;
    animation: shake 0.4s ease;
}

.custom-amount-currency {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 700;
    color: #E91E63;
    pointer-events: none;
}

.amount-error {
    color: #f44336;
    font-size: 14px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.amount-error.show {
    opacity: 1;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

@media (max-width: 640px) {
    .custom-amount-wrapper {
        max-width: 100%;
        margin: 20px 0;
    }

    .custom-amount-input {
        padding: 20px 50px 20px 20px;
        font-size: 20px;
    }

    .custom-amount-currency {
        right: 20px;
        font-size: 20px;
    }
}


.cards-carousel {
    display: flex;
    gap: 30px;
    align-items: center;
    overflow: visible;
    max-width: 100%;
}

.card-item {
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(400px) scale(0.7);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-400px) scale(0.7);
        opacity: 0;
    }
    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

.card-item.slide-in-right {
    animation: slideInFromRight 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-item.slide-in-left {
    animation: slideInFromLeft 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-item.small {
    width: 160px;
    height: 100px;
    opacity: 0.5;
    transform: scale(0.85);
}

.card-item.small:hover {
    opacity: 0.7;
    transform: scale(0.9);
}

.card-item.large {
    width: 650px;
    height: 400px;
    opacity: 1;
    margin: 40px;
}

.gift-card {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.card-item.large .gift-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease-out;
}

.card-item.small .gift-card {
    border-radius: 20px;
}

.card-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.card-flowers {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 80px;
    opacity: 0.3;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.card-item.small .card-flowers {
    font-size: 30px;
    bottom: 8px;
    left: 8px;
}

.card-zodiac {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 120px;
    opacity: 0.2;
}

.card-item.small .card-zodiac {
    font-size: 40px;
    right: 10px;
}

.card-cosmetics {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 60px;
    opacity: 0.3;
}

.card-item.small .card-cosmetics {
    font-size: 24px;
    bottom: 10px;
    right: 10px;
}

.card-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    transition: all 0.5s ease;
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
    background: rgba(255,255,255,0.1);
}

.card-inner {
    position: relative;
    z-index: 2;
    padding: 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.card-item.small .card-inner {
    padding: 18px;
}

.card-brand {
    width: 200px;
}

.card-item.small .card-brand {
    font-size: 10px;
    letter-spacing: 1.5px;
    width: 50px;
}

.card-value {
    font-size: 84px;
    font-weight: 800;
    letter-spacing: -3px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin-bottom: 50px;
}

.card-item.small .card-value {
    font-size: 20px;
    letter-spacing: -1px;
}

.dots-indicator {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 60px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.dot:hover {
    background: #999;
    transform: scale(1.3);
}

.dot.active {
    background: linear-gradient(90deg, #E91E63 0%, #F48FB1 100%);
    width: 32px;
    border-radius: 5px;
}

.color-palette-section {
    margin-top: 60px;
}

.palette-title {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #666;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.color-palette-container {
    margin: 0 auto;
    max-width: 100%;
    position: relative;
}

.color-palette {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 100px;
}

.color-swatch {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 5px solid white;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.color-swatch.active {
    transform: scale(1.15);
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.4);
}

.color-swatch.active::before {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseCircle 0.4s ease;
}

@keyframes pulseCircle {
    0% { transform: translate(-50%, -50%) scale(0); }
    50% { transform: translate(-50%, -50%) scale(1.3); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

.color-swatch.active::after {
    content: '✓';
    position: absolute;
    font-size: 18px;
    font-weight: 900;
    color: #E91E63;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.amount-section {
    text-align: center;
}

.amount-display {
    font-size: 108px;
    font-weight: 800;
    margin: 60px 0 24px;
    letter-spacing: -4px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amount-note {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.amount-option {
    padding: 28px;
    background: white;
    border: 3px solid #e8e8e8;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.amount-option:hover {
    border-color: #E91E63;
    background: #fafafa;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
}

.amount-option.active {
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    color: white;
    border-color: #E91E63;
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.3);
}

.form-group {
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.form-label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #666;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.form-input {
    width: 100%;
    padding: 20px 28px;
    font-size: 17px;
    border: 3px solid #e8e8e8;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.form-input:focus {
    outline: none;
    border-color: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
}

.form-textarea {
    min-height: 140px;
    resize: vertical;
}

.schedule-options, .payment-methods {
    display: grid;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto 60px;
}

.schedule-options {
    grid-template-columns: repeat(2, 1fr);
}

.payment-methods {
    grid-template-columns: repeat(2, 1fr);
}

.schedule-option, .payment-method {
    padding: 32px;
    background: white;
    border: 3px solid #e8e8e8;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.schedule-option:hover, .payment-method:hover {
    border-color: #E91E63;
    background: #fafafa;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
}

.schedule-option.active, .payment-method.active {
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    color: white;
    border-color: #E91E63;
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 12px 32px rgba(233, 30, 99, 0.3);
}

.payment-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.date-time-picker {
    display: none;
    max-width: 700px;
    margin: 0 auto;
}

.date-time-picker.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.custom-datetime-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.datetime-input-wrapper {
    position: relative;
}

.datetime-display {
    width: 100%;
    padding: 20px 28px;
    font-size: 17px;
    border: 3px solid #e8e8e8;
    border-radius: 20px;
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #666;
    font-weight: 600;
}

.datetime-display:hover {
    border-color: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
}

.datetime-display.has-value {
    color: #333;
}

.datetime-icon {
    font-size: 20px;
    color: #E91E63;
}

.datetime-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: white;
    border: 3px solid #E91E63;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.2);
    z-index: 100;
    display: none;
}

.datetime-dropdown.active {
    display: block;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-top: 15px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.calendar-month {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.calendar-nav-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    color: #666;
}

.calendar-nav-btn:hover {
    background: #E91E63;
    color: white;
}

.calendar-day-name {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-align: center;
    padding: 8px 0;
    text-transform: uppercase;
}

.calendar-day {
    aspect-ratio: 1;
    border: none;
    background: #f9f9f9;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    transition: all 0.3s ease;
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: #ffe4ec;
    color: #E91E63;
    transform: scale(1.1);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.4;
}

.calendar-day.selected {
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    color: white;
    transform: scale(1.1);
}

.time-picker {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}

.time-input-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.time-label {
    font-size: 12px;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
}

.time-input {
    width: 70px;
    height: 70px;
    border: 3px solid #e8e8e8;
    border-radius: 16px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #333;
    transition: all 0.3s ease;
}

.time-input:focus {
    outline: none;
    border-color: #E91E63;
    background: #ffe4ec;
}

.time-separator {
    font-size: 32px;
    font-weight: 700;
    color: #E91E63;
    margin-top: 25px;
}

.datetime-confirm {
    width: 100%;
    padding: 14px;
    margin-top: 15px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.datetime-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.3);
}

.summary-box {
    max-width: 600px;
    margin: 60px auto;
    padding: 40px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 18px;
}

.summary-label {
    color: #666;
    font-weight: 500;
}

.summary-value {
    font-weight: 700;
}

.summary-total {
    border-top: 3px solid #f0f0f0;
    padding-top: 20px;
    margin-top: 20px;
    font-size: 28px;
    font-weight: 800;
    color: #E91E63;
}



.nav-buttons {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 16px;
    z-index: 999;
}

.nav-btn {
    padding: 20px 40px;
    border-radius: 60px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.back-btn {
    background: white;
    color: #666;
}

.back-btn:hover:not(:disabled) {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.back-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.continue-btn {
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    color: white;
}

.continue-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(233, 30, 99, 0.4);
}

.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 40px 30px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-section a:hover {
    color: #E91E63;
    padding-left: 5px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .brand-logo {
    width: 200px;
    height: 48px;
}

.footer-brand .brand-text {
    font-size: 24px;
    color: white;
}

.footer-description {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

@media (max-width: 900px) {
    .top-nav {
        padding: 12px 20px;
    }

    .brand-text {
        font-size: 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .card-item.large .card-brand {
        width: 150px;
    }

    .nav-link {
        font-size: 13px;
    }

    .progress-header {
        padding: 20px 30px;
    }

    .step-circle {
        width: 48px;
        height: 48px;
        font-size: 16px;
    }

    .main-content {
        padding: 60px 30px 180px;
    }

    h1 {
        font-size: 40px;
    }
    .card-item.large {
        width: 420px;
        height: 270px;
        margin: 30px;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .schedule-options {
        grid-template-columns: 1fr;
    }

    .custom-datetime-group {
        grid-template-columns: 1fr;
    }

    .time-input {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .time-separator {
        font-size: 28px;
        margin-top: 20px;
    }
}

@media (max-width: 640px) {
    .nav-links {
        gap: 16px;
    }

    .card-value {
        font-size: 40px !important;
        margin-top: 20px;
    }

    .nav-link {
        font-size: 12px;
    }

    .progress-header {
        padding: 16px 16px 12px;
        overflow-x: auto;
    }

    .progress-bar {
        min-width: 600px;
    }

    .main-content {
        padding: 50px 20px 180px;
    }

    h1 {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .card-display {
        margin: 40px 0;
        gap: 0;
        position: relative;
    }



    .card-item.large {
        width: 300px;
        height: 190px;
        margin: 20px;
    }

    .card-item.large .card-inner {
        padding: 20px;
    }

    .card-item.large .card-brand {
        width: 120px;
    }


    .card-item.large .card-value {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }

    .card-item.large .card-flowers {
        font-size: 40px;
        bottom: 12px;
        left: 12px;
    }

    .card-item.large .card-zodiac {
        font-size: 60px;
        right: 15px;
    }

    .card-item.large .card-cosmetics {
        font-size: 32px;
        bottom: 15px;
        right: 15px;
    }

    .card-item.small {
        display: none;
    }

    .nav-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
        position: absolute;
        left: -10px;
        right: auto;
    }
    .nav-arrow:last-of-type {
        left: auto;
        right: -10px;
    }

    .amount-display {
        font-size: 60px;
    }

    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .amount-option {
        padding: 20px;
        font-size: 20px;
    }

    .color-palette-container {
        padding: 20px 0;
    }

    .color-palette {
        gap: 16px;
        padding: 20px 24px;
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        background: linear-gradient(90deg,
        rgba(233, 30, 99, 0.04) 0%,
        rgba(244, 143, 177, 0.06) 50%,
        rgba(233, 30, 99, 0.04) 100%);
        border-radius: 60px;
        margin: 0 20px;
        box-shadow: inset 0 2px 12px rgba(233, 30, 99, 0.1);
    }

    .color-palette::-webkit-scrollbar {
        display: none;
    }

    .color-swatch {
        width: 56px;
        height: 56px;
        flex-shrink: 0;
        border-width: 4px;
    }

    .nav-buttons {
        bottom: 20px;
        right: 20px;
        left: 20px;
        justify-content: space-between;
    }

    .nav-btn {
        padding: 16px 28px;
        font-size: 13px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding: 40px 20px 20px;
        margin-top: 60px;
    }

    .social-links {
        justify-content: center;
    }
}


/* PAYMENT SELECTOR STYLES - Добавить в конец style */

.payment-selector-wrapper {
    position: relative;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.payment-selector {
    width: 100%;
    padding: 24px 28px;
    font-size: 18px;
    border: 3px solid #e8e8e8;
    border-radius: 20px;
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    font-weight: 600;
    color: #333;
    position: relative;
}

.payment-selector:hover {
    border-color: #E91E63;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(233, 30, 99, 0.15);
}

.payment-selector.open {
    border-color: #E91E63;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 -2px 12px rgba(233, 30, 99, 0.1);
}

.payment-selected {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.payment-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #E91E63;
}

.payment-selector.open .payment-arrow {
    transform: rotate(180deg);
}

.payment-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    /*border: 3px solid #E91E63;*/
    border-top: none;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 0 12px 40px rgba(233, 30, 99, 0.2);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.payment-dropdown.open {
    max-height: 500px;
    overflow-y: auto;
}

.payment-dropdown::-webkit-scrollbar {
    width: 8px;
}

.payment-dropdown::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 10px;
}

.payment-dropdown::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #E91E63 0%, #F48FB1 100%);
    border-radius: 10px;
}

.payment-option {
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f5f5f5;
}

.payment-option:last-child {
    border-bottom: none;
}

.payment-option:hover {
    background: linear-gradient(90deg, #ffe4ec 0%, #fff0f5 100%);
    padding-left: 36px;
}

.payment-option.selected {
    background: linear-gradient(90deg, #E91E63 0%, #F48FB1 100%);
    color: white;
}

.payment-option.selected .payment-option-icon {
    background: white;
    color: #E91E63;
}

.payment-option-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-option-name {
    font-size: 17px;
    font-weight: 600;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-option {
    animation: slideDown 0.3s ease;
}

@media (max-width: 640px) {
    .payment-selector {
        padding: 20px 24px;
        font-size: 16px;
    }

    .payment-icon,
    .payment-option-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .payment-option {
        padding: 18px 24px;
    }

    .payment-option:hover {
        padding-left: 24px;
    }

    .payment-option-name {
        font-size: 15px;
    }
}

/* Убрать старые стили payment-methods если они были */
.payment-methods {
    display: none;
}

.payment-method {
    display: none;
}




