/* Custom Label Designer - Frontend Styles */

.cld-designer-wrapper {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cld-designer-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.cld-designer-header h2 {
    margin: 0 0 10px 0;
    color: #333;
    font-size: 32px;
}

.cld-designer-header p {
    color: #666;
    font-size: 16px;
    margin: 0 0 20px 0;
}

/* Instructions Box */
.cld-instructions-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.cld-instructions-box h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
}

.cld-instructions-box ol {
    margin: 0 0 15px 20px;
    line-height: 1.8;
}

.cld-instructions-box ol li {
    margin-bottom: 8px;
}

.cld-instructions-box p {
    margin: 0;
    color: white;
}

/* Pricing Section */
.cld-pricing-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.cld-pricing-section h3 {
    margin: 0 0 20px 0;
    text-align: center;
    font-size: 24px;
}

.cld-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.cld-price-card {
    background: rgba(255, 255, 255, 0.95);
    color: #333;
    border-radius: 8px;
    overflow: hidden;
}

.price-card-header {
    background: rgba(0, 0, 0, 0.1);
    padding: 15px;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
}

.price-options {
    padding: 20px;
}

.price-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.price-qty {
    font-size: 16px;
    font-weight: 600;
}

.price-amount {
    font-size: 20px;
    font-weight: bold;
    color: #4CAF50;
}

/* Form Sections */
.cld-form-section {
    margin-bottom: 30px;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.cld-form-section h3 {
    margin: 0 0 20px 0;
    color: #333;
    font-size: 22px;
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 10px;
}

.cld-form-group {
    margin-bottom: 25px;
}

.cld-form-group > label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.cld-form-group .description {
    display: block;
    margin: -5px 0 10px 0;
    font-size: 14px;
    color: #666;
    font-weight: normal;
}

/* Combined Size and Quantity Selection */
.cld-combined-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cld-combined-option {
    cursor: pointer;
}

.cld-combined-option input[type="radio"],
.cld-combined-option input[type="checkbox"] {
    display: none;
}

.combined-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background: white;
    border: 3px solid #ddd;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 140px;
    justify-content: center;
    position: relative;
}

