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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    min-height: 100vh;
    color: #333;
}

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

/* Header */
.header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.logo h1 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
}

.logo p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 300;
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 30px;
}

/* Product Showcase */
.product-showcase {
    display: flex;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    gap: 40px;
}

.product-info {
    flex: 1;
}

.promo-badge {
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 20px;
}

.price-container {
    margin-bottom: 20px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #00b894;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #636e72;
    font-size: 1.1rem;
    background: rgba(0, 184, 148, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #00b894;
}

.delivery-info i {
    color: #00b894;
    font-size: 1.2rem;
}

.product-image {
    flex: 1;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.product-image img:hover {
    transform: scale(1.05);
}

/* Region Selection Button */
.region-selection-button {
    padding: 40px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.select-region-btn {
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin: 0 auto;
    min-width: 280px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 184, 148, 0.3);
}

.select-region-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
    background: linear-gradient(135deg, #00a085 0%, #008f75 100%);
}

.select-region-btn i:first-child {
    font-size: 1.3rem;
}

.select-region-btn i:last-child {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.select-region-btn.active i:last-child {
    transform: rotate(180deg);
}

/* Attendant Section */
.attendant-section {
    padding: 40px;
    border-top: 1px solid #e9ecef;
    background: rgba(0, 184, 148, 0.05);
}

.attendant-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.attendant-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.attendant-avatar {
    font-size: 3rem;
    color: #00b894;
}

.attendant-details h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 5px;
}

.attendant-details p {
    color: #636e72;
    font-size: 1rem;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.veroque-badge {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .product-showcase {
        flex-direction: column;
        padding: 30px 20px;
        gap: 30px;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .region-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .attendant-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .attendant-details {
        text-align: center;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 10px;
}

.modal-header p {
    color: #636e72;
    font-size: 1rem;
    margin: 0;
}

.modal-body {
    padding: 20px 30px 30px;
}

.region-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.region-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: #f8f9fa;
}

.region-option:hover {
    background: rgba(0, 184, 148, 0.05);
    border-color: rgba(0, 184, 148, 0.2);
    transform: translateX(5px);
}

.region-option.available {
    border-color: rgba(0, 184, 148, 0.3);
}

.region-option.available:hover {
    border-color: #00b894;
    background: rgba(0, 184, 148, 0.1);
}

.region-option.unavailable {
    opacity: 0.6;
    cursor: not-allowed;
    border-color: rgba(220, 220, 220, 0.5);
}

.region-option.unavailable:hover {
    transform: none;
    background: #f8f9fa;
    border-color: rgba(220, 220, 220, 0.5);
}

.option-icon {
    font-size: 1.5rem;
    color: #00b894;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.region-option.unavailable .option-icon {
    color: #bbb;
}

.option-info {
    flex: 1;
}

.option-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3436;
    margin: 0 0 5px 0;
}

.option-info .status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
}

.option-info .status.available {
    color: #00b894;
}

.option-info .status.available i {
    color: #00b894;
    font-size: 0.6rem;
}

.option-info .status.unavailable {
    color: #e74c3c;
}

.option-info .status.unavailable i {
    color: #e74c3c;
    font-size: 0.6rem;
}

.option-arrow {
    font-size: 1rem;
    color: #636e72;
    margin-left: 15px;
}

.region-option.available .option-arrow {
    color: #00b894;
}

.region-option.unavailable .option-arrow {
    color: #e74c3c;
}

/* Mobile Modal Styles */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 85vh;
        margin: 20px;
    }
    
    .modal-header {
        padding: 25px 20px 15px;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 15px 20px 25px;
    }
    
    .region-option {
        padding: 15px;
    }
    
    .option-icon {
        margin-right: 15px;
        font-size: 1.3rem;
    }
    
    .option-info h4 {
        font-size: 1.1rem;
    }
    
    .select-region-btn {
        min-width: 250px;
        padding: 18px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 2.2rem;
    }
    
    .region-selection,
    .attendant-section {
        padding: 30px 20px;
    }
}

