/*
Theme Name: Woocom
Theme URI: https://ecare.com.bd/ezycom
Author: Ecare Solution
Author URI: https://ecare.com.bd/ezycom
Description: A custom WooCommerce theme designed to clone the ghorerbazar.com experience for grocery selling.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: woocom
Tags: woocommerce, grocery, e-commerce, custom-colors, custom-menu, featured-images, responsive-layout, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* --- Basic Reset & Base Styles --- */
body {
    font-family: 'Noto Serif Bengali', 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
}

/* --- Logo Size Fix --- */
.site-branding img {
    height: 50px !important; /* Slightly smaller for cleaner look */
    width: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

@media (max-width: 1024px) {
    .site-branding img {
        height: 36px !important;
        max-width: 160px !important;
    }
}

/* --- Action Button Gap Fix --- */
/* Hide WooCommerce default View Cart link after AJAX add to cart */
.added_to_cart,
.woocommerce-message {
    display: none !important;
}

.single-product-container form.cart {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.single-product-container .grid {
    gap: 6px !important; /* Vertical gap reduction */
}

@media (max-width: 768px) {
    .single-product-container .grid {
        gap: 8px !important;
    }
}

/* --- Frequently Bought Together layout fixes --- */
.fbt-items-row {
    overflow-x: auto !important;
    padding-bottom: 2px !important;
}

.fbt-product-card {
    flex: 0 0 auto !important;
    width: max-content !important;
    min-width: 250px !important;
    max-width: 360px !important;
    min-height: 78px !important;
    background-color: #fff9e8 !important;
}

.fbt-product-thumb {
    margin-right: 12px !important;
}

.fbt-product-copy {
    padding-right: 32px !important;
}

.fbt-check-label {
    right: 8px !important;
    bottom: 8px !important;
}

.fbt-total-card {
    width: 170px !important;
    min-height: 78px !important;
}

.fbt-total-card:hover {
    filter: none !important;
}

.fbt-item-save {
    border: 1px dotted var(--color-secondary) !important;
    background-color: #fffdf3 !important;
    color: var(--color-secondary) !important;
}

#fbt-add-all {
    background-color: #ffffff !important;
    color: var(--color-secondary) !important;
    border-color: #ffffff !important;
}

#fbt-add-all:hover {
    background-color: var(--color-secondary) !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

#search-results {
    z-index: 10000 !important;
}

#cart-drawer {
    width: min(100dvw, 400px) !important;
    max-width: 100dvw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

#cart-drawer * {
    box-sizing: border-box !important;
}

.cart-floating-widget {
    max-width: calc(100dvw - 16px) !important;
}

body.woocommerce-checkout,
body.woocommerce-checkout #page,
body.woocommerce-checkout .checkout-page-wrapper {
    overflow-x: hidden !important;
}

.checkout-page-wrapper > .checkout-content-container {
    width: 100% !important;
    max-width: 1320px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
}

/* --- Mobile Bottom Nav: prevent horizontal scroll on checkout --- */
/* Using width:100vw via inline style, but also enforce via CSS for safety */
body:not(.lg) .lg\:hidden[style*="width:100"],
div[style*="width:100"][style*="max-width:100"] {
    width: 100dvw !important;
    max-width: 100dvw !important;
    left: 0 !important;
    right: auto !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
}

/* Prevent WooCommerce checkout table from causing overflow */
@media (max-width: 1023px) {
    #cart-drawer {
        right: 0 !important;
        left: auto !important;
        width: 100dvw !important;
        max-width: 100dvw !important;
    }

    #cart-items-list > div,
    #cart-drawer .flex-grow {
        min-width: 0 !important;
    }

    .woocommerce-checkout-review-order-table,
    .woocommerce-checkout-review-order-table * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .woocommerce-checkout-review-order-table td,
    .woocommerce-checkout-review-order-table th {
        word-break: break-word !important;
    }

    .woocommerce-checkout .checkout-page-wrapper,
    .woocommerce-checkout .container {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
}

