/* ============================================
   STYLE.CSS - Main Stylesheet
   ============================================ */

/* Product List - List Mode */
.products-list .product-item {
    width: 100% !important;
    max-width: none !important;
}

.products-list .product-item-info {
    width: 100% !important;
    max-width: none !important;
}

/* Add to Cart Button Override */
.products-list .tocart-btn,
.products-list .action.tocart.primary {
    background-color: #ffc107 !important;
    border: none !important;
    color: #333 !important;
    font-weight: 600 !important;
}

.products-list .tocart-btn:hover,
.products-list .action.tocart.primary:hover {
    background-color: #ffb300 !important;
    color: #333 !important;
}

a.minimal-price-link {
    display: none;
}

.product-item .price-box {
    margin: 0;
}

/* CSS Variables */
:root {
    /* Primary Colors */
    --color-primary: #1976d2;
    --color-primary-hover: #1565c0;
    --color-secondary: #ffc107;
    --color-secondary-hover: #ffb300;
    --max-width-container: 1660px;

    --brand-blue: #0056b3;
    --brand-dark-blue: #003d80;
    --brand-light-blue: #0073ce;
    --brand-yellow: #ffc107;

    /* Text Colors */
    --color-text-white: #fff;
    --color-text-light: rgba(255, 255, 255, 0.85);
    --color-text-muted: rgba(255, 255, 255, 0.6);
    --color-text-dark: #333;
    --color-text-gray: #888;
    --color-text-placeholder: #999;

    --new-dark-blue: #161E54;
    /* Background Colors */
    --color-bg: #ffffff;
    --color-bg-light: #f5f5f5;
    --color-border: #e5e5e5;
    --color-border-light: rgba(255, 255, 255, 0.1);
    --color-border-lighter: rgba(255, 255, 255, 0.05);

    /* Typography */
    --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 11px;
    --font-size-sm: 12px;
    --font-size-base: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 22px;
    --font-size-2xl: 26px;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --line-height-base: 1.5;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --color-text-dark: #333;
    --color-text-gray: #888;
    --color-text-placeholder: #999;

    /* Background Colors */
    --color-bg: #ffffff;
    --color-bg-light: #f5f5f5;
    --color-border: #e5e5e5;

    /* Status Colors */
    --color-success: #4caf50;
    --color-success-bg: #e8f5e9;
    --color-success-border: #c8e6c9;

    /* Typography */
    --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 11px;
    --font-size-sm: 12px;
    --font-size-base: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 22px;
    --font-size-2xl: 26px;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

/* ============================================
   BASE STYLES (a, input, etc.)
   ============================================ */

/* Links */
a {
    color: #1976d2;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: #1565c0;
    text-decoration: underline;
}

a:visited {
    color: #7b1fa2;
}

a:active {
    color: #0d47a1;
}

/* Input fields */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="time"],
textarea,
select {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 12px;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #1976d2;
    box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

input:disabled,
textarea:disabled,
select:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}



button:disabled,
.button:disabled,
.action:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border-color: #ddd;
}

/* Primary buttons */
button,
.button,
button.button,
button.primary,
.button.primary,
.action.primary,
button.button.primary,
.action.primary {
    background: #ffc107;
    color: #333;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    display: inline-block;
    background: #ffc107;
    color: #333;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #e6ac00;
    transform: translateY(-2px);
}


.header.panel>.header.links {
    color: #000;
}

button:hover,
.button:hover,
button.primary:hover,
.button.primary:hover,
.action.primary:hover {
    background: #e6ac00;
    transform: translateY(-2px);
    color: #fff;
}

.action.primary:hover,
.action-primary:hover {
    border: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    color: #333;
    font-weight: var(--font-weight-bold);
    margin: 0 0 var(--spacing-md);
    line-height: 1.3;
}

h1 {
    font-size: var(--font-size-2xl);
}

h2 {
    font-size: var(--font-size-xl);
}

h3 {
    font-size: var(--font-size-lg);
}

h4 {
    font-size: var(--font-size-md);
}

h5 {
    font-size: var(--font-size-base);
}

h6 {
    font-size: var(--font-size-sm);
}

/* Body text */
body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    color: #333;
    line-height: var(--line-height-base);
}

input[type="text"],
input[type="password"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="number"],
input[type*="date"],
input[type="email"] {
    height: 38px;
}

/* ============================================
   HEADER STYLES
   ============================================ */

/* Header Container */
.page-header {
    background-color: #0953a5 !important;
    border: none !important;
    box-shadow: none !important;
}

.header-right-wpt .minicart-wrapper .action.showcart:before,
.minicart-wrapper .action.showcart.active:hover:before {
    content: unset;
}

.header.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 20px;
    background-color: #0953a5 !important;
}

ul.compare.wrapper {
    display: none !important;
}

.header.content:before,
.header.content:after {
    content: unset;
}

.logo {
    max-width: unset;
    height: auto;
    margin: 0;
}

