.gh-product-tabs {
    --gh-desktop-columns: 4;
    --gh-tablet-columns: 2;
    --gh-mobile-columns: 2;
    --gh-product-gap: 32px;
    --gh-product-tabs-max-width: 1400px;
    --gh-primary: #4285f4;
    --gh-primary-dark: #1a73e8;
    --gh-primary-soft: rgba(66, 133, 244, 0.13);
    --gh-secondary: #8ab4f8;
    --gh-secondary-soft: rgba(138, 180, 248, 0.16);
    --gh-accent: #185abc;
    --gh-accent-soft: rgba(66, 133, 244, 0.14);
    --gh-warm: #aecbfa;
    --gh-text-main: #202124;
    --gh-text-strong: #174ea6;
    --gh-text-muted: #64748b;
    --gh-border: #d2e3fc;
    --gh-card-bg: #ffffff;
    --gh-price: #1a73e8;

    width: 100vw;
    max-width: 100vw;
    margin-top: 60px;
    margin-bottom: 60px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-top: 0;
    padding-bottom: 0;
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
    box-sizing: border-box;
    font-family: inherit;
    overflow-x: clip;
}

@supports not (overflow: clip) {
    .gh-product-tabs {
        overflow-x: hidden;
    }
}

@supports (width: 100dvw) {
    .gh-product-tabs {
        width: 100dvw;
        max-width: 100dvw;
        margin-left: calc(50% - 50dvw);
        margin-right: calc(50% - 50dvw);
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
    }
}

.gh-product-tabs *,
.gh-product-tabs *::before,
.gh-product-tabs *::after {
    box-sizing: border-box;
}

.gh-product-tabs__nav {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin: 0 auto 42px;
    padding: 9px;
    gap: 10px;
    border: 1px solid rgba(66, 133, 244, 0.26);
    border-radius: 999px;
    background: #ffffff;
    box-shadow:
        0 18px 46px rgba(26, 115, 232, 0.16),
        0 0 0 7px rgba(66, 133, 244, 0.045),
        inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.gh-product-tabs__nav::before {
    content: "";
    position: absolute;
    inset: -8px;
    z-index: -1;
    border-radius: 999px;
    background: rgba(66, 133, 244, 0.12);
    filter: blur(13px);
    opacity: 0.88;
}

.gh-product-tabs__tab {
    appearance: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 158px;
    overflow: hidden;
    border: 1px solid transparent;
    background: transparent;
    color: var(--gh-text-main);
    padding: 0 28px;
    margin: 0;
    font: inherit;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: 0.025em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 999px;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gh-product-tabs__tab::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--gh-warm);
    box-shadow: 0 0 0 5px rgba(174, 203, 250, 0.24);
    opacity: 0;
    transform: scale(0.65);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.gh-product-tabs__tab::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 7px;
    height: 3px;
    border-radius: 999px;
    background: var(--gh-primary-dark);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
    pointer-events: none;
}

.gh-product-tabs__tab:hover {
    border-color: rgba(66, 133, 244, 0.36);
    background: #ffffff;
    color: var(--gh-primary-dark);
    box-shadow: 0 12px 24px rgba(26, 115, 232, 0.13);
    transform: translateY(-1px);
}

.gh-product-tabs__tab:hover::after,
.gh-product-tabs__tab:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.gh-product-tabs__tab:focus {
    outline: none;
}

.gh-product-tabs__tab:focus-visible {
    outline: 3px solid rgba(66, 133, 244, 0.32);
    outline-offset: 3px;
}

.gh-product-tabs__tab.is-active {
    border-color: rgba(66, 133, 244, 0.5);
    background: #1a73e8;
    color: #ffffff;
    box-shadow:
        0 16px 32px rgba(26, 115, 232, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.34);
    transform: translateY(-1px);
}

.gh-product-tabs__tab.is-active::after {
    background: rgba(255, 255, 255, 0.88);
    opacity: 1;
    transform: scaleX(1);
}

.gh-product-tabs__tab.is-active::before {
    opacity: 1;
    transform: scale(1);
}


.gh-product-tabs__panels {
    width: 100%;
    max-width: min(100%, var(--gh-product-tabs-max-width, 1400px));
    margin: 0 auto;
}

