/**
 * COD Order Form Styles
 * Professional, conversion-optimized design
 */

.cod-order-form-wrapper {
    max-width: 600px;
    margin: 40px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.cod-form-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 30px;
    position: relative;
}

/* Header */
.cod-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.cod-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.cod-form-subtitle {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 20px 0;
}

/* Countdown Timer */
.cod-countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    color: #92400e;
    animation: pulse 2s infinite;
}

.cod-timer-icon {
    font-size: 20px;
}

.cod-timer-display {
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Trust Badges */
.cod-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.cod-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.cod-badge-icon {
    font-size: 32px;
}

.cod-badge-text {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}

/* Form Section */
.cod-form-section {
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.cod-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.cod-section-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
}

/* Form Groups */
.cod-form-group {
    margin-bottom: 20px;
}

.cod-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.cod-input,
.cod-select,
.cod-textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1f2937;
}

.cod-input:focus,
.cod-select:focus,
.cod-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.cod-input:disabled,
.cod-select:disabled,
.cod-textarea:disabled {
    background: #f3f4f6;
    cursor: not-allowed;
}

.cod-textarea {
    resize: vertical;
    min-height: 80px;
}

.cod-helper-text {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

/* Product Variations */
.cod-variations-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
    border: 1px solid #bae6fd;
}

.cod-variations-section .cod-variation-group {
    margin-bottom: 15px;
}

.cod-variations-section .cod-variation-group:last-child {
    margin-bottom: 0;
}

.cod-variation-hint {
    font-weight: 400;
    font-size: 13px;
    color: #6b7280;
}

/* Checkbox Group Styles */
.cod-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.2s ease;
}

.cod-checkbox-group:hover {
    border-color: #7dd3fc;
}

.cod-checkbox-group.error {
    border-color: #f87171;
    background: #fef2f2;
}

.cod-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    user-select: none;
}

.cod-checkbox-label:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.cod-checkbox-label:has(.cod-variation-checkbox:checked) {
    border-color: #0ea5e9;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0369a1;
}

/* Hide default checkbox */
.cod-variation-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

/* Custom checkbox */
.cod-checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.cod-checkbox-label:hover .cod-checkbox-custom {
    border-color: #0ea5e9;
}

.cod-variation-checkbox:checked + .cod-checkbox-custom {
    background: #0ea5e9;
    border-color: #0ea5e9;
}

.cod-variation-checkbox:checked + .cod-checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.cod-checkbox-text {
    line-height: 1.2;
}

/* Responsive: Stack checkboxes on mobile */
@media (max-width: 480px) {
    .cod-checkbox-group {
        flex-direction: column;
    }
    
    .cod-checkbox-label {
        width: 100%;
        justify-content: flex-start;
    }
}

/* Total Price */
.cod-total-price {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cod-total-label {
    font-size: 18px;
    font-weight: 600;
    color: #065f46;
}

.cod-total-amount {
    font-size: 28px;
    font-weight: 700;
    color: #16a34a;
}

/* Submit Button */
.cod-submit-button {
    width: 100%;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cod-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cod-submit-button:active {
    transform: translateY(0);
}

.cod-submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cod-button-icon {
    font-size: 24px;
}

/* Security Notice */
.cod-security-notice {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.cod-lock-icon {
    font-size: 16px;
}

/* Benefits */
.cod-benefits {
    margin-top: 30px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 8px;
}

.cod-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: #374151;
}

.cod-check-icon {
    font-size: 20px;
    color: #16a34a;
}

/* Loading Overlay */
.cod-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 10;
}

.cod-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e5e7eb;
    border-top-color: #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

.cod-loading-overlay p {
    margin-top: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #374151;
}

/* Success Message */
.cod-success-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 11;
    padding: 40px;
    text-align: center;
}

.cod-success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.cod-success-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.cod-success-message p {
    font-size: 16px;
    color: #6b7280;
    margin: 0;
}

/* Error Message */
.cod-error-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    z-index: 11;
    padding: 40px;
    text-align: center;
}

.cod-error-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #ffffff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cod-error-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.cod-error-text {
    font-size: 16px;
    color: #6b7280;
    margin: 0 0 20px 0;
}

