/* Ensure modal select buttons are always visible */
#customProductModal .select-product,
.custom-modal .select-product,
.product-card .select-product,
.product-grid .select-product {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.bundle-configurator
{
    margin-top: 15px;
}

/* Frontend Bundle Configurator Styles */
.bundle-configurator .nav-tabs .nav-link {
    border: 1px solid #000000;
    font-weight: 500;
    padding: 4px 24px;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: #000000;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.bundle-configurator .nav-tabs .nav-link:hover {
    border-color: #000000;
    color: #FFFFFF;
    background: #000000;
}

.bundle-configurator .nav-tabs li.active .nav-link
{
    color: #FFFFFF;
    background: #000000;
    border-color: #000000;
}

.configuration-container {
    padding: 15px;
    margin-bottom: 20px;
    box-shadow: 0 0 12px #00000029;
}

.configuration-container:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.configuration-container h4 {
    font-size: 24px;
    font-weight: bolder;
    margin-bottom: 15px;
    text-align: left;
}

.product-selection {
    margin-bottom: 20px;
}

.bundle-total {
    padding: 15px;
    margin-top: 20px;
    text-align: right;
    font-size: 24px;
}

.bundle-total-price {
    font-weight: 600;
    color: #f60;
}

.bundle-actions {
    text-align: right;
    margin-bottom: 15px;
}

.bundle-actions .add-bundle-to-cart
{
    border-radius: 0;
    background-color: #f60;
    border-color: #f60;
}

/* New Selected Product Card Styles */
.selected-product-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #000000;
    border-radius: 8px;
    justify-content: space-around;
}

.selected-product-card .selected-product-card-info
{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.selected-product-card-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selected-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.selected-product-card-image .no-image-placeholder {
    font-size: 0.8rem;
    color: #6c757d;
}

.selected-product-card-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-self: flex-start;
    text-align: left;
}

.selected-product-card-name {
    font-weight: 600;
    font-size: 20px;
    color: #000;
}


.selected-product-combination-attributes
{
    font-size: 18px;
    color: #000000;
    margin-top: 10px;
    margin-bottom: 10px;
}

.selected-product-variant small {
    color: #6c757d;
    font-size: 0.85rem;
}

.selected-product-card-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.selected-product-card-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.unit-price {
    font-size: 18px;
    color: #6c757d;
}

.total-price {
    font-weight: 600;
    font-size: 18px;
    text-align: left;
    min-width: 80px;
}

.regular-total {
    font-weight: 600;
    font-size: 18px;
    color: #343a40;
}

.discounted-total {
    font-weight: 600;
    font-size: 18px;
    color: #e63946;
    margin-right: 0.5rem;
}

.original-total {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 18px;
}

.selected-product-card-actions {
    flex-shrink: 0;
    margin-left: 1rem;
}

/* Remove button icon styles */
.remove-selection-btn {
    background-color: transparent;
    border: none;
    color: #868e96;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-selection-btn:hover {
    background-color: #f1f3f5;
    color: #e63946;
    transform: scale(1.1);
}

.remove-selection-btn .remove-icon {
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
}

/* Enhanced Quantity Selector for Selected Products */
.selected-product-card .quantity-selector {
    display: flex;
    align-items: center;
}

.selected-product-card .quantity-btn {
    background-color: #f1f3f5;
    border: 1px solid #dee2e6;
    color: #495057;
    cursor: pointer;
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.selected-product-card .quantity-btn:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.selected-product-card .quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    height: 30px;
    font-size: 1rem;
    font-weight: 600;
    -moz-appearance: textfield;
    padding: 0;
    color: #212529;
}

.selected-product-card .quantity-input::-webkit-outer-spin-button,
.selected-product-card .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.selected-product-placeholder
{
    margin-bottom: 20px;
}

.choose-product-btn {
    padding: 10px 20px;
    transition: all 0.3s
    ease;
    color: #000000;
    border-radius: 50px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.choose-product-btn:hover {
    background-color: #dddddd;
}

.add-bundle-to-cart {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,123,255,0.2);
}

.add-bundle-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,123,255,0.3);
}

.add-bundle-to-cart:disabled {
    transform: none;
    box-shadow: none;
    opacity: 0.6;
}

/* Custom Modal Styles */
.custom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1050;
}

.custom-modal.show {
    display: block;
}