/* Logo */
.header-left-wpt {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.header-left-wpt .logo {
    margin: 0;
}

/* Header center - Search */
.header-center-wpt {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 40%;
    margin: 0 30px;
}

.header-center-wpt .search-form {
    width: 100%;
}

.header-center-wpt .search-form .relative {
    position: relative;
    width: 100%;
}

.header-center-wpt .search-form input {
    width: 100%;
    height: 40px;
    padding: 0 45px 0 16px;
    border: none;
    border-radius: 4px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    box-sizing: border-box;
}

.header-center-wpt .search-form input::placeholder {
    color: #888;
    font-size: 14px;
}

.header-center-wpt .search-form input:focus {
    outline: none;
    box-shadow: none;
}

.header-center-wpt .search-form button[type="submit"] {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-center-wpt .search-form button[type="submit"]:hover {
    color: #000;
}

.header-center-wpt .search-form button[type="submit"] svg {
    width: 20px;
    height: 20px;
}

.mpquickcart .modal-header {
    background-color: #0953a5 !important;
    color: #ffffff;
}

.home-slider-wrapper {
    position: relative;
}

.homeSwiper .swiper-slide {
    position: relative;
}

.slide-image-wrap {
    position: relative;
    display: block;
}
.header.panel>.header.links>li>a:active{
    color: #333;
}
.slide-image {
    width: 100%;
    height: auto;
    display: block; 
    transition: opacity 0.3s ease;
}

 
.slide-image-wrap a:hover {
    text-decoration: unset;
}a.slide-button {
    color: #000;
}
.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    background: rgb(9 83 165 / 65%);
}
.subcategory-item a:hover {
    text-decoration: unset;
}
.slide-content {
    text-align: center;
    color: #fff;
    pointer-events: auto;
    padding: 20px;
}

.slide-title {
    font-size: 36px;
    margin: 0 0 10px;
    color: #fff;
}

.slide-subtitle {
    font-size: 16px;
    margin: 0 0 14px;
    color: rgba(255, 255, 255, 0.9);
}

.slide-button {
    display: inline-block;
    background: #ffc107;
    color: #fff;
    padding: 12px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.slide-button:hover {
    background: #e6ac00;
}

@media (max-width: 768px) {
    
    .logo img {
    margin: 0 auto;
}

a.logo {
    max-width: 70%;
    text-align: center;
}


    .slide-title {
        font-size: 22px;
    }

    .slide-subtitle {
        font-size: 14px;
    }

    .slide-button {
        padding: 10px 16px;
    }
    
    .mp-columns-colspan .mp-col-2 .mp-left, .mp-columns-colspan .mp-col-2 .mp-right {
    width: 100% !important;
}


.form-shipping-address .mp-6 input[type="text"], .form-shipping-address .mp-6 input[type="password"], .form-shipping-address .mp-6 input[type="url"], .form-shipping-address .mp-6 input[type="tel"], .form-shipping-address .mp-6 input[type="search"], .form-shipping-address .mp-6 input[type="number"], .form-shipping-address .mp-6 input[type*="date"], .form-shipping-address .mp-6 .select, .address-information .mp-6 input[type="text"], .address-information .mp-6 input[type="password"], .address-information .mp-6 input[type="url"], .address-information .mp-6 input[type="tel"], .address-information .mp-6 input[type="search"], .address-information .mp-6 input[type="number"], .address-information .mp-6 input[type*="date"], .address-information .mp-6 .select {
    width: 100%;
    float: right;
}

}

.mpquickcart .modal-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
}

.mpquickcart .modal-content .mpquickcart-block {
    height: auto;
}

/* Header Right - Cart & Phone */
.header-right-wpt {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.header-right-wpt .phone-number {
    color: #fff !important;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.header-right-wpt .phone-number:hover {
    color: rgba(255, 255, 255, 0.85) !important;
}

.header-right-wpt .minicart-wrapper {
    margin: 0;
    position: relative;
}

.header-right-wpt .minicart-wrapper .action.showcart {
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
}

.header-right-wpt .minicart-wrapper .action.showcart:before {
    font-size: 26px;
    line-height: 26px;
    color: #fff;
}

.header-right-wpt .minicart-wrapper .action.showcart .text {
    display: none;
}

.header-right-wpt .minicart-wrapper .action.showcart .counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #ffc107 !important;
    color: #333 !important;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.header-right-wpt .minicart-wrapper .action.showcart .counter.empty {
    display: none;
}

/* Navigation */
.nav-sections {
    background: #161e54 !important;
    margin: 0;
}

.nav-sections .navigation {
    background: transparent;
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 20px;
    height: 44px;
    max-width: none;
}

.nav-sections .navigation>ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    height: 100%;
}


.nav-sections .navigation .level0>.level-top {
    color: #fff !important;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 0 18px;
    height: 100%;
    display: flex;
    align-items: center;
    transition: background-color 0.2s;
}


/* Header Responsive */
@media screen and (max-width: 991px) {
    .header.content {
        padding: 12px 15px;
        flex-wrap: wrap;
    }


    .header-left-wpt .logo img {
        max-height: 35px;
    }

    .header-center-wpt {
        order: 3;
        flex: 1 1 100%;
        max-width: 100%;
        margin: 10px 0 0;
    }

    .header-right-wpt {
        gap: 15px;
    }

    .header-right-wpt .phone-number {
        font-size: 16px;
    }

    .nav-sections .navigation {
        height: 40px;
        padding: 0 15px;
    }

    .nav-sections .navigation .level0>.level-top {
        font-size: 13px;
        padding: 0 12px;
    }
}



.homepage-event-cta {
    margin-bottom: -40px;
    margin-top: -65px;

}

.wrappers {
    position: relative;
}

.banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    padding: 100px 20px;
    max-width: 1640px;
    margin: 0 auto;
    z-index: 2;
    background: linear-gradient(135deg, #003d80 0%, #0056b3 100%);
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/photo-1581091226825-a6a2a5aee158.jfif') center/cover;
    opacity: 0.4;
}

.home-slider-wrapper img {
    width: 100%;
}

.wrappers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(24 51 82 / 85%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 1;
    color: white;
    flex: 1;
    width: 100%;
    text-align: center;
    flex-direction: column;
}

.banner-content h2 {
    margin: 0;
    font-size: 3.7rem;
    font-weight: 700;
    line-height: 1.2;
}

.banner-content p {
    margin: 15px 0 0;
    font-size: 22px;
    opacity: 0.95;
}

.banner-content p,
.banner-content h2 {
    color: #fff !important;
}

.banner-content strong {
    display: block;
    margin-top: 4px;
    color: #fff !important;
}

.resources-btn {
    background-color: #ffc107;
    color: #333;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-top: 25px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.resources-btn:hover {
    background-color: #e6ac00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.cms-index-index .page-main {
    max-width: 100%;
    padding: 0;
    margin: 0 auto;
}

