/* -------------------------------------------------------------------------------------------
 *  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.
 *
 * ------------------------------------------------------------------------------------------ */
h1 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

#product-details-container {
    display: flex;
    justify-content: center;
    align-self: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
}

.product-detail-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    width: 80%;
    max-width: 1200px;
    margin-top: 15%;
}

.product-detail-card__image {
    flex: 1;
    position: relative;
    padding: 30px;
}

.product-detail-card__image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.product-detail-card__info {
    flex: 2;
    padding: 30px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-detail-card__title {
    font-size: 28px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.product-detail-card__description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.product-detail-card__price {
    font-size: 24px;
    font-weight: 600;
    color: #800;
    margin-bottom: 30px;
}
/* -------------------------------------------------------------------------------------------
 *  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.
 *
 * ------------------------------------------------------------------------------------------ */
.add-to-cart-btn {
    background-color: #800;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.add-to-cart-btn:hover {
    background-color: #fed60a !important;
    
}

.add-to-cart-btn:active {
    transform: scale(0.98);
}

.add-to-cart-btn svg {
    margin-right: 10px;
    width: 22px;
    height: 22px;
}

.product-thumbnails {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.product-thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
/* -------------------------------------------------------------------------------------------
 *  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.
 *
 * ------------------------------------------------------------------------------------------ */
.product-thumbnails img:hover {
    border-color: #800;
}

@media (max-width: 768px) {
    #product-details-container {
        padding: 20px;
    }

    .product-detail-card {
        flex-direction: column;
    }

    .product-detail-card__image img {
        max-height: 350px;
    }

    .product-thumbnails {
        flex-direction: column;
        gap: 10px;
    }
}
  
.price-selection {
    display: flex;
    flex-direction: column; 
    gap: 10px; 
    margin-top: 20px; 
}
    

.price-selection label {
    font-size: 16px; 
    display: flex;
    align-items: center; 
    gap: 8px; 
    cursor: pointer;
    padding: 5px; 
    border-radius: 5px; 
    color: #fed60a;
    transition: background-color 0.3s ease;
}


.price-selection label:hover {
    background-color: #800; 
}


.price-selection input[type="radio"] {
    accent-color: #fed60a; 
    transform: scale(1.2); 
}


.price-selection span {
    font-weight: bold; 
    color: #ff5722; 
}

/* -------------------------------------------------------------------------------------------
 *  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.
 *
 * ------------------------------------------------------------------------------------------ */


.product-detail-card__images {
    display: flex;
    flex-direction: row; 
    justify-content: space-between;
    align-items: flex-start;
}


.product-detail-card__main-image {
    flex: 3; 
    padding: 10px;
}

.product-img {
    width: 100%; 
    height: auto;
}


.product-thumbnails {
    display: flex;
    flex-direction: row; 
    flex-wrap: wrap; 
    gap: 10px; 
    justify-content: center;
    flex: 1; 
}


.product-thumbnails img {
    width: 30%; 
    height: auto;
    cursor: pointer;
}


@media screen and (max-width: 768px) {
    .product-detail-card__images {
        flex-direction: column; 
        align-items: center; 
    }

  
    .product-img {
        width: 80%; 
    }

    
    .product-thumbnails img {
        width: 30%; 
    }
} 

/* -------------------------------------------------------------------------------------------
 *  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.
 *
 * ------------------------------------------------------------------------------------------ */
.rating-stars {
    display: flex;
    gap: 5px;
}

.star {
    font-size: 30px;
    cursor: pointer;
    color: #ccc; 
    transition: color 0.3s;
}

.star.rated {
    color: gold; 
}

.star.hovered {
    color: #ffb400; 
}
/* -------------------------------------------------------------------------------------------
 *  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.
 *
 * ------------------------------------------------------------------------------------------ */




.submit-rating-btn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.submit-rating-btn:hover {
    background-color: #45a049; 
}

#related-header{
    text-align: center;
    font-weight: bolder;
    margin-top: 100px;
}

.quantity-selector {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-selector label {
    font-size: 16px;
    color: #333;
}


.quantity-input {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

/* -------------------------------------------------------------------------------------------
 *  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.
 *
 * ------------------------------------------------------------------------------------------ */
.quantity-btn {
    background-color: #f5f5f5;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.quantity-btn:hover {
    background-color: #ddd;
}

.quantity-btn:active {
    background-color: #ccc;
}


#quantity {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 16px;
    padding: 10px;
    outline: none;
}


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

#quantity {
    -moz-appearance: textfield; 
}

.favorite-share-container {
    display: flex;
    align-items: center;
    gap: 10px; 
}


.favorite-heart {
    font-size: 50px; 
    cursor: pointer; 
    transition: color 0.3s ease; 
    color: #800; 
}

.favorite-heart span.liked {
    color: grey; 
}

/* -------------------------------------------------------------------------------------------
 *  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.
 *
 * ------------------------------------------------------------------------------------------ */

.share-icons {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.share-links {
    display: none; 
    flex-direction: row;
    gap: 5px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
   
    color: white;
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer;
}

.share-icons.active .share-links {
    display: flex;
}
.card-with-pro{
    width: 300px;
}
/* -------------------------------------------------------------------------------------------
 *  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.
 *
 * ------------------------------------------------------------------------------------------ */