@media (max-width: 1023px) {
    #cart-drawer-open-sticky {
        right: 0 !important;
        width: 64px !important;
        border-radius: 0.75rem 0 0 0.75rem !important;
        transform: translateY(-50%) !important;
        box-sizing: border-box !important;
    }

    #cart-drawer-open-sticky .bg-secondary {
        padding: 8px 6px !important;
    }

    #sticky-cart-total {
        padding: 6px 4px !important;
        font-size: 11px !important;
    }
}

@media (max-width: 767px) {
    body.woocommerce-checkout .mobile-bottom-navigation,
    body.woocom-checkout-page .mobile-bottom-navigation {
        display: none !important;
    }

    body.woocommerce-checkout.has-sticky-checkout-mobile,
    body.woocom-checkout-page.has-sticky-checkout-mobile {
        padding-bottom: 74px !important;
    }

    body.has-sticky-checkout-mobile .checkout-page-wrapper {
        padding-bottom: 5rem !important;
    }

    body.woocommerce-checkout.has-sticky-checkout-mobile .checkout-place-order,
    body.woocom-checkout-page.has-sticky-checkout-mobile .checkout-place-order,
    body.has-sticky-checkout-mobile .checkout-page-wrapper .checkout-place-order {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 160 !important;
        padding: 7px 12px calc(7px + env(safe-area-inset-bottom)) !important;
        background: rgba(255, 255, 255, 0.96) !important;
        border-top: 1px solid rgba(226, 232, 240, 0.9) !important;
        box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.12) !important;
    }

    body.woocommerce-checkout.has-sticky-checkout-mobile .checkout-place-order .checkout-terms-row,
    body.woocom-checkout-page.has-sticky-checkout-mobile .checkout-place-order .checkout-terms-row,
    body.has-sticky-checkout-mobile .checkout-page-wrapper .checkout-place-order .checkout-terms-row {
        display: none !important;
    }

    body.woocommerce-checkout.has-sticky-checkout-mobile .checkout-place-order #place_order,
    body.woocom-checkout-page.has-sticky-checkout-mobile .checkout-place-order #place_order,
    body.has-sticky-checkout-mobile .checkout-page-wrapper .checkout-place-order #place_order {
        min-height: 44px !important;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
        border-radius: 8px !important;
    }
}

/* --- Checkout Refinements --- */
.checkout-title-marker {
    display: inline-block !important;
    width: 4px !important;
    height: 16px !important;
    flex: 0 0 4px !important;
    border-radius: 0 !important;
    background-color: var(--color-secondary) !important;
}

.checkout-billing-toggle {
    width: 20px !important;
    height: 20px !important;
    flex: 0 0 20px !important;
    border: 2px solid rgba(247, 165, 1, 0.55) !important;
    background-color: #ffffff !important;
    border-radius: 9999px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.checkout-billing-toggle > div {
    width: 8px !important;
    height: 8px !important;
    border-radius: 9999px !important;
    background-color: transparent !important;
    transition: background-color 0.2s ease !important;
}

.checkout-billing-toggle.is-active {
    border-color: var(--color-secondary) !important;
}

.checkout-billing-toggle.is-active > div {
    background-color: var(--color-secondary) !important;
}

.woocommerce-checkout #billing_first_name_field,
.woocommerce-checkout #billing_phone_field {
    width: calc(50% - 8px) !important;
    float: left !important;
    clear: none !important;
}

.woocommerce-checkout #billing_phone_field {
    float: right !important;
}

.woocommerce-checkout #billing_state_field {
    clear: both !important;
}

.checkout-terms-row {
    flex-wrap: nowrap !important;
}

.checkout-terms-row input[type="checkbox"] {
    appearance: auto !important;
    border-radius: 0 !important;
}

.checkout-terms-row label {
    display: block !important;
    margin: 0 !important;
}

