/**
Theme Name: PopularFX Child
Template: popularfx
Theme URI: https://popularfx.com
Author: Pagelayer
Author URI: https://pagelayer.com
Description: Lightweight theme to make beautiful websites with Pagelayer. Includes 100s of pre-made templates to design your dream website !
Version: 1.0.0
License: LGPL v2.1
License URI: LICENSE
Text Domain: popularfx
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, entertainment, full-width-template, one-column, two-columns, left-sidebar, e-commerce, right-sidebar, microformats, post-formats, theme-options, blog, rtl-language-support
*/


/*
    Add your custom styles here
*/
/* Removed Gradient
body {
    background: linear-gradient(to bottom, #006AB6, #ffffff);
    background-attachment: fixed;
}*/
/* Poolmaster B2B Nav Buttons */
.plm-nav-wrap {
    display: inline-flex;
    gap: 6px;
    align-items: center;
}
.plm-nav-btn {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none !important;
    background: #ffffff;
    color: #0C447C !important;
    border: none;
    transition: background 0.15s, color 0.15s;
    cursor: pointer;
    line-height: 1.4;
}
.plm-nav-btn:hover {
    background: #e0eef8;
    color: #0C447C !important;
    text-decoration: none !important;
}
.plm-nav-btn--logout {
    background: rgba(255,255,255,0.2);
    color: #ffffff !important;
    border: 1.5px solid rgba(255,255,255,0.6);
}
.plm-nav-btn--logout:hover {
    background: #ffffff;
    color: #c0392b !important;
}

/* Start of Woocommerce styles */
.woocommerce ul.products li.product {
    text-align: center;
    padding: 2px 20px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    font-weight: 500;
}
.woocommerce ul.products li.product .button {
    display: none;
}
.woocommerce ul.products li.product a img {
    border-radius: 6px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3), 0 3px 6px rgba(0,0,0,0.2) !important;
    transition: box-shadow 0.2s;
    width: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
}
.woocommerce ul.products li.product a:hover img {
    box-shadow: 0 14px 32px rgba(0,0,0,0.35), 0 4px 10px rgba(0,0,0,0.25) !important;
}
/* Remove boxed border/shadow on all WooCommerce pages *//* ============================================================
   Single Product Page (WooCommerce)
   Added: 2026-07-22 
   ============================================================ */

/* 2026-07-22 - Single product: pull the summary column leftward so it
   sits directly beside the gallery instead of floating to the far
   right edge of the full-width page. overflow:hidden makes the
   summary a block formatting context that fills the space next to
   the floated gallery, so it works regardless of gallery width. */
.woocommerce div.product div.summary.entry-summary {
    float: none;
    width: auto;
    overflow: hidden;
    padding-left: 40px; /* gutter between gallery and text */
}

/* 2026-07-22 - Force the Related Products section below the
   gallery/summary columns. Needed because the product data tabs
   were moved into the summary column (see functions.php), which
   removed the full-width block that previously cleared the floats. */
.woocommerce div.product section.related.products,
.woocommerce div.product .related.products {
    clear: both;
    width: 100%;
}
.woocommerce main,
.woocommerce-page main {
    margin: 0 auto;
    border: none;
    box-shadow: none;
    padding: 15px;
}
/* 2026-07-22 - What's New grid: style the Date Added / SKU lines
   under each product title as muted metadata. */
.plm-date-added,
.plm-sku {
    font-size: 0.85em;
    color: #666;
    line-height: 1.4;
}