/**
 * Theme Name: Partdo Child
 * Description: Child theme for Al Huwais Company Ltd. Visual language is
 *              owned by the Al Huwais Design System (plugin: al-huwais-core).
 *              This file contains ONLY parent-theme/plugin interop tweaks
 *              that cannot live in the design system itself.
 * Author: <a href="http://themeforest.net/user/KlbTheme">KlbTheme (Sinan ISIK)</a>
 * Template: partdo
 * Version: 1.5.0
 */

/* ==========================================================================
   Parent theme / Elementor / WooCommerce interop only.
   For new styling, ADD A COMPONENT to al-huwais-core/assets/css/components.css
   and reference it via class names.  Do NOT add overrides here.
   ========================================================================== */

/* --- Phone links --------------------------------------------------------- */
a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}
/* NOTE: removed the "::after { content: ' (' attr(href) ')' }" rule — it leaked
   the raw "tel:+966..." URI next to every phone link site-wide (footer contact,
   team cards, etc.). The number is already the link text. (client req #1 polish) */

/* --- Mobile fixes for legacy contact grid & translator widget ----------- */
@media (max-width: 768px) {
    .contact-department-grid {
        grid-template-columns: 1fr;
    }
    .al-muhandis-switcher {
        bottom: 10px;
        inset-inline-start: 10px;
        transform: scale(0.9);
    }
    #secondary {
        width: 100%;
        float: none;
        margin-top: var(--ah-s-7, 48px);
    }
}

/* --- Elementor CTA: subtle finish that respects the design system ------- */
.elementor-cta__title {
    font-weight: var(--ah-fw-bold, 700);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.elementor-cta__bg {
    filter: brightness(0.7) contrast(1.1);
    transition: filter var(--ah-d-base, 250ms) var(--ah-ease, ease),
                transform var(--ah-d-base, 250ms) var(--ah-ease, ease);
}
.elementor-cta:hover .elementor-cta__bg {
    filter: brightness(0.9);
    transform: scale(1.03);
}

/* --- Strip the ghost admin sidebar that the translator plugin leaks ----- */
body:not(.wp-admin) #adminmenuback { display: none; }

/* --- Client request #10: hide duplicated icon-box widgets --------------- */
.hide-duplicate-icons .elementor-widget-icon-box:nth-child(n+2),
.hide-duplicate-icons .elementor-icon-box-wrapper:nth-child(n+2) {
    display: none;
}

/* --- Legacy contact grid — kept until templates migrate to .ah-dept-card */
.contact-department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--ah-s-5, 24px);
    margin-top: var(--ah-s-6, 32px);
}

/* ==========================================================================
   WCFM / WooCommerce store-manager portal
   The full portal redesign now lives in the design system, scoped to
   body.ah-wcfm-portal and loaded only on /store-manager/:
     al-huwais-core/assets/css/wcfm-portal.css
     al-huwais-core/includes/wcfm-portal.php
   ========================================================================== */
