.sellzy-site-header,
.sellzy-home-shell {
    --sellzy-teal: #078b7e;
    --sellzy-teal-dark: #075f63;
    --sellzy-yellow: #ffba08;
    --sellzy-text: #111827;
    --sellzy-muted: #64748b;
    --sellzy-border: #dbe3ea;
    background: #ffffff;
    color: var(--sellzy-text);
    font-family: "Roboto", sans-serif;
}

.sellzy-site-header {
    position: sticky;
    top: 0;
    z-index: 1200;
}

/* Shared storefront product card */
.wc-front-shell .main_product_inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0;
    align-items: stretch;
    padding: 0;
}

.wc-front-shell .category-product {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.wc-front-shell .product-section .category-product.main_product_inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wc-front-shell .product_item {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--aminsuk-border, #cce8ee);
    border-radius: 0;
    box-shadow: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wc-front-shell .product_item:hover {
    border-color: var(--aminsuk-teal, #008f88);
    box-shadow: inset 0 0 0 1px var(--aminsuk-teal, #008f88), 0 14px 30px rgba(27, 44, 64, 0.12);
}

.wc-front-shell .product-card-media {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: #ffffff;
}

.wc-front-shell .product_item .pro_img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    margin: 0;
    background: #ffffff;
    border: 0;
    border-radius: 0;
}

.wc-front-shell .product_item .pro_img img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    border-radius: 0;
    transition: transform 0.25s ease;
}

.wc-front-shell .product_item:hover .pro_img img {
    /* transform: scale(1.04); */
}

.wc-front-shell .product_item .sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 5px 9px;
    color: #fff;
    background: #ef4444;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.wc-front-shell .product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    padding: 14px 14px 16px;
    text-align: center;
}

.wc-front-shell .product-card-rating {
    display: none;
    align-items: center;
    gap: 2px;
    min-height: 18px;
    margin-bottom: 8px;
    color: #f5b400;
    font-size: 14px;
}

.wc-front-shell .product-card-rating .far {
    color: #cbd5e1;
}

.wc-front-shell .product-card-rating span {
    margin-left: 4px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.wc-front-shell .product_item .pro_name {
    height: 44px;
    width: 100%;
    margin: 0 0 8px;
    overflow: hidden;
    line-height: 1.35;
    text-align: center;
}

.wc-front-shell .product_item .pro_name a {
    display: -webkit-box;
    overflow: hidden;
    color: var(--aminsuk-navy, #1b2c40);
    font-size: 15px;
    font-weight: 600;
    line-height: 1.35;
    text-transform: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.wc-front-shell .product_item .pro_name a:hover {
    color: var(--aminsuk-teal, #008f88);
    text-decoration: none;
}

.wc-front-shell .product_item .pro_price {
    padding: 0;
    margin: 0 0 10px;
}

.wc-front-shell .product_item .pro_price p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    color: var(--aminsuk-teal, #008f88);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
}

.wc-front-shell .product_item .pro_price del {
    color: #94a3b8;
    font-size: 15px;
    font-weight: 600;
}

.wc-front-shell .product-card-stock {
    display: none;
}

.wc-front-shell .product-card-stock.is-out {
    color: #dc2626;
}

.wc-front-shell .product_item .pro_btn {
    position: absolute;
    top: 28px;
    right: 16px;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateX(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.wc-front-shell .product_item:hover .pro_btn,
.wc-front-shell .product_item:focus-within .pro_btn {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.wc-front-shell .product_item .cart_btn {
    min-width: 0;
}

.wc-front-shell .product_item .product-card-icon-btn,
.wc-front-shell .product_item .compare_button a.product-card-icon-btn,
.wc-front-shell .product_item .addcartbutton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    color: var(--aminsuk-navy, #1b2c40) !important;
    background: #fff;
    border: 1px solid var(--aminsuk-border, #cce8ee);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(27, 44, 64, 0.14);
    font-size: 16px;
}

.wc-front-shell .product_item .product-card-icon-btn:hover,
.wc-front-shell .product_item .addcartbutton:hover:not(.out-of-stock) {
    color: #ffffff !important;
    background: var(--aminsuk-teal, #008f88);
    border-color: var(--aminsuk-teal, #008f88);
}

.wc-front-shell .product_item .addcartbutton {
    font-size: 0;
}

.wc-front-shell .product_item .addcartbutton::before {
    content: "\f07a";
    font-family: "Font Awesome 6 Free";
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.wc-front-shell .product_item .addcartbutton span {
    display: none;
}

.wc-front-shell .product_item .addcartbutton.out-of-stock {
    color: #ffffff !important;
    background: var(--aminsuk-navy, #1b2c40);
    border-color: var(--aminsuk-navy, #1b2c40);
    cursor: not-allowed;
}

.wc-front-shell .product_item .addcartbutton.out-of-stock::before {
    content: "\f00d";
}

.wc-front-shell .hot-deal-card-stack {
    display: grid;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 0;
    height: 100%;
}

.wc-front-shell .hot-deal-card-stack .product_item {
    margin: 0;
}

@media (max-width: 767px) {
    .wc-front-shell .main_product_inner,
    .wc-front-shell .category-product,
    .wc-front-shell .product-section .category-product.main_product_inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .wc-front-shell .product_item {
        padding: 0;
        border-radius: 0;
    }

    .wc-front-shell .product-card-body {
        padding: 12px 10px 14px;
    }

    .wc-front-shell .product_item .pro_name {
        height: 40px;
    }

    .wc-front-shell .product_item .pro_name a,
    .wc-front-shell .product_item .pro_price p,
    .wc-front-shell .product_item .addcartbutton {
        font-size: 13px;
    }

    .wc-front-shell .product_item .pro_btn {
        top: 12px;
        right: 10px;
        gap: 8px;
    }

    .wc-front-shell .product_item .product-card-icon-btn,
    .wc-front-shell .product_item .compare_button a.product-card-icon-btn,
    .wc-front-shell .product_item .addcartbutton {
        width: 38px;
        min-height: 38px;
        height: 38px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .wc-front-shell .product-section .category-product.main_product_inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 374px) {
    .wc-front-shell .main_product_inner,
    .wc-front-shell .category-product,
    .wc-front-shell .product-section .category-product.main_product_inner {
        grid-template-columns: 1fr;
    }
}

.wc-front-shell .home-category-feature {
    display: grid;
    grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.wc-front-shell .home-category-banner {
    display: block;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    background: #f4f6f8;
}

.wc-front-shell .home-category-banner img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.wc-front-shell .home-category-banner:hover img {
    transform: scale(1.03);
}

.wc-front-shell .home-category-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.wc-front-shell .home-category-products .product_item {
    min-width: 0;
}

.wc-front-shell .home-category-empty {
    grid-column: 1 / -1;
    display: grid;
    min-height: 220px;
    place-items: center;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    color: #64748b;
    font-weight: 700;
}

@media (max-width: 1199px) {
    .wc-front-shell .home-category-feature {
        grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    }

    .wc-front-shell .home-category-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .wc-front-shell .home-category-feature {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .wc-front-shell .home-category-banner {
        display: none !important;
    }

    .wc-front-shell .home-category-banner img {
        min-height: 220px;
    }

    .wc-front-shell .home-category-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }
}

@media (max-width: 374px) {
    .wc-front-shell .home-category-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.sellzy-site-header .container,
.sellzy-home-shell .container {
    max-width: 1630px;
}

.sellzy-mobile-promo,
.sellzy-mobile-menu-button {
    display: none;
}

.sellzy-mobile-backdrop,
.sellzy-mobile-drawer {
    display: none;
}

.sellzy-topbar {
    background: var(--sellzy-teal);
    color: #ffffff;
    font-size: 14px;
    overflow: hidden;
    transition: max-height 0.28s ease, opacity 0.2s ease;
    max-height: 56px;
    opacity: 1;
}

.sellzy-site-header.sellzy-topbar-hidden .sellzy-topbar {
    max-height: 0;
    opacity: 0;
    pointer-events: none;
}

.sellzy-site-header.sellzy-scroll-menu-only .sellzy-brand-row {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    border-bottom-color: transparent;
}

.sellzy-site-header .sellzy-brand-row {
    max-height: 120px;
    transition: max-height 0.28s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.sellzy-topbar-inner,
.sellzy-brand-inner,
.sellzy-nav-inner {
    display: flex;
    align-items: center;
}

.sellzy-topbar-inner {
    min-height: 56px;
    justify-content: space-between;
    gap: 24px;
}

.sellzy-topbar-left,
.sellzy-topbar-center,
.sellzy-topbar-links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sellzy-topbar-left mark,
.sellzy-topbar-center mark {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--sellzy-yellow);
    color: #17323a;
    font-size: 12px;
    font-weight: 700;
}

.sellzy-topbar-left mark {
    font-size: 14px;
    font-weight: 500;
}

.sellzy-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.28);
}

.sellzy-topbar-links a {
    color: #ffffff;
    padding: 0 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.28);
    font-weight: 500;
    transition: color 0.2s ease;
}

.wc-front-shell .sellzy-topbar-links a:hover {
    color: #ffffff !important;
    text-decoration: none;
}

.sellzy-brand-row {
    border-bottom: 1px solid var(--sellzy-border);
    background: #ffffff;
}

.sellzy-brand-inner {
    min-height: 94px;
    gap: 42px;
}

.sellzy-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 390px;
    color: var(--sellzy-teal);
    font-size: 56px;
    font-weight: 800;
    letter-spacing: 0;
}

.sellzy-logo img {
    width: auto;
    max-width: 260px;
    height: 64px;
    object-fit: contain;
}

.sellzy-logo-mark {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--sellzy-teal);
    color: #ffffff;
    font-size: 42px;
}

.sellzy-search {
    position: relative;
    flex: 1;
    max-width: 804px;
}

.sellzy-search input {
    width: 100%;
    height: 58px;
    padding: 0 64px 0 22px;
    border: 1px solid var(--sellzy-border);
    border-radius: 999px;
    color: var(--sellzy-text);
    font-size: 16px;
    background: #ffffff;
}

.sellzy-search input::placeholder {
    color: #94a3b8;
    font-size: 16px;
}

.sellzy-search button {
    position: absolute;
    right: 19px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: transparent;
    color: #6b7b8b;
    font-size: 19px;
}

.sellzy-search .search_result {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 50;
    margin: 0;
    border: 0;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.sellzy-search .search_result:not(:empty) {
    display: block;
    border: 1px solid var(--sellzy-border);
}

.sellzy-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
}

.sellzy-action {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--sellzy-text);
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
}

.sellzy-action small {
    display: block;
    color: #475569;
    font-size: 14px;
}

.sellzy-action-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--sellzy-yellow);
    color: #10212a;
    font-size: 20px;
}

.sellzy-nav-row {
    border-bottom: 1px solid var(--sellzy-border);
    background: #ffffff;
}

.sellzy-nav-inner {
    min-height: 76px;
    gap: 42px;
}

.sellzy-category-menu {
    position: relative;
    flex: 0 0 auto;
}

.sellzy-category-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 263px;
    height: 50px;
    padding: 0 20px;
    border-radius: 7px;
    background: var(--sellzy-teal);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.sellzy-category-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    z-index: 250;
    width: 390px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    pointer-events: none;
}

.sellzy-category-menu:hover .sellzy-category-dropdown,
.sellzy-category-menu:focus-within .sellzy-category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sellzy-category-menu:hover .sellzy-category-button,
.sellzy-category-menu:focus-within .sellzy-category-button {
    background: var(--sellzy-teal-dark);
}

.sellzy-category-dropdown::before {
    content: "";
    position: absolute;
    top: -13px;
    left: 0;
    width: 100%;
    height: 13px;
}

.sellzy-category-dropdown .sellzy-side-card {
    position: relative;
    top: auto;
    width: 100%;
    min-height: 0;
    max-height: calc(100vh - 170px);
    overflow: visible;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
}

.sellzy-category-dropdown .sellzy-sub-dropdown,
.sellzy-category-dropdown .sellzy-child-dropdown {
    max-height: calc(100vh - 190px);
    overflow: visible;
}

@media (max-width: 767px) {
    .sellzy-category-menu {
        width: 100%;
    }

    .sellzy-category-dropdown {
        width: min(390px, calc(100vw - 24px));
    }

    .sellzy-category-dropdown .sellzy-sub-dropdown,
    .sellzy-category-dropdown .sellzy-child-dropdown {
        left: 0;
        top: 100%;
        width: 100%;
        transform: translateY(-8px);
    }

    .sellzy-category-dropdown .sellzy-side-item:hover > .sellzy-sub-dropdown,
    .sellzy-category-dropdown .sellzy-sub-item:hover > .sellzy-child-dropdown {
        transform: translateY(4px);
    }
}

.sellzy-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 43px;
}

.sellzy-main-nav a {
    color: var(--sellzy-text);
    font-size: 16px;
    font-weight: 700;
}

.sellzy-main-nav a.active,
.sellzy-main-nav a:hover {
    color: var(--sellzy-teal);
}

.sellzy-support {
    display: grid;
    grid-template-columns: 52px auto;
    align-items: center;
    column-gap: 12px;
    color: var(--sellzy-text);
    font-size: 16px;
    line-height: 1.25;
    white-space: nowrap;
}

.sellzy-support span {
    display: grid;
    place-items: center;
    grid-row: span 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f4f6f8;
    font-size: 20px;
}

.sellzy-support small {
    color: var(--sellzy-muted);
    font-size: 14px;
}

.sellzy-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 390px minmax(0, 1fr);
    gap: 24px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.sellzy-home-shell .sellzy-side-card {
    height: clamp(360px, 30vw, 420px);
    min-height: 0;
}

.sellzy-side-card {
    position: relative;
    min-height: 594px;
    padding: 16px 16px 15px;
    border: 1px solid var(--sellzy-border);
    border-radius: 15px;
    background: #ffffff;
    z-index: 4;
}

.sellzy-side-item {
    position: relative;
}

.sellzy-side-link {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 18px;
    align-items: center;
    min-height: 51px;
    border-bottom: 1px solid #e5ebf0;
    color: #0f172a;
    font-size: 16px;
    font-weight: 500;
}

.sellzy-side-link:hover {
    color: var(--sellzy-teal);
}

.sellzy-side-item:hover > .sellzy-side-link {
    color: var(--sellzy-teal);
    background: #f8fbfb;
}

.sellzy-side-link span {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #b8f3d8;
    color: var(--sellzy-teal-dark);
}

.sellzy-sub-dropdown {
    position: absolute;
    left: calc(100% + 14px);
    top: 0;
    width: 270px;
    overflow: visible;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.16);
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.sellzy-side-item:hover > .sellzy-sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sellzy-sub-dropdown::before,
.sellzy-child-dropdown::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -16px;
    width: 16px;
}

.sellzy-sub-item::after {
    content: "";
    position: absolute;
    top: 0;
    right: -16px;
    bottom: 0;
    width: 16px;
}

.sellzy-sub-item {
    position: relative;
}

.sellzy-sub-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 43px;
    padding: 0 15px;
    border-bottom: 1px solid #e2e8f0;
    color: #3f3f46;
    font-size: 16px;
}

.sellzy-sub-dropdown a:hover {
    color: var(--sellzy-teal);
    background: #f8fbfb;
}

.sellzy-child-dropdown {
    position: absolute;
    left: calc(100% + 14px);
    top: 0;
    width: 260px;
    overflow: visible;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.sellzy-sub-item:hover > .sellzy-child-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sellzy-child-dropdown a {
    color: #475569;
    font-size: 15px;
}

.sellzy-hero-panel {
    position: relative;
    height: clamp(360px, 30vw, 420px);
    min-height: 360px;
    overflow: hidden;
    border-radius: 23px;
    background: #075d63;
    isolation: isolate;
}

.sellzy-hero-panel::after {
    content: "";
    position: absolute;
    left: 36%;
    right: -6%;
    bottom: -42%;
    height: 80%;
    border-radius: 50% 50% 0 0;
    background: rgba(255, 255, 255, 0.04);
    z-index: -1;
}

.sellzy-hero-track,
.sellzy-hero-slide {
    position: absolute;
    inset: 0;
}

.sellzy-hero-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.sellzy-hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.sellzy-hero-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.sellzy-hero-banner-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sellzy-hero-copy {
    position: relative;
    z-index: 2;
    width: 48%;
    padding: 153px 0 0 112px;
    color: #ffffff;
}

.sellzy-offer-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 17px;
}

.sellzy-offer-line mark {
    padding: 3px 11px;
    border-radius: 999px;
    background: #ffdb5c;
    color: #20313a;
    font-size: 12px;
    font-weight: 700;
}

.sellzy-hero-copy h1 {
    color: #ffffff;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.37;
    letter-spacing: 0;
}

.sellzy-hero-copy p {
    max-width: 475px;
    margin-top: 16px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
}

.sellzy-shop-now {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 48px;
    margin-top: 25px;
    padding: 0 12px 0 22px;
    border-radius: 999px;
    background: #0fa395;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.sellzy-shop-now:hover {
    color: #ffffff;
    background: #13b9aa;
}

.sellzy-shop-now span {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--sellzy-teal);
    transform: rotate(-35deg);
}

.sellzy-hero-person {
    position: absolute;
    right: 80px;
    bottom: 0;
    z-index: 1;
    width: min(48vw, 610px);
    height: auto;
    max-height: 585px;
    object-fit: contain;
    object-position: bottom right;
}

.sellzy-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-size: 18px;
}

.sellzy-prev {
    left: 25px;
}

.sellzy-next {
    right: 25px;
}

.sellzy-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 350px;
    min-height: 61px;
    padding: 0 72px;
    transform: translateX(-50%);
    border-radius: 56px 56px 0 0;
    background: #ffffff;
}

.sellzy-slider-dots button {
    width: 14px;
    height: 14px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #d9e0e7;
}

.sellzy-slider-dots button.active {
    width: 78px;
    border-radius: 999px;
    background: var(--sellzy-teal);
}

.sellzy-trust-badges {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin: 32px 0 10px;
    padding: 0;
    position: relative;
    z-index: 5;
}

.sellzy-trust-badge {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    min-height: 78px;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #dce8e8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.sellzy-trust-badge span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e8fbf3;
    color: var(--sellzy-teal-dark);
    font-size: 20px;
}

.sellzy-trust-badge strong {
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.sellzy-home-blog-cta {
    padding: 8px 0 32px;
}

.sellzy-blog-cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 26px 30px;
    border: 1px solid #dce8e8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
}

.sellzy-blog-cta-card span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #e7fbf5;
    color: #087d72;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sellzy-blog-cta-card h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
}

.sellzy-blog-cta-card p {
    max-width: 720px;
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
}

.sellzy-blog-cta-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 8px;
    background: #0b8f84;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.sellzy-blog-cta-card a:hover {
    color: #ffffff;
    background: #087d72;
}

