:root {
--button-color: #3498db;
--price-color: #000000;;
}

.modal__container {
    overflow-y: scroll;
}

.dmd-ajax-product-area{
    padding: 0px 30px;
}

.dmd-ajax-product {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.dmd-ajax-product-image{
    flex: 0 0 40%;
    height: 500px;
    overflow: hidden;
}

.dmd-ajax-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.dmd-ajax-product-info {
    flex: 0 0 calc(60% - 30px);    
}

/* Mobile layout */
@media (max-width: 768px) {
    .dmd-ajax-product {
        flex-direction: column; /* Stack vertically */
    }

    .dmd-ajax-product-image,
    .dmd-ajax-product-info {
        flex: 0 0 100% !important;    /* Full width on mobile */
    }
}

/* Styles */

.dmd-ajax-product-info {
    font-family: inherit;
    color: #333;
    margin: 0 auto;
}

.dmd-ajax-product-info h2 {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    margin-top: 0px;
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: .6px;
}

.dmd-ajax-product-price {
    font-size: 22px;
    line-height: 1;
    color: var(--price-color);
    margin-bottom: 1.5rem;
}

.dmd-ajax-product-price del {
    font-size: 17px;
}

.dmd-ajax-product-price .amount {
    color: var(--price-color);
}

.dmd-ajax-product-description {
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
}

.dmd-ajax-product-description p {
    margin-bottom: 1rem;
}

/* Form styling */
/*.dmd-ajax-product-info form.cart {*/
/*    background: #f8f9fa;*/
/*    padding: 2rem;*/
/*    border-radius: 12px;*/
/*    border: 1px solid #e9ecef;*/
/*}*/

.dmd-ajax-product-info form p {
    margin-bottom: 1.5rem;
}

.dmd-ajax-product-info label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-size: 0.95rem;
}

/* Variation dropdown styling */
.dmd-ajax-product-info select {
    width: calc(100% - 35px);
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 0px;
    background: white;
    font-size: 1rem;
    color: #333;
    line-height: 1.8 !important;
    padding: 6px 12px !important;
    font-size: 13px !important;
}

.dmd-ajax-product-info select:focus {
    outline: none;
}

/* Quantity input styling */
.dmd-ajax-product-info input[type="number"], .dmd-ajax-product-info textarea {
    width: calc(100% - 35px);
    border: 1px solid #ddd;
    border-radius: 0px;
    color: #333;
    transition: all 0.3s ease;
    font-family: inherit;
    padding: 6px 12px;
    font-size: 13px;
}

.dmd-ajax-product-info input[type="number"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Button styling */
.single_add_to_cart_button {
    width: 100%;
    background: var(--button-color);
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single_add_to_cart_button:hover {
    background: var(--button-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.single_add_to_cart_button:active {
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .dmd-ajax-product-info {
        width: 100%;
    }
    
    .dmd-ajax-product-info h2 {
        font-size: 24px;
        line-height: 1.4;
        letter-spacing: .6px;
    }
    
    .dmd-ajax-product-price {
        font-size: 22px;
        line-height: 1;
    }
    
    .dmd-ajax-product-info input[type="number"], .dmd-ajax-product-info textarea, .dmd-ajax-product-info select {
        width: 100%;
    }
    
    /*.dmd-ajax-product-info form.cart {*/
    /*    padding: 1.5rem;*/
    /*}*/
}

/* Focus states for accessibility */
.dmd-ajax-product-info select:focus-visible,
.dmd-ajax-product-info input:focus-visible,
.single_add_to_cart_button:focus-visible {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Custom scrollbar for dropdowns */
.dmd-ajax-product-info select::-webkit-scrollbar {
    width: 8px;
}

.dmd-ajax-product-info select::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.dmd-ajax-product-info select::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.dmd-ajax-product-info select::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.dmd-ajax-product-loading {
  display: flex;
  justify-content: center;  /* Horizontal center */
  align-items: center;      /* Vertical center */
  height: 500px;            /* Set a height for the container */
  width: 100%;
}

.dmd-ajax-product-loading img {
    width: 200px;
  max-width: 100%;   /* Responsive scaling */
  height: auto;
}
