.gs_timer_elem {
    /* Base styling */
    display: inline-block;

    /* Fixed values - no device variations */
    --pulse-duration: 1.5s;
    --pulse-scale: 1.05;
    --pulse-opacity-min: 0.6;

    /* Animation setup */
    animation: timer-pulse var(--pulse-duration) ease-in-out infinite;

    /* Performance optimization */
    will-change: transform, opacity;

    /* Smooth transitions for any other state changes */
    transition: color 0.3s ease;
}

/* Keyframes for subtle pulse effect */
@keyframes timer-pulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(var(--pulse-scale));
        opacity: var(--pulse-opacity-min);
    }
}

.gs_product_offer-card {
    display: flex;
    width: min(100%, 360px);
    flex-direction: column;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    background-color: #fff;
    -webkit-mask:
        linear-gradient(#fff 0 0),
        radial-gradient(circle 12px at 0 50%, #fff 99%, transparent 100%),
        radial-gradient(circle 12px at 100% 50%, #fff 99%, transparent 100%);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.gs_product_offer-card::before,
.gs_product_offer-card::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.gs_product_offer-card::before {
    left: 0;
    transform: translate(-50%, -50%);
    border-left-color: transparent;
}

.gs_product_offer-card::after {
    right: 0;
    transform: translate(50%, -50%);
    border-right-color: transparent;
}
.gs_product_offer-card p,
.gs_product_offer-card span,
.gs_product_offer-card strong,
.gs_product_offer-card del {
    margin: 0;
    padding: 0;
    font-style: normal;
    line-height: 1;
}

.gs_product_offer-card__main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 24px;
}

.gs_product_offer-card__label {
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1px;
}

.gs_product_offer-card__row {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
}

.gs_product_offer-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
}

.gs_product_offer-card__badge--discount {
    border: 2px solid;
}

.gs_product_offer-card__badge--timer {
    padding-left: 8px;
}

.gs_product_offer-card__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 0px 0px 8px 8px;
    border-top: 1px dashed rgba(0, 0, 0, 0.2);
}

.gs_product_offer-card__price-current {
    font-size: 20px;
    font-weight: 700;
}

.gs_product_offer-card__price-old {
    font-size: 20px;
    font-weight: 400;
}

.dWidgetMiddleGS {
    top: calc(50% - 30px);
}

.dWidgetDetailMiddleGS {
    top: calc(50% - 125px);
}

.dWidgetTopGS {
    top: 30px;
}

.dWidgetBottomGS {
    bottom: 30px;
}

.gWidgetLeftGS {
    left: 0;
}

.gWidgetRightGS {
    right: 0;
}

.gSuiteDiscountWidgetIconSVG {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
    height: 60px;
}

.gSuiteDiscountWidgetIconTexts {
    padding-right: 0.5rem;
    margin: auto;
}

.gSuiteDiscountWidgetIconTextsVertical {
    margin: auto;
}

.gSuiteDiscountWidgetScreen p {
    padding: 0;
    margin: 0;
    line-height: 120%;
    font-size: 16px;
    font-weight: normal;
}