@media (max-width: 1399px) {
    .sellzy-site-header .container,
    .sellzy-home-shell .container {
        max-width: 1200px;
    }

    .sellzy-topbar-center,
    .sellzy-topbar-links a:nth-child(3) {
        display: none;
    }

    .sellzy-brand-inner {
        gap: 24px;
    }

    .sellzy-logo {
        min-width: 300px;
    }

    .sellzy-main-nav {
        gap: 24px;
    }

    .sellzy-hero-grid {
        grid-template-columns: 390px minmax(0, 1fr);
    }

    .sellzy-hero-copy {
        width: 54%;
        padding-left: 72px;
    }

    .sellzy-hero-person {
        right: 20px;
        width: min(44vw, 500px);
    }

    .sellzy-trust-badges {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 12px;
    }

    .sellzy-trust-badge {
        grid-template-columns: 42px minmax(0, 1fr);
        padding: 12px;
    }

    .sellzy-trust-badge span {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 1199px) {
    .sellzy-topbar {
        display: none;
    }

    .sellzy-brand-inner {
        min-height: auto;
        flex-wrap: wrap;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .sellzy-logo {
        min-width: 220px;
        flex: 1;
    }

    .sellzy-search {
        order: 3;
        max-width: none;
        flex-basis: 100%;
    }

    .sellzy-main-nav {
        display: none;
    }

    .sellzy-nav-inner {
        justify-content: space-between;
    }

    .sellzy-hero-grid {
        grid-template-columns: 310px minmax(0, 1fr);
    }

    .sellzy-home-shell .sellzy-side-card {
        height: 300px;
    }

    .sellzy-sub-dropdown {
        display: none;
    }

    .sellzy-hero-copy {
        width: 58%;
        padding: 110px 0 0 48px;
    }

    .sellzy-hero-copy h1 {
        font-size: 38px;
    }

    .sellzy-trust-badges {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-top: 24px;
    }
}

@media (max-width: 991px) {
    .sellzy-actions {
        gap: 14px;
    }

    .sellzy-action {
        font-size: 14px;
    }

    .sellzy-hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: 42px;
    }

    .sellzy-side-card {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: auto;
        gap: 0 16px;
    }

    .sellzy-sub-dropdown,
    .sellzy-child-dropdown {
        display: none;
    }

    .sellzy-hero-panel {
        height: 300px;
        min-height: 300px;
    }

    .sellzy-hero-person {
        width: min(58vw, 470px);
    }

    .sellzy-trust-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    body.sellzy-mobile-menu-open {
        overflow: hidden;
    }

    .sellzy-site-header {
        border-bottom: 1px solid #dce4ec;
        background: #ffffff;
    }

    .sellzy-site-header .sellzy-brand-row {
        max-height: none;
        opacity: 1;
        overflow: visible;
        pointer-events: auto;
    }

    .sellzy-site-header.sellzy-scroll-menu-only .sellzy-brand-row {
        max-height: none;
        opacity: 1;
        overflow: visible;
        pointer-events: auto;
    }

    .sellzy-mobile-promo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        min-height: 53px;
        max-height: 100px;
        padding: 0 12px;
        background: #0b8f84;
        color: #ffffff;
        font-size: 14px;
        font-weight: 800;
        line-height: 1;
        text-align: center;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease, min-height 0.3s ease;
    }

    .sellzy-site-header.sellzy-scroll-menu-only .sellzy-mobile-promo {
        max-height: 0;
        min-height: 0;
        opacity: 0;
        border: 0;
        padding-top: 0;
        padding-bottom: 0;
    }

    .sellzy-mobile-promo span {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        white-space: nowrap;
    }

    .sellzy-mobile-promo mark {
        display: inline-flex;
        align-items: center;
        min-height: 20px;
        padding: 0 10px;
        border-radius: 999px;
        background: #ffce34;
        color: #14343a;
        font-size: 12px;
        font-weight: 900;
        white-space: nowrap;
    }

    .sellzy-brand-row {
        border-bottom: 0;
    }

    .sellzy-brand-inner {
        display: grid;
        grid-template-columns: 50px minmax(0, 1fr) 50px;
        align-items: center;
        gap: 16px;
        min-height: 133px;
        padding-top: 12px;
        padding-bottom: 14px;
        transition: min-height 0.28s ease, padding 0.28s ease;
    }

    .sellzy-site-header.sellzy-scroll-menu-only .sellzy-brand-inner {
        min-height: 68px;
        padding-top: 10px;
        padding-bottom: 10px;
        gap: 0 16px;
        align-content: center;
    }

    .sellzy-mobile-menu-button {
        display: grid;
        grid-column: 1;
        grid-row: 1;
        place-items: center;
        width: 47px;
        height: 47px;
        border: 1px solid #dce4ec;
        border-radius: 50%;
        background: #ffffff;
        color: #334155;
        font-size: 22px;
    }

    .sellzy-mobile-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1998;
        display: block;
        visibility: hidden;
        background: rgba(0, 63, 61, 0.72);
        opacity: 0;
        transition: opacity 0.22s ease, visibility 0.22s ease;
    }

    .sellzy-mobile-drawer {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 1999;
        display: flex;
        flex-direction: column;
        width: min(86vw, 334px);
        padding: 24px 16px 28px;
        overflow-y: auto;
        background: #ffffff;
        box-shadow: 26px 0 60px rgba(15, 23, 42, 0.24);
        transform: translateX(-105%);
        transition: transform 0.24s ease;
    }

    body.sellzy-mobile-menu-open .sellzy-mobile-backdrop {
        visibility: visible;
        opacity: 1;
    }

    body.sellzy-mobile-menu-open .sellzy-mobile-drawer {
        transform: translateX(0);
    }

    .sellzy-mobile-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 22px;
    }

    .sellzy-mobile-drawer-logo {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #078b7e;
        font-size: 30px;
        font-weight: 900;
    }

    .sellzy-mobile-drawer-logo img {
        width: auto;
        max-width: 150px;
        height: 42px;
        object-fit: contain;
    }

    .sellzy-mobile-close {
        display: grid;
        place-items: center;
        width: 31px;
        height: 31px;
        border-radius: 50%;
        background: #f5f7f9;
        color: #64748b;
        font-size: 18px;
    }

    .sellzy-mobile-drawer-search {
        position: relative;
        margin-bottom: 22px;
    }

    .sellzy-mobile-drawer-search input {
        width: 100%;
        height: 50px;
        padding: 0 54px 0 16px;
        border: 1px solid #dce4ec;
        border-radius: 999px;
        color: #0f172a;
        font-size: 15px;
    }

    .sellzy-mobile-drawer-search input::placeholder {
        color: #91a1b3;
    }

    .sellzy-mobile-drawer-search button {
        position: absolute;
        top: 50%;
        right: 9px;
        display: grid;
        place-items: center;
        width: 38px;
        height: 38px;
        color: #7c93aa;
        background: transparent;
        border-radius: 50%;
        transform: translateY(-50%);
        font-size: 21px;
    }

    .sellzy-mobile-drawer-nav {
        display: flex;
        flex-direction: column;
        margin-bottom: 28px;
    }

    .sellzy-mobile-drawer-nav > a,
    .sellzy-mobile-accordion > button {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 39px;
        padding: 0 8px;
        border-bottom: 1px solid #e7edf2;
        color: #4b5563;
        background: transparent;
        font-size: 14px;
        font-weight: 500;
        text-align: left;
    }

    .sellzy-mobile-drawer-nav > a.active,
    .sellzy-mobile-drawer-nav > a:hover,
    .sellzy-mobile-accordion > button:hover {
        color: #078b7e;
    }

    .sellzy-mobile-accordion > button i {
        color: #91a1b3;
        font-size: 12px;
        transition: transform 0.18s ease;
    }

    .sellzy-mobile-accordion.is-open > button i {
        transform: rotate(180deg);
    }

    .sellzy-mobile-panel {
        display: none;
        padding: 8px 0 8px 14px;
        border-bottom: 1px solid #e7edf2;
        background: #fbfcfd;
    }

    .sellzy-mobile-accordion.is-open .sellzy-mobile-panel {
        display: block;
    }

    .sellzy-mobile-panel a {
        display: block;
        padding: 8px 8px;
        color: #64748b;
        font-size: 13px;
    }

    .sellzy-mobile-panel a:hover {
        color: #078b7e;
    }

    .sellzy-mobile-contact-card {
        display: grid;
        gap: 13px;
        padding: 18px 20px;
        margin-bottom: 26px;
        border: 1px solid #dce4ec;
        border-radius: 14px;
    }

    .sellzy-mobile-contact-card a {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #4b5563;
        font-size: 15px;
    }

    .sellzy-mobile-contact-card span {
        display: grid;
        place-items: center;
        width: 29px;
        height: 29px;
        border-radius: 50%;
        background: #ffc107;
        color: #0f3f45;
        font-size: 14px;
    }

    .sellzy-mobile-social h3 {
        margin: 0 0 13px;
        color: #1f2937;
        font-size: 18px;
        font-weight: 900;
    }

    .sellzy-mobile-social ul {
        display: flex;
        gap: 16px;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .sellzy-mobile-social a {
        display: grid;
        place-items: center;
        width: 31px;
        height: 31px;
        border-radius: 50%;
        background: #057a73;
        color: #ffffff;
        font-size: 14px;
    }

    .sellzy-logo {
        grid-column: 2;
        grid-row: 1;
        justify-content: center;
        min-width: 0;
        width: auto;
        flex: none;
        font-size: 30px;
    }

    .sellzy-logo img {
        max-width: 180px;
        height: 48px;
    }

    .sellzy-logo-mark {
        width: 38px;
        height: 38px;
        font-size: 28px;
    }

    .sellzy-search {
        grid-column: 1 / -1;
        grid-row: 2;
        order: initial;
        max-width: none;
        width: 100%;
        max-height: 58px;
        opacity: 1;
        overflow: visible;
        transition: max-height 0.24s ease, opacity 0.18s ease, margin 0.24s ease;
    }

    .sellzy-site-header.sellzy-scroll-menu-only .sellzy-search {
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
    }

    .sellzy-search input {
        height: 48px;
        padding: 0 54px 0 16px;
        border-color: #dce4ec;
        font-size: 15px;
        box-shadow: none;
    }

    .sellzy-search input::placeholder {
        font-size: 15px;
    }

    .sellzy-search button {
        right: 11px;
        width: 38px;
        height: 38px;
        border: 1px solid #88a0b6;
        color: #7890a8;
    }

    .sellzy-actions {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        width: auto;
        justify-content: flex-end;
        order: initial;
        gap: 0;
        margin-left: 0;
    }

    .sellzy-action {
        display: none;
    }

    .sellzy-action[href*="cart"] {
        display: grid;
        place-items: center;
        width: 47px;
        height: 47px;
        border-radius: 50%;
        background: #ffdc5c;
        color: #17202a;
    }

    .sellzy-action[href*="cart"] .sellzy-action-icon {
        width: auto;
        height: auto;
        background: transparent;
        color: currentColor;
        font-size: 21px;
    }

    .sellzy-action[href*="cart"] span:not(.sellzy-action-icon) {
        display: none;
    }

    .sellzy-action[href*="cart"] i:not(.fa-cart-shopping),
    .sellzy-nav-row,
    .sellzy-category-menu,
    .sellzy-support {
        display: none;
    }

    .sellzy-side-card {
        display: none;
    }

    .sellzy-side-link {
        min-height: 46px;
    }

    .sellzy-hero-panel {
        height: 300px;
        min-height: 300px;
        border-radius: 16px;
    }

    .sellzy-hero-copy {
        width: auto;
        padding: 54px 28px 0;
        text-align: left;
    }

    .sellzy-hero-copy h1 {
        font-size: 34px;
        line-height: 1.22;
    }

    .sellzy-hero-copy p {
        max-width: 340px;
    }

    .sellzy-hero-person {
        right: 50%;
        bottom: 38px;
        width: min(86vw, 430px);
        transform: translateX(50%);
    }

    .sellzy-slider-arrow {
        top: auto;
        bottom: 92px;
    }

    .sellzy-slider-dots {
        min-width: 250px;
        min-height: 48px;
        padding: 0 42px;
        gap: 10px;
    }

    .sellzy-slider-dots button.active {
        width: 56px;
    }

    .sellzy-blog-cta-card {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
    }

    .sellzy-blog-cta-card a {
        width: 100%;
    }

    .sellzy-trust-badges {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 16px 0 30px;
    }

    .sellzy-trust-badge {
        min-height: 64px;
        grid-template-columns: 40px minmax(0, 1fr);
        padding: 10px 14px;
    }

    .sellzy-trust-badge span {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }

    .sellzy-trust-badge strong {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .sellzy-brand-inner {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .sellzy-logo {
        min-width: 0;
        width: 100%;
        justify-content: center;
    }

    .sellzy-search input {
        height: 50px;
        padding-left: 16px;
    }

    .sellzy-action-icon {
        width: 42px;
        height: 42px;
    }

    .sellzy-action {
        font-size: 13px;
    }

    .sellzy-action small {
        font-size: 12px;
    }

    .sellzy-hero-copy h1 {
        font-size: 30px;
    }

    .sellzy-hero-copy p {
        font-size: 14px;
    }
}

.sellzy-footer {
    position: relative;
    margin-top: 70px;
    padding: 130px 0 44px;
    border-radius: 22px 22px 0 0;
    background: #075d63;
    color: #d8ffef;
    overflow: hidden;
}

.sellzy-footer a {
    color: #d8ffef;
}

.sellzy-footer-newsletter {
    position: absolute;
    top: 0;
    left: 50%;
    width: min(930px, 76vw);
    min-height: 100px;
    padding: 0 40px 22px;
    transform: translateX(-50%);
    border-radius: 0 0 92px 92px;
    background: #ffffff;
    text-align: center;
}

.sellzy-footer-newsletter::before,
.sellzy-footer-newsletter::after {
    content: "";
    position: absolute;
    top: 0;
    width: 92px;
    height: 92px;
    background: #075d63;
}

.sellzy-footer-newsletter::before {
    left: -92px;
    border-top-right-radius: 92px;
    box-shadow: 46px 0 0 #ffffff;
}

.sellzy-footer-newsletter::after {
    right: -92px;
    border-top-left-radius: 92px;
    box-shadow: -46px 0 0 #ffffff;
}

.sellzy-footer-newsletter p {
    margin: 0 0 24px;
    color: #8a9aab;
    font-size: 16px;
    text-align: center;
}

.sellzy-footer-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: min(420px, 100%);
    height: 50px;
    padding: 0 10px 0 18px;
    border: 1px solid #d8e0e7;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.sellzy-footer-subscribe i {
    color: #536273;
    font-size: 19px;
}

.sellzy-footer-subscribe input {
    flex: 1;
    min-width: 0;
    color: #111827;
    font-size: 16px;
}

.sellzy-footer-subscribe input::placeholder {
    color: #94a3b8;
    font-size: 16px;
}

.sellzy-footer-subscribe button {
    height: 38px;
    padding: 0 17px;
    border-radius: 999px;
    background: #078b7e;
    color: #ffffff;
    font-weight: 800;
}

.sellzy-footer-inner {
    display: grid;
    grid-template-columns: 1.45fr 1fr 1fr 1fr 1.5fr;
    gap: 24px;
}

.sellzy-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 26px;
    color: #ffe066;
    font-size: 34px;
    font-weight: 800;
}

