/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.6.1772963865
Updated: 2026-03-08 09:57:45

*/

.custom-product-grid,
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.product-card,
.woocommerce ul.products li.product {
    background:#fff;
    border:1px solid #016738;
    padding: 10px;
    text-align: center;
    transition: .3s;
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    display: flex;
    flex-direction: column;
}

.product-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 10px;
}

.product-title{
    font-size: 14px !important; /* Smaller text as in image */
    margin: 10px 0 5px;
    min-height: 40px;
}

.product-title a{
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.product-price{
    font-size: 16px;
    font-weight: 700;
    color: #016738;
    margin-bottom: 15px;
}

.product-price del{
    color: #999;
    font-size: 14px;
    margin-right: 5px;
    font-weight: normal;
}

.product-buttons{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.product-buttons a:hover {
    color: #fff;
}

.details-btn{
    background: #016738;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    text-decoration: none;
    flex: 1;
    text-align: center;
    font-weight: 500;
    line-height: 1;
}

.details-btn:hover {
    background: #000;
}

.view-all-btn{
text-align:center;
margin-top:25px;
}

.view-all-btn a{
background:#016738;
color:#fff;
padding:10px 25px;
border-radius:4px;
text-decoration:none;
}

@media(max-width:1024px){
.custom-product-grid,
.woocommerce ul.products {
    grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:768px){
.custom-product-grid,
.woocommerce ul.products {
    grid-template-columns:repeat(2,1fr);
}
.custom-product-grid,
.woocommerce ul.products {
    margin-left: 10px;
    margin-right: 10px;
    gap: 5px;
}

.product-card {
    padding: 5px;
}

.details-btn {
    padding: 8px 15px;
    font-size: 13px;
}
body:not([class*=elementor-page-]) .site-main {
    padding-inline-end: 0;
    padding-inline-start: 0;
}
}

/* AJAX Load More Styles */
.load-more-btn {
    display: inline-block !important;
    background: #016738 !important;
    color: #fff !important;
    padding: 12px 35px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    font-family: inherit;
}

.load-more-btn:hover {
    background: #016738 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 159, 0, 0.25);
}

.load-more-btn.loading {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.load-more-btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 12px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    vertical-align: middle;
}

/* Single Product Page Styles */
.custom-single-product-layout {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: inherit;
}

.product-main-container {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.product-image-section {
    flex: 1;
    border: 1px solid #016738;
    padding: 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-wrapper img {
    object-fit: cover;
    border: 1px solid #ccc; /* Subtle border like in image */
}

.woocommerce-page div.product div.images {
    width: 100%;
    float: none;
}

.woocommerce div.product div.images {
    margin: 0;
}

.product-summary-section {
    flex: 1;
    border: 1px solid #8ffa87;
    padding: 30px;
    border-radius: 4px;
}

.product-summary-section .product-title {
    color: #016738;
    font-size: 26px !important;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
    text-align: left;
}

.product-short-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-summary-section .product-price {
    font-size: 24px !important;
    margin-bottom: 25px;
    text-align: left;
}

.product-summary-section .product-price ins {
    text-decoration: none;
    color: #016738;
}

.product-summary-section .product-price del {
    color: #999;
    font-size: 18px;
    margin-right: 10px;
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-buttons {
    display: flex;
    gap: 15px;
}

.main-buttons form.cart,
.main-buttons .buy-now-button {
    flex: 1;
}

.single_add_to_cart_button, .buy-now-button, .whatsapp-button {
    width: 100%;
    background-color: #016738 !important;
    color: #fff !important;
    padding: 12px 20px !important;
    border-radius: 4px !important;
    border: none !important;
    font-weight: 600 !important;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.buy-now-button {
    background-color: #016738 !important;
    height: 40px;
    padding-top: 8px !important;
}
.single_add_to_cart_button:hover,
.buy-now-button:hover {
    background-color: #000 !important;
}

.woocommerce div.product form.cart {
    margin-bottom: 0;
}

.whatsapp-button {
    background-color: #016738 !important; /* WhatsApp Green */
    margin-top: 5px;
}

.share-section {
    display: flex;
    text-align: left;
    justify-content: left;
    gap: 10px;
    margin-top: 10px;
}

.share-label {
    color: #016738;
    font-weight: 600;
}

.share-icons {
    display: flex;
    gap: 5px;
}

.share-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}

.share-facebook,
.share-twitter,
.share-linkedin,
.share-pinterest,
.share-tumblr,
.share-whatsapp { background: #016738 !important; }

.share-facebook:hover,
.share-twitter:hover,
.share-linkedin:hover,
.share-pinterest:hover,
.share-tumblr:hover,
.share-whatsapp:hover { background: #000 !important; }

/* Description Box */
.woocommerce-tabs {
    display: none;
}
.product-description-container {
    border: 1px solid #016738;
    border-radius: 4px;
    padding: 1rem;
    margin-bottom: 40px;
}

.description-title {
    color: #016738;
    font-size: 32px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

.product-description-content {
    color: #666;
    line-height: 1.6;
}

/* Related Products */
.woocommerce .up-sells, .woocommerce .related {
    border-top: none;
    padding-top: 20px;
    padding-bottom: 20px !important;
}

.woocommerce .related h2 {
    color: #016738 !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 25px;
}

@media (max-width: 768px) {
    .custom-single-product-layout {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 10px;
        font-family: inherit;
    }
    .custom-product-grid {
        margin-left: 0px;
        margin-right: 0px;
    }
    
    .product-main-container {
        flex-direction: column;
    }
    .product-image-wrapper img {
        width: 250px;
        height: 250px;
    }
    .main-buttons {
        flex-direction: column;
    }
}

.woocommerce-breadcrumb {
    display: none;
}
/* Mini Cart Drawer Styles */
.mini-cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100%;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    z-index: 999999;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.mini-cart-drawer.open {
    right: 0 !important;
}

.mini-cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    backdrop-filter: blur(4px);
}

.mini-cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

.mini-cart-header {
    padding: 20px 25px;
    border-bottom: 1px solid #efefef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #016738;
    color: #fff;
}

.mini-cart-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff !important;
}

.close-mini-cart {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #fff;
    padding: 0;
    transition: 0.3s;
}

.close-mini-cart:hover {
    transform: rotate(90deg);
}

.mini-cart-content-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

/* Customizing WooCommerce Mini Cart Elements */
.mini-cart-content-wrapper .widget_shopping_cart_content .cart_list {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.mini-cart-content-wrapper .widget_shopping_cart_content .cart_list li {
    display: flex !important;
    padding-bottom: 20px !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    position: relative !important;
    text-align: left !important;
}

.mini-cart-content-wrapper .widget_shopping_cart_content .cart_list li img {
    width: 70px !important;
    height: 70px !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    margin-right: 15px !important;
    border: 1px solid #eee !important;
    float: none !important;
}

.mini-cart-content-wrapper .widget_shopping_cart_content .cart_list li a {
    font-weight: 600 !important;
    color: #333 !important;
    text-decoration: none !important;
    display: block !important;
    margin-bottom: 5px !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
    padding: 0 !important;
}

.mini-cart-content-wrapper .widget_shopping_cart_content .cart_list li .quantity {
    color: #666 !important;
    font-size: 14px !important;
    display: block !important;
}

.mini-cart-content-wrapper .widget_shopping_cart_content .cart_list li .remove {
    position: absolute !important;
    right: 0 !important;
    top: 5px !important;
    color: #ff3b30 !important;
    font-size: 20px !important;
    background: none !important;
}

.mini-cart-content-wrapper .widget_shopping_cart_content .total {
    border-top: 2px solid #efefef !important;
    margin-top: 20px !important;
    padding-top: 15px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    display: flex !important;
    justify-content: space-between !important;
    background: none !important;
    color: #333 !important;
}

.mini-cart-content-wrapper .widget_shopping_cart_content .total .amount {
    color: #016738 !important;
}

.mini-cart-content-wrapper .widget_shopping_cart_content .buttons {
    margin-top: 25px !important;
    display: flex !important;
    gap: 15px !important;
    padding: 0 !important;
}

.mini-cart-content-wrapper .widget_shopping_cart_content .buttons a {
    flex: 1 !important;
    text-align: center !important;
    padding: 12px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    line-height: 1 !important;
}

.mini-cart-content-wrapper .widget_shopping_cart_content .buttons a.checkout {
    background: #016738 !important;
    color: #fff !important;
}

.mini-cart-content-wrapper .widget_shopping_cart_content .buttons a:not(.checkout) {
    background: #f5f5f5 !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
}

body.mini-cart-open {
    overflow: hidden;
}

/* Mobile responsive */
@media (max-width: 480px) {
    .mini-cart-drawer {
        width: 100% !important;
        right: -100% !important;
    }
    .mini-cart-drawer.open {
        right: 0 !important;
    }
}

/* Mini Cart Drawer */
.elementor-menu-cart__product-name a {
    color: #016738 !important;
}

.elementor-menu-cart__product-price {
    color: #000 !important;
}
.elementor-menu-cart__footer-buttons a {
    background: #016738 !important;
    color: #fff !important;
}
.elementor-menu-cart__close-button {
    color: #016738 !important;
}

/* Custom Thank You Page Styles */
.custom-thank-you {
    max-width: 900px;
    margin: 40px auto;
}

.thank-you-outer-header {
    text-align: center;
    margin-bottom: 40px;
}

.thank-you-outer-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.thank-you-outer-header p {
    font-size: 18px;
    color: #6c757d;
    font-weight: 500;
}

.thank-you-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* Premium shadow */
    padding: 20px;
    border: 1px solid #eee;
}

.thank-you-header {
    text-align: center;
    padding: 30px 0;
}

.thank-you-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333 !important;
    margin: 0;
}

.order-summary-row {
    list-style: none;
    padding: 30px 20px;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f8fbff; /* Very light blue background */
    border-radius: 4px;
    margin-bottom: 20px;
}

.order-summary-row li {
    display: flex;
    flex-direction: column;
    padding: 0 15px;
    border-right: 1px dashed #ced4da;
}

.order-summary-row li:last-child {
    border-right: none;
}

.order-summary-row li span {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.order-summary-row li strong {
    font-size: 15px;
    font-weight: 700;
    color: #212529;
}

.payment-instructions-wrapper {
    padding: 0px 20px 20px;
    margin-bottom: 10px;
}

.woocommerce-order-details,
.woocommerce-customer-details {
    margin-top: 30px;
    background: #f8fbff; /* Match summary row color */
    padding: 25px;
    border-radius: 4px;
}

.woocommerce-order-details h2,
.woocommerce-customer-details h2,
.woocommerce-order-details__title,
.woocommerce-column__title {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 25px !important;
    border-bottom: none !important;
    text-align: left !important;
    display: block !important; /* Ensure they are visible */
}

/* Table styles for Order Details */
.woocommerce-table--order-details {
    width: 100% !important;
    border-collapse: collapse;
    border: none !important;
    background: transparent !important;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    padding: 15px 10px !important;
    border: none !important;
    border-bottom: 1px dashed #ced4da !important;
    background: transparent !important;
    text-align: left !important;
}

.woocommerce-table--order-details tr:last-child td {
    border-bottom: none !important;
}

.woocommerce-table--order-details .product-total,
.woocommerce-table--order-details .woocommerce-Price-amount {
    text-align: right !important;
}

.woocommerce-table--order-details thead tr th {
    color: #212529;
    font-weight: 700;
    font-size: 14px;
    padding-bottom: 15px !important;
}

.woocommerce-table--order-details tbody tr td {
    color: #495057;
    font-size: 15px;
}

.woocommerce-table--order-details tbody tr td a {
    color: #212529;
    text-decoration: none;
    font-weight: 500;
}

.woocommerce-table--order-details tfoot th {
    text-align: left !important;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px dashed #ced4da !important;
}

.woocommerce-table--order-details tfoot td {
    font-weight: 600;
    font-size: 15px;
}

.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-table--order-details tfoot tr:last-child td {
    border-bottom: none !important;
}

/* Customer details / address */
.woocommerce-customer-details address {
    border: none !important;
    padding: 0 !important;
    font-style: normal;
    color: #495057;
    line-height: 1.8;
    font-size: 15px;
}

.woocommerce-customer-details .woocommerce-column__title {
    display: none; /* Hide internal title if redundant */
}

/* Remove default WooCommerce titles from the hook actions if they exist */
.custom-thank-you .woocommerce-order-details__title,
.custom-thank-you .woocommerce-column__title {
   display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .order-summary-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
    .order-summary-row li {
        border-right: none;
        padding: 5px 0;
    }
}