
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Global font settings */
html {
    font-family: 'Roboto', sans-serif !important;
    font-size: clamp(14px, 1vw + 0.5rem, 18px);
}

/*h1 { font-size: 2.5rem; }*/
/*h2 { font-size: 2rem; }*/
/*h3 { font-size: 1.75rem; }*/
/*h4 { font-size: 1.5rem; }*/
/*h5 { font-size: 1.25rem; }*/
/*h6 { font-size: 1rem; }*/



.terms-container {
    display: flex;
    gap: 20px;
    padding: 10px;
    scrollbar-width: thin; /* Firefox */
    justify-content: space-around;
    flex-wrap: wrap;
}

.terms-container::-webkit-scrollbar {
    height: 6px;
}

.terms-container::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.2);
    border-radius: 3px;
}

.term-item a {

    display: flex;
    justify-content: center;
    align-items: center;
}
.term-item:hover {
    /*background-color: #eeeeee;*/
    /*border-radius: 10px;*/
}
.term-item {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;

    flex: 0 0 auto;
    text-align: center;
    /*flex: 0 0 calc(100%/5);*/
    max-width: 120px;
}

.term-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 8px;
    transition: transform 0.3s;
}

.term-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.4) saturate(1.6) brightness(1.02) sepia(.06);
    image-rendering: optimizeQuality;
    /* soft posterize look */
    mix-blend-mode: multiply;
}

.term-title {
    /*max-width: 70px;*/
    white-space: pre-wrap;
    white-space: pre-wrap;
    /*position: absolute;*/
    /*bottom: 0;*/
    /*width: 100%;*/
    /*color: #fff;*/
    /*background: rgba(0,0,0,0.5);*/
    font-size: 14px;
    padding: 4px 0;
    text-align: center;
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
    margin-top: 8px;
    margin-bottom: 0;
    color: #fff;
    /*display: contents;*/

}

.term-image:hover {
    transform: scale(1.05);
}

/* --- General layout --- */
.entry-content {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #1f1f1f;
    line-height: 1.6;
    background-color: #fdfdfd;
    padding: 1.5rem;
}