.sellzy-footer-logo img {
    max-width: 160px;
    max-height: 64px;
    object-fit: contain;
}

.sellzy-footer-logo-mark {
    display: inline-grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #ffe066;
    color: #075d63;
}

.sellzy-footer-about p {
    max-width: 390px;
    margin-bottom: 26px;
    color: #d8ffef;
    font-size: 16px;
    line-height: 1.55;
}

.sellzy-footer-social {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
}

.sellzy-footer-social a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 18px;
}

.sellzy-footer-apps h3,
.sellzy-footer-menu h3,
.sellzy-footer-contact h3 {
    margin-bottom: 26px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    color: #d8ffef;
    font-size: 19px;
    font-weight: 800;
}

.sellzy-footer-apps h3 {
    margin-bottom: 14px;
    padding: 0;
    border: 0;
    font-size: 16px;
}

.sellzy-footer-apps img {
    max-width: 330px;
    height: auto;
}

.sellzy-footer-menu li,
.sellzy-footer-contact li {
    display: block;
}

.sellzy-footer-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 46px;
    color: #d8ffef;
    font-size: 16px;
    font-weight: 700;
}

.sellzy-footer-menu a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #d8ffef;
}

.sellzy-footer-contact li {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 46px;
    color: #d8ffef;
    font-size: 16px;
    font-weight: 700;
}

