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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #ff6b35 0%, #1a1a1a 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    min-height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

/* Header */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    margin-bottom: 5px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.logo-icon {
    font-size: 18px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #1a1a1a);
    border-radius: 50%;
    color: white;
}

.logo-image {
    max-width: 60%;
    max-height: 70%;
    display: block;
    object-fit: contain;
}

.logo-text {
    font-size: 16px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

/* Progress Bar */
.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    border-radius: 4px;
    transition: width 0.3s ease;
    width: 20%;
}

.progress-text {
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Step Content */
.step {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content {
    background: white;
    border-radius: 20px;
    padding: 30px 20px 80px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.step-content h1 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

.subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Checkbox Styles */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.checkbox-item {
    cursor: pointer;
    display: block;
}

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

.checkbox-custom {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    transition: all 0.3s ease;
    gap: 15px;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #ff6b35, #1a1a1a);
    border-color: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.checkbox-icon {
    font-size: 24px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    flex-shrink: 0;
}

.platform-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.other-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.checkbox-text h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.checkbox-text p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* Button Styles */
.button-group {
    display: flex;
    gap: 15px;
    align-items: center;
    position: sticky;
    bottom: 0;
    background: white;
    padding: 20px 0;
    margin: 0 -20px -20px -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-top: 1px solid #e9ecef;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.add-product-btn {
    padding: 18px 25px;
    background: #28a745;
    color: white;
    border: 2px solid #28a745;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-right: 15px;
}

.add-product-btn:hover {
    background: #218838;
    border-color: #1e7e34;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.back-btn {
    padding: 18px 25px;
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.back-btn:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    transform: translateY(-1px);
}

.next-btn {
    flex: 1;
    padding: 18px;
    background: linear-gradient(135deg, #ff6b35, #1a1a1a);
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.next-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.next-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.product-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.product-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card.selected {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff5f0, #ffe6d9);
}

.product-image {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ff6b35;
    position: relative;
}



.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.product-info {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 60px;
}

.product-title {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 15px;
    font-weight: 700;
    color: #ff6b35;
    margin: 0;
}

/* Selected Summary */
.selected-summary {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.selected-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.selected-item:last-child {
    border-bottom: none;
}

.total-price {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid #ff6b35;
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
    text-align: right;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group select {
    cursor: pointer;
}

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

/* Form Note */
.form-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
    padding: 12px;
    background: #e3f2fd;
    border-radius: 8px;
    border-left: 3px solid #2196f3;
    font-size: 14px;
    color: #1976d2;
    line-height: 1.4;
}

.note-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Custom Info Section */
.custom-info-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.custom-info-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.4;
}

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

/* Preview Card */
.preview-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}

.preview-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.qr-preview {
    text-align: center;
    flex-shrink: 0;
}

.qr-code {
    font-size: 48px;
    margin-bottom: 8px;
}

.qr-preview p {
    font-size: 12px;
    color: #7f8c8d;
    margin: 0;
}

.business-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2c3e50;
}

.business-info p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

/* Loading Spinner */
.checkout-loading {
    text-align: center;
    padding: 40px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e9ecef;
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.checkout-loading h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.checkout-loading p {
    color: #7f8c8d;
    font-size: 16px;
}

/* Order Summary */
.order-summary {
    margin-bottom: 30px;
}

.order-summary h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.order-items {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 12px;
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    object-fit: cover;
}

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

.order-item-name {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    line-height: 1.3;
}

.order-item-price {
    font-size: 13px;
    color: #7f8c8d;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #e9ecef;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    border-color: #ff6b35;
    background: #fff5f0;
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quantity-display {
    min-width: 40px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.order-total {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 2px solid #e9ecef;
}

.total-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.total-line:last-child {
    margin-bottom: 0;
}

.total-final {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    padding-top: 10px;
    border-top: 2px solid #e9ecef;
    margin-top: 10px;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .header {
        padding: 6px 0;
        margin-bottom: 4px;
    }
    
    .logo {
        padding: 6px 12px;
        gap: 6px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .logo-text {
        font-size: 14px;
    }
    
    .step-content {
        padding: 25px 15px 80px 15px;
    }
    
    .button-group {
        margin: 0 -15px -15px -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .step-content h1 {
        font-size: 24px;
    }
    
    .checkbox-custom {
        padding: 15px;
    }
    
    .checkbox-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .platform-logo {
        width: 26px;
        height: 26px;
    }
    
    .other-icon {
        font-size: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-info {
        padding: 8px;
        min-height: 50px;
    }
    
    .product-title {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
    
    .product-price {
        font-size: 14px;
    }
    
    .preview-content {
        flex-direction: column;
        text-align: center;
    }
    
    .button-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .add-product-btn {
        padding: 15px 20px;
        font-size: 16px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .back-btn {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .next-btn {
        padding: 15px;
        font-size: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .shipping-section {
        padding: 20px;
    }
}

/* Importance Section */
.importance-section {
    margin-bottom: 40px;
}

.importance-point {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
}

.importance-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.importance-text h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.importance-text p {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.research-link {
    font-size: 12px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.research-link:hover {
    color: #1a1a1a;
    text-decoration: underline;
}

/* Pain Points Section */
.pain-points-section {
    margin-bottom: 40px;
}

.pain-points-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
}

.pain-points-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 25px;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #fff5f5;
    border: 2px solid #fed7d7;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(254, 215, 215, 0.3);
    border-color: #feb2b2;
}

.pain-point-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pain-point-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    line-height: 1.3;
}

.pain-point-content p {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.4;
    margin: 0;
}

/* Solution Section */
.solution-section {
    margin-bottom: 40px;
}

.solution-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 10px;
}

.solution-subtitle {
    text-align: center;
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 25px;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.solution-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f0f9ff;
    border: 2px solid #bae6fd;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.solution-point:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(186, 230, 253, 0.3);
    border-color: #7dd3fc;
}

.solution-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.solution-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    line-height: 1.3;
}

.solution-content p {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.4;
    margin: 0;
}

.solution-highlight {
    background: linear-gradient(135deg, #ff6b35, #1a1a1a);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: white;
}

.highlight-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
}

.highlight-content strong {
    font-weight: 700;
    color: #ffd700;
}

/* Trust Badges Section */
.trust-badges-section {
    margin-bottom: 30px;
}

.trust-badges-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 20px;
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
    background: #fff5f0;
}

.badge-icon {
    font-size: 28px;
    margin-bottom: 8px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-content h3 {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 4px;
    line-height: 1.2;
}

.badge-content p {
    font-size: 11px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.3;
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 30px;
}

.testimonials-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 25px;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
    max-width: 100%;
    padding: 4px 56px; /* create safe area for nav buttons and hover effect */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 107, 53, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.carousel-btn:hover {
    background: rgba(255, 107, 53, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.carousel-prev {
    left: 12px;
}

.carousel-next {
    right: 12px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e9ecef;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #ff6b35;
    opacity: 0.7;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    width: 100%;
    max-width: 100%;
}


.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e9ecef;
    flex-shrink: 0;
}

.testimonial-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Very small screens - single column for products */
@media (max-width: 360px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-image {
        height: 100px;
    }
    
    .product-info {
        padding: 6px;
        min-height: 45px;
    }
    
    .product-title {
        font-size: 11px;
    }
    
    .product-price {
        font-size: 13px;
    }
    
    .importance-point {
        padding: 15px;
        gap: 12px;
    }
    
    .importance-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .importance-text h3 {
        font-size: 16px;
    }
    
    .importance-text p {
        font-size: 13px;
    }
    
    .testimonials-section h2 {
        font-size: 20px;
    }
    
    .testimonial-card {
        padding: 15px;
    }
    
    .testimonial-avatar {
        width: 40px;
        height: 40px;
    }
    
    .testimonial-info h4 {
        font-size: 14px;
    }
    
    .testimonial-text {
        font-size: 13px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
    
    .carousel-container {
        padding: 4px 44px; /* slightly smaller safe area on mobile with hover space */
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .pain-point {
        padding: 12px;
        gap: 10px;
    }
    
    .pain-point-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .pain-point-content h3 {
        font-size: 13px;
    }
    
    .pain-point-content p {
        font-size: 11px;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .solution-point {
        padding: 12px;
        gap: 10px;
    }
    
    .solution-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .solution-content h3 {
        font-size: 13px;
    }
    
    .solution-content p {
        font-size: 11px;
    }
    
    .solution-highlight {
        padding: 16px;
    }
    
    .highlight-content h3 {
        font-size: 16px;
    }
    
    .highlight-content p {
        font-size: 13px;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .trust-badge {
        padding: 12px 8px;
        flex-direction: row;
        text-align: left;
        gap: 12px;
    }
    
    .badge-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .badge-content h3 {
        font-size: 13px;
    }
    
    .badge-content p {
        font-size: 10px;
    }
    
    .order-item {
        padding: 12px;
        gap: 12px;
    }
    
    .order-item-image {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .order-item-name {
        font-size: 13px;
    }
    
    .order-item-price {
        font-size: 12px;
    }
    
    .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .quantity-display {
        min-width: 35px;
        font-size: 14px;
    }
    
    .order-total {
        padding: 15px;
    }
    
    .total-line {
        font-size: 13px;
    }
    
    .total-final {
        font-size: 16px;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-message {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    text-align: center;
    line-height: 1.3;
    max-width: 120px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    cursor: pointer;
}

.whatsapp-float:hover .whatsapp-button {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
        gap: 6px;
    }
    
    .whatsapp-message {
        font-size: 11px;
        padding: 6px 8px;
        max-width: 100px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 70px;
        right: 10px;
        gap: 5px;
    }
    
    .whatsapp-message {
        font-size: 10px;
        padding: 5px 6px;
        max-width: 90px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
} 