.cod-retry-button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #2563eb;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cod-retry-button:hover {
    background: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cod-order-form-wrapper {
        margin: 20px 10px;
    }
    
    .cod-form-container {
        padding: 20px;
    }
    
    .cod-form-title {
        font-size: 24px;
    }
    
    .cod-trust-badges {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cod-badge {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .cod-total-price {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Validation States */
.cod-input.error,
.cod-select.error,
.cod-textarea.error {
    border-color: #dc2626;
}

.cod-input.success,
.cod-select.success,
.cod-textarea.success {
    border-color: #16a34a;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.3s ease;
}

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

.slide-up {
    animation: slideUp 0.3s ease;
}

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


/* ============================================
   UPSELL POPUP STYLES
   ============================================ */

/* Modal Overlay */
/* ================================================
   WORLD-CLASS UPSELL MODAL
   ================================================ */

.cod-upsell-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: codUpsellFadeIn 0.3s ease-out;
}

.cod-upsell-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: codUpsellOverlayFadeIn 0.3s ease-out;
}

/* Modal Content - Fixed Height Layout */
.cod-upsell-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    max-height: 90dvh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.4);
    animation: codUpsellSlideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

/* Header Section - Fixed */
.cod-upsell-header {
    position: relative;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 20px 50px 20px 20px;
    flex-shrink: 0;
}

.cod-upsell-header-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cod-upsell-header-image {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cod-upsell-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cod-upsell-header-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cod-upsell-header-emoji {
    font-size: 40px;
    line-height: 1;
}

.cod-upsell-header-text {
    flex: 1;
    min-width: 0;
}

.cod-upsell-badge-inline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cod-upsell-headline {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Close Button */
.cod-upsell-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.2s ease;
    z-index: 10;
}

.cod-upsell-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Body Section - Scrollable */
.cod-upsell-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 20px;
    min-height: 0;
}

/* Description with text truncation */
.cod-upsell-description {
    font-size: 15px;
    color: #475569;
    margin: 0 0 20px 0;
    line-height: 1.6;
    max-height: 120px;
    overflow-y: auto;
    padding-right: 8px;
}

.cod-upsell-description::-webkit-scrollbar {
    width: 4px;
}

.cod-upsell-description::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.cod-upsell-description::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

/* Features List - Compact */
.cod-upsell-features {
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px;
    margin: 0;
}

.cod-upsell-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #334155;
    font-weight: 500;
}

.cod-upsell-feature:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
}

.cod-upsell-check {
    color: #10b981;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

/* Footer Section - Fixed at Bottom */
.cod-upsell-footer {
    padding: 20px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    flex-shrink: 0;
}

/* Countdown Timer */
.cod-upsell-timer {
    text-align: center;
    margin-bottom: 12px;
}

.cod-upsell-timer-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fef2f2;
    color: #dc2626;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.cod-upsell-timer-icon {
    animation: codUpsellPulse 1s infinite;
}

/* CTA Button */
.cod-upsell-button {
    width: 100%;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(22, 163, 74, 0.4);
    position: relative;
    overflow: hidden;
}

.cod-upsell-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cod-upsell-button:hover::before {
    left: 100%;
}

.cod-upsell-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.5);
}

.cod-upsell-button:active {
    transform: translateY(0);
}

.cod-upsell-button-text {
    flex: 1;
    text-align: center;
}

.cod-upsell-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
}

.cod-upsell-button:hover .cod-upsell-arrow {
    transform: translateX(4px);
}