.sellzy-footer-contact span {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.sellzy-footer-payment {
    max-width: 390px;
    height: auto;
    margin-top: 20px;
}

.sellzy-footer-bottom {
    position: relative;
    margin-top: 46px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
}

.sellzy-footer-bottom p {
    display: inline-block;
    margin: -52px auto 0;
    padding: 20px 58px 0;
    border: 1px solid rgba(18, 171, 155, 0.8);
    border-bottom: 0;
    border-radius: 90px 90px 0 0;
    background: #075d63;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
}

.wc-commerce-page {
    padding: 26px 0 58px;
    background: #f6f8fb;
}

.wc-commerce-hero {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 22px;
    padding: 24px 28px;
    border-radius: 4px;
}

.wc-commerce-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    margin-bottom: 10px;
    border-radius: 4px;
    background: #e7fbf5;
    color: #087d72;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wc-commerce-hero h1 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 34px;
    font-weight: 900;
    line-height: 1.15;
}

.wc-commerce-hero p {
    max-width: 560px;
    margin: 0;
    color: #64748b;
    font-size: 15px;
    line-height: 1.5;
}

.wc-commerce-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid #d7e1ea;
    border-radius: 4px;
    background: #ffffff;
    color: #0f172a;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.wc-commerce-link:hover {
    color: #087d72;
    border-color: #a7dcd5;
}

