/* ==========================================================================
   PLUSHO THEME — BRAND & INTEGRATION OVERRIDES
   ========================================================================== */

/* Container and layout alignment */
.plusho-woocommerce-main {
    padding-top: 30px;
    padding-bottom: 50px;
}

/* Breadcrumbs */
.plusho-breadcrumbs {
    font-size: 12px;
    color: var(--plusho-text-muted);
    margin-bottom: 24px;
}

.plusho-breadcrumbs a {
    color: var(--plusho-text);
}

.plusho-breadcrumbs a:hover {
    color: var(--plusho-accent);
}

.plusho-breadcrumbs .sep {
    margin: 0 8px;
    color: var(--plusho-border);
}

/* Topbar layout */
.topbar-inner-flex {
    padding: 8px 0;
}

.topbar-promo-text {
    font-weight: 500;
}

.topbar-nav a {
    color: var(--plusho-text);
    transition: color 0.2s ease;
}

.topbar-nav a:hover {
    color: var(--plusho-accent);
}

/* Single Product styling */
.plusho-single-product .product-summary-col {
    padding-left: 30px;
}

@media (max-width: 991px) {
    .plusho-single-product .product-summary-col {
        padding-left: 15px;
    }
}

.plusho-single-product .entry-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.plusho-single-product .price {
    font-size: 22px;
    font-weight: 700;
    color: var(--plusho-primary);
    margin-bottom: 16px;
    display: block;
}

.plusho-single-product .woocommerce-product-details__short-description {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

/* Quantity inputs */
.quantity input.qty {
    width: 60px;
    height: 44px;
    text-align: center;
    border: 1px solid var(--plusho-border);
    border-radius: var(--plusho-radius);
    font-weight: 600;
}

/* Footer widget fallbacks */
.plusho-footer-default {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid-fallback {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .footer-grid-fallback {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .footer-grid-fallback {
        grid-template-columns: 1fr;
    }
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    font-size: 13px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom-bar {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #777;
}

/* Side panel slide animations */
.zank-side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100vw, 420px);
    height: 100vh;
    background: #fff;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.zank-side-panel.open {
    transform: translateX(0);
}

.zank-search-panel {
    width: 100vw;
    height: 100vh;
    left: 0;
    right: auto;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
    overflow-y: auto;
}

.zank-search-panel.open {
    transform: translateY(0);
}

.zank-sidemenu {
    position: fixed;
    top: 0;
    left: 0;
    width: min(85vw, 360px);
    height: 100vh;
    background: #fff;
    z-index: 99999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    padding: 24px;
    overflow-y: auto;
}

.zank-sidemenu.open {
    transform: translateX(0);
}

.zank-header-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 99990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.zank-header-overlay.active {
    opacity: 1;
    visibility: visible;
}