@media (max-width: 640px) {
    .woocommerce-checkout #billing_first_name_field,
    .woocommerce-checkout #billing_phone_field {
        width: 100% !important;
        float: none !important;
    }
}

@media (max-width: 1023px) {
    .fbt-product-card,
    .fbt-total-card {
        width: 100% !important;
        flex-basis: auto !important;
    }
}

/* --- Price Font Size Adjustments --- */
#product-price del,
#sticky-price-display del {
    font-size: 0.6em !important; /* Smaller regular price */
    color: #9ca3af !important; /* Muted gray */
    font-weight: normal !important;
    margin-right: 4px !important;
    text-decoration: line-through !important; /* Explicitly ensure it's cut */
}

#product-price ins,
#sticky-price-display ins {
    font-size: 1.1em; /* Larger sale price */
    text-decoration: none;
    font-weight: 800;
}

#product-price .woocommerce-Price-amount,
#sticky-price-display .woocommerce-Price-amount {
    display: inline-block;
}

/* --- Shop Archive Styles --- */
.shop-sidebar .widget-content {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.shop-sidebar .widget.is-collapsed .widget-content {
    max-height: 0;
}

.shop-sidebar .widget svg {
    transition: transform 0.3s ease;
}

.shop-sidebar .widget.is-collapsed svg {
    transform: rotate(90deg);
}

/* Custom Checkbox Styling */
.shop-sidebar input[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: var(--color-secondary);
    width: 1.15em;
    height: 1.15em;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    display: grid;
    place-content: center;
    cursor: pointer;
}

.shop-sidebar input[type="checkbox"]::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--color-secondary);
    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.shop-sidebar input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.shop-sidebar input[type="checkbox"]:checked {
    border-color: var(--color-secondary);
}

/* WooCommerce Price Filter Slider Customization */
.widget_price_filter .price_slider {
    height: 4px !important;
    background: #f3f4f6 !important;
    border: none !important;
    margin: 1.5rem 0.5rem !important;
}

.widget_price_filter .ui-slider-range {
    background: var(--color-secondary) !important;
}

.widget_price_filter .ui-slider-handle {
    width: 1.25rem !important;
    height: 1.25rem !important;
    background: #fff !important;
    border: 3px solid var(--color-secondary) !important;
    border-radius: 50% !important;
    top: -0.5rem !important;
    cursor: pointer !important;
    outline: none !important;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1) !important;
}

/* Breadcrumb Styling */
.woocommerce-breadcrumb {
    color: #9ca3af;
    font-size: 13px;
    font-weight: 500;
}

.woocommerce-breadcrumb a {
    color: #6b7280;
    transition: color 0.2s;
}

.woocommerce-breadcrumb a:hover {
    color: var(--color-secondary);
}

/* Sorting Dropdown Styling */
.catalog-ordering-wrapper select {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 6px 32px 6px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.catalog-ordering-wrapper select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 2px rgba(243, 146, 0, 0.1);
}

/* Fix Sort By Alignment */
.woocommerce-ordering {
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.catalog-ordering-wrapper {
    display: flex;
    align-items: center;
}

.woocommerce-result-count {
    margin: 0 !important;
    padding: 0 !important;
}

/* AJAX Add to Cart Loading State */
.add_to_cart_button.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.add_to_cart_button.loading::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.6s linear infinite;
    margin-left: 6px;
    vertical-align: middle;
}

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

/* --- Top Selling Products --- */
.top-selling-products .top-selling-action {
    min-height: 34px !important;
    min-width: 50px !important;
    line-height: 1.15 !important;
    overflow: visible !important;
}

.top-selling-products .top-selling-action span {
    display: inline-block !important;
}

.top-selling-products .top-selling-action svg {
    width: 14px !important;
    height: 14px !important;
    flex: 0 0 14px !important;
}

@media (min-width: 640px) {
    .top-selling-products .top-selling-action {
        min-width: 108px !important;
    }

    .top-selling-products .top-selling-action svg {
        width: 16px !important;
        height: 16px !important;
        flex-basis: 16px !important;
    }
}