.wc-commerce-card,
.wc-commerce-summary,
.wc-coupon-card {
    border: 1px solid #dde7ef;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.wc-commerce-card,
.wc-commerce-summary {
    padding: 20px;
}

.wc-commerce-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.wc-commerce-card-head h2 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 900;
}

.wc-commerce-card-head p {
    margin: 0;
    color: #64748b;
    font-size: 13px;
}

.wc-cart-line {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr) 136px 140px;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #edf2f7;
    transition: background 0.15s ease;
}

.wc-cart-line:hover {
    background: #f8fafc;
}

.wc-cart-line:last-of-type {
    border-bottom: 0;
}

.wc-cart-thumb {
    display: block;
    width: 105px;
    height: 105px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #f8fafc;
}

.wc-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-cart-name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.wc-cart-name:hover {
    color: #087d72;
}

.wc-cart-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.wc-cart-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 4px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 12px;
    font-weight: 800;
}

.wc-cart-qty .quantity {
    display: grid;
    grid-template-columns: 38px 48px 38px;
    width: 124px;
    overflow: hidden;
    border: 1px solid #d7e1ea;
    border-radius: 4px;
    background: #ffffff;
}

.wc-cart-qty .quantity button,
.wc-cart-qty .quantity input {
    position: static;
    display: block;
    width: 100%;
    height: 38px;
    min-width: 0;
    border: 0;
    background: transparent;
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
    line-height: 38px;
    text-align: center;
}

