/* General grid for featured products */ .my-featured-products-grid { padding: 5px; min-width: 100vw; margin: 0 auto; background-color: #F6F6F6; border-radius: 10px; } /* Individual product item styling */ 

.my-featured-product-item { background-color: #F6F6F6; border: 1px solid #F6F6F6; border-radius: 0px; padding: 5px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; }


.my-featured-product-item .product-image{
    padding: 0;
}

.my-featured-product-item .product-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    border: solid 1px white;
}

.my-featured-product-item .product-name {
    font-size: 1.2em;
    margin-bottom: 10px;
    line-height: 1.3;
    text-decoration: none;
    font-family: 'Poppins';
    font-weight: 100;
}

.my-featured-product-item .product-name a {
    color: #333;
    text-decoration: none;
    font-size: 90%;
}

@media screen and (min-width: 601px) {
  .my-featured-product-item .product-name a {
        font-size: 110%;
    }
}

.my-featured-product-item .product-name a:link {

    text-decoration: none;

}

.my-featured-product-item .product-price {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
    font-weight: 500;
}

.my-featured-product-item .product-price ins {
    text-decoration: none;
    color: #e65500; /* Discounted price color */
    font-weight: bold;
}

.my-featured-product-item .product-price del {
    color: #999;
    margin-right: 8px;
    font-size: 0.9em;
}

/* Quantity Controls */
.product-quantity-controls {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden; /* To keep buttons and input aligned without gaps */
}

.product-quantity-controls .quantity-button {
    background-color: #eee;
    border: none;
    padding: 8px 12px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.2s;
    line-height: 1; /* For better vertical alignment */
}

.product-quantity-controls .quantity-button:hover {
    background-color: #ddd;
}

.product-quantity-controls .qty {
    width: 60px; /* Adjust width as needed */
    text-align: center;
    border: none;
    padding: 8px 0;
    font-size: 1em;
    -moz-appearance: textfield; /* Hide default number input arrows in Firefox */
}

/* Hide default number input arrows in Chrome/Safari */
.product-quantity-controls .qty::-webkit-outer-spin-button,
.product-quantity-controls .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


/* Add to Cart Button */
.my-featured-product-item .add-to-cart-featured-btn {
    background-color: white;
    color: #6d1e1f;
    border: solid 1px #6d1e1f;
    padding: 10px 20px;
    font-size: 90%;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%; /* Make button full width of its container */
    max-width: 180px; /* Limit max width */
}

.my-featured-product-item .add-to-cart-featured-btn:hover {
    background-color: #6d1e1f;
    color: white;
}

.my-featured-product-item .add-to-cart-featured-btn.loading {
    background-color: #6d1e1f;
    cursor: not-allowed;
    opacity: 0.8;
}

.arpFeatured{
    background-color: white;
    padding: 5%;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    width: 100%;
    padding-bottom: 7%;
}


/** Below style for our-collection plugin 

*************
*****************************
**/
.arpCategory{
    background-color: white;
    border-radius: 5px;
    padding-bottom: 5px;
}

.my-featured-product-item .product-image-arp img {
    max-width: 100%;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    margin-bottom: 15px;
    border: solid 1px white;
}

.my-featured-products-grid-2 { padding: 5px; min-width: 100vw; margin: 0 auto; background-color: #6d1e1f; border-radius: 10px; } /* Individual product item styling */ 

.my-featured-product-item-2 { background-color: #6d1e1f; border: 1px solid #6d1e1f; border-radius: 0px; padding: 5px; text-align: center; display: flex; flex-direction: column; align-items: center; transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; }

.my-featured-product-item-2 .product-name {
    font-size: 1.2em;
    margin-bottom: 10px;
    margin-top: 20px;
    line-height: 1.3;
    text-decoration: none;
    font-family: 'Poppins';
    font-weight: 100;
    text-transform: uppercase;
}

.my-featured-product-item-2 .product-name a {
    color: #333;
    text-decoration: none;
    font-size: 90%;
}

@media screen and (min-width: 601px) {
  .my-featured-product-item-2 .product-name a {
        font-size: 110%;
    }
}

.my-featured-product-item-2 .product-name a:link {

    text-decoration: none;

}