/* --- Login & My Account Styles --- */
.woocommerce-account .woocommerce {
    max-width: 420px;
    margin: 40px auto;
    padding: 0 20px;
}

/* If both login and register are enabled */
@media (min-width: 992px) {
    .woocommerce-account .woocommerce:has(.u-columns.col2-set) {
        max-width: 850px;
    }
}

.woocommerce-account h2 {
    font-size: 22px;
    font-weight: 800;
    color: #253D4E;
    margin-bottom: 30px;
    text-align: center;
}

.woocommerce-form-login, 
.woocommerce-form-register,
.woocommerce-ResetPassword {
    background: #fff !important;
    padding: 30px !important;
    border-radius: 12px !important;
    border: 1px solid #eef0f2 !important;
    box-shadow: 0 10px 40px rgba(37, 61, 78, 0.05) !important;
}

.u-columns.col2-set {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 992px) {
    .u-columns.col2-set {
        grid-template-columns: 1fr 1fr;
    }
}

.woocommerce-form-row {
    margin-bottom: 18px !important;
}

.woocommerce-form-row label {
    display: block;
    font-weight: 700;
    color: #253D4E;
    margin-bottom: 6px;
    font-size: 13px;
}

.woocommerce-Input {
    width: 100% !important;
    background: #fff !important;
    border: 1.5px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    transition: all 0.2s ease !important;
    outline: none !important;
    box-sizing: border-box;
    color: #253D4E;
}

.woocommerce-Input:focus {
    border-color: var(--color-secondary) !important;
    box-shadow: 0 0 0 4px rgba(243, 146, 0, 0.1);
}

.woocommerce-button.button {
    width: 100% !important;
    background: var(--color-secondary) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 12px !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    font-size: 15px !important;
    margin-top: 5px;
}

.woocommerce-button.button:hover {
    background: var(--color-secondary) !important;
    box-shadow: 0 8px 25px rgba(243, 146, 0, 0.25);
    opacity: 0.9;
}

.woocommerce-form-login__rememberme {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
}

.woocommerce-form-login__rememberme input {
    width: 14px;
    height: 14px;
    accent-color: var(--color-secondary);
    cursor: pointer;
}

.woocommerce-LostPassword {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.woocommerce-LostPassword a {
    color: var(--color-secondary);
    font-weight: 700;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

.woocommerce-LostPassword a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
    opacity: 0.9;
}

/* My Account Dashboard Styles */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.woocommerce-MyAccount-navigation li {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 8px 18px;
    color: #253D4E;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s;
}

.woocommerce-MyAccount-navigation li.is-active,
.woocommerce-MyAccount-navigation li:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li:hover a {
    color: #fff;
}

.woocommerce-MyAccount-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eef0f2;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    color: #475569;
}

/* --- Shake Animation for Checkout Buttons --- */
@keyframes checkout-shake {
    0%, 74%, 100% { transform: translateX(0); }
    78% { transform: translateX(-3px); }
    82% { transform: translateX(3px); }
    86% { transform: translateX(-2px); }
    90% { transform: translateX(2px); }
    94% { transform: translateX(0); }
}