.wc-cart-qty .quantity button {
    background: #f8fafc;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.wc-cart-qty .quantity button:hover {
    background: #e0f5f3;
    color: #0b8f84;
}

.wc-cart-price {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.wc-cart-price strong {
    color: #0f172a;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.wc-cart-price .remove-cart {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #ffe0e0;
    border-radius: 4px;
    background: #fff5f5;
    color: #dc2626;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.wc-cart-price .remove-cart:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
}

.wc-coupon-card {
    margin-top: 16px;
    padding: 16px;
}

.wc-coupon-card label {
    display: block;
    margin-bottom: 9px;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

.wc-coupon-card form > div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 118px;
    gap: 10px;
}

.wc-coupon-card input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid #d7e1ea;
    border-radius: 4px;
    color: #0f172a;
}

.wc-coupon-card button {
    height: 46px;
    border: 0;
    border-radius: 4px;
    background: #0b8f84;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.wc-commerce-summary {
    position: sticky;
    top: 16px;
    border-left: 3px solid #0b8f84;
}

.wc-summary-list {
    display: grid;
    gap: 12px;
    padding-top: 4px;
}

.wc-summary-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 34px;
    color: #64748b;
    font-size: 14px;
}

.wc-summary-list strong {
    color: #0f172a;
    font-weight: 900;
    text-align: right;
}

.wc-summary-total {
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px dashed #cbd5e1;
}

.wc-summary-total span {
    color: #0f172a;
    font-size: 18px;
}

.wc-summary-total strong {
    color: #0b8f84;
    font-size: 20px;
}

.wc-commerce-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.wc-commerce-primary,
.wc-commerce-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 16px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 900;
    text-align: center;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.wc-commerce-primary {
    border: 0;
    background: #0b8f84;
    color: #ffffff;
}

.wc-commerce-primary:hover {
    color: #ffffff;
    background: #087d72;
}

.wc-commerce-primary.disabled,
.wc-commerce-primary:disabled {
    pointer-events: none;
    opacity: 0.55;
}

.wc-commerce-secondary {
    border: 1px solid #d7e1ea;
    background: #ffffff;
    color: #0f172a;
}

.wc-empty-state {
    display: grid;
    place-items: center;
    min-height: 260px;
    padding: 28px;
    text-align: center;
}

.wc-empty-state.compact {
    min-height: 120px;
}

.wc-empty-state > span {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #e7fbf5;
    color: #087d72;
    font-size: 24px;
}

.wc-empty-state h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 20px;
    font-weight: 900;
}

.wc-empty-state p {
    margin: 0 0 14px;
    color: #64748b;
}