.gh-product-tabs__panel {
    display: none;
}

.gh-product-tabs__panel.is-active {
    display: block;
}

.gh-product-tabs__grid {
    display: grid;
    grid-template-columns: repeat(var(--gh-desktop-columns), minmax(0, 1fr));
    gap: var(--gh-product-gap);
    width: 100%;
    align-items: stretch;
}

.gh-product-tabs__empty {
    max-width: 560px;
    margin: 0 auto;
    padding: 40px 24px;
    border: 1px dashed rgba(66, 133, 244, 0.48);
    border-radius: 22px;
    background: #ffffff;
    text-align: center;
    color: var(--gh-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.gh-product-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    padding: 16px 16px 19px;
    border: 1px solid transparent;
    border-radius: 26px;
    background: #ffffff;
    border-color: rgba(66, 133, 244, 0.22);
    box-shadow:
        0 16px 38px rgba(26, 115, 232, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.gh-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: rgba(66, 133, 244, 0.045);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.gh-product-card::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    z-index: 1;
    height: 5px;
    border-radius: 999px 999px 0 0;
    background: rgba(26, 115, 232, 0.14);
    opacity: 0;
    transition: opacity 0.2s ease, background-size 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.gh-product-card:hover,
.gh-product-card:focus-within {
    box-shadow:
        0 24px 58px rgba(26, 115, 232, 0.18),
        0 0 0 5px rgba(66, 133, 244, 0.1);
    transform: translateY(-6px);
}

.gh-product-card:hover::before,
.gh-product-card:focus-within::before {
    opacity: 1;
}

.gh-product-card:hover::after,
.gh-product-card:focus-within::after {
    opacity: 1;
    background-color: var(--gh-primary-dark);
}

.gh-product-card > * {
    position: relative;
    z-index: 2;
}

.gh-product-card__image-wrap {
    position: relative;
    overflow: hidden;
    margin: 0 0 14px;
    border-radius: 22px;
    background: #f4f7fb;
}

.gh-product-card__image-link {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    text-decoration: none;
}

.gh-product-card__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.08);
    transition: none !important;
}

.gh-product-card__image--primary {
    opacity: 1;
}

.gh-product-card__image--hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.gh-product-card.has-hover-image:hover .gh-product-card__image--primary,
.gh-product-card.has-hover-image:focus-within .gh-product-card__image--primary {
    opacity: 0;
}

.gh-product-card.has-hover-image:hover .gh-product-card__image--hover,
.gh-product-card.has-hover-image:focus-within .gh-product-card__image--hover {
    opacity: 1;
}

.gh-product-card__sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 4px 8px;
    border-radius: 2px;
    background: #ef1f24;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    box-shadow: none;
    pointer-events: none;
}

.gh-product-card__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
    padding: 0 2px 2px;
}

.gh-product-card__info {
    min-width: 0;
}

.gh-product-card__cart {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    align-self: end;
    min-width: 52px;
    padding-bottom: 1px;
    pointer-events: auto;
}

.gh-product-card__add-to-cart,
.gh-product-card__add-to-cart.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 148px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 999px;
    background: #ffffff;
    border-color: rgba(66, 133, 244, 0.34);
    color: var(--gh-primary-dark);
    font-size: 0;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    box-shadow:
        0 12px 24px rgba(26, 115, 232, 0.16),
        0 0 0 5px rgba(66, 133, 244, 0.055);
    transition: width 0.22s ease, padding 0.22s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.gh-product-card:hover .gh-product-card__add-to-cart,
.gh-product-card:focus-within .gh-product-card__add-to-cart,
.gh-product-card__add-to-cart:hover,
.gh-product-card__add-to-cart.button:hover,
.gh-product-card__add-to-cart:focus,
.gh-product-card__add-to-cart.button:focus {
    width: 138px;
    padding: 0 16px;
    justify-content: flex-start;
    gap: 8px;
    background: var(--gh-primary-dark);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(66, 133, 244, 0.28);
    outline: none;
}