@media only screen and (max-width: 1167px) {
    .banner-content h2 {
        font-size: 3.3rem;
    }
}

@media only screen and (max-width: 1024px) {
    .banner-content h2 {
        font-size: 2.9rem;
    }
}

.homepage-event-cta {
    width: 100vw;
    max-width: none;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: -65px;
    margin-bottom: -40px;
}

.container-card-wpts {
    position: relative;
    margin-top: -80px;
    z-index: 11;
    margin-bottom: 50px;
}


.banner-top-block:before {
    background: rgb(24 51 82 / 63%) !important;
}

.container-card {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: var(--max-width-container);
    margin: 0 auto;
}

.site-width.max-width .block-title {
    margin: 30px 0;
}

.site-width.max-width {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 20px;
    flex-direction: column;
}

.block-title h3,
.subcategory-grid h3 {
    color: #000C1A;
    font-weight: 600;
    text-align: left;
    text-transform: none;
    font-size: 24px;
}

.contact-index-index .page-main {
    max-width: 100%;
    padding: 0;
}

.contact-index-index .column:not(.sidebar-additional) .form.contact {
    min-width: 100%;
}

.subcategory-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 10px;
    margin-bottom: 20px;
}

.brand-logo {
    height: 32px;
    width: auto;
    margin-bottom: 12px;
}


.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    padding: 30px 25px;
    width: 46%;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
    border-color: #0056b3;
}

.card-text {
    flex: 1;
    padding-right: 25px;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #003d80;
    margin-bottom: 12px;
    margin-top: 0;
}

.description {
    font-size: 15px;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.6;
}

.card .button {
    background-color: #ffc107;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.card .button:hover {
    background-color: #e6ac00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

.card-image img {
    width: 180px;
    height: auto;
}

@media (max-width: 1024px) {
    .container-card {
        flex-wrap: wrap;
    }

    .card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .brand-title {
        font-size: 2.7rem;
    }

    li.ui-menu-item.fullwidth>.submenu {
        position: relative;
    }

    .nav-sections {
        background: #fff;
    }

    .nav-sections .navigation .level0 {
        flex-direction: column;
    }

    .nav-sections .navigation>ul {
        width: 100%;
    }

    .nav-sections .navigation .level0>.level-top {
        color: #000 !important;
    }

    .card {
        flex-direction: column;
        text-align: center;
    }

    .card-text {
        padding-right: 0;
        padding-bottom: 20px;
    }

    .banner-bottom-blocks {
        margin-top: 40px !important;
    }
}

@media screen and (max-width: 767px) {
    .header.content {
        padding: 10px 12px;
    }

    .header-left-wpt .logo img {
        max-height: 30px;
    }

    .header-center-wpt .search-form input {
        height: 36px;
        font-size: 13px;
    }

    .header-right-wpt .phone-number {
        font-size: 14px;
    }

    .header-right-wpt .minicart-wrapper .action.showcart:before {
        font-size: 22px;
    }

    .nav-sections .navigation {
        height: 36px;
        padding: 0 10px;
    }

    .nav-sections .navigation .level0>.level-top {
        font-size: 12px;
        padding: 0 8px;
    }
}

/* Home Page Stats Section */
.home-stats-section {
    padding: 50px 20px;
    background: linear-gradient(135deg, #003d80 0%, #0056b3 100%);
    color: white;
}

.home-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.home-stat-item {
    padding: 20px;
}

.home-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffc107;
    line-height: 1;
    margin-bottom: 8px;
}

.home-stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .home-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .home-stat-number {
        font-size: 2.2rem;
    }
}

/* Home Page Services Section */
.home-services-section {
    padding: 70px 20px;
    background: #f8f9fa;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.home-service-item {
    background: white;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.home-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: #0056b3;
}

.home-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0056b3 0%, #0073ce 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.home-service-icon i {
    font-size: 28px;
    color: white;
}

.home-service-item h3 {
    font-size: 1.2rem;
    color: #003d80;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.home-service-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .home-services-grid {
        grid-template-columns: 1fr;
    }
}

/* Home Page Brands Grid */
.home-brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-brand-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}

.home-brand-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #0073ce;
    transform: translateY(-3px);
}