.wc-checkout-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.wc-checkout-steps span {
    min-height: 42px;
    padding: 12px 14px;
    border: 1px solid #dce8e8;
    border-radius: 8px;
    background: #ffffff;
    color: #64748b;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.wc-checkout-steps span.active {
    background: #e7fbf5;
    color: #087d72;
    border-color: #a7dcd5;
}

.wc-checkout-form-card {
    margin-bottom: 16px;
}

.wc-field label {
    display: block;
    margin-bottom: 7px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.wc-field .form-control {
    min-height: 48px;
    border: 1px solid #d7e1ea;
    border-radius: 8px;
    color: #0f172a;
    box-shadow: none;
}

.wc-field textarea.form-control {
    padding-top: 12px;
}

.wc-field small {
    color: #64748b;
    font-size: 12px;
}

.wc-payment-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.wc-payment-option {
    position: relative;
    display: grid;
    grid-template-columns: 22px 42px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 12px;
    border: 1px solid #d7e1ea;
    border-radius: 8px;
    background: #ffffff;
    cursor: pointer;
}

.wc-payment-option:has(input:checked) {
    border-color: #0b8f84;
    background: #f0fdfa;
}

.wc-payment-option span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e7fbf5;
    color: #087d72;
}

.wc-payment-option strong {
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

.wc-secure-note {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 8px;
    background: #f8fafc;
    color: #64748b;
    font-size: 13px;
}

.wc-secure-note i {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e7fbf5;
    color: #087d72;
}

.wc-checkout-items {
    display: grid;
    gap: 12px;
    margin-bottom: 16px;
}

.wc-checkout-item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 64px;
}

.wc-checkout-item img {
    width: 54px;
    height: 54px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    object-fit: cover;
}

.wc-checkout-item strong {
    display: block;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
}

.wc-checkout-item span {
    color: #64748b;
    font-size: 12px;
}

.wc-checkout-item b {
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.wc-place-order {
    margin-top: 18px;
}

.wc-customer-auth {
    padding: 54px 0 70px;
    background: #f6f8fb;
}

.wc-auth-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    align-items: center;
    gap: 34px;
}

.wc-auth-copy {
    padding: 34px;
    border-radius: 8px;
    background: #075d63;
    color: #ffffff;
}

.wc-auth-copy .wc-commerce-kicker {
    background: rgba(255, 255, 255, 0.14);
    color: #d8ffef;
}

.wc-auth-copy h1 {
    max-width: 560px;
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.14;
}

.wc-auth-copy p {
    max-width: 540px;
    margin: 0 0 24px;
    color: #d8ffef;
    font-size: 16px;
    line-height: 1.7;
}

.wc-auth-copy ul {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.wc-auth-copy li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
}

.wc-auth-copy li i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #ffdc5c;
}

.wc-auth-card-front {
    width: 100%;
    padding: 28px;
    border: 1px solid #dce8e8;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.wc-auth-card-head {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.wc-auth-card-head > span {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e7fbf5;
    color: #087d72;
    font-size: 22px;
}

.wc-auth-card-front .auth-title {
    margin: 0 0 2px;
    color: #0f172a;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
}

.wc-auth-card-head small {
    color: #64748b;
    font-size: 13px;
}