.gh-product-card__add-to-cart:focus-visible,
.gh-product-card__add-to-cart.button:focus-visible {
    outline: 3px solid rgba(66, 133, 244, 0.33);
    outline-offset: 3px;
}

.gh-product-card__cart-icon {
    position: relative;
    display: block;
    flex: 0 0 auto;
    width: 18px;
    height: 16px;
    margin-top: 5px;
    border: 2px solid currentColor;
    border-radius: 3px;
}

.gh-product-card__cart-icon::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 3px;
    width: 8px;
    height: 9px;
    border: 2px solid currentColor;
    border-bottom: 0;
    border-radius: 9px 9px 0 0;
}

.gh-product-card__cart-text {
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    max-width: 0;
    padding: 0;
    margin: 0;
    overflow: hidden;
    clip: auto;
    white-space: nowrap;
    border: 0;
    opacity: 0;
    color: inherit;
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    transition: max-width 0.2s ease, opacity 0.16s ease;
}

.gh-product-card:hover .gh-product-card__cart-text,
.gh-product-card:focus-within .gh-product-card__cart-text,
.gh-product-card__add-to-cart:hover .gh-product-card__cart-text,
.gh-product-card__add-to-cart:focus .gh-product-card__cart-text {
    max-width: 90px;
    opacity: 1;
}

.gh-product-card__cart .added_to_cart.wc-forward {
    display: none !important;
}

.gh-product-card__title {
    display: -webkit-box;
    min-height: 0;
    margin: 0 0 6px;
    overflow: hidden;
    color: var(--gh-text-main);
    font-size: 15.5px;
    line-height: 1.36;
    font-weight: 850;
    text-decoration: none;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color 0.18s ease;
}

.gh-product-card__title:hover,
.gh-product-card__title:focus {
    color: var(--gh-primary-dark);
    text-decoration: none;
    outline: none;
}

.gh-product-card__price {
    margin: 0 0 5px;
    color: var(--gh-price);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 950;
    letter-spacing: -0.025em;
}

.gh-product-card__price del {
    margin-right: 7px;
    color: #9aa0a6;
    font-size: 13px;
    font-weight: 600;
    opacity: 1;
}

.gh-product-card__price ins {
    color: var(--gh-price);
    font-weight: 950;
    text-decoration: none;
}

.gh-product-card__rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    min-height: 19px;
    margin: 0;
    color: var(--gh-text-muted);
    font-size: 13px;
    line-height: 1.4;
}

.gh-product-card__rating .star-rating {
    float: none;
    margin: 0;
    font-size: 12px;
    line-height: 1;
}

.gh-product-card__review-count {
    display: inline-block;
    color: var(--gh-text-muted);
}

.gh-product-tabs__more {
    display: flex;
    justify-content: center;
    margin-top: 44px;
    text-align: center;
}

.gh-product-tabs__more-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 18px 0 30px;
    border: 1px solid rgba(66, 133, 244, 0.48);
    border-radius: 999px;
    background: #1a73e8;
    color: #ffffff !important;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 950;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow:
        0 18px 42px rgba(26, 115, 232, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.gh-product-tabs__more-link::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gh-warm);
    box-shadow: 0 0 0 5px rgba(174, 203, 250, 0.22);
}

.gh-product-tabs__more-text {
    display: inline-flex;
    align-items: center;
}

.gh-product-tabs__more-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--gh-primary-dark);
    font-size: 18px;
    line-height: 1;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.gh-product-tabs__more-link:hover,
.gh-product-tabs__more-link:focus {
    border-color: rgba(66, 133, 244, 0.45);
    background: #2563eb;
    color: #ffffff !important;
    box-shadow: 0 22px 48px rgba(66, 133, 244, 0.3);
    transform: translateY(-3px);
    outline: none;
}

.gh-product-tabs__more-link:hover::before,
.gh-product-tabs__more-link:focus::before {
    background: #ffffff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.22);
}

.gh-product-tabs__more-link:hover .gh-product-tabs__more-arrow,
.gh-product-tabs__more-link:focus .gh-product-tabs__more-arrow {
    background: #ffffff;
    color: #1a73e8;
    transform: translateX(3px);
}