.home-brand-item .brand-title {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

@media (max-width: 992px) {
    .home-brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .home-brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Home Page CTA Section */
.home-cta-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #003d80 0%, #0056b3 100%);
    text-align: center;
    color: white;
}

.home-cta-section h2 {
    font-size: 2.2rem;
    margin: 0 0 15px 0;
    color: white;
    font-weight: 700;
}

.home-cta-section p {
    font-size: 1.15rem;
    margin: 0 0 25px 0;
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta-btn {
    display: inline-block;
    background: #ffc107;
    color: #333;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.home-cta-btn:hover {
    background: #e6ac00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.4);
}

ol.products.list.items.product-items .item.product-item {
    border-bottom: 1px solid #e8e6e6;
}

ol.products.list.items.product-items .item.product-item img {
    height: auto !important;
}

h3.product.name.product-item-name a {
    font-size: 24px;
    font-weight: 600;
    color: #0953a5;
}

.stock-line {
    display: inline-flex;
    font-size: 12px;
    color: #000;
    background: rgba(39, 174, 96, 0.10);
    border: 1px solid rgba(39, 174, 96, 0.70);
    padding: 2px 12px;
    border-radius: 25px;
    font-weight: 400;
}

.product-item .short-description {
    word-break: break-word;
}


.nav-sections .navigation .level0>.level-top {
    color: var(--color-text-white);
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    padding: 11px 22px;
    display: flex;
    align-items: center;
    height: 100%;
    line-height: var(--line-height-base);
}

.sw-megamenu .subchildmenu li.ui-menu-item {
    border: 0;
}

.nav-sections .navigation .level0>.level-top:hover {
    background-color: var(--color-border-light);
}

/* Dropdown arrows for items with children */
.nav-sections .navigation .level0.parent>.level-top:after {
    content: '';
    border-top: 3px solid var(--color-text-white);
    opacity: 0.9;
}

.minicart-wrapper .action.showcart .counter-number {
    text-shadow: none;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.footer-main {
    padding: 40px 0 30px;
}

.footer-main .footer-content {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    align-items: flex-start;
}

/* Footer Newsletter */
.footer-main .footer-newsletter {
    flex: 0 0 50%;
    min-width: 300px;
}

.footer-main .footer-newsletter h3 {
    color: #fff !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.2;
}

.footer-main .footer-newsletter>p {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-main .newsletter-form {
    display: flex;
    margin-bottom: 12px;
    align-items: flex-end;
}

.footer-main .newsletter-form .field.newsletter {
    flex: 1;
    margin-right: 0;
}

.footer-main .newsletter-form label {
    display: block;
    color: #fff !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 4px;
}

.footer-main .newsletter-form input[type="email"] {
    width: 100%;
    height: 44px;
    padding: 0 16px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background-color: #fff !important;
    color: #333;
    box-sizing: border-box;
}

.footer-main .newsletter-form input[type="email"]::placeholder {
    color: #999;
    font-size: 14px;
}

.footer-main .newsletter-form button {
    height: 44px;
    padding: 0 20px;
    background-color: #4a90d9 !important;
    color: #fff !important;
    border: none;
    border-radius: 0 4px 4px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.footer-main .newsletter-form button:hover {
    background-color: #3a7bc8 !important;
}

.footer-main .recaptcha-notice {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6) !important;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.4;
}

.footer-main .recaptcha-notice a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: underline;
}

.quantity-cart input.qty-input {
    border: none;
    height: 30px;
}

.products-list .tocart-btn,
.products-list .action.tocart.primary {
    border-radius: 3px;
    background-color: #fcd664 !important;
}

.quantity-cart .qty-increase,
.quantity-cart .qty-decrease {
    height: 30px;
    width: 30px;
}

.additional-attributes-wrappers .table>tbody>tr>th,
.additional-attributes-wrappers .table>tbody>tr>td {
    border-top: 0;
    height: 40px;
    line-height: 30px;
}

.ships-today-container .ships-today {
    border-bottom: 0;
}

.product-specs-attributes .more-specs.mt-1 {
    justify-content: end;
    width: 100%;
    justify-items: end;
    margin-top: -20px;
}

.product-specs-attributes {
    margin-bottom: 20px;
}

.prices-tier .item {
    margin: 0;
    padding: 5px;
    line-height: 30px;
    border-radius: 4px;
}

.control.qty-wrapper button {
    height: 38px;
    width: 36px;
}

/* Footer Right Section */
.footer-main .footer-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer-main .footer-links-wrapper {
    display: flex;
    gap: 40px;
}

.footer-main .footer-links {
    min-width: 140px;
}

.footer-main .footer-links h4 {
    color: #fff !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
}

.footer-main .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-main .footer-links ul li {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.footer-main .footer-links ul li a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
    line-height: 1.5;
}

.footer-main .footer-links ul li a:hover {
    color: #fff !important;
}

/* Footer Contact */
.footer-main .footer-contact {
    text-align: right;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: flex-end;
}

.footer-main .footer-contact .phone-number {
    font-family: 'Open Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff !important;
}

.footer-main .footer-contact .phone-number a {
    color: #fff !important;
    text-decoration: none;
}

.footer-main .footer-contact .phone-number a:hover {
    color: rgba(255, 255, 255, 0.85) !important;
}

.footer-main .social-links {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.footer-main .social-icon {
    width: 32px;
    height: 32px;
    background-color: rgba(0, 0, 0, 0.3) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    transition: background-color 0.2s;
}

.footer-main .social-icon:hover {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.footer-main .social-icon svg {
    width: 16px;
    height: 16px;
    stroke: #fff !important;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.footer-bottom .footer-bottom-content {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom .footer-legal {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-bottom .footer-legal a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom .footer-legal a:hover {
    color: #fff !important;
}

.box-tocart .action.tocart {
    width: 100%;
}

.footer-bottom .footer-legal .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.footer-bottom .footer-copyright {
    color: rgba(255, 255, 255, 0.85) !important;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    text-align: right;
}

.price-box-qty .price {
    font-size: 3rem;
    font-weight: 600;
}

.page-main>.page-title-wrapper .page-title,
.category-products .page-main>.page-title-wrapper .page-title,
.catalog-category-view .page-main>.page-title-wrapper .page-title {
    font-size: 4rem;
    color: #0953a5;
    font-weight: 600;
}

.breadcrumbs {
    padding: 5rem 2rem 2rem;
    margin: 0 auto;
}

.page-title-wrapper {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.product-item-infos {
    padding: 2rem 0;
}

.header.panel>.header.links>li>a,
.header.panel>.header.links>li>a:visited {
    color: #000;
}

.page-header .panel.wrapper {
    border-bottom: 1px solid #fff;
    background-color: #fff;
}

.stock-status.stock-line {
    max-width: max-content;
}

.ships-today {
    font-size: 12px;
    border-bottom: 1.5px solid #000c1a;
    padding-bottom: 1rem;
}

.box-tocart {
    margin: 0;
}

.box-tocart .fieldset {
    margin: 0;
}

.box-tocart .action.tocart {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #000;
    padding: 8px 17px;
    font-size: 1.5rem;
}

.product-info-main .page-title-wrapper.product {
    margin-bottom: 1rem;
}

.price-box .price-box .price {
    font-size: 3rem;
}

.attributes h2.product-section-title,
.product.attribute.description>strong.type {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.product.attribute.description .value {
    margin-top: 15px;
    font-size: 14px;
    padding: 0;
}

.boxContent_index td {
    padding: 0;
}



.product-full-width-section {
    padding: 0;
}

table#product-attribute-specs-table {
    margin-top: 15px;
    font-size: 14px;
    padding: 0;
}




.hero-banner .banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-banner .banner-content h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: white;
    line-height: 1.2;
}

.hero-banner .banner-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 25px 0;
}

.hero-btn {
    display: inline-block;
    background: var(--brand-yellow);
    color: #333;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
}

.hero-btn:hover {
    background: #e6ac00;
    transform: translateY(-2px);
}

/* Feature Cards Section */
.feature-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-light-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--brand-dark-blue);
    margin: 0 0 15px 0;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--brand-dark-blue) 0%, var(--brand-blue) 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-yellow);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.95;
}