/* Skip/Decline Link */
.cod-upsell-skip {
    width: 100%;
    background: none;
    border: none;
    color: #64748b;
    font-size: 13px;
    cursor: pointer;
    margin-top: 12px;
    padding: 10px;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.cod-upsell-skip:hover {
    color: #334155;
    background: #f1f5f9;
}

/* Legacy classes for backward compatibility */
.cod-upsell-countdown-header,
.cod-upsell-countdown-button,
.cod-upsell-badge,
.cod-upsell-icon,
.cod-upsell-emoji,
.cod-upsell-image,
.cod-upsell-subheadline {
    display: none !important;
}

/* Animations */
@keyframes codUpsellFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes codUpsellPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* ================================================
   RESPONSIVE - MOBILE FIRST
   ================================================ */

/* Small phones */
@media (max-width: 380px) {
    .cod-upsell-modal {
        padding: 8px;
    }
    
    .cod-upsell-content {
        border-radius: 16px;
        max-height: 95vh;
        max-height: 95dvh;
    }
    
    .cod-upsell-header {
        padding: 16px 44px 16px 16px;
    }
    
    .cod-upsell-header-image,
    .cod-upsell-header-icon {
        width: 56px;
        height: 56px;
    }
    
    .cod-upsell-header-emoji {
        font-size: 32px;
    }
    
    .cod-upsell-headline {
        font-size: 17px;
    }
    
    .cod-upsell-badge-inline {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .cod-upsell-close {
        width: 32px;
        height: 32px;
        top: 10px;
        right: 10px;
    }
    
    .cod-upsell-body {
        padding: 16px;
    }
    
    .cod-upsell-description {
        font-size: 14px;
        max-height: 80px;
    }
    
    .cod-upsell-features {
        padding: 12px;
    }
    
    .cod-upsell-feature {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .cod-upsell-footer {
        padding: 16px;
    }
    
    .cod-upsell-button {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .cod-upsell-timer-text {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* Regular phones */
@media (min-width: 381px) and (max-width: 640px) {
    .cod-upsell-modal {
        padding: 12px;
    }
    
    .cod-upsell-content {
        max-height: 92vh;
        max-height: 92dvh;
    }
    
    .cod-upsell-description {
        max-height: 100px;
    }
}

/* Tablets */
@media (min-width: 641px) and (max-width: 1024px) {
    .cod-upsell-content {
        max-width: 450px;
    }
    
    .cod-upsell-header {
        padding: 24px 56px 24px 24px;
    }
    
    .cod-upsell-header-image,
    .cod-upsell-header-icon {
        width: 80px;
        height: 80px;
    }
    
    .cod-upsell-headline {
        font-size: 22px;
    }
    
    .cod-upsell-body {
        padding: 28px 24px;
    }
    
    .cod-upsell-description {
        font-size: 16px;
        max-height: 140px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .cod-upsell-content {
        max-width: 480px;
    }
    
    .cod-upsell-header {
        padding: 28px 60px 28px 28px;
    }
    
    .cod-upsell-header-image,
    .cod-upsell-header-icon {
        width: 90px;
        height: 90px;
        border-radius: 16px;
    }
    
    .cod-upsell-header-emoji {
        font-size: 48px;
    }
    
    .cod-upsell-headline {
        font-size: 24px;
    }
    
    .cod-upsell-badge-inline {
        font-size: 12px;
    }
    
    .cod-upsell-close {
        width: 40px;
        height: 40px;
    }
    
    .cod-upsell-body {
        padding: 32px 28px;
    }
    
    .cod-upsell-description {
        font-size: 16px;
        max-height: 160px;
    }
    
    .cod-upsell-features {
        padding: 20px;
    }
    
    .cod-upsell-feature {
        font-size: 15px;
        padding: 10px 0;
    }
    
    .cod-upsell-footer {
        padding: 24px 28px;
    }
    
    .cod-upsell-button {
        padding: 18px 28px;
        font-size: 17px;
    }
}

/* ================================================
   FREE GIFT BOX STYLES
   ================================================ */

.cod-gift-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 16px;
    margin: 16px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
}

.cod-gift-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: gift-shine 3s infinite;
    pointer-events: none;
}

@keyframes gift-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cod-gift-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 0 10px 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    z-index: 1;
}

.cod-gift-content {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.cod-gift-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cod-gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cod-gift-info {
    flex: 1;
    min-width: 0;
}

.cod-gift-title {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: #92400e;
    line-height: 1.3;
}

.cod-gift-description {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #78350f;
    line-height: 1.4;
}

.cod-gift-value {
    display: inline-block;
    background: #16a34a;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

/* Gift box animation on show */
.cod-gift-animate {
    animation: gift-pop 0.4s ease-out;
}

@keyframes gift-pop {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(-10px);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 480px) {
    .cod-gift-box {
        padding: 14px;
    }
    
    .cod-gift-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cod-gift-image {
        width: 70px;
        height: 70px;
    }
    
    .cod-gift-title {
        font-size: 15px;
    }
    
    .cod-gift-description {
        font-size: 12px;
    }
    
    .cod-gift-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* ================================================
   GIFT TEASER - Encourages buying more packs
   ================================================ */

.cod-gift-teaser {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px dashed #f59e0b;
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 12px;
    position: relative;
    overflow: hidden;
    animation: teaser-pulse 2s ease-in-out infinite;
}

.cod-gift-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: teaser-shimmer 3s infinite;
}

@keyframes teaser-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }
    50% { 
        transform: scale(1.01);
        box-shadow: 0 0 20px 5px rgba(245, 158, 11, 0.2);
    }
}

@keyframes teaser-shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.cod-gift-teaser-icon {
    font-size: 32px;
    animation: teaser-bounce 1s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes teaser-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-5px) rotate(-10deg); }
    75% { transform: translateY(-5px) rotate(10deg); }
}

.cod-gift-teaser-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #92400e;
    line-height: 1.4;
}

.cod-gift-teaser-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: #fff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
    animation: highlight-glow 1.5s ease-in-out infinite alternate;
}