/* --- Product container flex --- */
.has-post-thumbnail.product {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

/* --- Gallery --- */
.woocommerce-product-gallery {
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    overflow: hidden;
    width: 420px;
    max-width: 100%;
    box-shadow: 0 8px 22px rgba(0,0,0,0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.woocommerce-product-gallery:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.woocommerce-product-gallery__image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.4s ease;
}
.woocommerce-product-gallery__image:hover img {
    transform: scale(1.08);
}

/* --- Thumbnails --- */
.flex-control-thumbs li {
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}
.flex-control-thumbs li.flex-active {
    border-color: #007cba;
    transform: scale(1.05);
}

/* --- Summary section --- */
.summary.entry-summary {
    flex: 1;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.product_title.entry-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.price {
    font-size: 1.2rem;
    /*color: #007cba;*/
    margin-bottom: 1rem;
    font-weight: 700;
    color: #bf3617;
}

/* --- Quantity input --- */
.quantity input[type="number"] {
    width: 75px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.5rem;
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* --- Buttons --- */
.single_add_to_cart_button.button.alt,
button.single_add_to_cart_button {
    background: linear-gradient(135deg, #001489 0%, #475FEB 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}
.single_add_to_cart_button.button.alt:hover {
    background: linear-gradient(135deg, #001489 0%, #475FEB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

button.buy_now_button,
.woocommerce button.button.buy-now {
    background: linear-gradient(135deg, #001489 0%, #475FEB 100%);
    color: #fff;
    font-weight: 700;
    border-radius: 8px;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}
button.buy_now_button:hover {
    background: linear-gradient(135deg, #001489 0%, #475FEB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

/* --- Product meta & categories --- */
.product_meta,
.categories {
    font-size: 0.9rem;
    color: #555;
    margin-top: 1rem;
}

.product_meta a {
    color: #007cba;
    text-decoration: none;
}
.product_meta a:hover {
    text-decoration: underline;
}

/* --- Tabs --- */
.woocommerce-tabs {
    margin-top: 3rem;
    border-top: 1px solid #e6e6e6;
    width: 100%;
}
.woocommerce-tabs .tabs li a {
    color: #007cba;
    font-weight: 700;
    padding: 0.7rem 1.5rem;
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.woocommerce-tabs .tabs li.active a {
    border-color: #007cba;
}

/* --- Tab content --- */
.woocommerce-Tabs-panel {
    padding: 2.2rem 0;
    border-top: 1px solid #e6e6e6;
    background-color: #fff;
    line-height: 1.8;
}

.woocommerce-Tabs-panel h2 {
    font-weight: 800;
    margin-bottom: 1rem;
}

.woocommerce-Tabs-panel p,
.woocommerce-Tabs-panel div {
    margin-bottom: 1rem;
    text-align: center;
}

/* --- Gallery container & hover effects --- */
.woocommerce-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.woocommerce-product-gallery__wrapper {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
}

.woocommerce-product-gallery__image {
    flex: 0 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.woocommerce-product-gallery__image:hover {
    transform: scale(1.04);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.flex-control-thumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.flex-control-thumbs li {
    list-style: none;
}

.flex-control-thumbs img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border 0.3s ease, transform 0.2s ease;
}
.flex-control-thumbs img.flex-active,
.flex-control-thumbs img:hover {
    border-color: #007cba;
    transform: scale(1.05);
}

.entry-content.content {
    padding: 0;
}

#sticker-nav {
    background-color: #fff0;
    background-image: linear-gradient(135deg, #001489 0%, #475FEB 100%);
}

#home-categories {
    min-height: 50vh;
    /*background: linear-gradient(to bottom,  #001489, #475FEB);*/
    background-color: #fff0;
    background-image: linear-gradient(135deg, #001489 0%, #475FEB 100%);
}

.maker-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    height: 50px;
    max-height: 50px;

}
.maker-logo img {width: 50px; max-height: 50px; max-width: 50px; object-fit: contain}

.fixed-top {
    position: fixed !important;
    z-index: 10000 !important;
    top: 100px;
}

.fx-btn {
    background: #f29f05 !important;
    color: #000000;
    font-weight: 600;
}

#contact-bar {
    display: flex
;
    flex-direction: row;
    justify-content: flex-start;
    /* width: 100%; */
    gap: 2em;
}

#contact-bar i {
    color: #fff;
    margin-right: 5px;
}




#contact-bar span {
    /*color: #000;*/
    font-weight: 600;
}

.makes-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.make-item img{
    width: 100px;
    height: auto;
    object-fit: contain;

}
.barba-container {
    opacity: 1;
}

/*
Ninja
 */
/* ====== FORM CONTAINER ====== */
.nf-form-cont {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    /*font-family: "Inter", sans-serif;*/
    color: #222;
}

/* ====== LABELS ====== */
.nf-field-label label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    font-size: 0.95rem;
}

/* ====== INPUTS & TEXTAREA ====== */
.ninja-forms-field {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.95rem;
    background: #fafafa;
    transition: border 0.2s, background 0.2s;
}

.ninja-forms-field:focus {
    border-color: #0078d4;
    background: #fff;
    outline: none;
}

/* ====== ERROR STATES ====== */
.nf-error .ninja-forms-field {
    border-color: #d93025;
    background: #fff5f5;
}

.nf-error-msg {
    color: #d93025;
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ====== REQUIRED SYMBOL ====== */
.ninja-forms-req-symbol {
    color: #d93025;
}

/* ====== SUBMIT BUTTON ====== */
.submit-container input[type="submit"] {
    width: 100% !important;
    padding: 12px;
    background: #0078d4;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.nf-form-fields-required {
    display: none;
}

.submit-container input[type="submit"]:hover:enabled {
    background: #475FEB;
    width: 100%;

}

.submit-container input[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ====== FORM ERRORS ====== */
.nf-form-errors {
    /*margin-top: 10px;*/
    /*padding: 10px;*/

    /*border-radius: 5px;*/
    /*background: #fff5f5;*/
    /*font-size: 0.9rem;*/
    /*color: #d93025;*/
}

/* ====== FIELD SPACING ====== */
.nf-field-container {
    margin-bottom: 20px;
}

/*
Ninja
 */

/*
Menu
 */

.menu-item {
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    color: #fff;
}

.top-menu-link span {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-weight: 900;
    font-size: 13px;
    line-height: 1.8em;
    letter-spacing: 0;
    /*color: #444;*/
    font-size: 15px;
    font-weight: 700;
    line-height: 20px;
    color: #fff !important;
}

.x-bar-top {
    height: auto !important;
    padding-top: 5px;
    padding-bottom: 5px;
}

.fx-login-button {
    height: 30px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 6px;
    /*background-color: #bf3617 !important;*/
}

.fx-contact-button {
    height: 30px;
    margin-left: 5px;
    margin-right: 5px;
    background-color: #bf3617 !important;
    border-radius: 6px;
}
.fx-login-button span {
    color: #fff !important;
}
.fx-login-button i {
    margin-right: 10px;
    color: #fff;
    zoom: 0.8;

}

/* Primary checkout button */
.wc-block-components-checkout-place-order-button {
    background: linear-gradient(135deg, #001489 0%, #475FEB 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(4, 78, 141, 0.35);
    transition:
            background 0.25s ease,
            transform 0.15s ease,
            box-shadow 0.15s ease;
}

/* Hover */
.wc-block-components-checkout-place-order-button:hover {
    background: linear-gradient(135deg, #001489 0%, #475FEB 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 154, 255, 0.45);
}

/* Active */
.wc-block-components-checkout-place-order-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(4, 78, 141, 0.3);
}

/* Focus */
.wc-block-components-checkout-place-order-button:focus-visible {
    outline: 3px solid #bf3617;
    outline-offset: 3px;
}

/* Disabled */
.wc-block-components-checkout-place-order-button:disabled {
    background: #9bb7d1;
    cursor: not-allowed;
    box-shadow: none;
}

/* Primary button */
.button {
    background: linear-gradient(135deg, #001489 0%, #475FEB 100%);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(4, 78, 141, 0.35);
    transition:
            background 0.25s ease,
            transform 0.15s ease,
            box-shadow 0.15s ease;
}

/* Hover */
.single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #001489 0%, #475FEB 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 154, 255, 0.45);
}

/* Active */
.single_add_to_cart_button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(4, 78, 141, 0.3);
}

/* Focus */
.single_add_to_cart_button:focus-visible {
    outline: 3px solid #bf3617;
    outline-offset: 3px;
}

/* Disabled */
.single_add_to_cart_button:disabled,
.single_add_to_cart_button[disabled] {
    background: #9bb7d1;
    cursor: not-allowed;
    box-shadow: none;
}






/* --- Responsive --- */
@media (max-width: 860px) {
    .x-bar-top {
        display: none ;
    }
}
@media (max-width: 768px) {
    .woocommerce-product-gallery__wrapper {
        gap: 6px;
    }
    .flex-control-thumbs img {
        width: 55px;
        height: 55px;
    }
    .summary.entry-summary {
        max-width: 100%;
    }
}








