/* 
 * Destiny Cards Request Form - Enhanced UI
 * Matching the spiritual names form design
 */

:root {
    --dc-primary: #212529;
    --dc-secondary: #F39200;
    --dc-distant: #4D68B0;
    --dc-boy: #6BABDC;
    --dc-azureish: #DAE2F1;
    --dc-lightgray: #EDEDED;
    --dc-gray: #707070;
    --dc-white: #ffffff;
    --dc-success: #10b981;
    --dc-field-height: 52px;
    --dc-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Container */
.destiny-card-form-container {
    background: var(--dc-white);
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 2rem 0;
    font-family: 'Open Sans', sans-serif;
}

/* Header */
.dc-form-header {
    background: linear-gradient(135deg, var(--dc-distant) 0%, var(--dc-boy) 100%);
    color: var(--dc-white);
    padding: 2rem;
    text-align: center;
    position: relative;
}

.dc-form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.dc-form-header h1 {
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    position: relative;
    z-index: 1;
    color: var(--dc-white);
}

.dc-form-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Progress Container */
.dc-progress-container {
    background: var(--dc-lightgray);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e9ecef;
}

.dc-progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 1rem;
}

.dc-progress-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #dee2e6;
    z-index: 1;
    transform: translateY(-50%);
}

.dc-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--dc-boy), var(--dc-distant));
    z-index: 2;
    transform: translateY(-50%);
    transition: width 0.6s ease;
}

.dc-step {
    background: var(--dc-white);
    border: 2px solid #dee2e6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.dc-step.active {
    background: var(--dc-secondary);
    border-color: var(--dc-secondary);
    color: var(--dc-white);
    box-shadow: 0 4px 15px rgba(243, 146, 0, 0.3);
}

.dc-step.completed {
    background: var(--dc-distant);
    border-color: var(--dc-distant);
    color: var(--dc-white);
    box-shadow: 0 4px 15px rgba(77, 104, 176, 0.3);
}

.dc-step-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--dc-gray);
}

.dc-step-label.active {
    color: var(--dc-primary);
    font-weight: 600;
}

/* Form Content */
.dc-form-content {
    padding: 2.5rem;
}

