:root {
    --primary-color: #581fa0;
    --primary-dark: #581fa0;
    --primary-light: #0480db;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
}

/* Links */
a {
    color: var(--primary-color);
}
a:hover {
    color: var(--primary-dark);
}
.wc-block-components-button__text{
    width: 100%;
}
/* Buttons */
button,
input[type="submit"],
.wp-block-button__link,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
a.btn.btn-primary,
.wc-block-components-button__text{
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover,
input[type="submit"]:hover,
.woocommerce button.button:hover {
    background: var(--primary-dark);
}

/* WooCommerce price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--primary-color);
    font-weight: bold;
}

/* Highlight boxes */
.primary-box {
    background: var(--primary-light);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
}


/* =========================
   Header Wrapper
========================= */
.site-header {
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.header_row.row {
    align-items: center;
    display: flex;
    padding-left: 10px;
    padding-right: 10px;
}
/* Hide on scroll */
.site-header.hide {
    transform: translateY(-120%);
    opacity: 0;
}

/* =========================
   Header Box
========================= */
.header-inner {
    padding: 0 20px;
}
/* Default (Top of page) */
.header-wrap {
    background: #ffffff;
    border-radius: 14px;
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: background 0.3s ease;
    margin-top: 35px;
}
.col-md-6.middle_header {
    justify-content: center;
    display: flex;
}
.col-md-3.left_header {
    justify-content: start;
    display: flex;
    align-items: center;
}
.col-md-3.right_header {
    justify-content: end;
    display: flex;
    align-items: center;
}
.header_row.row {
    align-items: center;
    display: flex;
    width: 100% !important;
}
.col-md-3.left_header img {
    height: 80px;
}

/* When scrolling up (not at top) */
.site-header.scrolled .header-wrap {
    background: rgb(202 202 202 / 90%);
}
#site-header {
    z-index: 9999;
    transition: transform 0.35s ease, background 0.3s ease;
}

#site-header.hide {
    transform: translateY(-120%);
}


/* =========================
   Logo
========================= */
.site-logo a {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

/* =========================
   Navigation
========================= */
.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    font-weight: 500;
    color: #333;
    padding: 8px 4px;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

/* Underline hover effect */
.nav-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: 0.3s;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* =========================
   CTA Button
========================= */
.header-cta .btn {
    padding: 10px 20px;
    border-radius: 8px;
}

.header-inner {
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
    background: transparent;
}

.padding_top_for_header {
    padding-top: 120px;
}