.wc-auth-card-front label {
    margin-bottom: 7px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.wc-auth-card-front .form-control {
    min-height: 48px;
    border: 1px solid #d7e1ea;
    border-radius: 8px;
    color: #0f172a;
    box-shadow: none;
}

.wc-auth-card-front .form-control:focus {
    border-color: #0b8f84;
    box-shadow: 0 0 0 4px rgba(11, 143, 132, 0.12);
}

.wc-auth-row {
    display: flex;
    justify-content: flex-end;
    margin: -2px 0 18px;
}

.wc-auth-card-front .forget-link {
    color: #087d72;
    font-size: 13px;
    font-weight: 900;
}

.wc-auth-card-front .submit-btn {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    background: #0b8f84;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
}

.wc-auth-card-front .submit-btn:hover {
    background: #087d72;
}

.wc-auth-card-front .register-now.no-account {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #edf2f7;
}

.wc-auth-card-front .register-now.no-account p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.wc-auth-card-front .register-now.no-account a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid #d7e1ea;
    border-radius: 8px;
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.wc-auth-card-front .register-now.no-account a:hover {
    color: #087d72;
    border-color: #a7dcd5;
}

@media (max-width: 1199px) {
    .sellzy-footer-inner {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wc-cart-line {
        grid-template-columns: 90px minmax(0, 1fr) 126px;
    }

    .wc-cart-thumb {
        width: 90px;
        height: 90px;
    }

    .wc-cart-price {
        grid-column: 2 / -1;
        justify-content: space-between;
    }

    .wc-payment-options {
        grid-template-columns: 1fr;
    }

    .wc-auth-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .wc-commerce-page {
        padding: 18px 0 40px;
    }

    /* Cart empty state (mobile) */
    .wc-empty-state {
        padding: 18px 14px;
        min-height: 180px;
    }

    .wc-empty-state p {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }


    .wc-commerce-hero {
        display: grid;
    }

    .wc-commerce-hero h1 {
        font-size: 26px;
    }

    .wc-commerce-link {
        width: 100%;
    }

    .wc-commerce-card,
    .wc-commerce-summary,
    .wc-coupon-card {
        padding: 14px;
    }

    /* Cart (mobile) */
    .wc-cart-line {
        /* thumb + info on first row, qty + price/remove on second row */
        grid-template-columns: 76px minmax(0, 1fr);
        grid-template-rows: auto auto;
        align-items: start;
        gap: 10px 12px;
        padding: 14px 0;
    }

    .wc-cart-thumb {
        width: 76px;
        height: 76px;
    }

    .wc-cart-info {
        min-width: 0;
    }

    .wc-cart-name {
        font-size: 14px;
        margin-bottom: 6px;
        -webkit-line-clamp: 2;
        line-height: 1.3;
    }

    .wc-cart-meta {
        gap: 6px;
    }

    .wc-cart-meta span {
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .wc-cart-qty {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .wc-cart-qty .quantity {
        width: 124px;
        height: 34px;
    }

    .wc-cart-qty .quantity button,
    .wc-cart-qty .quantity input {
        height: 34px;
        font-size: 14px;
        line-height: 34px;
    }

    .wc-cart-price {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        justify-content: space-between;
        gap: 10px;
    }

    .wc-cart-price strong {
        font-size: 14px;
    }

    .wc-cart-price .remove-cart {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .wc-coupon-card form > div {
        grid-template-columns: 1fr;
    }

    .wc-commerce-summary {
        position: static;
    }

    .wc-checkout-steps {
        grid-template-columns: 1fr;
    }

    .wc-checkout-item {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .wc-checkout-item b {
        grid-column: 2;
    }

    .wc-customer-auth {
        padding: 28px 0 42px;
    }

    .wc-auth-copy {
        padding: 22px;
    }

    .wc-auth-copy h1 {
        font-size: 28px;
    }

    .wc-auth-card-front {
        padding: 20px;
    }

    .wc-auth-card-front .register-now.no-account {
        display: grid;
    }

    .sellzy-footer {
        margin-top: 40px;
        padding-top: 150px;
        border-radius: 16px 16px 0 0;
    }

    .sellzy-footer-newsletter {
        width: calc(100% - 24px);
        padding-left: 18px;
        padding-right: 18px;
        border-radius: 0 0 36px 36px;
    }

    .sellzy-footer-newsletter::before,
    .sellzy-footer-newsletter::after {
        display: none;
    }

    .sellzy-footer-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sellzy-footer-subscribe {
        display: grid;
        grid-template-columns: 24px minmax(0, 1fr);
        width: 100%;
        height: auto;
        padding: 12px;
        border-radius: 18px;
    }

    .sellzy-footer-subscribe button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .sellzy-footer-apps img,
    .sellzy-footer-payment {
        max-width: 100%;
    }

    .sellzy-footer-bottom p {
        margin-top: -44px;
        padding-left: 18px;
        padding-right: 18px;
        font-size: 14px;
    }
}


/* Task 11: Home button Brand color */
.footer_nav .home-nav-btn span i,
.footer_nav .home-nav-btn span {
    color: var(--aminsuk-teal, #0b8f84) !important;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    /* Task 7: Mobile Slider Enable */
    .sellzy-hero-panel {
        display: block !important;
    }

    /* Task 8: Feature box in two rows */
    .sellzy-trust-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    /* Task 9: Category side bar image hide in mobile */
    .sellzy-side-card {
        display: none !important;
    }

    .category-sidebar img,
    .parent-category img {
        display: none !important;
    }

    /* Task 10: Footer section gap hide */
    .footer_top_ads_area,
    .footer-top {
        margin-bottom: 0 !important;
        padding-bottom: 10px !important;
    }
    .sellzy-footer {
        margin-top: 0 !important;
        padding-top: 10px !important;
    }

    .sellzy-footer-inner {
        gap: 10px;
    }

    .sellzy-footer-menu h3,
    .sellzy-footer-contact h3 {
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .sellzy-footer-menu a,
    .sellzy-footer-contact li {
        min-height: 24px !important;
        padding: 4px 0 !important;
        margin: 0 !important;
    }

    body {
        padding-bottom: 60px !important;
    }
}

/* Related product arrow icon alignment */
.related-product-section .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.related-product-section .owl-nav button.owl-prev,
.related-product-section .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: auto;
    background: #fff !important;
    color: var(--aminsuk-teal, #0b8f84) !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid var(--aminsuk-teal, #0b8f84) !important;
}

.related-product-section .owl-nav button.owl-prev {
    left: -20px;
}

.related-product-section .owl-nav button.owl-next {
    right: -20px;
}

/* Center the arrow icon inside the prev/next buttons */
.related-product-section .owl-nav button.owl-prev span,
.related-product-section .owl-nav button.owl-next span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
}

/* Category Page fixes */
.category-sidebar a:hover,
.category-sidebar a:focus,
.parent-category a:hover,
.parent-category a:focus,
.parent-subcategory a:hover,
.parent-subcategory a:focus {
    text-decoration: none !important;
}

/* Mobile Category Menu Text Decoration */
.mobile-menu a:hover,
.mobile-menu a:focus {
    text-decoration: none !important;
}

/* In mobile category sub category name design like previous */
.mobile-menu .parent-category > a {
    display: block;
    width: 100%;
    position: relative;
}

.mobile-menu .menu-category-toggle,
.mobile-menu .menu-subcategory-toggle {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

/* Detail page discount badge clean up */
.product-details-discount-badge .sale-badge,
.product-details-discount-badge .sale-badge-inner,
.product-details-discount-badge .sale-badge-box {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.product-details-discount-badge span.sale-badge-text {
    background-color: var(--aminsuk-teal, #0b8f84) !important;
    color: #fff !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.product-details-discount-badge span.sale-badge-text p {
    color: #fff !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: bold;
}

/* Remove background from product-details-discount-badge wrapper itself */
.product-details-discount-badge {
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

/* FORCE REMOVE BLUE RECTANGLE */
.main-details-page .product-details-discount-badge,
.main-details-page .product-details-discount-badge .sale-badge,
.main-details-page .product-details-discount-badge .sale-badge-inner,
.main-details-page .product-details-discount-badge .sale-badge-box {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
}

.main-details-page .product-details-discount-badge span.sale-badge-text {
    background: var(--aminsuk-teal, #0b8f84) !important;
    background-color: var(--aminsuk-teal, #0b8f84) !important;
    color: #ffffff !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.main-details-page .product-details-discount-badge span.sale-badge-text p {
    color: #ffffff !important;
    margin: 0 !important;
    font-size: 14px !important;
    font-weight: bold !important;
    padding: 0 !important;
}

/* Center the heart icon and make it white */
.wc-front-shell .product_item .compare_button a.product-card-icon-btn i,
.wc-front-shell .product_item .compare_button a i {
    margin: 0 !important; /* Removes the margin-right: 6px that un-centers it */
    color: #ffffff !important;
}

.wc-front-shell .product_item .compare_button a.product-card-icon-btn,
.wc-front-shell .product_item .compare_button a {
    background: var(--aminsuk-teal, #0b8f84) !important;
    border-color: var(--aminsuk-teal, #0b8f84) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Also ensure hover state stays white */
.wc-front-shell .product_item .compare_button a.product-card-icon-btn:hover i,
.wc-front-shell .product_item .compare_button a:hover i {
    color: #ffffff !important;
}

/* Default state: white background, brand color border, brand color icon */
.wc-front-shell .product_item .compare_button a.product-card-icon-btn,
.wc-front-shell .product_item .compare_button a,
.wc-front-shell .product-card-icon-btn {
    background: #ffffff !important;
    border-color: var(--aminsuk-teal, #0b8f84) !important;
    color: var(--aminsuk-teal, #0b8f84) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.wc-front-shell .product_item .compare_button a.product-card-icon-btn i,
.wc-front-shell .product_item .compare_button a i,
.wc-front-shell .product-card-icon-btn i {
    margin: 0 !important; /* Removes the margin-right: 6px that un-centers it */
    color: var(--aminsuk-teal, #0b8f84) !important;
}

/* Hover state: brand color background, white icon */
.wc-front-shell .product_item .compare_button a.product-card-icon-btn:hover,
.wc-front-shell .product_item .compare_button a:hover,
.wc-front-shell .product-card-icon-btn:hover {
    background: var(--aminsuk-teal, #0b8f84) !important;
    border-color: var(--aminsuk-teal, #0b8f84) !important;
    color: #ffffff !important;
}

.wc-front-shell .product_item .compare_button a.product-card-icon-btn:hover i,
.wc-front-shell .product_item .compare_button a:hover i,
.wc-front-shell .product-card-icon-btn:hover i {
    color: #ffffff !important;
}