.combined-card:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.cld-combined-option input[type="radio"]:checked + .combined-card,
.cld-combined-option input[type="checkbox"]:checked + .combined-card {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

/* Checkmark for selected checkboxes */
.cld-combined-option input[type="checkbox"]:checked + .combined-card::after {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4CAF50;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    line-height: 24px;
}

.combined-size {
    display: block;
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.combined-qty {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.combined-usage {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 10px;
    line-height: 1.3;
}

.combined-price {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin-top: 5px;
}

/* Size group styling */
.cld-size-group {
    margin-bottom: 30px;
}

.cld-size-group-title {
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 15px 0;
    color: #333;
}

.cld-size-group-title .size-desc {
    font-size: 14px;
    font-weight: normal;
    color: #666;
    margin-left: 10px;
}

/* Iron-on specific styling */
.cld-combined-option.ironon input[type="checkbox"]:checked + .combined-card {
    border-color: #FF9800;
    background: linear-gradient(135deg, #fff8f0 0%, #fffbf5 100%);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.cld-combined-option.ironon .combined-card:hover {
    border-color: #FF9800;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.2);
}

.cld-combined-option.ironon .combined-price {
    color: #FF9800;
}

.cld-combined-option.ironon input[type="checkbox"]:checked + .combined-card::after {
    background: #FF9800;
}

.combined-type {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
}

.combined-usage {
    font-size: 12px;
    color: #888;
    font-style: italic;
    min-height: 32px;
    line-height: 1.4;
}

/* Label Size Selection with Pricing */
.cld-size-options-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.cld-size-price-option {
    cursor: pointer;
}

.cld-size-price-option input[type="radio"] {
    display: none;
}

.size-price-card {
    display: block;
    padding: 25px;
    background: white;
    border: 3px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.size-price-card:hover {
    border-color: #4CAF50;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.25);
}

.cld-size-price-option input[type="radio"]:checked + .size-price-card {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

.size-dimensions {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.size-usage {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.4;
    text-align: center;
    min-height: 36px;
}

.size-pricing {
    border-top: 2px solid #e0e0e0;
    padding-top: 15px;
    margin-top: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.price-item:first-child {
    margin-bottom: 8px;
}

.price-qty {
    font-size: 15px;
    font-weight: 500;
    color: #555;
}

.price-amount {
    font-size: 20px;
    font-weight: bold;
    color: #4CAF50;
}

/* Quantity Selection with Dynamic Pricing */
.cld-quantity-options-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.cld-quantity-price-option {
    cursor: pointer;
}

.cld-quantity-price-option input[type="radio"] {
    display: none;
}

.quantity-price-card {
    display: block;
    padding: 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.quantity-price-card:hover {
    border-color: #4CAF50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.cld-quantity-price-option input[type="radio"]:checked + .quantity-price-card {
    border-color: #4CAF50;
    background: #e8f5e9;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.quantity-number {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.quantity-price-display {
    display: block;
    font-size: 26px;
    font-weight: bold;
    color: #4CAF50;
}

/* Image Gallery */
.cld-image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
}

.cld-image-item {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    border: 3px solid #ddd;
    transition: all 0.3s ease;
}

.cld-image-item:hover {
    border-color: #4CAF50;
    transform: scale(1.05);
}

.cld-image-item.selected {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.3);
}

.cld-image-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.cld-image-item .checkmark {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    background: #4CAF50;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.cld-image-item.selected .checkmark {
    display: flex;
}

.cld-loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* Text Input */
.cld-input-group input[type="text"],
.cld-input-group input[type="email"],
.cld-input-group input[type="tel"],
.cld-input-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.cld-large-input {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    font-weight: 500;
}

.cld-input-group input:focus,
.cld-input-group textarea:focus,
.cld-large-input:focus {
    outline: none;
    border-color: #4CAF50;
}

.cld-input-group textarea {
    resize: vertical;
    font-family: inherit;
}

/* Customize Group */
.cld-customize-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cld-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.cld-input-group select {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 2px solid #ddd;
    border-radius: 5px;
    background: white;
}

.cld-slider-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cld-slider-container input[type="range"] {
    flex: 1;
}

.cld-slider-container span {
    min-width: 50px;
    font-weight: bold;
    color: #333;
}

.cld-color-input {
    display: flex;
    gap: 10px;
    align-items: center;
}

.cld-color-input input[type="color"] {
    width: 60px;
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
}

.cld-color-input input[type="text"] {
    flex: 1;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-family: monospace;
}

/* Preview */
.cld-preview-container {
    text-align: center;
}

.cld-canvas-wrapper {
    display: inline-block;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

#cld-preview-canvas {
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cld-preview-note {
    color: #666;
    font-size: 14px;
    font-style: italic;
}

.cld-preview-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 5px;
    padding: 15px;
    margin-top: 15px;
    text-align: left;
}

.cld-preview-disclaimer p {
    margin: 0;
    font-size: 13px;
    color: #856404;
    line-height: 1.5;
}

.cld-preview-disclaimer strong {
    color: #856404;
}

/* Add to Cart Button */
.cld-add-to-cart-button {
    width: 100%;
    background: #2196F3;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cld-add-to-cart-button:hover {
    background: #1976D2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4);
}

/* Cart Section */
.cld-cart-items {
    margin-top: 20px;
}

.cld-cart-item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}

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

.cld-cart-item-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.cld-cart-item-remove {
    background: #f44336;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.cld-cart-item-remove:hover {
    background: #d32f2f;
}

.cld-cart-item-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.cld-cart-item-detail {
    font-size: 14px;
}

.cld-cart-item-detail strong {
    display: block;
    color: #666;
    margin-bottom: 5px;
}

.cld-cart-item-preview {
    text-align: center;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.cld-cart-item-preview img {
    max-width: 300px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.cld-cart-item-price {
    text-align: right;
    font-size: 24px;
    font-weight: bold;
    color: #4CAF50;
    margin-top: 10px;
}

/* Cart Total */
.cld-cart-total {
    background: #4CAF50;
    color: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 18px;
}

.cart-total-price {
    font-size: 24px;
    font-weight: bold;
    border-top: 2px solid rgba(255, 255, 255, 0.5);
    padding-top: 15px;
    margin-top: 10px;
}

/* Customer Info */
.cld-payment-notice {
    background: #e3f2fd;
    border: 2px solid #2196F3;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.cld-payment-notice p {
    margin: 0;
    font-size: 15px;
    color: #1565c0;
    line-height: 1.5;
}

.cld-payment-notice strong {
    color: #0d47a1;
}

.cld-customer-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Submit Section */
.cld-submit-section {
    text-align: center;
}

.cld-payment-info {
    background: #e3f2fd;
    border: 2px solid #2196F3;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.cld-payment-info p {
    margin: 0;
    font-size: 16px;
    color: #1565c0;
    line-height: 1.5;
}

.cld-payment-info strong {
    color: #0d47a1;
}

.cld-submit-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cld-submit-button:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.cld-submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.cld-form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    display: none;
}

.cld-form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.cld-form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Responsive */
@media (max-width: 768px) {
    .cld-designer-wrapper {
        padding: 20px;
    }
    
    .cld-pricing-grid,
    .cld-combined-options,
    .cld-size-options-pricing,
    .cld-quantity-options-pricing,
    .cld-customize-group,
    .cld-customer-info,
    .cld-cart-item-details {
        grid-template-columns: 1fr;
    }
    
    .cld-image-gallery {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .cld-cart-item-preview img {
        max-width: 100%;
    }
}

/* ========================================
   NEW STYLES FOR v2.3.0
   ======================================== */

/* Floating Cart Badge */
.cld-floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.cld-floating-cart button {
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    position: relative;
    transition: all 0.3s ease;
}

.cld-floating-cart button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
}

.cld-floating-cart .cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #f44336;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
}

.cld-floating-cart:not(.has-items) .cart-badge {
    display: none;
}

.cld-floating-cart.has-items button {
    animation: cartPulse 2s infinite;
}

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

/* Cart Empty State */
.cld-cart-empty {
    text-align: center;
    padding: 40px 20px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #666;
}

.cld-cart-empty p {
    margin: 0;
    font-size: 16px;
}

/* Cart Pulse Animation */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
}

.cart-pulse {
    animation: pulse 0.6s;
}

/* Delivery Options */
.cld-delivery-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.cld-delivery-option {
    cursor: pointer;
}

.cld-delivery-option input[type="radio"] {
    display: none;
}

.delivery-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    border: 3px solid #ddd;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    text-align: center;
}

.cld-delivery-option input[type="radio"]:checked + .delivery-card {
    border-color: #4CAF50;
    background: #f1f8f4;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.delivery-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.delivery-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.delivery-price {
    font-size: 20px;
    font-weight: bold;
    color: #4CAF50;
    margin-bottom: 8px;
}

.delivery-description {
    font-size: 14px;
    color: #666;
}

.cld-delivery-address {
    margin-top: 30px;
    padding: 25px;
    background: #f9f9f9;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.cld-delivery-address h4 {
    margin-top: 0;
    color: #333;
}

/* Coupon Section */
.cld-coupon-input {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.cld-coupon-input input {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.cld-coupon-input button {
    padding: 12px 24px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cld-coupon-input button:hover {
    background: #45a049;
}

.cld-coupon-input button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.cld-coupon-input button.coupon-applied {
    background: #2196F3;
}

.cld-coupon-message {
    margin-top: 15px;
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
}

.cld-coupon-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.cld-coupon-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Order Total Summary */
.cld-order-total-summary {
    background: #f9f9f9;
    border: 2px solid #4CAF50;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.cld-order-total-summary .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.cld-order-total-summary .total-row:last-child {
    border-bottom: none;
}

.cld-order-total-summary .total-row span {
    font-size: 16px;
    color: #333;
}

.cld-order-total-summary .grand-total {
    font-size: 20px;
    font-weight: bold;
    color: #4CAF50;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #4CAF50;
}

/* Payment Info Update */
.cld-payment-info {
    background: #e3f2fd;
    border-left: 4px solid #2196F3;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.cld-payment-info p {
    margin: 0;
    color: #1565c0;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .cld-floating-cart {
        bottom: 20px;
        right: 20px;
    }
    
    .cld-floating-cart button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .cld-delivery-options {
        grid-template-columns: 1fr;
    }
    
    .cld-coupon-input {
        flex-direction: column;
    }
    
    .cld-coupon-input button {
        width: 100%;
    }
    
    .cld-order-total-summary .total-row span {
        font-size: 14px;
    }
    
    .cld-order-total-summary .grand-total {
        font-size: 18px;
    }
}

/* Success Banner Styles */
.cld-success-banner {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: slideDown 0.5s ease-out;
}

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

.cld-success-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cld-success-icon {
    font-size: 48px;
    background: rgba(255, 255, 255, 0.2);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cld-success-text {
    flex: 1;
}

.cld-success-text strong {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
}

.cld-success-text p {
    margin: 5px 0;
    font-size: 16px;
    opacity: 0.95;
}

.cld-order-number {
    font-size: 14px !important;
    opacity: 0.85 !important;
    font-style: italic;
}

/* Mobile adjustments for success banner */
@media (max-width: 600px) {
    .cld-success-banner {
        padding: 15px;
    }
    
    .cld-success-content {
        gap: 15px;
    }
    
    .cld-success-icon {
        font-size: 36px;
        width: 50px;
        height: 50px;
    }
    
    .cld-success-text strong {
        font-size: 18px;
    }
    
    .cld-success-text p {
        font-size: 14px;
    }
}