.custom-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.custom-modal-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.custom-modal-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 80%;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.custom-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.custom-modal-header h4 {
    margin: 0;
    font-size: 24px;
    font-weight: normal;
    color: #000000;
}

.custom-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.custom-modal-close:hover {
    background-color: #f8f9fa;
    color: #495057;
}

.custom-modal-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    background: #eef4f7;
}

.custom-modal-footer {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.custom-modal-btn {
    padding: 10px 16px;
    font-size: 16px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: white;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-modal-btn:hover {
    background-color: #f8f9fa;
}

.custom-modal-btn-secondary {
    background-color: #714B67;
    border-color: #714B67;
    color: white;
}

.custom-modal-btn-secondary:hover {
    background-color: #5e3d55;
    border-color: #5e3d55;
}

/* Ensure modal is visible when shown */
#customProductModal.show {
    display: block !important;
}

#customProductModal.show .custom-modal-backdrop {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Fallback modal styles for when Bootstrap is not working */
#productSelectionModal[style*="display: block"] {
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
}

#productSelectionModal[style*="display: block"] .modal-dialog {
    transform: none;
    margin: 1.75rem auto;
}

/* Ensure modal backdrop is visible */
.modal-backdrop {
    z-index: 1040;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 10px 0;
}

.product-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-color: #007bff;
}

.product-image {
    height: 150px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 15px;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    line-height: 1.3;
    height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 12px;
}

.product-card .select-product {
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.product-card .select-product:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,123,255,0.3);
}