.gh-product-tabs__more-link:focus-visible {
    outline: 3px solid rgba(66, 133, 244, 0.34);
    outline-offset: 4px;
}

@media (max-width: 1024px) {
    .gh-product-tabs {
        margin-top: 46px;
        margin-bottom: 46px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    @supports (width: 100dvw) {
        .gh-product-tabs {
            margin-left: calc(50% - 50dvw);
            margin-right: calc(50% - 50dvw);
        }
    }

    .gh-product-tabs__grid {
        grid-template-columns: repeat(var(--gh-tablet-columns), minmax(0, 1fr));
        gap: 22px;
    }
}

@media (max-width: 767px) {
    .gh-product-tabs {
        margin-top: 34px;
        margin-bottom: 34px;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        padding-right: 13px;
        padding-left: 13px;
    }

    @supports (width: 100dvw) {
        .gh-product-tabs {
            margin-left: calc(50% - 50dvw);
            margin-right: calc(50% - 50dvw);
        }
    }

    .gh-product-tabs__nav {
        width: 100%;
        gap: 8px;
        margin-bottom: 30px;
        padding: 8px;
        border-radius: 24px;
    }

    .gh-product-tabs__tab {
        flex: 1 1 auto;
        min-width: calc(50% - 8px);
        min-height: 43px;
        padding: 0 12px;
        font-size: 12px;
    }

    .gh-product-tabs__tab::before {
        width: 6px;
        height: 6px;
        margin-right: 7px;
    }

    .gh-product-tabs__tab::after {
        left: 14px;
        right: 14px;
        bottom: 5px;
        height: 2px;
    }

    .gh-product-tabs__grid {
        grid-template-columns: repeat(var(--gh-mobile-columns), minmax(0, 1fr));
        gap: 15px;
    }

    .gh-product-card {
        padding: 10px 10px 14px;
        border-radius: 18px;
    }

    .gh-product-card:hover,
    .gh-product-card:focus-within {
        transform: none;
    }

    .gh-product-card__image-wrap {
        margin-bottom: 12px;
        border-radius: 15px;
    }

    .gh-product-card__content {
        gap: 8px;
        padding-right: 0;
        padding-left: 0;
    }

    .gh-product-card__cart {
        min-width: 42px;
        padding-bottom: 0;
    }

    .gh-product-card__add-to-cart,
    .gh-product-card__add-to-cart.button {
        width: 41px;
        height: 41px;
        min-width: 41px;
        min-height: 41px;
    }

    .gh-product-card:hover .gh-product-card__add-to-cart,
    .gh-product-card:focus-within .gh-product-card__add-to-cart,
    .gh-product-card__add-to-cart:hover,
    .gh-product-card__add-to-cart.button:hover,
    .gh-product-card__add-to-cart:focus,
    .gh-product-card__add-to-cart.button:focus {
        width: 41px;
        padding: 0;
        justify-content: center;
        gap: 0;
    }

    .gh-product-card:hover .gh-product-card__cart-text,
    .gh-product-card:focus-within .gh-product-card__cart-text,
    .gh-product-card__add-to-cart:hover .gh-product-card__cart-text,
    .gh-product-card__add-to-cart:focus .gh-product-card__cart-text {
        max-width: 0;
        opacity: 0;
    }

    .gh-product-card__sale-badge {
        top: 8px;
        left: 8px;
        min-height: 20px;
        padding: 3px 7px;
        font-size: 11px;
    }

    .gh-product-card__title {
        min-height: 36px;
        margin-bottom: 5px;
        font-size: 13px;
        line-height: 1.38;
    }

    .gh-product-card__price {
        font-size: 15.5px;
        margin-bottom: 4px;
    }

    .gh-product-card__rating {
        font-size: 12px;
    }

    .gh-product-tabs__more {
        margin-top: 30px;
    }

    .gh-product-tabs__more-link {
        min-height: 49px;
        padding-left: 24px;
        font-size: 12.5px;
    }

    .gh-product-tabs__more-arrow {
        width: 27px;
        height: 27px;
        font-size: 16px;
    }
}

/* v2.0.7: align cart actions and prevent expanded cart from changing product text layout. */
.gh-product-tabs .gh-product-card {
    overflow: visible;
    padding-bottom: 80px;
}

.gh-product-tabs .gh-product-card:hover,
.gh-product-tabs .gh-product-card:focus-within {
    transform: none;
}

.gh-product-tabs .gh-product-card__content {
    display: block;
    position: static;
    padding: 0 2px;
}

.gh-product-tabs .gh-product-card__info {
    min-width: 0;
    padding-right: 0;
}

.gh-product-tabs .gh-product-card__cart {
    position: absolute;
    right: 18px;
    bottom: 20px;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: auto;
    width: 150px;
    height: 50px;
    min-width: 0;
    padding: 0;
    pointer-events: none;
}

.gh-product-tabs .gh-product-card__add-to-cart,
.gh-product-tabs .gh-product-card__add-to-cart.button {
    margin-left: auto;
    pointer-events: auto;
    transform: none;
}

.gh-product-tabs .gh-product-card:hover .gh-product-card__add-to-cart,
.gh-product-tabs .gh-product-card:focus-within .gh-product-card__add-to-cart,
.gh-product-tabs .gh-product-card__add-to-cart:hover,
.gh-product-tabs .gh-product-card__add-to-cart.button:hover,
.gh-product-tabs .gh-product-card__add-to-cart:focus,
.gh-product-tabs .gh-product-card__add-to-cart.button:focus {
    transform: none;
}

@media (max-width: 767px) {
    .gh-product-tabs .gh-product-card {
        padding-bottom: 62px;
    }

    .gh-product-tabs .gh-product-card__cart {
        right: 12px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }
}


/* v2.0.8: show the full cart CTA text without shifting or squeezing product info. */
.gh-product-tabs .gh-product-card {
    padding-bottom: 88px;
}

.gh-product-tabs .gh-product-card__cart {
    right: 18px;
    bottom: 20px;
    width: 194px;
    height: 52px;
}

.gh-product-tabs .gh-product-card__add-to-cart,
.gh-product-tabs .gh-product-card__add-to-cart.button {
    width: 48px;
    min-width: 48px;
    max-width: none;
    height: 48px;
    min-height: 48px;
    flex: 0 0 auto;
    white-space: nowrap;
}

.gh-product-tabs .gh-product-card:hover .gh-product-card__add-to-cart,
.gh-product-tabs .gh-product-card:focus-within .gh-product-card__add-to-cart,
.gh-product-tabs .gh-product-card__add-to-cart:hover,
.gh-product-tabs .gh-product-card__add-to-cart.button:hover,
.gh-product-tabs .gh-product-card__add-to-cart:focus,
.gh-product-tabs .gh-product-card__add-to-cart.button:focus {
    width: 176px;
    min-width: 176px;
    padding: 0 17px;
    justify-content: flex-start;
    gap: 10px;
}

.gh-product-tabs .gh-product-card__cart-text {
    min-width: 0;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 10.5px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.gh-product-tabs .gh-product-card:hover .gh-product-card__cart-text,
.gh-product-tabs .gh-product-card:focus-within .gh-product-card__cart-text,
.gh-product-tabs .gh-product-card__add-to-cart:hover .gh-product-card__cart-text,
.gh-product-tabs .gh-product-card__add-to-cart:focus .gh-product-card__cart-text {
    max-width: 126px;
    overflow: visible;
    opacity: 1;
}

@media (max-width: 767px) {
    .gh-product-tabs .gh-product-card {
        padding-bottom: 62px;
    }

    .gh-product-tabs .gh-product-card__cart {
        right: 12px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }

    .gh-product-tabs .gh-product-card:hover .gh-product-card__add-to-cart,
    .gh-product-tabs .gh-product-card:focus-within .gh-product-card__add-to-cart,
    .gh-product-tabs .gh-product-card__add-to-cart:hover,
    .gh-product-tabs .gh-product-card__add-to-cart.button:hover,
    .gh-product-tabs .gh-product-card__add-to-cart:focus,
    .gh-product-tabs .gh-product-card__add-to-cart.button:focus {
        width: 41px;
        min-width: 41px;
        padding: 0;
        justify-content: center;
        gap: 0;
    }

    .gh-product-tabs .gh-product-card:hover .gh-product-card__cart-text,
    .gh-product-tabs .gh-product-card:focus-within .gh-product-card__cart-text,
    .gh-product-tabs .gh-product-card__add-to-cart:hover .gh-product-card__cart-text,
    .gh-product-tabs .gh-product-card__add-to-cart:focus .gh-product-card__cart-text {
        max-width: 0;
        overflow: hidden;
        opacity: 0;
    }
}


/* v2.0.9: Google Blue palette and hover progress indicators for tabs/cards. */

/* v2.5.6: reserve a top badge slot so the auto Sale badge no longer covers product images. */
.gh-product-tabs .gh-product-card.has-sale-badge-slot {
    padding-top: 42px;
}

.gh-product-tabs .gh-product-card__image-wrap {
    overflow: visible;
}

.gh-product-tabs .gh-product-card__image-link {
    overflow: hidden;
    border-radius: inherit;
}

.gh-product-tabs .gh-product-card.has-sale-badge-slot .gh-product-card__sale-badge {
    top: -34px;
    left: 0;
}

@media (max-width: 767px) {
    .gh-product-tabs .gh-product-card.has-sale-badge-slot {
        padding-top: 34px;
    }

    .gh-product-tabs .gh-product-card.has-sale-badge-slot .gh-product-card__sale-badge {
        top: -27px;
        left: 0;
    }
}

/* v2.5.40 refined product tabs */
.gh-product-tabs {
    --gh-primary: #1f4ed8;
    --gh-primary-dark: #173ea5;
    --gh-secondary: #4f6fdc;
    --gh-warm: #d9e2ff;
    --gh-text-main: #111827;
    --gh-text-strong: #173ea5;
    --gh-text-muted: #667085;
    --gh-border: rgba(17, 24, 39, 0.1);
    --gh-price: #173ea5;
    margin-top: clamp(44px, 5vw, 66px);
    margin-bottom: clamp(54px, 5.4vw, 78px);
}

.gh-product-tabs__nav {
    border-color: rgba(17, 24, 39, 0.08);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.gh-product-tabs__nav::before {
    content: none;
}

.gh-product-tabs__tab {
    font-weight: 820;
    text-transform: none;
    letter-spacing: -0.01em;
}

.gh-product-tabs__tab.is-active {
    background: #111827;
    border-color: #111827;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.22);
}

.gh-product-card {
    border-color: rgba(17, 24, 39, 0.08);
    border-radius: 22px;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.gh-product-card:hover,
.gh-product-card:focus-within {
    border-color: rgba(31, 78, 216, 0.22);
    box-shadow: 0 22px 42px rgba(15, 23, 42, 0.12);
    transform: translateY(-4px);
}

.gh-product-card__image-wrap {
    background: #f5f7fb;
}

.gh-product-card__add-to-cart,
.gh-product-card__add-to-cart.button {
    border-color: rgba(17, 24, 39, 0.12);
    color: #111827;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}

.gh-product-card:hover .gh-product-card__add-to-cart,
.gh-product-card:focus-within .gh-product-card__add-to-cart,
.gh-product-card__add-to-cart:hover,
.gh-product-card__add-to-cart.button:hover,
.gh-product-card__add-to-cart:focus,
.gh-product-card__add-to-cart.button:focus {
    background: #1f4ed8;
    box-shadow: 0 16px 30px rgba(31, 78, 216, 0.24);
}

.gh-product-tabs__more-link {
    background: #111827;
    border-color: #111827;
    box-shadow: 0 14px 28px rgba(17, 24, 39, 0.22);
}

.gh-product-tabs__more-link:hover,
.gh-product-tabs__more-link:focus {
    background: #1f4ed8;
    border-color: #1f4ed8;
    box-shadow: 0 18px 34px rgba(31, 78, 216, 0.24);
}

@media (max-width: 767px) {
    .gh-product-card:hover,
    .gh-product-card:focus-within {
        transform: none;
    }

    .gh-product-card__add-to-cart,
    .gh-product-card__add-to-cart.button {
        background: #111827;
        color: #ffffff;
    }
}