/* Services Section */
.services-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--brand-dark-blue);
    margin: 0 0 15px 0;
    font-weight: 700;
}

.section-header p {
    color: #666;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-item h3 {
    font-size: 1.8rem;
    color: var(--brand-dark-blue);
    margin: 0 0 12px 0;
    font-weight: 600;
}

.service-item p {
    color: #666;
    margin: 0;
    font-size: 1.25rem;
}

/* Brands Section */
.brands-section {
    padding: 80px 20px;
    background: white;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.cms-index-index .brand-item {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
.cms-index-index  .brand-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-light-blue);
}
.cms-index-index  .brand-item img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}
.cms-index-index  .brand-item .brand-title {
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
    margin-top: 10px;
}      .amsearch-item-container.recent_searches,
.amsearch-item-container.popular_searches .amasty-xsearch-block-header {
            padding: 0;
        }.amsearch-additional-content .amsearch-leftside-sidebar {
   
    padding: 10px;
}
.brands-filters .letter {
  
    padding: 10px 15px;}
/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--brand-dark-blue) 0%, var(--brand-blue) 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 3rem;
    margin: 0 0 15px 0;
    color: white;
}

.contact-index-index .page-title-wrapper {
    display: none;
}

.cta-section p {
    font-size: 1.25rem;
    margin: 0 0 30px 0;
    opacity: 0.95;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-banner .banner-content h2 {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: -40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 60px 15px;
        min-height: 300px;
    }

    .hero-banner .banner-content h2 {
        font-size: 2rem;
    }

    .hero-banner .banner-content p {
        font-size: 1rem;
    }

    .feature-section {
        padding: 50px 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .cta-section h2 {
        font-size: 3rem;
    }
}

/* ============================================
   RESPONSIVE STYLES - Footer
   ============================================ */

@media screen and (max-width: 991px) {



    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-newsletter {
        flex: none;
        width: 100%;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
        width: 100%;
    }

    .footer-links-wrapper {
        gap: 30px;
    }

    .footer-contact {
        text-align: left;
        align-self: flex-start;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .footer-copyright {
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .footer-main {
        padding: 30px 0 20px;
    }

    .footer-content {
        padding: 0 15px;
        gap: 24px;
    }

    .footer-links-wrapper {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        min-width: unset;
    }

    .footer-newsletter h3 {
        font-size: 18px;
    }

    .footer-contact .phone-number {
        font-size: 18px;
    }

    .footer-bottom-content {
        padding: 0 15px;
    }
}


/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet and below */
@media screen and (max-width: 991px) {

    /* Footer - Tablet */
    .footer-content {
        flex-direction: column;
        gap: var(--spacing-xl);
    }

    .footer-newsletter {
        max-width: 100%;
    }

    .footer-contact {
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }
}

footer.page-footer {
    background-color: #0953a5;
}

/* Mobile */
@media screen and (max-width: 767px) {
    .nav-sections {
        background: #fff !important;
        margin: 0;
    }

    /* Header */
    .header.content {
        flex-wrap: wrap;
        gap: var(--spacing-md);
        padding: var(--spacing-md);
    }

    .header-left-wpt,
    .header-center-wpt,
    .header-right-wpt {
        flex: unset;
    }

    .header-left-wpt {
        order: 1;
    }

    .header-right-wpt {
        order: 2;
    }

    .header-center-wpt {
        order: 3;
        width: 100%;
    }

    .header-center-wpt .block-search {
        max-width: 100%;
    }

    /* Navigation */
    .nav-sections .navigation {
        height: auto;
        padding: var(--spacing-sm);
    }

    .nav-sections .navigation ul {
        flex-wrap: wrap;
        height: auto;
    }

    .nav-sections .navigation .level0 {
        width: 100%;
        height: auto;
    }

    .nav-sections .navigation .level0>.level-top {
        border: none;
        padding: 12px var(--spacing-md);
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: var(--spacing-sm);
    }

    .footer-legal .separator {
        display: none;
    }

    /* Slider */
    .home-slider-wrapper .swiper-button-next,
    .home-slider-wrapper .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
}

.btn-primary {
    display: inline-block;
    background: #ffc107;
    color: #333;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    margin: 0 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #e6ac00;
    transform: translateY(-2px);
}

@media (min-width: 768px),
print {

    .page-title-wrapper {
        max-width: 1660px;
        margin: 0 auto;
        padding: 15px 0;
    }

    .navigation,
    .breadcrumbs,
    .page-header .header.panel,
    .header.content,
    .footer.content,
    .page-wrapper>.widget,
    .page-wrapper>.page-bottom,
    .block.category.event,
    .top-container,
    .page-main {
        max-width: 1660px;
    }

    .section-items {
        max-width: 1660px;
        margin: 0 auto;
    }

    .swiper.am-brand-slider {
        max-width: 1660px;
    }

    .brand-title {
        display: none;
    }

    .brand-item .brand-title {
        display: block;
    }

    .product-info-main .page-title-wrapper h1 {
        font-size: 3rem;
        font-weight: 600;
    }

    .filter-options-item {
        border: none;
    }

        .filter .block-subtitle {
        font-size: 2rem;
        border: none; 
    }
    
    .navigation .level0 .submenu {
        border: none;
        border-top: 3px solid #0953a5;
        box-shadow: 0;
        border-radius: 5px !important;
    }

    .bundle-options-container .input-text.qty,
    .box-tocart .input-text.qty,
    .account .data.table-return-items .qty .input-text,
    .table-giftregistry-items .field.qty .qty,
    .block-giftregistry-shared-items .qty .qty,
    .table.grouped .col.qty .control.qty .qty,
    .block-wishlist-info-items .input-text.qty,
    .multicheckout .table-wrapper .col .qty .input-text,
    .account .table-wrapper .data.table.wishlist .box-tocart .qty,
    .products-grid.wishlist .product-item .box-tocart input.qty {
        width: 180px;
        border: none;
    }

}

.minicart-wrapper .block-minicart {
    border: none;
    border-radius: 5px;
}

a.action.edit {
    background: transparent;
    border: none;
    padding: 0;
}

.toolbar select {
    background-color: #fff;
    box-shadow: none;
    border-radius: 3px;
    padding: 5px 10px;
    min-width: 70px;
}

.filter-options-title {
    background: #F7F8FA;
    padding: 10px 10px;
    border-radius: 5px;
}

.wrappers,
.services-cta {
    background-color: var(--new-dark-blue);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 2501 1071' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2500 712.381C2500 712.381 2317.21 1070.62 1943.84 1070.62C1570.47 1070.62 1274.11 451.818 980.865 451.818C687.617 451.818 665.578 784.834 4.20748e-06 784.834' stroke='white' stroke-opacity='0.13' stroke-width='0.25' stroke-miterlimit='10'/%3E%3Cpath d='M2500 706.209C2500 706.209 2317.47 1044.86 1945.4 1044.86C1573.33 1044.86 1279.82 462.015 982.421 462.015C685.024 462.015 659.873 759.609 4.20748e-06 759.609' stroke='white' stroke-opacity='0.13' stroke-width='0.3065' stroke-miterlimit='10'/%3E%3Cpath d='M2500 700.037C2500 700.037 2317.98 1019.1 1946.69 1019.1C1575.4 1019.1 1285.52 472.213 983.717 472.213C681.913 472.213 653.91 734.385 4.20748e-06 734.385' stroke='white' stroke-opacity='0.13' stroke-width='0.3629' stroke-miterlimit='10'/%3E%3Cpath d='M2500 693.865C2500 693.865 2318.24 993.337 1947.99 993.337C1577.73 993.337 1291.23 482.409 985.273 482.409C679.32 482.409 648.206 709.16 4.20748e-06 709.16' stroke='white' stroke-opacity='0.13' stroke-width='0.4194' stroke-miterlimit='10'/%3E%3Cpath d='M2500 687.693C2500 687.693 2318.76 967.308 1949.54 967.308C1580.33 967.308 1296.93 492.607 986.828 492.607C676.727 492.607 642.242 683.668 0.258993 683.668' stroke='white' stroke-opacity='0.13' stroke-width='0.4758' stroke-miterlimit='10'/%3E%3Cpath d='M2500 681.521C2500 681.521 2319.02 941.546 1950.84 941.546C1582.66 941.546 1302.37 502.804 988.125 502.804C673.875 502.804 636.279 658.443 4.20748e-06 658.443' stroke='white' stroke-opacity='0.13' stroke-width='0.5323' stroke-miterlimit='10'/%3E%3Cpath d='M2500 675.349C2500 675.349 2319.54 915.786 1952.4 915.786C1585.25 915.786 1308.34 513.001 989.68 513.001C671.022 513.001 630.574 633.219 0.258993 633.219' stroke='white' stroke-opacity='0.13' stroke-width='0.5887' stroke-miterlimit='10'/%3E%3Cpath d='M2500 669.177C2500 669.177 2319.8 889.756 1953.69 889.756C1587.59 889.756 1314.04 523.198 990.977 523.198C667.911 523.198 624.352 607.995 4.20748e-06 607.995' stroke='white' stroke-opacity='0.13' stroke-width='0.6452' stroke-miterlimit='10'/%3E%3Cpath d='M2500 663.005C2500 663.005 2320.32 863.995 1954.99 863.995C1589.66 863.995 1319.49 533.395 992.273 533.395C665.059 533.395 618.388 582.502 4.20748e-06 582.502' stroke='white' stroke-opacity='0.13' stroke-width='0.7016' stroke-miterlimit='10'/%3E%3Cpath d='M2500 656.834C2500 656.834 2320.58 838.234 1956.54 838.234C1592.51 838.234 1325.45 543.861 993.829 543.861C662.207 543.861 612.684 557.546 4.20748e-06 557.546' stroke='white' stroke-opacity='0.13' stroke-width='0.7581' stroke-miterlimit='10'/%3E%3Cpath d='M2500 650.661C2500 650.661 2320.84 812.204 1957.84 812.204C1594.85 812.204 1330.9 553.789 995.125 553.789C659.355 553.789 606.721 532.053 4.20748e-06 532.053' stroke='white' stroke-opacity='0.13' stroke-width='0.8145' stroke-miterlimit='10'/%3E%3Cpath d='M2500 644.49C2500 644.49 2321.35 786.444 1959.4 786.444C1597.44 786.444 1336.86 563.986 996.681 563.986C656.503 563.986 600.757 506.829 4.20748e-06 506.829' stroke='white' stroke-opacity='0.13' stroke-width='0.871' stroke-miterlimit='10'/%3E%3Cpath d='M2500 638.318C2500 638.318 2321.61 760.683 1960.69 760.683C1599.77 760.683 1342.3 574.452 998.237 574.452C654.169 574.452 594.794 481.336 4.20748e-06 481.336' stroke='white' stroke-opacity='0.13' stroke-width='0.9274' stroke-miterlimit='10'/%3E%3Cpath d='M2500 632.146C2500 632.146 2322.13 734.921 1961.99 734.921C1601.85 734.921 1348.01 584.649 999.533 584.649C651.058 584.649 589.089 456.38 4.20748e-06 456.38' stroke='white' stroke-opacity='0.13' stroke-width='0.9839' stroke-miterlimit='10'/%3E%3Cpath d='M2500 625.974C2500 625.974 2322.39 708.892 1963.54 708.892C1604.7 708.892 1353.71 594.577 1001.09 594.577C648.465 594.577 583.126 430.887 4.20748e-06 430.887' stroke='white' stroke-opacity='0.13' stroke-width='1.0403' stroke-miterlimit='10'/%3E%3Cpath d='M2500 619.534C2500 619.534 2322.91 682.863 1964.84 682.863C1606.77 682.863 1359.42 604.775 1002.39 604.775C645.354 604.775 577.162 405.663 4.20748e-06 405.663' stroke='white' stroke-opacity='0.13' stroke-width='1.0968' stroke-miterlimit='10'/%3E%3Cpath d='M2500 613.362C2500 613.362 2323.17 657.102 1966.4 657.102C1609.62 657.102 1365.12 614.972 1003.94 614.972C642.761 614.972 571.458 380.171 4.20748e-06 380.171' stroke='white' stroke-opacity='0.13' stroke-width='1.1532' stroke-miterlimit='10'/%3E%3Cpath d='M2500 607.189C2500 607.189 2323.43 631.072 1967.69 631.072C1611.96 631.072 1370.83 624.9 1005.24 624.9C639.649 624.9 565.495 354.946 4.20748e-06 354.946' stroke='white' stroke-opacity='0.13' stroke-width='1.2097' stroke-miterlimit='10'/%3E%3Cpath d='M2500 601.018C2500 601.018 2323.95 605.311 1969.25 605.311C1614.55 605.311 1376.53 635.366 1006.79 635.366C637.057 635.366 559.531 329.722 4.20748e-06 329.722' stroke='white' stroke-opacity='0.13' stroke-width='1.2661' stroke-miterlimit='10'/%3E%3Cpath d='M2500 594.846C2500 594.846 2324.21 579.55 1970.55 579.55C1616.88 579.55 1382.23 645.563 1008.09 645.563C633.945 645.563 553.568 304.497 4.20748e-06 304.497' stroke='white' stroke-opacity='0.13' stroke-width='1.3226' stroke-miterlimit='10'/%3E%3Cpath d='M2500 588.674C2500 588.674 2324.73 553.789 1971.84 553.789C1618.96 553.789 1387.94 655.76 1009.65 655.76C631.352 655.76 547.604 279.273 4.20748e-06 279.273' stroke='white' stroke-opacity='0.13' stroke-width='1.379' stroke-miterlimit='10'/%3E%3Cpath d='M2500 582.502C2500 582.502 2324.98 527.759 1973.4 527.759C1621.81 527.759 1393.64 665.957 1011.2 665.957C628.759 665.957 541.9 253.78 0.258993 253.78' stroke='white' stroke-opacity='0.13' stroke-width='1.4355' stroke-miterlimit='10'/%3E%3Cpath d='M2500 576.33C2500 576.33 2325.5 501.999 1974.69 501.999C1623.89 501.999 1399.35 676.154 1012.5 676.154C625.648 676.154 535.937 228.556 4.20748e-06 228.556' stroke='white' stroke-opacity='0.13' stroke-width='1.4919' stroke-miterlimit='10'/%3E%3Cpath d='M2500 570.158C2500 570.158 2325.76 476.237 1976.25 476.237C1626.74 476.237 1405.05 686.351 1014.05 686.351C623.055 686.351 530.232 203.331 0.258993 203.331' stroke='white' stroke-opacity='0.13' stroke-width='1.5484' stroke-miterlimit='10'/%3E%3Cpath d='M2500 563.986C2500 563.986 2326.02 450.208 1977.55 450.208C1629.07 450.208 1410.75 696.548 1015.35 696.548C619.944 696.548 524.01 178.107 4.20748e-06 178.107' stroke='white' stroke-opacity='0.13' stroke-width='1.6048' stroke-miterlimit='10'/%3E%3Cpath d='M2500 557.814C2500 557.814 2326.54 424.447 1978.84 424.447C1631.14 424.447 1416.46 706.746 1016.65 706.746C616.833 706.746 518.046 152.883 4.20748e-06 152.883' stroke='white' stroke-opacity='0.13' stroke-width='1.6613' stroke-miterlimit='10'/%3E%3Cpath d='M2500 551.643C2500 551.643 2326.8 398.686 1980.4 398.686C1634 398.686 1422.16 717.211 1018.2 717.211C614.24 717.211 512.342 127.39 4.20748e-06 127.39' stroke='white' stroke-opacity='0.13' stroke-width='1.7177' stroke-miterlimit='10'/%3E%3Cpath d='M2500 545.47C2500 545.47 2327.32 372.925 1981.69 372.925C1636.07 372.925 1427.61 727.408 1019.5 727.408C611.388 727.408 506.378 102.166 4.20748e-06 102.166' stroke='white' stroke-opacity='0.13' stroke-width='1.7742' stroke-miterlimit='10'/%3E%3Cpath d='M2500 539.299C2500 539.299 2327.58 346.896 1983.25 346.896C1638.92 346.896 1433.57 737.337 1021.31 737.337C609.054 737.337 500.415 76.9415 4.20748e-06 76.9415' stroke='white' stroke-opacity='0.13' stroke-width='1.8306' stroke-miterlimit='10'/%3E%3Cpath d='M2500 533.126C2500 533.126 2328.1 321.134 1984.55 321.134C1641 321.134 1439.02 747.802 1022.61 747.802C606.202 747.802 494.451 51.7167 4.20748e-06 51.7167' stroke='white' stroke-opacity='0.13' stroke-width='1.8871' stroke-miterlimit='10'/%3E%3Cpath d='M2500 526.954C2500 526.954 2328.36 295.373 1985.84 295.373C1643.33 295.373 1444.72 757.731 1023.91 757.731C603.091 757.731 488.747 26.2241 4.20748e-06 26.2241' stroke='white' stroke-opacity='0.13' stroke-width='1.9435' stroke-miterlimit='10'/%3E%3Cpath d='M2500 520.783C2500 520.783 2328.87 269.344 1987.4 269.344C1645.92 269.344 1450.68 767.928 1025.46 767.928C600.239 767.928 482.784 1 4.20748e-06 1' stroke='white' stroke-opacity='0.13' stroke-width='2' stroke-miterlimit='10'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Small mobile */
@media screen and (max-width: 480px) {
    .header-right-wpt .phone-number {
        font-size: 14px;
    }



    .footer-contact .phone-number a {
        font-size: 20px;
    }
}

.control.qty-wrapper button:hover {
    transform: unset;
}

/* Sticky Product Header */
.sticky-product-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 20px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-product-header.sticky-visible {
    transform: translateY(0);
}

.sticky-product-header-inner {
    max-width: 1660px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sticky-product-info {
    flex: 1;
    min-width: 0;
}

.sticky-product-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sticky-product-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-product-link {
    font-size: 12px;
    font-weight: 600;
    color: #1976d2;
    text-decoration: none;
    border: 1px solid #1976d2;
    padding: 2px 8px;
    border-radius: 3px;
    transition: all 0.2s;
}

.sticky-product-link:hover {
    background: #1976d2;
    color: #fff;
}

.sticky-product-divider {
    color: #ccc;
    font-size: 12px;
}

.sticky-product-price-cart {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.prices-tier {
    border: 2px solid #0953a5;
    border-radius: 5px;
    padding: 5px;
}

.sticky-product-price {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.sticky-product-price .price {
    font-size: 20px;
    font-weight: 700;
}

.sticky-add-to-cart {
    background: #ffc107;
    border: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.sticky-add-to-cart:hover {
    background: #ffb300;
}

@media screen and (max-width: 768px) {
    .sticky-product-header-inner {
        flex-direction: column;
        gap: 10px;
    }

    .product-info-main .page-title-wrapper h1 {
        font-size: 2rem;
        font-weight: 600;
    }

    .sticky-product-info {
        width: 100%;
        text-align: center;
    }

    .sticky-product-name {
        font-size: 16px;
    }

    .sticky-product-actions {
        justify-content: center;
    }

    .sticky-product-price-cart {
        width: 100%;
        justify-content: space-between;
    }

    .sticky-product-price {
        font-size: 18px;
    }

    .sticky-add-to-cart {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .sticky-product-header {
        padding: 8px 12px;
    }

    .sticky-product-name {
        font-size: 14px;
    }

    .sticky-product-link {
        font-size: 10px;
        padding: 2px 6px;
    }

    .sticky-product-price {
        font-size: 16px;
    }

    .sticky-add-to-cart {
        padding: 6px 12px;
        font-size: 12px;
    }




}

.nav-sections .header.links a,
.nav-sections .header.links a:hover {
    font-weight: normal;
    font-size: 14px;
}

.nav-sections .header.links li.greet.welcome {
    font-weight: normal;
    font-size: 14px;
}

@media screen and (max-width: 776px) {

    .page-main>.page-title-wrapper .page-title,
    .category-products .page-main>.page-title-wrapper .page-title,
    .catalog-category-view .page-main>.page-title-wrapper .page-title {
        font-size: 3rem;
    }

    .block-search input {
        left: auto;
        position: relative;
        margin: 0;
    }

    .block-search .label:before {
        content: unset;
    }

    .block-search .control {
        border-top: 0;
        clear: both;
        margin: 0;
        padding: 0;
    }

    .block-search .label {
        display: none;
    }

    .container-card-wpts {
        margin-top: 0;
        padding: 10px;
    }

    .subcategory-grid {
        padding: 10px;
    }

    .site-width.max-width {
        padding: 10px;
    }

    .table-wrapper .table:not(.totals):not(.cart):not(.table-comparison)>tbody>tr td[data-th]:before,
    .table-wrapper .table:not(.totals):not(.cart):not(.table-comparison)>tbody>tr th[data-th]:before {
        content: unset;
    }

    .abs-no-display-s,
    .table-wrapper .table:not(.totals):not(.cart):not(.table-comparison).additional-attributes tbody th,
    .order-details-items .table-order-items .options-label,
    .opc-wrapper .shipping-address-item.selected-item .action-select-shipping-item {
        display: flex;
        padding: 5px;
    }

    .table-wrapper .table:not(.totals):not(.cart):not(.table-comparison).additional-attributes tbody td:last-child {
        padding: 5px;
    }

    .table-wrapper .table:not(.totals):not(.cart):not(.table-comparison)>tbody>tr {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .block-search {
        margin-top: 0;
    }

    .nav-toggle:before {
        color: #fff;
    }

    span.action.nav-toggle {
        position: unset;
    }

    .navigation .submenu:not(:first-child) ul {
        padding-left: 0;
    }

    .sw-megamenu .subchildmenu li.ui-menu-item>a {
        padding: 12px 5px 12px 5px;
    }

    .nav-sections-item-content {
        display: block !important;
        margin: 0;
    }

    .section-items.nav-sections-items {
        display: flex;
        flex-direction: column;
    }

    div#store\.links {
        order: -1;
    }

    .nav-sections .navigation {
        padding: 0;
    }

    .nav-sections .header.links {
        border-bottom: 0;
    }

    .nav-sections .header.links li.greet.welcome {
        border: 0;
    }

}


.filter-options-content a:hover {
    background: transparent;
    color: #333;
}

.filter-options-content a:before {
    content: '';
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.filter-options-content a {
    display: flex;
    gap: 10px;
}button.action.apply.primary {
    padding: 8px;
}
.fa-minus:before,
.fa-plus:before { 
    font-weight: normal;
    font-size: 16px;
}.qty-wrapper a.button-action i {
  
    line-height: 14px;
}
.amsearch-results {
    padding: 10px;
}