/* ==============================
   LISTE DE NAISSANCE - FRONTEND
   Styles structurels minimaux
   Le style visuel est géré via Elementor
   ============================== */

/* === BODY SCROLL LOCK === */
html.ldn-body-locked,
.ldn-body-locked {
    overflow: hidden !important;
}

/* === GRID === */
.ldn-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* === FILTERS === */
.ldn-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.ldn-filter-btn {
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    background: #f0f0f0;
    color: #333;
}

.ldn-filter-btn.active {
    background: #667eea;
    color: #fff;
}

.ldn-filter-btn:hover {
    opacity: 0.85;
}

/* === CARD === */
.ldn-card-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.ldn-card-item:hover {
    transform: translateY(-2px);
}

.ldn-card-done {
    opacity: 0.65;
}

.ldn-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.ldn-card-image-placeholder {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.ldn-card-content {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ldn-card-title {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
}

.ldn-card-desc {
    margin: 0 0 10px;
    font-size: 13px;
    color: #888;
    line-height: 1.4;
}

.ldn-card-price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* === GALLERY CAROUSEL === */
.ldn-card-gallery {
    position: relative;
    overflow: hidden;
}

.ldn-gallery-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 3;
}

.ldn-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s;
}

.ldn-gallery-dot.active {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.ldn-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.ldn-card-gallery:hover .ldn-gallery-nav {
    opacity: 1;
}

.ldn-gallery-prev { left: 8px; }
.ldn-gallery-next { right: 8px; }

.ldn-gallery-nav:hover {
    background: #fff;
}

/* === STATUS BADGE === */
.ldn-status-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    z-index: 2;
}