@keyframes highlight-glow {
    0% { box-shadow: 0 0 5px rgba(220, 38, 38, 0.5); }
    100% { box-shadow: 0 0 15px rgba(220, 38, 38, 0.8), 0 0 30px rgba(220, 38, 38, 0.4); }
}

.cod-gift-teaser-arrow {
    font-size: 24px;
    color: #f59e0b;
    font-weight: bold;
    animation: arrow-bounce 0.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes arrow-bounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* Mobile responsive for gift teaser */
@media (max-width: 480px) {
    .cod-gift-teaser {
        flex-wrap: wrap;
        padding: 12px 14px;
        gap: 8px;
    }
    
    .cod-gift-teaser-icon {
        font-size: 28px;
    }
    
    .cod-gift-teaser-text {
        font-size: 13px;
        flex-basis: calc(100% - 50px);
    }
    
    .cod-gift-teaser-arrow {
        display: none;
    }
    
    .cod-gift-teaser-highlight {
        font-size: 11px;
        padding: 2px 8px;
    }
}

/* ================================================
   TIERED GIFT PREVIEW SECTION
   ================================================ */

.cod-gift-preview-container {
    margin: 20px 0;
}

.cod-gift-preview {
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px dashed #f59e0b;
}

.cod-gift-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    animation: gift-preview-shine 4s infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes gift-preview-shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cod-gift-preview .cod-gift-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    border-radius: 10px 10px 0 0;
    white-space: normal;
    word-wrap: break-word;
    min-height: 44px;
    line-height: 1.3;
}

