/* Popup Styles */
.enquiry-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.enquiry-popup-container {
    background: #fff;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    border-radius: 5px;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Size Buttons */
.enquiry-size-buttons {
    margin: 20px 0;
}

.size-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.enquiry-size-button {
    padding: 8px 15px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.enquiry-size-button:hover {
    background: #e8e8e8;
}

.enquiry-size-button.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Enquire Button */
.enquire-now-button {
    width: 100%;
    background: #000 !important;
    color: #fff !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.enquire-now-button:hover {
    background: #74A32F !important;
}

.enquire-now-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}