.has-checkout-shake .checkout-shake {
    animation: checkout-shake 2.2s ease-in-out infinite;
    transform-origin: center;
    box-shadow: 0 3px 10px rgba(15, 23, 42, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-checkout-shake .checkout-shake:hover {
    animation-play-state: paused;
    filter: brightness(92%);
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.single_add_to_cart_button.added::after,
#single-add-to-cart-btn.added::after {
    display: none !important;
    content: none !important;
}

.product-action-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px !important;
    margin-bottom: 8px;
}

.product-action-grid form {
    margin: 0 !important;
    min-width: 0;
}

.product-action-btn {
    width: 100% !important;
    height: 40px !important;
    min-height: 40px !important;
    padding: 0 14px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    border-radius: 4px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
}

.product-action-btn svg {
    width: 16px !important;
    height: 16px !important;
    flex: 0 0 16px !important;
}

.product-action-btn--compact {
    height: 40px !important;
    min-height: 40px !important;
    font-size: 12px !important;
}

.product-action-btn--cart {
    background-color: var(--product-add-to-cart-bg, var(--color-secondary)) !important;
}

.product-action-btn--buy {
    background-color: var(--product-buy-now-bg, var(--color-primary)) !important;
}

.product-action-btn--whatsapp {
    background-color: var(--product-whatsapp-bg, #25D366) !important;
}

.product-action-btn--call {
    background-color: var(--product-call-bg, #1e3a8a) !important;
}

.add_to_cart_button {
    border-color: var(--product-add-to-cart-bg, var(--color-secondary)) !important;
    color: var(--product-add-to-cart-bg, var(--color-secondary)) !important;
}

.add_to_cart_button:hover {
    background-color: var(--product-add-to-cart-bg, var(--color-secondary)) !important;
    border-color: var(--product-add-to-cart-bg, var(--color-secondary)) !important;
    color: #fff !important;
}

.buy-now-button {
    background-color: var(--product-buy-now-bg, var(--color-primary)) !important;
    color: #fff !important;
}

.buy-now-button:hover {
    filter: brightness(0.92);
}

.product-action-btn:disabled,
.product-action-btn.disabled,
.product-action-btn.wc-variation-is-unavailable {
    opacity: 0.55 !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

.woocom-stock-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 8px 0;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    padding: 7px 10px;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.woocom-stock-badge--out {
    background: #dc2626;
}

.woocom-stock-badge--preorder {
    background: #7c3aed;
}

.woocom-stock-request-form {
    border: 1px solid #e5e7eb;
    background: #f8fafc;
    border-radius: 8px;
    padding: 14px;
}

.woocom-stock-request-title {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

.woocom-stock-request-fields {
    display: flex;
    gap: 8px;
}

.woocom-stock-request-fields input {
    min-width: 0;
    flex: 1;
    height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0 12px;
    font-size: 14px;
    background: #fff;
}

.woocom-stock-request-fields button {
    height: 42px;
    border: 0;
    border-radius: 6px;
    padding: 0 14px;
    background: var(--color-secondary);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.woocom-stock-request-fields button:disabled {
    cursor: wait;
    opacity: 0.7;
}

.woocom-stock-request-message {
    min-height: 16px;
    margin-top: 8px;
    font-size: 12px;
    font-weight: 600;
}

.woocom-stock-request-message.is-success {
    color: #15803d;
}

.woocom-stock-request-message.is-error {
    color: #dc2626;
}

.woocom-stock-request-form--archive {
    margin-top: auto;
    padding: 8px;
}

.woocom-stock-request-form--archive .woocom-stock-request-fields {
    flex-direction: column;
    gap: 6px;
}

.woocom-stock-request-form--archive .woocom-stock-request-fields input,
.woocom-stock-request-form--archive .woocom-stock-request-fields button {
    width: 100%;
    height: 36px;
    font-size: 12px;
}

@media (max-width: 480px) {
    .product-action-grid {
        gap: 8px !important;
    }

    .product-action-btn {
        height: 40px !important;
        min-height: 40px !important;
        padding: 0 10px !important;
        gap: 6px !important;
        font-size: 12px !important;
    }

    .product-action-btn--compact {
        height: 40px !important;
        min-height: 40px !important;
        font-size: 11px !important;
    }
}

/* Global Button Hovers */
.bg-secondary:hover,
.bg-primary:hover,
.add_to_cart_button:hover,
.buy_now_button:hover,
.single_add_to_cart_button:hover {
    filter: brightness(90%);
    transition: all 0.2s ease;
}

.bg-secondary:active,
.bg-primary:active {
    filter: brightness(80%);
}

/* --- Theme Styles End --- */



/* Hide default variation price as it is shown in the custom boxes */
.woocommerce-variation-price {
    display: none !important;
}