.dc-form-section {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.dc-form-section.active {
    display: block;
}

.dc-form-section h4 {
    color: var(--dc-primary);
    font-family: "Barlow Semi Condensed", sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.dc-form-section h4::before {
    content: '';
    width: 4px;
    height: 2rem;
    background: linear-gradient(135deg, var(--dc-boy), var(--dc-distant));
    border-radius: 2px;
    margin-right: 1rem;
}

.dc-section-intro {
    font-size: 1rem;
    color: var(--dc-gray);
    margin-bottom: 2rem;
}

/* Info Boxes */
.dc-info-box {
    background: var(--dc-azureish);
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    border-left: 4px solid var(--dc-distant);
}

.dc-info-icon {
    font-size: 2.5rem;
    color: var(--dc-secondary);
    flex-shrink: 0;
}

.dc-info-content h5 {
    color: var(--dc-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
}

.dc-info-content p {
    color: var(--dc-gray);
    line-height: 1.6;
    margin: 0;
}

.dc-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dc-info-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--dc-white);
    border-radius: 6px;
    border: 2px solid var(--dc-lightgray);
    transition: all 0.3s ease;
}

.dc-info-item:hover {
    border-color: var(--dc-boy);
    box-shadow: 0 5px 15px rgba(107, 171, 220, 0.2);
    transform: translateY(-3px);
}

.dc-info-item i {
    font-size: 2rem;
    color: var(--dc-secondary);
    margin-bottom: 0.75rem;
}

.dc-info-item h6 {
    color: var(--dc-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.dc-info-item p {
    color: var(--dc-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Pricing Box */
.dc-pricing-box {
    background: linear-gradient(135deg, #fdf7ef 0%, #f6ede2 100%);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    border: 2px solid #e3d6c7;
}

.dc-pricing-box h5 {
    color: var(--dc-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    text-align: center;
}

.dc-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.dc-price-item {
    background: var(--dc-white);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    text-align: center;
    border: 2px solid #e3d6c7;
    transition: none;
}

.dc-price-item:hover {
    border-color: #e3d6c7;
    box-shadow: none;
    transform: none;
}

.dc-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dc-secondary);
    margin-bottom: 0.25rem;
}

.dc-price-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dc-primary);
    margin-bottom: 0.25rem;
}

.dc-price-item p {
    color: var(--dc-gray);
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.4;
}

/* What You Receive Section */
.dc-what-you-receive {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.dc-what-you-receive h5 {
    color: var(--dc-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dc-what-you-receive h5 i {
    color: var(--dc-secondary);
}

.dc-receive-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dc-receive-list li {
    padding: 0;
    background: var(--dc-white);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    border: 1px solid #e3d6c7;
    overflow: hidden;
}

.dc-receive-content {
    padding: 1rem;
}

.dc-receive-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.dc-receive-header:last-child {
    margin-bottom: 0;
}

.dc-receive-header i {
    color: var(--dc-distant);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.dc-receive-header strong {
    color: var(--dc-primary);
    font-size: 1rem;
    flex: 1;
}

.dc-receive-price {
    color: var(--dc-secondary);
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-left: auto;
}

.dc-receive-content p {
    color: var(--dc-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    padding-left: 2.25rem;
}

/* Who Can Order Section */
.dc-who-can-order {
    background: var(--dc-azureish);
    border-radius: 6px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--dc-distant);
}

.dc-who-can-order h5 {
    color: var(--dc-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.dc-who-can-order > p {
    color: var(--dc-gray);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.dc-order-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dc-order-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    margin-bottom: 0.25rem;
    line-height: 1.5;
    color: var(--dc-primary);
    font-size: 0.95rem;
}

.dc-order-list li i {
    color: var(--dc-success);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* Highlight for printed card option - removed to make both items look the same */

/* Note Box */
.dc-note-box {
    background: #fff3cd;
    border-left: 4px solid #ff9800;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.dc-note-box i {
    color: #ff9800;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.dc-note-box p {
    margin: 0;
    color: #664d03;
    line-height: 1.6;
}

.dc-note-box a {
    color: #0066cc;
    text-decoration: underline;
    font-weight: 600;
}

.dc-note-box a:hover {
    color: #004499;
}

.dc-card-detail-choice {
    background: #fffdf8;
    border: 1px solid #e6d7bf;
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

.dc-card-detail-choice p {
    margin: 0;
    color: var(--dc-primary);
    line-height: 1.55;
}

.dc-card-detail-choice a {
    color: var(--dc-distant);
    font-weight: 700;
    text-decoration: underline;
}

.dc-choice-title {
    font-weight: 700;
    margin-bottom: 1rem !important;
}

.dc-known-spiritual-name-box .dc-form-group {
    margin-bottom: 0;
}

.dc-spiritual-name-help {
    display: block;
    margin: 0 0 0.65rem 0;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Form Elements */
.dc-form-group {
    margin-bottom: 1.5rem;
}

.dc-form-group label {
    color: var(--dc-primary);
    margin-bottom: 0.5rem;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
}

.dc-form-group .required-asterisk {
    color: var(--dc-secondary);
    margin-left: 0.25rem;
    font-weight: bold;
}

.dc-form-group .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
    height: var(--dc-field-height);
    width: 100%;
}

.dc-form-group .form-control:focus {
    border-color: var(--dc-distant);
    box-shadow: 0 0 0 0.25rem rgba(77, 104, 176, 0.15);
    background-color: var(--dc-white);
    transform: translateY(-1px);
    outline: none;
}

.dc-form-group textarea.form-control {
    height: auto;
    resize: vertical;
}

.dc-terms-group {
    margin-top: 1rem;
}

.dc-terms-group .form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0;
}

.dc-terms-group .form-check-input {
    flex-shrink: 0;
    float: none;
    width: 1.15rem;
    height: 1.15rem;
    margin-left: 0;
    margin-top: 0.2rem;
    accent-color: var(--dc-distant);
}

.dc-terms-group .form-check-label {
    margin: 0;
    color: var(--dc-primary);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

.dc-terms-group .form-check-label a {
    color: var(--dc-distant);
    font-weight: 700;
    text-decoration: underline;
}

.dc-terms-group .form-check-input.is-invalid + .form-check-label {
    color: #842029;
}

.dc-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Radio Buttons */
.dc-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.dc-radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.75rem 1.25rem;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    background: var(--dc-white);
    transition: all 0.3s ease;
    position: relative;
}

.dc-radio-item input[type="radio"] {
    display: none;
}

.dc-radio-item:hover {
    border-color: var(--dc-boy);
    background: rgba(107, 171, 220, 0.1);
}

.dc-radio-item.selected {
    border-color: var(--dc-distant);
    background: rgba(77, 104, 176, 0.1);
    color: var(--dc-distant);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(77, 104, 176, 0.2);
}

/* Language Grid */
.dc-language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

/* Language Items with Flags */
.dc-language-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem !important;
    text-align: center;
}

.dc-language-flag {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

.dc-language-label {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5;
}

.dc-linked-request-wrapper .form-select {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid #d9dee7;
    background: var(--dc-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dc-linked-request-wrapper .form-select:focus {
    border-color: var(--dc-primary);
    box-shadow: 0 0 0 0.2rem rgba(77, 104, 176, 0.15);
    outline: none;
}

.dc-linked-request-wrapper .form-text {
    margin-top: 0.5rem;
}

.dc-linked-request-info {
    display: none;
    gap: 0.75rem;
    align-items: flex-start;
}

.dc-linked-request-info i {
    color: var(--dc-secondary);
    font-size: 1.1rem;
}

.dc-linked-request-meta {
    color: #5f6c86;
    font-size: 0.85rem;
}

/* Delivery Options */
.dc-delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.dc-delivery-card {
    display: block;
    border: 3px solid #e3d6c7;
    border-radius: 16px;
    padding: 0;
    background: var(--dc-white);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.dc-delivery-card input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.dc-delivery-card:hover {
    border-color: var(--dc-boy);
    box-shadow: 0 8px 25px rgba(107, 171, 220, 0.3);
    transform: translateY(-5px);
}

.dc-delivery-card.selected {
    border-color: var(--dc-success);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
}

.dc-delivery-checkmark {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.dc-delivery-card.selected .dc-delivery-checkmark {
    opacity: 1;
    transform: scale(1);
}

.dc-delivery-checkmark i {
    font-size: 1.5rem;
    color: var(--dc-success);
}

.dc-delivery-body {
    padding: 2rem 1.5rem;
    text-align: center;
}

.dc-delivery-icon {
    font-size: 3rem;
    color: var(--dc-secondary);
    margin-bottom: 1rem;
}

.dc-delivery-card.selected .dc-delivery-icon {
    color: var(--dc-success);
}

.dc-delivery-body h5 {
    color: var(--dc-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.dc-delivery-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dc-secondary);
    margin-bottom: 1rem;
}

.dc-delivery-card.selected .dc-delivery-price {
    color: var(--dc-success);
}

.dc-delivery-body p {
    color: var(--dc-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.dc-delivery-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.dc-delivery-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dc-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.dc-delivery-features i {
    color: var(--dc-success);
    font-size: 0.9rem;
}

/* Design Cards Grid */
.dc-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.dc-card-option {
    display: block;
    border: 3px solid #e3d6c7;
    border-radius: 6px;
    overflow: hidden;
    background: var(--dc-white);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dc-card-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.dc-card-option:hover {
    border-color: var(--dc-boy);
    box-shadow: 0 8px 25px rgba(107, 171, 220, 0.3);
    transform: translateY(-5px);
}

.dc-card-option.selected {
    border-color: var(--dc-success);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    transform: translateY(-5px);
}

.dc-card-thumb {
    position: relative;
    background: linear-gradient(135deg, #fdf7ef 0%, #f6ede2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
}

.dc-card-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dc-card-option:hover .dc-card-thumb img {
    transform: scale(1.05);
}

.dc-card-placeholder {
    text-align: center;
    color: #8B4513;
}

.dc-card-placeholder i {
    font-size: 3rem;
    opacity: 0.3;
}

.dc-card-checkmark {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dc-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.dc-card-option.selected .dc-card-checkmark {
    opacity: 1;
    transform: scale(1);
}

.dc-card-checkmark i {
    font-size: 1.5rem;
    color: var(--dc-success);
}

.dc-card-details {
    padding: 1.5rem;
}

.dc-card-details h5 {
    margin: 0 0 0.5rem 0;
    color: var(--dc-primary);
    font-size: 1.2rem;
    font-weight: 600;
}

.dc-card-details p {
    margin: 0;
    color: var(--dc-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

.dc-no-designs {
    text-align: center;
    padding: 3rem;
    color: var(--dc-gray);
}

/* Navigation Buttons */
.dc-step-navigation {
    padding: 2rem 0 0;
    border-top: 2px solid var(--dc-lightgray);
    margin-top: 2rem;
}

.dc-card-bundle-summary {
    background: #f8f9fa;
    border: 1px solid #d7e0ef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.dc-card-bundle-summary-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.dc-card-bundle-summary-header h5 {
    color: var(--dc-primary);
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
}

.dc-card-bundle-summary-header p {
    color: var(--dc-gray);
    font-size: 0.88rem;
    margin: 0;
}

.dc-card-bundle-count {
    min-width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--dc-distant);
    color: var(--dc-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.dc-card-bundle-list {
    display: grid;
    gap: 0.65rem;
}

.dc-card-bundle-item {
    background: var(--dc-white);
    border: 1px solid #e3d6c7;
    border-radius: 6px;
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.dc-card-bundle-item-main {
    min-width: 0;
}

.dc-card-bundle-item-main strong,
.dc-card-bundle-item-main span {
    display: block;
}

.dc-card-bundle-item-main strong {
    color: var(--dc-primary);
    font-size: 0.95rem;
    line-height: 1.35;
}

.dc-card-bundle-item-main span {
    color: var(--dc-gray);
    font-size: 0.84rem;
    line-height: 1.35;
    margin-top: 0.2rem;
}

.dc-card-bundle-remove {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid #d9d9d9;
    background: var(--dc-white);
    color: var(--dc-gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.dc-card-bundle-remove:hover {
    color: #842029;
    border-color: #f5c2c7;
    background: #fff5f5;
}

.dc-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
}

.dc-btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Open Sans', sans-serif;
}

.dc-btn-primary {
    background: linear-gradient(135deg, var(--dc-secondary), #ff9500);
    color: var(--dc-white);
    box-shadow: 0 4px 15px rgba(243, 146, 0, 0.3);
    margin-left: auto;
}

.dc-btn-primary:hover {
    background: linear-gradient(135deg, #ff9500, var(--dc-secondary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 146, 0, 0.4);
}

.dc-btn-secondary {
    background: var(--dc-distant);
    color: var(--dc-white);
    box-shadow: 0 4px 15px rgba(77, 104, 176, 0.3);
}

.dc-btn-secondary:hover {
    background: #3d5a99;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(77, 104, 176, 0.4);
}

.dc-btn-add-card {
    margin-left: auto;
}

.dc-checkout-button-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
    width: 100%;
}

.dc-btn-success {
    background: linear-gradient(135deg, var(--dc-secondary), #ff9500);
    color: var(--dc-white);
    box-shadow: 0 4px 15px rgba(243, 146, 0, 0.3);
    flex: 0 0 auto;
    margin-left: auto;
    justify-content: center;
    width: auto;
}

.dc-btn-success:hover {
    background: linear-gradient(135deg, #ff9500, var(--dc-secondary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 146, 0, 0.4);
}

/* Alerts */
.sn-alert {
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: none;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.sn-alert i {
    flex-shrink: 0;
    font-size: 1.2rem;
    margin-top: 0.1rem;
}

.sn-alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #58151c;
    border-left: 4px solid #dc3545;
}

.sn-alert-danger i {
    color: #dc3545;
}

.sn-alert-success {
    background: rgba(25, 135, 84, 0.1);
    color: #0a3622;
    border-left: 4px solid #198754;
}

.sn-alert-success i {
    color: #198754;
}

.sn-alert-info {
    background: rgba(77, 104, 176, 0.1);
    color: #2c3e50;
    border-left: 4px solid var(--dc-distant);
}

.sn-alert-info i {
    color: var(--dc-distant);
}

.sn-alert ul {
    margin: 0;
    padding-left: 1.5rem;
}

.sn-alert strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.sn-alert p {
    margin: 0;
    line-height: 1.5;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .destiny-card-form-container {
        margin: 0;
    }
    
    .dc-form-header {
        padding: 1.5rem;
    }
    
    .dc-form-header h1 {
        font-size: 2rem;
    }
    
    .dc-form-content {
        padding: 1.5rem;
    }
    
    .dc-progress-container {
        padding: 1rem;
    }
    
    .dc-step {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .dc-step-labels {
        font-size: 0.75rem;
    }
    
    .dc-info-box {
        flex-direction: column;
    }
    
    .dc-info-grid {
        grid-template-columns: 1fr;
    }
    
    .dc-pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .dc-delivery-options {
        grid-template-columns: 1fr;
    }
    
    .dc-card-grid {
        grid-template-columns: 1fr;
    }
    
    .dc-form-row {
        grid-template-columns: 1fr;
    }
    
    .dc-nav-buttons {
        flex-direction: column-reverse;
        width: 100%;
    }

    .dc-card-bundle-summary-header,
    .dc-card-bundle-item {
        align-items: stretch;
    }

    .dc-card-bundle-item {
        gap: 0.75rem;
    }
    
    .dc-btn {
        width: 100%;
        justify-content: center;
    }
    
    .dc-btn-primary,
    .dc-btn-success {
        margin-left: 0;
    }

    .dc-checkout-button-row {
        justify-content: flex-end;
    }

    .dc-checkout-button-row .dc-btn-success {
        width: auto;
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .dc-form-header h1 {
        font-size: 1.8rem;
    }
    
    .dc-step-labels {
        display: none;
    }
    
    .dc-language-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Overlay */
.dc-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
}

.dc-loading-content {
    text-align: center;
    color: var(--dc-primary);
}

.dc-loading-content .dc-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--dc-secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.dc-loading-content p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.dc-loading-content p:first-of-type {
    font-size: 1.3rem;
    color: var(--dc-distant);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utility Classes */
.text-muted {
    color: var(--dc-gray) !important;
    font-weight: normal !important;
}

small.text-muted {
    font-size: 0.85rem;
}

.form-text {
    font-size: 0.875rem;
    color: var(--dc-gray);
    margin-top: 0.25rem;
}

/* Design Modal Styles */
.dc-design-modal {
    font-family: 'Open Sans', sans-serif;
}

.dc-modal-close:hover {
    background-color: #f0f0f0 !important;
    color: #333 !important;
}

.dc-modal-close:active {
    transform: scale(0.95);
}

.dc-card-view-details {
    display: block;
    margin: 0.5rem auto 0;
    padding: 0.5rem 1rem;
    background: none;
    border: 1px solid var(--dc-primary, #4D68B0);
    border-radius: 5px;
    color: var(--dc-primary, #4D68B0);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dc-card-view-details:hover {
    opacity: 0.8;
    text-decoration: none !important;
    background-color: var(--dc-primary, #4D68B0);
    color: var(--dc-white, #ffffff);
}

.dc-card-view-details:active {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .dc-modal-content {
        width: 95% !important;
        max-height: 95vh !important;
    }
    
    .dc-modal-header {
        padding: 1rem !important;
    }
    
    .dc-modal-body {
        padding: 1rem !important;
    }
    
    .dc-modal-title {
        font-size: 1.2rem !important;
    }
    
    .dc-modal-image img {
        max-height: 300px !important;
    }
}
