/* Infomercial Style CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
    background-size: 400% 400%;
    animation: rainbowBackground 5s ease infinite;
    overflow-x: hidden;
}

@keyframes rainbowBackground {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Banner */
.banner {
    background: linear-gradient(45deg, #ff0000, #ffff00);
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid gold;
}

.flashing-text {
    font-size: 24px;
    font-weight: bold;
    animation: flash 0.5s infinite alternate;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

@keyframes flash {
    0% { opacity: 1; color: #ffff00; }
    100% { opacity: 0.7; color: #ff0000; }
}

.main-title {
    font-family: 'Impact', sans-serif;
    font-size: 4rem;
    margin: 10px 0;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.7);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.big-claim {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #ffff00;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    margin-bottom: 20px;
    animation: shake 1s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.hero-text {
    font-size: 1.8rem;
    margin-bottom: 40px;
    line-height: 1.4;
}

.highlight {
    background: linear-gradient(45deg, #ff6b6b, #ffff00);
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 0 10px rgba(255,255,0,0.8); }
    100% { box-shadow: 0 0 20px rgba(255,107,107,0.8); }
}

.before-after {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.before-after-item {
    text-align: center;
}

.image-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 10px;
    border: 5px solid #ffff00;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.bald {
    background: linear-gradient(45deg, #ffecd2, #fcb69f);
}

.hairy {
    background: linear-gradient(45deg, #a8edea, #fed6e3);
    animation: hairGrow 3s infinite;
}

@keyframes hairGrow {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.arrow {
    font-size: 3rem;
    animation: moveRight 2s infinite;
}

@keyframes moveRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

/* Problem Section */
.problem {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 60px 0;
    text-align: center;
}

.problem h2 {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.problem-item {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    transform: translateY(-10px);
}

.problem-emoji {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: wobble 2s infinite;
}

@keyframes wobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

/* Solution Section */
.solution {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.solution-title {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    animation: pulse 2s infinite;
}

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

.product-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.product-image {
    position: relative;
}

.product-box {
    font-size: 8rem;
    animation: float 3s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.sparkles {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    font-size: 2rem;
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: rotate(0deg); }
    50% { opacity: 0.5; transform: rotate(180deg); }
}

.features-list {
    list-style: none;
    text-align: left;
    font-size: 1.2rem;
}

.features-list li {
    margin: 15px 0;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    animation: slideInLeft 0.5s ease;
}

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

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 60px 0;
    text-align: center;
}

.testimonials h2 {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.testimonial:nth-child(even) {
    transform: rotate(2deg);
}

.testimonial:hover {
    transform: rotate(0deg) scale(1.05);
}

.customer-photo {
    font-size: 4rem;
    margin-bottom: 15px;
    animation: headBob 3s infinite;
}

@keyframes headBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Science Section */
.science {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    padding: 60px 0;
    text-align: center;
}

.science h2 {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
}

.science-content {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.fake-chart {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.chart {
    display: flex;
    align-items: end;
    gap: 20px;
    height: 200px;
    margin-top: 20px;
}

.bar {
    flex: 1;
    position: relative;
}

.bar-fill {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: end;
    justify-content: center;
    color: white;
    font-weight: bold;
    padding: 10px 5px;
    font-size: 0.8rem;
    animation: growUp 2s ease;
}

@keyframes growUp {
    from { height: 0; }
    to { height: 100%; }
}

.science-facts {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: left;
}

.science-facts ul {
    list-style: none;
    margin: 20px 0;
}

.science-facts li {
    margin: 10px 0;
    font-size: 1.1rem;
}

.disclaimer {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    margin-top: 20px;
}

/* Pricing */
.pricing {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    padding: 60px 0;
    text-align: center;
}

.pricing h2 {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    color: #333;
    margin-bottom: 40px;
    animation: bounce 2s infinite;
}

.price-comparison {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.old-price {
    font-size: 2rem;
    color: #666;
}

.crossed-out {
    text-decoration: line-through;
    opacity: 0.6;
}

.new-price {
    font-size: 4rem;
    color: #ff0000;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: flash 1s infinite alternate;
}

.bonuses {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.bonus {
    background: rgba(255,255,255,0.9);
    padding: 15px 25px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-weight: bold;
    animation: wiggle 2s infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(1deg); }
    75% { transform: rotate(-1deg); }
}

.guarantee {
    background: rgba(255,255,255,0.9);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 40px;
    border: 3px solid #ff0000;
}

.guarantee h3 {
    color: #ff0000;
    font-size: 2rem;
    margin-bottom: 15px;
}

/* Call to Action */
.cta {
    background: linear-gradient(45deg, #ff0000, #ffff00);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.urgency h2 {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
    animation: flash 0.5s infinite alternate;
}

.countdown {
    font-size: 3rem;
    font-weight: bold;
    color: #ffff00;
    animation: countdown 1s infinite;
}

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

.warning {
    font-size: 1.2rem;
    margin: 20px 0;
    font-style: italic;
}

.order-button {
    font-family: 'Impact', sans-serif;
    font-size: 3rem;
    background: linear-gradient(45deg, #00ff00, #ffff00);
    color: #000;
    border: 5px solid #ff0000;
    padding: 20px 40px;
    border-radius: 15px;
    cursor: pointer;
    margin: 30px 0;
    animation: buttonPulse 1s infinite;
    transition: transform 0.3s ease;
}

.order-button:hover {
    transform: scale(1.1);
}

@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255,255,0,0.8); }
    50% { box-shadow: 0 0 40px rgba(0,255,0,0.8); }
}

.phone-number {
    font-size: 2rem;
    font-weight: bold;
    margin: 20px 0;
}

.operators {
    font-size: 1.2rem;
    font-style: italic;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.flash {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideInRight 0.5s ease-out;
}

.flash-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-left: 5px solid #155724;
}

.flash-error {
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    border-left: 5px solid #721c24;
}

.flash-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #212529;
    border-left: 5px solid #856404;
}

.flash-info {
    background: linear-gradient(135deg, #17a2b8, #6f42c1);
    color: white;
    border-left: 5px solid #0c5460;
}

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

/* Order Form Styles */
.order-form-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border-left: 5px solid #007bff;
}

.form-section h3 {
    color: #dc3545;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #495057;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ced4da;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
    transform: translateY(-2px);
}

.submit-section {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 15px;
    color: white;
}

.submit-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 20px;
    border-radius: 20px;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

.celebration {
    font-size: 3rem;
    margin-bottom: 30px;
    animation: bounce 2s ease-in-out infinite;
}

.success-banner {
    background: linear-gradient(45deg, #28a745, #20c997) !important;
}

.tracking-info {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border-left: 5px solid #2196f3;
}

.tracking-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1976d2;
    background: white;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    margin: 10px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Customer Database Styles */
.customers-section {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 20px;
    border-radius: 20px;
}

.customers-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #6f42c1, #e83e8c);
    color: white;
    border-radius: 15px;
}

.customers-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.customers-table-container {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.customers-table {
    width: 100%;
    border-collapse: collapse;
}

.customers-table th {
    background: linear-gradient(135deg, #495057, #6c757d);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.customers-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.customers-table tbody tr:hover {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.customer-email {
    color: #007bff;
    text-decoration: none;
}

.customer-email:hover {
    text-decoration: underline;
}

.hair-type-badge,
.baldness-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.hair-type-badge {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #212529;
}

.baldness-badge {
    background: linear-gradient(135deg, #dc3545, #e83e8c);
    color: white;
}

.created-date {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
}

.action-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #212529;
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Data Insights */
.data-insights {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.insight-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid;
}

.insight-popular {
    border-left-color: #28a745;
}

.insight-growth {
    border-left-color: #17a2b8;
}

.insight-location {
    border-left-color: #ffc107;
}

.insight-card h4 {
    color: #495057;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.insight-value {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
    display: block;
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .big-claim {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1.4rem;
    }
    
    .before-after {
        flex-direction: column;
        gap: 20px;
    }
    
    .image-placeholder {
        width: 120px;
        height: 120px;
        font-size: 3rem;
    }
    
    .product-showcase {
        flex-direction: column;
        gap: 30px;
    }
    
    .science-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 20px;
    }
    
    .bonuses {
        flex-direction: column;
        gap: 15px;
    }
    
    .order-button {
        font-size: 2rem;
        padding: 15px 30px;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .customers-table-container {
        overflow-x: auto;
    }
    
    .customers-table {
        min-width: 800px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* Flask Application Styles - Order Forms, Customer Pages, etc. */

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
}

.flash {
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: slideInRight 0.5s ease-out;
}

.flash-success {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    border: 2px solid #20c997;
}

.flash-error {
    background: linear-gradient(45deg, #dc3545, #fd7e14);
    color: white;
    border: 2px solid #fd7e14;
}

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

/* Order Form Styles */
.order-form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    min-height: 100vh;
}

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

.order-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4ecdc4;
    box-shadow: 0 0 10px rgba(78, 205, 196, 0.3);
}

.order-submit-button {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    padding: 20px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.order-submit-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Customer Page Styles */
.customers-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    min-height: 100vh;
}

.customers-table {
    width: 100%;
    border-collapse: collapse;
}

.customers-table th {
    background: linear-gradient(45deg, #4ecdc4, #44a08d);
    color: white;
    padding: 20px 15px;
    text-align: left;
    font-weight: bold;
}

.customers-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

/* Thank You Page Styles */
.thank-you-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0;
    min-height: 80vh;
}

.celebration h2 {
    color: #ff6b6b;
    font-size: 3em;
    margin: 20px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .order-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
