/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
#cart-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    direction: rtl;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px;
    border-bottom: 1px solid #f1f1f1;
}

.cart-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex-grow: 1;
    margin-left: 20px;
}

.cart-item-details h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.cart-item-details p {
    margin: 5px 0;
    color: #777;
    font-size: 14px;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.cart-item-actions button {
    background-color: #800e13;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.cart-item-actions button:hover {
    background-color: #600a0e;
}

.cart-item-actions button:focus {
    outline: none;
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
#total-price-container {
    text-align: right;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    color: #333;
}


.coupon-container {
    margin-top: 20px;
    text-align: right;
}

.coupon-container input {
    padding: 10px;
    width: 200px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-right: 10px;
}

.coupon-container button {
    background-color: #800e13;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.coupon-container button:hover {
    background-color: #600a0e;
}

#coupon-message {
    margin-top: 10px;
    color: green;
}

#checkout-options {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

#checkout-options button {
    background-color: #800e13;
    color: white;
    padding: 12px 18px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 48%;
    transition: background-color 0.3s ease;
}

#checkout-options button:hover {
    background-color: #600a0e;
}


.related-products-container {
    margin-top: 40px;
    padding: 20px;
}

#related-header {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.related-products-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}


.related-products-list img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.related-products-list img:hover {
    transform: scale(1.05);
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */