/* ============================================================
   EXECUTIVE AMPLE THEME
   Loaded last in master.blade.php so it overrides older styles.
   Colors: primary blue #00A0E3, dark #121212, light blue #E6F6FD
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
    --ea-primary: #00a0e3;
    --ea-primary-dark: #0086c3;
    --ea-primary-light: #e6f6fd;
    --ea-dark: #121212;
    --ea-gray: #6b7280;
    --ea-border: #ececec;
    --ea-bg: #ffffff;
    --ea-bg-soft: #f6f8fa;
    --ea-radius: 14px;
    --ea-radius-pill: 999px;
}

body {
    font-family: "Inter", "Roboto", sans-serif !important;
    background: var(--ea-bg) !important;
    color: var(--ea-dark);
    font-size: 14px;
}

a {
    text-decoration: none;
}

/* ============ HEADER ============ */
#navbar_top {
    background: #fff;
    box-shadow: 0 1px 0 var(--ea-border);
}

.ea-header {
    background: #fff;
    padding: 18px 0 14px;
}

.ea-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.ea-logo img {
    max-height: 52px;
    width: auto;
}

.ea-search {
    flex: 1;
    max-width: 760px;
    position: relative;
}

.ea-search form {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #dfe3e8;
    border-radius: var(--ea-radius-pill);
    padding: 4px 4px 4px 24px;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.05);
}

.ea-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 15px;
    color: var(--ea-dark);
    height: 44px;
}

.ea-search input::placeholder {
    color: #9aa3af;
}

.ea-search button {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border: none;
    border-radius: 50%;
    background: var(--ea-primary-light);
    color: var(--ea-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ea-search button:hover {
    background: var(--ea-primary);
    color: #fff;
}

.ea-search button svg,
.ea-search button i {
    width: 20px;
    height: 20px;
}

.ea-search .search_result {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

/* header icon circles */
.ea-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ea-icon-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ea-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: relative;
    transition: transform 0.15s ease, background 0.2s ease;
}

.ea-icon-btn:hover {
    background: var(--ea-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.ea-icon-btn .ea-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 22px;
    height: 22px;
    padding: 0 5px;
    background: #fff;
    color: var(--ea-dark);
    border: 2px solid var(--ea-primary);
    border-radius: var(--ea-radius-pill);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* cart hover summary (kept functionality) */
.ea-cart-wrap {
    position: relative;
}

.ea-cart-wrap .cshort-summary {
    display: none;
    position: absolute;
    right: 0;
    top: 120%;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.14);
    padding: 14px;
    z-index: 1000;
}

.ea-cart-wrap:hover .cshort-summary {
    display: block;
}

.ea-cart-wrap .cshort-summary ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    border-bottom: 1px solid var(--ea-border);
}

.ea-cart-wrap .cshort-summary ul li a {
    color: var(--ea-dark);
    font-size: 13px;
}

.ea-cart-wrap .cshort-summary ul li img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 8px;
}

.ea-cart-wrap .cshort-summary p {
    margin: 10px 0;
    color: var(--ea-dark);
}

.ea-cart-wrap .cshort-summary .go_cart {
    display: block;
    text-align: center;
    background: var(--ea-primary);
    color: #fff;
    border-radius: var(--ea-radius-pill);
    padding: 10px;
    font-weight: 600;
}

.ea-cart-wrap .remove-cart {
    border: none;
    background: transparent;
    color: #ef4444;
    cursor: pointer;
}

/* ============ NAV / MENU ============ */
.ea-nav {
    border-top: 1px solid var(--ea-border);
    background: #fff;
}

.ea-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ea-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.ea-nav-list > li {
    position: relative;
}

.ea-nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 16px 8px;
    color: var(--ea-dark);
    font-size: 13.5px;
    font-weight: 600;
    transition: color 0.15s ease;
}

.ea-nav-list > li > a:hover {
    color: var(--ea-primary);
}

.ea-nav-list > li > a .ea-caret {
    font-size: 10px;
    color: #9aa3af;
}

/* dropdown */
.ea-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
    padding: 8px;
    z-index: 999;
    list-style: none;
    margin: 0;
}

.ea-nav-list > li:hover > .ea-dropdown {
    display: block;
}

.ea-dropdown > li {
    position: relative;
}

.ea-dropdown > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--ea-dark);
    font-size: 14px;
    font-weight: 500;
}

.ea-dropdown > li > a:hover {
    background: var(--ea-primary-light);
    color: var(--ea-primary);
}

.ea-dropdown .ea-dropdown-sub {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.13);
    padding: 8px;
    list-style: none;
    margin: 0;
}

.ea-dropdown > li:hover > .ea-dropdown-sub {
    display: block;
}

.ea-dropdown-sub li a {
    display: block;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--ea-dark);
    font-size: 13.5px;
}

.ea-dropdown-sub li a:hover {
    background: var(--ea-primary-light);
    color: var(--ea-primary);
}

/* hot deals */
.ea-nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ea-hotdeals {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ea-dark);
    padding: 14px 8px;
}

.ea-hotdeals i {
    color: #f97316;
    font-size: 16px;
}

.ea-hotdeals:hover {
    color: var(--ea-primary);
}

.ea-track {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ea-gray);
    padding: 14px 12px;
}

.ea-track:hover {
    color: var(--ea-primary);
}

/* ============ BREADCRUMB ============ */
.ea-breadcrumb,
.breadcrumb-area {
    background: var(--ea-bg-soft);
    padding: 12px 0;
    font-size: 13.5px;
    color: var(--ea-gray);
}

.ea-breadcrumb a,
.breadcrumb-area a {
    color: var(--ea-gray);
}

.ea-breadcrumb a:hover,
.breadcrumb-area a:hover {
    color: var(--ea-primary);
}

/* ============ SECTION TITLES ============ */
.sec_title {
    margin: 34px 0 20px;
}

.section-title-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
}

.section-title-name {
    font-size: 30px;
    font-weight: 800;
    color: var(--ea-dark);
    letter-spacing: -0.5px;
}

.section-title-name .accent,
.section-title-name span.accent {
    color: var(--ea-primary);
}

.ea-sub-title {
    font-size: 17px;
    font-weight: 400;
    color: #374151;
    border-left: 1px solid var(--ea-border);
    padding-left: 18px;
}

.view_more_btn {
    background: var(--ea-primary);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.view_more_btn:hover {
    background: var(--ea-primary-dark);
}

@media (max-width: 767px) {
    .section-title-name {
        font-size: 22px;
    }
    .ea-sub-title {
        display: none;
    }
}

/* ============ PRODUCT CARDS ============ */
.product_item {
    background: #fff;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius);
    padding: 14px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product_item:hover {
    box-shadow: 0 14px 34px rgba(17, 24, 39, 0.1);
    transform: translateY(-3px);
}

.product_item_inner {
    position: relative;
}

.pro_img {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.pro_img img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product_item:hover .pro_img img {
    transform: scale(1.04);
}

/* discount badge */
.sale-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 5;
}

.sale-badge-inner,
.sale-badge-box {
    all: unset;
}

.sale-badge-text {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: var(--ea-primary);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--ea-radius-pill);
}

.sale-badge-text p {
    margin: 0;
    display: inline;
    font-size: 12.5px;
    font-weight: 700;
    color: #fff;
}

.pro_des {
    padding: 12px 2px 0;
}

.pro_name a {
    color: var(--ea-dark);
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.pro_name a:hover {
    color: var(--ea-primary);
}

/* rating stars */
.product_item .fa-star,
.product_item .fa-star-half-alt {
    color: #f59e0b;
    font-size: 12px;
}

.product_item .far.fa-star {
    color: #d1d5db;
}

/* price */
.pro_price {
    border-top: 1px solid var(--ea-border);
    margin-top: auto; /* Push price and buttons to the bottom of the card */
    padding-top: 10px;
}

.pro_price p {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--ea-dark);
}

.pro_price p del {
    color: #9ca3af;
    font-size: 13.5px;
    font-weight: 500;
    margin-right: 7px;
}

/* card buttons */
.pro_btn {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.pro_btn form {
    flex: 1;
    display: flex;
}

.pro_btn .order-btn,
.pro_btn .order-btn-link {
    flex: 1;
    width: 100%;
    border: 1px solid #cdeefb;
    background: #fff;
    color: var(--ea-primary);
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 6px;
    border-radius: var(--ea-radius-pill);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.pro_btn .order-btn:hover,
.pro_btn .order-btn-link:hover {
    background: var(--ea-primary);
    border-color: var(--ea-primary);
    color: #fff;
}

.pro_btn .cart-icon-btn,
.pro_btn .cart-icon-link {
    flex: 1;
    width: 100%;
    border: none;
    background: var(--ea-bg-soft);
    color: var(--ea-dark);
    font-size: 12.5px;
    font-weight: 600;
    padding: 8px 6px;
    border-radius: var(--ea-radius-pill);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.pro_btn .cart-icon-btn:hover,
.pro_btn .cart-icon-link:hover {
    background: var(--ea-primary);
    color: #fff;
}

@media (max-width: 1280px) {
    .pro_btn {
        flex-direction: column;
        gap: 6px;
    }
    .pro_btn form {
        width: 100%;
    }
}


/* ============ CATEGORY TILES ============ */
.cat_item {
    background: var(--ea-primary-light);
    border-radius: var(--ea-radius);
    padding: 20px 14px;
    text-align: center;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cat_item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 160, 227, 0.14);
}

.cat_img img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    margin: 0 auto;
}

.cat_name a {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--ea-dark) !important;
}

/* ============ FEATURES / WHY CHOOSE ============ */
.features-section {
    padding: 30px 0;
}

.features-section .feature-box,
.ea-feature-box {
    background: #fff;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    height: 100%;
}

.features-section .icon i,
.ea-feature-box .icon i {
    font-size: 30px;
    color: #4b5563;
}

.features-section .content h5,
.ea-feature-box h5 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ea-dark);
    margin: 0 0 8px;
}

.features-section .content p,
.ea-feature-box p {
    color: var(--ea-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* trust strip (product page) */
.ea-trust-strip {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius);
    padding: 18px 10px;
    margin: 26px 0;
    flex-wrap: wrap;
}

.ea-trust-strip .ea-trust-item {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 18px;
    border-left: 1px solid var(--ea-border);
}

.ea-trust-strip .ea-trust-item:first-child {
    border-left: none;
}

.ea-trust-strip .ea-trust-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 50%;
    background: var(--ea-primary-light);
    color: var(--ea-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.ea-trust-strip p {
    margin: 0;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ea-dark);
    line-height: 1.5;
}

/* ============ BRAND SECTION ============ */
.brand-section .brand-item {
    background: #fff;
    border: 1px solid var(--ea-border) !important;
    border-radius: var(--ea-radius) !important;
    padding: 18px 12px;
    display: block;
    transition: box-shadow 0.2s ease;
}

.brand-section .brand-item:hover {
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.08) !important;
}

.brand-section .brand-name {
    font-weight: 600;
    color: var(--ea-dark);
    margin-top: 10px;
}

.ea-brand-pill {
    display: inline-block;
    padding: 10px 26px;
    border-radius: var(--ea-radius-pill);
    background: var(--ea-bg-soft);
    color: var(--ea-dark);
    font-size: 14.5px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.ea-brand-pill:hover,
.ea-brand-pill.active {
    background: var(--ea-primary);
    color: #fff;
}

/* ============ FOOTER ============ */
footer {
    background: #191919 !important;
    color: #e5e7eb;
    margin-top: 50px;
}

.footer-top {
    padding: 54px 0 34px;
    background: transparent !important;
}

.footer-about img {
    max-height: 56px;
    filter: brightness(1.1);
}

.footer-about p {
    color: #b8bec7;
    margin: 18px 0 8px;
    line-height: 1.7;
    font-size: 14px;
}

.footer-hotlint {
    color: #fff !important;
    font-size: 17px;
    font-weight: 700;
}

.ea-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: var(--ea-radius-pill);
    margin: 14px 0 20px;
    transition: background 0.2s ease;
}

.ea-whatsapp-btn:hover {
    background: #1fb958;
}

.ea-whatsapp-btn i {
    font-size: 21px;
}

.ea-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ea-footer-contact li {
    display: flex;
    align-items: center;
    gap: 13px;
    color: #d0d5dc;
    font-size: 14.5px;
}

.ea-footer-contact li i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    border: 1px solid #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
}

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

.footer-menu .title a {
    font-size: 21px;
    font-weight: 700;
    color: #fff !important;
    display: block;
    margin-bottom: 16px;
}

.footer-menu ul li a {
    color: #b8bec7 !important;
    font-size: 14.5px;
    line-height: 2.3;
    transition: color 0.15s ease;
}

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

.ea-footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    justify-content: flex-end;
}

.ea-footer-social li a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #3a3a3a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.2s ease;
}

.ea-footer-social li a:hover {
    background: var(--ea-primary);
    border-color: var(--ea-primary);
}

.ea-payments {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.ea-payments img {
    height: 26px;
    border-radius: 4px;
    background: #fff;
    padding: 2px 4px;
}

.footer-bottom {
    border-top: 1px solid #2c2c2c;
    padding: 20px 0;
    background: transparent !important;
}

.copyright p {
    margin: 0;
    text-align: center;
    color: #b8bec7 !important;
    font-size: 14px;
}

.copyright p span,
.copyright p a span {
    color: #b8bec7 !important;
}

/* ============ MOBILE ============ */
.mobile-header {
    background: #fff !important;
    border-bottom: 1px solid var(--ea-border);
}

.mobile-header .menu-bar .toggle i {
    color: var(--ea-dark);
}

.mobile-header .menu-bag a {
    color: var(--ea-dark);
}

.mobile-header .mobilecart-qty {
    background: var(--ea-primary);
    color: #fff;
    border-radius: var(--ea-radius-pill);
    font-size: 11px;
    padding: 1px 6px;
}

.mobile-search {
    background: #fff;
    padding: 8px 12px;
}

.mobile-search form {
    display: flex;
    align-items: center;
    border: 1px solid #dfe3e8;
    border-radius: var(--ea-radius-pill);
    overflow: hidden;
    padding-left: 16px;
}

.mobile-search input {
    flex: 1;
    border: none;
    outline: none;
    height: 42px;
    font-size: 14px;
}

.mobile-search button {
    border: none;
    background: transparent;
    color: var(--ea-primary);
    padding: 0 16px;
}

.footer_nav {
    background: #fff;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.07);
}

.footer_nav ul li a {
    color: var(--ea-dark);
}

.footer_nav ul li a span i {
    color: var(--ea-primary);
}

@media (max-width: 991px) {
    .ea-header-inner {
        gap: 14px;
    }
    .ea-icon-btn {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }
    .ea-nav-list > li > a {
        padding: 13px 10px;
        font-size: 14px;
    }
    .ea-footer-social {
        justify-content: flex-start;
    }
}

/* ============ PRODUCT DETAILS ============ */
.ea-details-card {
    background: #fff;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius);
    padding: 22px;
}

.ea-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--ea-primary);
}

.ea-price del {
    color: #9ca3af;
    font-size: 20px;
    font-weight: 500;
    margin-right: 10px;
}

.ea-feature-list {
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius);
    padding: 18px 22px;
    margin: 18px 0;
}

.ea-feature-list ul {
    list-style: disc;
    margin: 0;
    padding-left: 18px;
}

.ea-feature-list li {
    font-size: 15px;
    color: var(--ea-dark);
    line-height: 2;
}

.ea-qty-group {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius-pill);
    overflow: hidden;
}

.ea-qty-group button {
    width: 44px;
    height: 46px;
    border: none;
    background: var(--ea-bg-soft);
    font-size: 18px;
    cursor: pointer;
}

.ea-qty-group input {
    width: 56px;
    height: 46px;
    border: none;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    outline: none;
}

.ea-btn-dark {
    background: var(--ea-dark);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.ea-btn-dark:hover {
    opacity: 0.88;
}

.ea-btn-primary {
    background: var(--ea-primary);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.ea-btn-primary:hover {
    background: var(--ea-primary-dark);
}

/* pay-with box */
.ea-paywith {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--ea-border);
    border-radius: var(--ea-radius);
    padding: 16px 18px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.ea-paywith .ea-paywith-label {
    font-weight: 700;
    color: var(--ea-dark);
    border-right: 1px solid var(--ea-border);
    padding-right: 16px;
}

.ea-paywith img {
    height: 34px;
    border: 1px solid var(--ea-border);
    border-radius: 8px;
    padding: 3px 6px;
    background: #fff;
}

/* tabs */
.ea-tabs {
    display: inline-flex;
    background: var(--ea-bg-soft);
    border-radius: var(--ea-radius-pill);
    padding: 5px;
    gap: 4px;
    margin: 26px 0 18px;
}

.ea-tabs a,
.ea-tabs button {
    border: none;
    background: transparent;
    padding: 11px 26px;
    border-radius: var(--ea-radius-pill);
    font-size: 15px;
    font-weight: 600;
    color: var(--ea-dark);
    cursor: pointer;
}

.ea-tabs .active {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* related products list */
.ea-related-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--ea-border);
}

.ea-related-item img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    border-radius: 10px;
    background: var(--ea-bg-soft);
}

.ea-related-item h6 {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ea-dark);
    margin: 0 0 6px;
    line-height: 1.45;
}

.ea-related-item .price {
    font-size: 16px;
    font-weight: 800;
    color: var(--ea-primary);
}

.ea-related-item .price del {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 500;
    margin-right: 6px;
}

/* generic section spacing */
.homeproduct {
    padding: 8px 0 14px;
}

/* owl nav arrows restyle */
.owl-carousel {
    position: relative;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
    color: var(--ea-dark) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    margin: 0 !important;
}

.owl-nav button.owl-prev {
    left: -22px;
}

.owl-nav button.owl-next {
    right: -22px;
}

@media (max-width: 991px) {
    .owl-nav button.owl-prev {
        left: 5px !important;
    }
    .owl-nav button.owl-next {
        right: 5px !important;
    }
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
    background: var(--ea-primary) !important;
    color: #fff !important;
}


/* banner slider rounding */
.main_slider {
    border-radius: 12px !important;
    overflow: hidden !important;
}

.main_slider .item img,
.main_slider img {
    border-radius: 12px !important;
}


/* pay-with logo row */
.ea-paywith .ea-paywith-logos {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* related products title */
.related-title h5 {
    font-size: 26px;
    font-weight: 800;
    color: var(--ea-dark);
    margin: 26px 0 18px;
}

.related-title h5 .accent {
    color: var(--ea-primary);
}

/* Align and style product card buttons perfectly */
.product_item .pro_btn,
.product_item_inner .pro_btn {
    display: flex !important;
    flex-direction: row-reverse !important; /* Put Add To Cart on left, Buy Now on right on desktop */
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    margin-top: 12px !important;
    width: 100% !important;
    padding: 0 12px 12px !important;
}

/* Ensure forms and anchors behave as flex items of equal width */
.product_item .pro_btn > form,
.product_item .pro_btn > a,
.product_item_inner .pro_btn > form,
.product_item_inner .pro_btn > a {
    margin: 0 !important;
    flex: 1 !important;
    width: 100% !important;
    display: flex !important;
}

/* Style for Buy Now button (first child / capsule / soft grey / dark text) */
.product_item .pro_btn > a:first-child,
.product_item .pro_btn > form:first-child button,
.product_item_inner .pro_btn > a:first-child,
.product_item_inner .pro_btn > form:first-child button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: 36px !important;
    padding: 6px 8px !important;
    background: #f3f4f6 !important; /* soft grey */
    color: #1f2937 !important; /* dark grey text */
    border: none !important;
    border-radius: 100px !important; /* capsule */
    font-size: 11.5px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    text-transform: none !important;
    line-height: normal !important;
    white-space: nowrap !important;
}

.product_item .pro_btn > a:first-child:hover,
.product_item .pro_btn > form:first-child button:hover,
.product_item_inner .pro_btn > a:first-child:hover,
.product_item_inner .pro_btn > form:first-child button:hover {
    background: #e5e7eb !important;
    color: #111827 !important;
}

/* Style for Add To Cart button (last child / capsule / soft blue / blue text) */
.product_item .pro_btn > a:last-child,
.product_item .pro_btn > form:last-child button,
.product_item_inner .pro_btn > a:last-child,
.product_item_inner .pro_btn > form:last-child button {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: 36px !important;
    padding: 6px 8px !important;
    background: #e0f2fe !important; /* soft blue */
    color: #0284c7 !important; /* blue text */
    border: none !important;
    border-radius: 100px !important; /* capsule */
    font-size: 11.5px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    text-transform: none !important;
    line-height: normal !important;
    white-space: nowrap !important;
}

.product_item .pro_btn > a:last-child:hover,
.product_item .pro_btn > form:last-child button:hover,
.product_item_inner .pro_btn > a:last-child:hover,
.product_item_inner .pro_btn > form:last-child button:hover {
    background: #bae6fd !important;
    color: #0369a1 !important;
}

/* Mobile & Tablet responsiveness: stack buttons vertically to fit narrow columns */
@media only screen and (max-width: 1199px) {
    .product_item .pro_btn,
    .product_item_inner .pro_btn {
        flex-direction: column !important; /* Stack: Buy Now on top, Add to Cart on bottom */
        gap: 6px !important;
        padding: 0 8px 8px !important;
    }
    .product_item .pro_btn > form,
    .product_item .pro_btn > a,
    .product_item_inner .pro_btn > form,
    .product_item_inner .pro_btn > a {
        width: 100% !important;
        flex: none !important;
        display: flex !important;
    }
}

/* Center footer social icons perfectly */
.ea-footer-social {
    display: flex !important;
    gap: 10px !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 20px !important;
    justify-content: flex-end !important;
}

@media (max-width: 991px) {
    .ea-footer-social {
        justify-content: flex-start !important;
    }
}

.ea-footer-social li {
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ea-footer-social li a {
    width: 42px !important;
    height: 42px !important;
    border-radius: 50% !important;
    border: 1px solid #3a3a3a !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 16px !important;
    transition: all 0.2s ease !important;
    line-height: 1 !important;
    text-decoration: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.ea-footer-social li a i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 16px !important;
    width: auto !important;
    height: auto !important;
}

.ea-footer-social li a:hover {
    background: var(--ea-primary) !important;
    border-color: var(--ea-primary) !important;
    color: #fff !important;
}

/* Fix navigation dropdown and nested sub-dropdown layout */
.ea-dropdown,
.ea-dropdown-sub {
    display: none !important;
    position: absolute !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    padding: 8px !important;
    z-index: 9999 !important;
    list-style: none !important;
    margin: 0 !important;
    border: 1px solid #f1f3f5 !important;
}

/* Base dropdown positioning */
.ea-dropdown {
    top: 100% !important;
    left: 0 !important;
    min-width: 240px !important;
}

/* Sub-dropdown positioning (nested side flyout) */
.ea-dropdown .ea-dropdown-sub {
    top: 0 !important;
    left: 100% !important;
    min-width: 220px !important;
    margin-left: 4px !important; /* Slight gap from parent list */
}

/* Force list items to stack vertically instead of inline-block */
.ea-dropdown > li,
.ea-dropdown-sub > li,
.ea-dropdown li {
    display: block !important;
    width: 100% !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Style for category/subcategory menu items */
.ea-dropdown > li > a,
.ea-dropdown-sub li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    color: #1f2937 !important; /* Elegant dark text */
    font-size: 14px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    transition: all 0.2s ease-in-out !important;
    width: 100% !important;
    box-sizing: border-box !important;
    line-height: normal !important;
}

/* Hover effects */
.ea-dropdown > li > a:hover,
.ea-dropdown-sub li a:hover {
    background: #f3f4f6 !important; /* Soft grey background on hover */
    color: #0d6efd !important; /* Primary brand color on hover */
}

/* Display sub-dropdown on hover */
.ea-nav-list > li:hover > .ea-dropdown {
    display: block !important;
}

.ea-dropdown > li:hover > .ea-dropdown-sub {
    display: block !important;
}

/* Adjust caret styles for alignment */
.ea-dropdown .ea-caret {
    font-size: 10px !important;
    color: #9ca3af !important;
    margin-left: 8px !important;
}