.ldn-status-complete   { background: #28a745; }
.ldn-status-store      { background: #7b1fa2; }
.ldn-status-secondhand { background: #00897b; }
.ldn-status-partial    { background: #ffc107; color: #333; }

/* === PROGRESS BAR === */
.ldn-progress-wrapper {
    margin-bottom: 16px;
}

.ldn-progress {
    background: #e9ecef;
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    width: 100%;
}

.ldn-progress-bar {
    background: #667eea;
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s ease;
    min-width: 0;
}

.ldn-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-top: 6px;
    color: #666;
}

/* === CARD HINTS === */
.ldn-card-hints {
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ldn-card-hint {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    padding: 6px 10px;
    background: #f8f9fa;
    border-radius: 6px;
}

.ldn-card-bottom {
    margin-top: auto;
}

/* === BUTTON === */
.ldn-btn-offer {
    display: block;
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #667eea;
    color: #fff;
    text-align: center;
}

.ldn-btn-offer:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* === MODAL === */
.ldn-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 99999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.ldn-modal {
    background: #fff;
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
    padding: 32px;
    position: relative;
    animation: ldnModalIn 0.3s ease;
    margin: auto;
    flex-shrink: 0;
}

@keyframes ldnModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.ldn-modal-close {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 4px 8px;
}

.ldn-modal-close:hover { color: #333; }

.ldn-modal-title {
    font-size: 22px;
    margin: 0 0 20px;
}

/* Tabs */
.ldn-modal-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.ldn-tab-btn,
button.ldn-tab-btn,
.ldn-modal-tabs .ldn-tab-btn {
    flex: 1;
    padding: 10px 16px !important;
    border: 2px solid #e0e0e0 !important;
    background: #fff !important;
    border-radius: 8px !important;
    cursor: pointer;
    font-size: 14px !important;
    font-weight: 600 !important;
    transition: all 0.2s;
    min-width: 120px;
    color: #999 !important;
}

.ldn-tab-btn.active,
button.ldn-tab-btn.active,
.ldn-modal-tabs .ldn-tab-btn.active {
    border-color: #8BAF75 !important;
    background: #8BAF75 !important;
    color: #fff !important;
}

.ldn-tab-btn:not(.active):hover { border-color: #ccc !important; color: #666 !important; }

/* Modal form */
.ldn-modal-form {
    margin-top: 16px;
}

.ldn-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ldn-form-field {
    margin-bottom: 16px;
}

.ldn-form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.ldn-form-field input,
.ldn-form-field textarea,
.ldn-form-field select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.ldn-form-field input:focus,
.ldn-form-field textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* Amount quick picks */
.ldn-amount-options {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.ldn-amount-btn {
    padding: 8px 16px;
    border: 2px solid #e0e0e0;
    background: #fff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.ldn-amount-btn:hover,
.ldn-amount-btn.active {
    border-color: #667eea;
    background: #f0f3ff;
    color: #667eea;
}

/* Full amount note (non-partial) */
.ldn-full-amount-note {
    background: #f0f3ff;
    border: 2px solid #667eea;
    border-radius: 10px;
    padding: 14px 20px;
    text-align: center;
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

/* Submit button */
.ldn-btn-submit {
    display: block;
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    background: #667eea;
    color: #fff;
    transition: all 0.2s;
    margin-top: 8px;
}

.ldn-btn-submit:hover {
    background: #5a6fd6;
}

.ldn-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ldn-btn-done {
    background: #28a745;
    margin-top: 20px;
}

.ldn-btn-done:hover {
    background: #218838;
}

/* QR Section */
.ldn-qr-section {
    text-align: center;
    padding: 20px 0;
}

.ldn-qr-section h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.ldn-qr-section p {
    color: #666;
    margin-bottom: 20px;
}

#ldn-qrcode-container {
    display: inline-block;
    padding: 16px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    margin-bottom: 20px;
}

#ldn-qrcode-container canvas,
#ldn-qrcode-container img {
    display: block !important;
}

.ldn-bank-details {
    text-align: left;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 14px;
}

.ldn-bank-details code {
    background: #e9ecef;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 14px;
}

/* Store info */
.ldn-store-info {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.ldn-store-info h3 {
    margin: 0 0 12px;
    font-size: 16px;
}

.ldn-store-info p {
    margin: 6px 0;
}

.ldn-store-info a {
    color: #667eea;
    font-weight: 600;
}

/* Secondhand info */
.ldn-secondhand-info {
    background: #e0f2f1;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.ldn-secondhand-info p {
    margin: 0;
    color: #00695c;
    font-size: 14px;
    line-height: 1.5;
}

/* Modal progress */
.ldn-modal-progress-section {
    margin-bottom: 20px;
}

/* Success */
.ldn-success-content {
    text-align: center;
    padding: 40px 20px;
}

.ldn-success-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

.ldn-success-content h3 {
    font-size: 22px;
    margin: 0 0 8px;
}

.ldn-success-content p {
    color: #666;
    font-size: 16px;
}

/* Empty state */
.ldn-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* Global stats widget */
.ldn-global-stats {
    display: flex;
    gap: 24px;
    align-items: center;
}

.ldn-stats-vertical {
    flex-direction: column;
    align-items: stretch;
}

.ldn-stat-block {
    text-align: center;
}

.ldn-stat-value {
    font-size: 32px;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.ldn-stat-block .ldn-stat-label {
    font-size: 14px;
    color: #888;
}

.ldn-stat-progress {
    flex: 1;
    min-width: 200px;
}

.ldn-global-progress {
    background: #e9ecef;
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
    margin-bottom: 6px;
}

.ldn-global-progress-bar {
    background: #667eea;
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s ease;
}

/* === CLICKABLE IMAGE === */
.ldn-clickable-image {
    cursor: zoom-in;
    transition: filter 0.2s;
}

.ldn-clickable-image:hover {
    filter: brightness(0.92);
}

/* === INFO BUTTON === */
.ldn-card-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.ldn-card-header .ldn-card-title {
    flex: 1;
}

.ldn-btn-info {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: #888;
    flex-shrink: 0;
    transition: color 0.2s;
    padding: 2px 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ldn-btn-info:hover {
    color: #555;
}

/* === INFO MODAL === */
.ldn-info-modal {
    max-width: 500px;
}

.ldn-info-price {
    font-size: 24px;
    font-weight: 700;
    color: #E8A87C;
    margin-bottom: 16px;
}

.ldn-info-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
    margin: 0 0 16px;
}

.ldn-info-content {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.ldn-info-content p {
    margin: 0 0 10px;
}

.ldn-info-content img {
    max-width: 100%;
    border-radius: 8px;
}

.ldn-info-store {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 16px 20px;
}

.ldn-info-store h4 {
    margin: 0 0 8px;
    font-size: 15px;
}

.ldn-info-store p {
    margin: 4px 0;
    font-size: 14px;
}

.ldn-info-store a {
    color: #667eea;
    word-break: break-all;
}

/* === LIGHTBOX === */
.ldn-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ldnFadeIn 0.2s ease;
}

@keyframes ldnFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.ldn-lightbox-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 60px 80px;
    box-sizing: border-box;
}

.ldn-lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
    user-select: none;
}

.ldn-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    z-index: 3;
    line-height: 1;
    padding: 8px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.ldn-lightbox-close:hover {
    opacity: 1;
}

.ldn-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.ldn-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.ldn-lightbox-prev { left: 16px; }
.ldn-lightbox-next { right: 16px; }

.ldn-lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    z-index: 3;
}

/* Responsive */
@media (max-width: 768px) {
    .ldn-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .ldn-modal {
        padding: 20px;
        margin: 0 auto;
        border-radius: 12px;
    }

    .ldn-modal-overlay {
        padding: 10px;
    }

    .ldn-form-row {
        grid-template-columns: 1fr;
    }

    .ldn-modal-tabs {
        flex-direction: column;
    }

    .ldn-global-stats {
        flex-wrap: wrap;
    }

    .ldn-lightbox-content {
        padding: 50px 16px;
    }

    .ldn-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .ldn-lightbox-prev { left: 8px; }
    .ldn-lightbox-next { right: 8px; }
}

@media (max-width: 480px) {
    .ldn-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading state */
.ldn-loading {
    position: relative;
    pointer-events: none;
}

.ldn-loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ldn-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: ldnSpin 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes ldnSpin {
    to { transform: rotate(360deg); }
}

/* === CART FLOATING BUTTON === */
.ldn-cart-btn {
    position: fixed; bottom: 24px; right: 24px; z-index: 9998;
    width: 56px; height: 56px; border-radius: 50%;
    background: #8BAF75; color: #fff; border: none;
    cursor: pointer; padding: 0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.2s; display: flex; align-items: center; justify-content: center;
}
.ldn-cart-btn svg { display: block; }
.ldn-cart-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.ldn-cart-btn.has-items { animation: ldnCartPulse 0.3s ease; }
@keyframes ldnCartPulse { 50% { transform: scale(1.15); } }
.ldn-cart-badge {
    position: absolute; top: -4px; right: -4px;
    background: #d63031; color: #fff; font-size: 12px; font-weight: 700;
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}

/* === CART OVERLAY === */
.ldn-cart-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.4);
    z-index: 99998; backdrop-filter: blur(2px);
}

/* === CART PANEL === */
.ldn-cart-panel {
    position: fixed; top: 0; right: -420px; bottom: 0; width: 400px; max-width: 100vw;
    background: #fff; z-index: 99999;
    display: flex; flex-direction: column;
    box-shadow: -8px 0 30px rgba(0,0,0,0.12);
    transition: right 0.3s ease;
}
.ldn-cart-panel.open { right: 0; }
.ldn-cart-panel-header {
    padding: 18px 20px; border-bottom: 1px solid #e9ecef;
    display: flex; align-items: center; justify-content: space-between;
}
.ldn-cart-panel-header h2 { font-size: 18px; font-weight: 700; margin: 0; }
.ldn-cart-panel-close { background: none; border: none; font-size: 28px; color: #999; cursor: pointer; line-height: 1; }
.ldn-cart-panel-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.ldn-cart-panel-footer { padding: 16px 20px; border-top: 1px solid #e9ecef; }

/* Cart items */
.ldn-cart-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px; border: 1px solid #f0f0f0; border-radius: 10px;
    margin-bottom: 8px; gap: 12px;
}
.ldn-cart-item-info { flex: 1; min-width: 0; }
.ldn-cart-item-title { font-size: 14px; font-weight: 600; }
.ldn-cart-item-type { font-size: 12px; color: #888; margin-top: 2px; }
.ldn-cart-item-desc { font-size: 12px; color: #666; font-style: italic; margin-top: 2px; }
.ldn-cart-item-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.ldn-cart-item-amount { font-weight: 700; font-size: 15px; }
.ldn-cart-item-remove {
    background: none; border: none; color: #ccc; font-size: 16px; cursor: pointer;
    width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.ldn-cart-item-remove:hover { background: #fff5f5; color: #d63031; }

/* Cart total */
.ldn-cart-total {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 12px; font-size: 15px;
}
.ldn-cart-total strong { font-size: 18px; color: #8BAF75; }

/* Cart footer actions */
.ldn-cart-footer-actions {
    display: flex; gap: 10px;
}
.ldn-btn-cart-primary,
.ldn-btn-cart-secondary {
    flex: 1; padding: 14px 20px; border-radius: 10px;
    font-size: 15px; font-weight: 700; cursor: pointer;
    transition: all 0.2s; text-align: center; line-height: 1;
}
.ldn-btn-cart-primary {
    background: #8BAF75; color: #fff; border: 2px solid #8BAF75;
}
.ldn-btn-cart-primary:hover { background: #749A5E; border-color: #749A5E; }
.ldn-btn-cart-secondary {
    background: #fff; color: #666; border: 2px solid #ddd;
}
.ldn-btn-cart-secondary:hover { background: #f8f9fa; border-color: #ccc; }

/* Cart empty */
.ldn-cart-empty { text-align: center; padding: 40px 20px; color: #888; }
.ldn-cart-empty p { font-size: 15px; }

/* Cart success */
.ldn-cart-success { text-align: center; padding: 20px 0; }
.ldn-cart-success h3 { font-size: 20px; margin-bottom: 8px; }
.ldn-cart-success p { color: #666; }

/* Checkout recap */
.ldn-checkout-recap { margin-bottom: 20px; }
.ldn-checkout-recap h3 { font-size: 15px; font-weight: 700; margin-bottom: 12px; padding-bottom: 8px; border-bottom: 2px solid #f0f0f0; }
.ldn-checkout-recap-item {
    display: flex; justify-content: space-between; padding: 8px 0;
    font-size: 14px; border-bottom: 1px solid #f8f8f8;
}
.ldn-checkout-recap-total {
    display: flex; justify-content: space-between; padding: 12px 0 0;
    font-size: 15px; border-top: 2px solid #e9ecef; margin-top: 4px;
}
.ldn-checkout-recap-total strong { color: #8BAF75; font-size: 17px; }

/* Checkout form in panel */
.ldn-checkout-form .ldn-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.ldn-checkout-form .ldn-form-field { margin-bottom: 12px; }
.ldn-checkout-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.ldn-checkout-form input,
.ldn-checkout-form textarea {
    width: 100%; padding: 9px 12px; border: 1.5px solid #ddd; border-radius: 8px;
    font-size: 14px; font-family: inherit;
}
.ldn-checkout-form input:focus,
.ldn-checkout-form textarea:focus { border-color: #8BAF75; outline: none; box-shadow: 0 0 0 3px rgba(139,175,117,0.1); }

/* QR section in cart */
.ldn-qr-section { margin-top: 20px; padding: 16px; background: #f8f9fa; border-radius: 10px; }
.ldn-qr-hint { font-size: 13px; color: #666; line-height: 1.5; margin: 8px 0; }
.ldn-bank-details { font-size: 13px; text-align: left; }
.ldn-bank-details p { margin: 4px 0; }

/* Responsive cart */
.ldn-cart-hint { font-size: 14px; color: #666; margin-bottom: 16px; padding: 10px 14px; background: #f8f9fa; border-radius: 8px; }

@media (max-width: 480px) {
    .ldn-cart-panel { width: 100vw; }
    .ldn-cart-btn { bottom: 16px; right: 16px; width: 50px; height: 50px; }
    .ldn-cart-btn svg { width: 22px; height: 22px; }
    .ldn-checkout-form .ldn-form-row { grid-template-columns: 1fr; }
}