.cod-gift-items {
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.cod-gift-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
    background: white;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cod-gift-item:last-child {
    margin-bottom: 0;
}

.cod-gift-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cod-gift-item .cod-gift-image {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cod-gift-item .cod-gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cod-gift-item .cod-gift-info {
    flex: 1;
    min-width: 0;
}

.cod-gift-item .cod-gift-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cod-gift-item .cod-gift-title::before {
    content: '🎁';
    font-size: 14px;
}

.cod-gift-item .cod-gift-description {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* Animation when gift preview appears */
.cod-gift-animate {
    animation: gift-preview-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes gift-preview-pop {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Staggered animation for multiple gift items */
.cod-gift-item:nth-child(1) {
    animation: gift-item-slide 0.4s ease-out 0.1s both;
}

.cod-gift-item:nth-child(2) {
    animation: gift-item-slide 0.4s ease-out 0.2s both;
}

.cod-gift-item:nth-child(3) {
    animation: gift-item-slide 0.4s ease-out 0.3s both;
}

@keyframes gift-item-slide {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile responsive for tiered gifts */
@media (max-width: 480px) {
    .cod-gift-preview .cod-gift-badge {
        font-size: 12px;
        padding: 10px 12px;
    }
    
    .cod-gift-items {
        padding: 12px;
    }
    
    .cod-gift-item {
        padding: 10px;
        gap: 12px;
    }
    
    .cod-gift-item .cod-gift-image {
        width: 55px;
        height: 55px;
    }
    
    .cod-gift-item .cod-gift-title {
        font-size: 14px;
    }
    
    .cod-gift-item .cod-gift-title::before {
        font-size: 12px;
    }
    
    .cod-gift-item .cod-gift-description {
        font-size: 12px;
    }
}

/* ============================================
   TIERED GIFT PREVIEW STYLES
   ============================================ */

.cod-gift-preview-container {
    margin-top: 20px;
    overflow: hidden;
}

.cod-gift-preview {
    border-radius: 12px;
    padding: 20px;
    position: relative;
    border: 2px dashed #f59e0b;
    animation: giftPulse 2s ease-in-out infinite;
}

@keyframes giftPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4); }
    50% { box-shadow: 0 0 20px 5px rgba(245, 158, 11, 0.2); }
}

.cod-gift-preview .cod-gift-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cod-gift-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
}

.cod-gift-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cod-gift-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.cod-gift-item .cod-gift-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cod-gift-item .cod-gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cod-gift-item .cod-gift-info {
    flex: 1;
}

.cod-gift-item .cod-gift-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.cod-gift-item .cod-gift-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

/* Multiple gifts indicator */
.cod-gift-items .cod-gift-item:not(:first-child)::before {
    content: '+ BONUS';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    background: #10b981;
    color: white;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
}

.cod-gift-items .cod-gift-item {
    position: relative;
}

/* Gift animation on show */
.cod-gift-animate .cod-gift-item {
    animation: giftSlideIn 0.4s ease forwards;
    opacity: 0;
}

.cod-gift-animate .cod-gift-item:nth-child(1) { animation-delay: 0.1s; }
.cod-gift-animate .cod-gift-item:nth-child(2) { animation-delay: 0.2s; }
.cod-gift-animate .cod-gift-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes giftSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive for tiered gifts */
@media (max-width: 480px) {
    .cod-gift-preview {
        padding: 15px;
    }
    
    .cod-gift-preview .cod-gift-badge {
        font-size: 10px;
        padding: 5px 12px;
        top: -10px;
        left: 15px;
    }
    
    .cod-gift-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 12px;
    }
    
    .cod-gift-item .cod-gift-image {
        width: 70px;
        height: 70px;
    }
    
    .cod-gift-item .cod-gift-title {
        font-size: 14px;
    }
    
    .cod-gift-item .cod-gift-description {
        font-size: 12px;
    }
    
    .cod-gift-items .cod-gift-item:not(:first-child)::before {
        left: 50%;
        top: -10px;
        transform: translateX(-50%);
    }
}

/* ========================================
   NEW CONVERSION FEATURES STYLES
   ======================================== */

/* ----------------------------------------
   1. ORDER BUMPS
   ---------------------------------------- */
.cod-order-bumps-section {
    margin: 25px 0;
}

.cod-order-bump {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px dashed #f59e0b;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cod-order-bump:hover {
    border-color: #d97706;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.cod-bump-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    padding: 15px;
    position: relative;
}

.cod-bump-checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.cod-bump-checkmark {
    min-width: 28px;
    height: 28px;
    background: #ffffff;
    border: 2px solid #d97706;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    font-weight: bold;
    color: transparent;
    transition: all 0.2s ease;
}

.cod-bump-checkbox:checked + .cod-bump-checkmark {
    background: #16a34a;
    border-color: #16a34a;
    color: #ffffff;
}

.cod-bump-content {
    display: flex;
    gap: 15px;
    flex: 1;
}

.cod-bump-image {
    width: 120px;
    min-height: 80px;
    max-height: 150px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.cod-bump-image img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
}

.cod-bump-info {
    flex: 1;
}

.cod-bump-title {
    font-size: 14px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.cod-bump-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.cod-bump-description {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.4;
    margin-bottom: 8px;
}

.cod-bump-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cod-bump-price-label {
    font-size: 13px;
    color: #6b7280;
}

.cod-bump-price-value {
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
}

/* ----------------------------------------
   2. SOCIAL PROOF NOTIFICATIONS
   ---------------------------------------- */
.cod-social-proof {
    position: fixed;
    z-index: 9999;
    max-width: 320px;
    animation: slideIn 0.3s ease;
}

.cod-sp-bottom-left {
    bottom: 20px;
    left: 20px;
}

.cod-sp-bottom-right {
    bottom: 20px;
    right: 20px;
}

.cod-sp-top-left {
    top: 20px;
    left: 20px;
}

.cod-sp-top-right {
    top: 20px;
    right: 20px;
}

.cod-sp-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    border-left: 4px solid #16a34a;
}

.cod-sp-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.cod-sp-text {
    flex: 1;
}

.cod-sp-name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 3px;
}

.cod-sp-detail {
    font-size: 13px;
    color: #6b7280;
}

