.elementor-2112 .elementor-element.elementor-element-4b2db62{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-29ec8a0 *//* Page Cartes Cadeaux Simple - Compatible Elementor */

/* Variables CSS */
:root {
    --color-primary: #b11134;
    --color-primary-hover: #960e2c;
    --color-text-primary: #261d26;
    --color-text-secondary: #736273;
    --color-background: #fff9f9;
    --color-card-background: #ffffff;
    --color-accent: #f3e9f3;
    --color-border: #e5e0e5;
    --color-success: #10b981;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-playfair: 'Playfair Display', serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--color-background);
    color: var(--color-text-primary);
    line-height: 1.6;
}

/* Container */
.gift-card-page {
    min-height: 100vh;
}

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

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(177, 17, 52, 0.05) 0%, rgba(225, 29, 116, 0.05) 100%);
}

.hero-title {
    font-family: var(--font-playfair);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    padding: 60px 0;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Info Side */
.info-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 24px;
    font-family: var(--font-playfair);
}

/* Features */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.feature:hover {
    box-shadow: 0 4px 12px rgba(177, 17, 52, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #511b50, #b11134);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

/* Card Preview */
.card-preview {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.preview-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 20px;
    font-family: var(--font-playfair);
}

.gift-card {
    background: linear-gradient(135deg, #fdf2f8, #fce7f3);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #be185d;
    position: relative;
    overflow: hidden;
}

.gift-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: rgba(190, 24, 93, 0.1);
    border-radius: 50%;
}

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

.card-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e11d74, #be185d);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.card-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #be185d;
}

.card-info p {
    font-size: 0.875rem;
    color: #e11d74;
}

.card-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #be185d;
    text-align: center;
    margin-bottom: 20px;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail .label {
    font-size: 0.75rem;
    color: #e11d74;
    font-weight: 600;
    text-transform: uppercase;
}

.detail .value {
    font-size: 0.875rem;
    color: #be185d;
    font-weight: 500;
}

.card-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(190, 24, 93, 0.2);
}

.card-footer p {
    font-size: 0.75rem;
    color: #e11d74;
}

/* Form Side */
.form-side {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Purchase Form */
.purchase-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 24px;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    font-family: var(--font-playfair);
}

.form-header p {
    color: var(--color-text-secondary);
}

.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 0.875rem;
}

/* Amount Buttons */
.amount-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.amount-btn {
    position: relative;
    cursor: pointer;
}

.amount-btn input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.amount-btn span {
    display: block;
    padding: 16px;
    text-align: center;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-weight: 600;
    color: var(--color-text-primary);
    background: white;
    transition: all 0.3s ease;
}

.amount-btn:hover span {
    border-color: var(--color-primary);
    background: var(--color-accent);
}

.amount-btn input:checked + span {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Input with Prefix */
.input-with-prefix {
    position: relative;
}

.input-with-prefix .prefix {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-secondary);
    font-weight: 500;
    z-index: 2;
}

.input-with-prefix input {
    padding-left: 32px;
}

/* Form Inputs */
input[type="text"],
input[type="email"],
input[type="number"],
input[type="date"],
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(177, 17, 52, 0.1);
}

textarea {
    resize: vertical;
    min-height: 80px;
    font-family: inherit;
}

/* Submit Button */
.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #511b50, #b11134);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(177, 17, 52, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(177, 17, 52, 0.4);
}

/* Balance Check */
.balance-check {
    background: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.check-header {
    margin-bottom: 20px;
}

.check-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
    font-family: var(--font-playfair);
}

.check-header p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.check-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.check-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--color-success);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.check-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* Result Example */
.result-example {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f0fdf4;
    border: 1px solid #dcfce7;
    border-radius: 8px;
    color: #166534;
}

.result-icon {
    flex-shrink: 0;
}

.result-text {
    flex: 1;
}

.result-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.result-balance {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* How it Works */
.how-it-works {
    padding: 60px 0;
    background: linear-gradient(to bottom, #ffffff, #fdf2f8);
}

.works-header {
    text-align: center;
    margin-bottom: 40px;
}

.works-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 12px;
    font-family: var(--font-playfair);
}

.works-header p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

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

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #511b50, #b11134);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.step-icon {
    width: 64px;
    height: 64px;
    background: var(--color-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin: 16px auto 20px;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.step p {
    color: var(--color-text-secondary);
}

/* Back Section */
.back-section {
    text-align: center;
    padding: 40px 0 60px;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid var(--color-primary);
    background: white;
    color: var(--color-primary);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .purchase-form,
    .balance-check {
        padding: 24px;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .purchase-form,
    .balance-check {
        padding: 20px;
    }
    
    .amount-buttons {
        grid-template-columns: 1fr;
    }
    
    .feature {
        padding: 16px;
    }
    
    .gift-card {
        padding: 20px;
    }
}

/* Focus states pour l'accessibilité */
input:focus,
textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.submit-btn:focus,
.check-btn:focus,
.back-btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .gift-card-page {
        background: white;
    }
    
    .purchase-form,
    .balance-check,
    .back-section {
        display: none;
    }
    
    .step {
        break-inside: avoid;
    }
}

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

.step {
    animation: fadeInUp 0.6s ease-out;
}

.step:nth-child(1) { animation-delay: 0.1s; }
.step:nth-child(2) { animation-delay: 0.2s; }
.step:nth-child(3) { animation-delay: 0.3s; }

/* Accessibilité - Réduction des animations */
@media (prefers-reduced-motion: reduce) {
    .step {
        animation: none;
    }
    
    .submit-btn:hover,
    .check-btn:hover,
    .back-btn:hover {
        transform: none;
    }
}/* End custom CSS */