/* Responsive design */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .product-image {
        height: 120px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
    
    .bundle-configurator {
        padding: 15px;
    }
    
    .configuration-container {
        padding: 15px 0;
    }

    .custom-modal-container {
        width: 95%;
        max-height: 95vh;
    }

    .custom-modal-header,
    .custom-modal-body,
    .custom-modal-footer {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
    
    .product-image {
        height: 100px;
    }
    
    .selected-product {
        padding: 12px !important;
    }
    
    .selected-product-image {
        margin-right: 10px !important;
    }
    
    .selected-product-image img {
        width: 50px !important;
        height: 50px !important;
    }

    .custom-modal-container {
        width: 98%;
        max-height: 98vh;
    }

    .custom-modal-header,
    .custom-modal-body,
    .custom-modal-footer {
        padding: 10px;
    }
}

/* Loading Spinner */
.spinner-border {
    color: #007bff;
}

/* Success Message */
.alert-success {
    border-left: 4px solid #28a745;
    background: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

/* Animation for product selection */
.selected-product {
    animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Empty state styling */
.alert-warning {
    border-left: 4px solid #ffc107;
    background: #fff3cd;
    color: #856404;
    border-color: #ffeaa7;
}

/* Quantity Selector Styles */
.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-selector .quantity-btn {
    background-color: #f1f3f5;
    border: 1px solid #dee2e6;
    color: #495057;
    cursor: pointer;
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
    font-weight: 400;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.quantity-selector .quantity-btn:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.quantity-selector .quantity-btn:disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.quantity-selector .quantity-input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    height: 30px;
    font-size: 18px;
    font-weight: 600;
    -moz-appearance: textfield;
    padding: 0;
    color: #212529;
}

.quantity-selector .quantity-input::-webkit-outer-spin-button,
.quantity-selector .quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Discount Info Styles */
.discount-info {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.discount-info .discount-icon {
    margin-right: 0.5rem;
    color: #007bff;
    font-size: 1.1rem;
}

.bundle-total-discount {
    font-size: 14px;
    color: #28a745;
    font-weight: 600;
    margin-left: 10px;
    display: none;
}

/* New Modal Styles */
.modal-price-container {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.modal-discounted-price {
    color: #e63946; /* A more distinct "sale" color */
    margin-right: 0.5rem;
}

.modal-original-price {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 18px;
}

.modal-regular-price {
    color: #343a40;
}

.quantity-selector-modal {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.quantity-btn-modal {
    background-color: #f1f3f5;
    border: 1px solid #ced4da;
    color: #495057;
    cursor: pointer;
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
    border-radius: 50%;
    transition: background-color 0.2s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn-modal:hover {
    background-color: #007bff;
    color: #fff;
    transform: scale(1.1);
}

.quantity-btn-modal:disabled {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.quantity-input-modal {
    width: 60px;
    text-align: center;
    border: 1px solid #ced4da;
    height: 32px;
    font-size: 1rem;
    font-weight: 600;
    -moz-appearance: textfield;
    margin: 0;
    border-left: none;
    border-right: none;
}

.quantity-input-modal::-webkit-outer-spin-button,
.quantity-input-modal::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Attribute Selector Styles */
.attribute-group {
    margin-bottom: 0.75rem;
}

.attribute-group-name {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.attribute-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.attribute-button {
    border-radius: 20px !important;
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    transition: all 0.2s ease-in-out;
}

.attribute-button.active {
    font-weight: bold;
}

/* Enhanced Combination Selector Styles */
.combination-selector {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 1rem;
    color: #007bff !important;
}

.combination-selector .form-label {
    color: #495057;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.combination-selector .form-control {
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.combination-selector .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.combination-details {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 4px;
    padding: 8px 12px;
    margin-top: 8px;
}

.combination-details .text-muted {
    color: #1976d2 !important;
    font-size: 0.85rem;
}

/* Enhanced Product Card Styles */
.product-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.product-card.out-of-stock {
    opacity: 0.6;
    filter: grayscale(30%);
}

.product-card.out-of-stock::after {
    content: "Out of Stock";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.product-image {
    height: 160px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-info {
    padding: 16px;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 12px;
}

.product-card .select-product {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 10px 16px;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .select-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,123,255,0.3);
}

.product-card .select-product:disabled {
    transform: none;
    box-shadow: none;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Stock Info Styles */
.stock-info {
    margin-bottom: 8px;
    font-weight: 500;
}

.stock-info.text-success {
    color: #28a745 !important;
}

.stock-info.text-danger {
    color: #dc3545 !important;
}

/* Modal Line Total Styles */
.modal-line-total {
    font-weight: 600;
    font-size: 18px;
}

/* Form Label Enhancements */
.form-label.fw-bold {
    font-weight: 600 !important;
}

.form-label.text-primary {
    color: #007bff !important;
}

/* Quantity Selector Enhancements */
.quantity-selector-modal .form-label {
    margin-bottom: 6px;
    color: #495057;
}

.quantity-selector-modal .d-flex {
    gap: 4px;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .combination-selector {
        padding: 10px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
    
    .combination-selector .form-control {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .product-image {
        height: 140px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .combination-selector {
        padding: 8px;
    }
    
    .modal-line-total {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
}

/* Variants Badge */
.variants-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #007bff;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    z-index: 2;
    pointer-events: none;
}

/* New Modal Styles */
.product-grid {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.product-card-modal {
    display: flex;
    flex-direction: column;
    flex: 1 0 21%;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;
    background: #fff;
    padding: 30px;
}

.product-card-modal:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.product-card-modal-image {
    position: relative;
}

.product-card-modal-image img {
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    background: #f8f9fa;
}

.product-card-modal-info {
    display: flex;
    flex-direction: column;
}

.product-card-modal-info .product-name {
    font-size: 16px;
    color: #7d8285;
    margin: 0 0 0.5rem 0;
    font-weight: normal;
    text-align: center;
}

.product-card-modal-info .product-combination-attributes {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
    color: #7d8285;
}

.price-stock-container {
}

.modal-price-container {
    font-size: 18px;
    font-weight: 600;
}

.stock-info {
    font-size: 18px;
    font-weight: 500;
}

.stock-info.text-success { color: #28a745 !important; }
.stock-info.text-danger { color: #dc3545 !important; }

.attribute-selectors-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.attribute-group-name {
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #495057;
}

.attribute-select, .form-select {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 6px;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
}

.attribute-select:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

.combination-error {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
}

.actions-container {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.select-product {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    padding: 0.75rem;
}

.select-product .material-icons {
    font-size: 20px;
}

@media (max-width: 768px) {
    .product-card-modal {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    .product-card-modal-image img {
        height: 100px;
    }
    .product-card-modal-info .product-name {
        font-size: 1.1rem;
    }
}

.product-card-modal-button-container
{
    margin-top: 15px;
}

.product-card-modal-button-container button
{
    font-size: 18px;
    border-radius: 8px;
    background: #f60;
    border-color: #f60;
}

.product-card-modal-button-container button:hover,
.product-card-modal-button-container button:focus
{
    background: #d35601;
    border-color: #d35601;
}