.cod-sp-close {
    position: absolute;
    top: 5px;
    right: 8px;
    background: none;
    border: none;
    font-size: 18px;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.cod-sp-close:hover {
    color: #6b7280;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ----------------------------------------
   3. STOCK SCARCITY INDICATOR
   ---------------------------------------- */
.cod-stock-scarcity {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 12px;
    animation: pulse 2s infinite;
}

.cod-stock-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.cod-stock-icon {
    font-size: 18px;
}

.cod-stock-text {
    font-size: 14px;
    color: #991b1b;
}

.cod-stock-count {
    font-size: 16px;
    color: #dc2626;
}

.cod-stock-bar {
    height: 8px;
    background: #fecaca;
    border-radius: 4px;
    overflow: hidden;
}

.cod-stock-bar-fill {
    height: 100%;
    background: #dc2626;
    border-radius: 4px;
    transition: width 0.5s ease, background 0.3s ease;
}

/* ----------------------------------------
   4. TESTIMONIALS CAROUSEL
   ---------------------------------------- */
.cod-testimonials-section {
    margin: 30px 0;
}

.cod-testimonials-above-form {
    margin-bottom: 30px;
}

.cod-testimonials-below-form {
    margin-top: 30px;
}

.cod-testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.cod-testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.cod-testimonial-slide.active {
    display: block;
}

.cod-testimonial-content {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cod-testimonial-stars {
    margin-bottom: 15px;
}

.cod-testimonial-stars .cod-star {
    font-size: 18px;
    filter: grayscale(100%);
    opacity: 0.3;
}

.cod-testimonial-stars .cod-star.filled {
    filter: grayscale(0%);
    opacity: 1;
}

.cod-testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 20px;
}

.cod-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cod-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

.cod-testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
}

.cod-testimonial-info {
    display: flex;
    flex-direction: column;
}

.cod-testimonial-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 15px;
}

.cod-testimonial-location {
    font-size: 13px;
    color: #6b7280;
}

.cod-verified-badge {
    background: #dcfce7;
    color: #166534;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: auto;
}

.cod-testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.cod-testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.cod-testimonial-dot.active,
.cod-testimonial-dot:hover {
    background: #3b82f6;
    transform: scale(1.2);
}

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

/* ----------------------------------------
   5. EXIT INTENT POPUP
   ---------------------------------------- */
.cod-exit-intent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cod-exit-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.cod-exit-content {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: bounceIn 0.4s ease;
    overflow: hidden;
}

.cod-exit-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 1;
}

.cod-exit-close:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.cod-exit-body {
    padding: 40px 30px;
    text-align: center;
}

.cod-exit-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.cod-exit-headline {
    font-size: 26px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px 0;
}

.cod-exit-subheadline {
    font-size: 18px;
    color: #4b5563;
    margin: 0 0 25px 0;
}

.cod-exit-code-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 2px dashed #f59e0b;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cod-exit-code-label {
    font-size: 14px;
    color: #92400e;
}

.cod-exit-code {
    font-size: 24px;
    font-weight: 800;
    color: #b45309;
    letter-spacing: 2px;
    font-family: monospace;
}

.cod-exit-copy-code {
    background: #ffffff;
    border: 1px solid #d97706;
    color: #d97706;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cod-exit-copy-code:hover {
    background: #d97706;
    color: #ffffff;
}

.cod-exit-cta {
    width: 100%;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    border: none;
    padding: 18px 30px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cod-exit-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.4);
}

.cod-exit-countdown {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #dc2626;
}

.cod-exit-timer-icon {
    font-size: 16px;
}

.cod-exit-timer-display {
    font-weight: 700;
    font-size: 16px;
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); opacity: 1; }
}

/* ----------------------------------------
   6. STICKY MOBILE SUMMARY
   ---------------------------------------- */
.cod-sticky-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 15px;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cod-sticky-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cod-sticky-pack {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.cod-sticky-price {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
}

.cod-sticky-cta {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.cod-sticky-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.4);
}

/* Hide sticky on desktop */
@media (min-width: 769px) {
    .cod-sticky-mobile {
        display: none !important;
    }
}

/* ----------------------------------------
   RESPONSIVE ADJUSTMENTS
   ---------------------------------------- */
@media (max-width: 480px) {
    .cod-bump-content {
        flex-direction: column;
    }
    
    .cod-bump-image {
        width: 100%;
        height: auto;
        max-height: 180px;
    }
    
    .cod-bump-image img {
        width: 100%;
        height: auto;
        max-height: 180px;
        object-fit: contain;
    }
    
    .cod-social-proof {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .cod-sp-bottom-left,
    .cod-sp-bottom-right {
        bottom: 80px; /* Above sticky mobile */
    }
    
    .cod-exit-content {
        margin: 10px;
    }
    
    .cod-exit-body {
        padding: 30px 20px;
    }
    
    .cod-exit-headline {
        font-size: 22px;
    }
    
    .cod-exit-code {
        font-size: 20px;
    }
    
    .cod-testimonial-content {
        padding: 20px;
    }
    
    .cod-testimonial-text {
        font-size: 15px;
    }
    
    .cod-verified-badge {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}

/* Email field hint */
.cod-field-hint {
    font-size: 12px;
    color: #6b7280;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cod-field-hint::before {
    content: "📧";
    font-size: 14px;
}
