/* ================================================================
   Weekly Promotion – Popup Banner (Frontend)
   ================================================================ */

:root {
    --wct-theme-light: #40c877;
    --wct-theme-mid: #29ac64;
    --wct-theme-primary: #1f8c50;
    --wct-theme-shadow: #1f7f49;
    --wct-theme-footer-overlay: #29ac64;
    --wct-theme-light-rgb: 64, 200, 119;
    --wct-theme-mid-rgb: 41, 172, 100;
    --wct-theme-primary-rgb: 31, 140, 80;
    --wct-theme-footer-overlay-rgb: 41, 172, 100;
}

.wct-popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.wct-popup-overlay.wct-popup-visible {
    opacity: 1;
}

.wct-popup-overlay.wct-popup-hiding {
    opacity: 0;
}

/* Container holds dismiss bar + the scrollable banner */
.wct-popup-container {
    position: relative;
    width: min(100%, 720px);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    transform: scale(0.92);
    transition: transform 0.4s ease;
}

.wct-popup-visible .wct-popup-container {
    transform: scale(1);
}

.wct-popup-hiding .wct-popup-container {
    transform: scale(0.92);
}

/* Dismiss bar: sits ABOVE the banner, aligned right */
.wct-popup-dismiss {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 999px;
    padding: 5px 6px 5px 14px;
    color: #fff;
    font-family: Arial, sans-serif;
    margin-bottom: 10px;
    -webkit-tap-highlight-color: transparent;
}

.wct-popup-countdown {
    font-size: 15px;
    font-weight: 700;
    min-width: 16px;
    text-align: center;
    line-height: 1;
}

.wct-popup-close {
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 20px;
    line-height: 1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
    min-height: unset !important;
    min-width: unset !important;
    margin: 0 !important;
}

.wct-popup-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

/* Scrollable banner card */
.wct-popup-inner {
    width: 100%;
    max-height: 85vh;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

/* ─── Flyer ──────────────────────────────────────────────── */

.wct-flyer {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #eef4ef center / cover no-repeat;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    font-family: 'Arial', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
    color: #163123;
}

.wct-top-note {
    position: absolute;
    left: 16px;
    top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #2e2e2e;
    z-index: 2;
}

/* Header */
.wct-flyer-header {
    position: relative;
    padding: 0px 24px 0px;
    min-height: 100px;
    z-index: 1;
}

.wct-store-badge {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 72px;
    height: 72px;
    background: center / contain no-repeat;
    transform: rotate(1deg);
}

.wct-headline-wrap {
    display: grid;
    justify-items: center;
    gap: 10px;
    padding-top: 4px;
}

.wct-headline {
    display: inline-block;
    padding: 14px 28px 16px;
    border-radius: 22px;
    font-size: 46px;
    line-height: 1;
    font-weight: 900;
    color: #fff7ce;
    background: linear-gradient(
        180deg,
        var(--wct-theme-light, #40c877) 0%,
        var(--wct-theme-mid, #29ac64) 56%,
        var(--wct-theme-primary, #1f8c50) 100%
    );
    text-shadow:
        -3px 0 var(--wct-theme-shadow, #1f7f49),
        0 3px var(--wct-theme-shadow, #1f7f49),
        3px 0 var(--wct-theme-shadow, #1f7f49),
        0 -3px var(--wct-theme-shadow, #1f7f49),
        3px 6px 0 rgba(255, 198, 88, 0.95);
    box-shadow: 0 8px 0 rgba(255, 194, 76, 0.9);
    transform: skewX(-4deg);
}

.wct-headline > span {
    display: inline-block;
    transform: skewX(4deg);
}

.wct-headline-image {
    display: block;
    max-width: min(100%, 460px);
    width: auto;
    height: auto;
    margin: 0 auto;
}

.wct-period {
    font-size: 23px;
    font-weight: 800;
    color: #202020;
    text-align: center;
}

/* Products grid — 2×2 */
.wct-products-grid {
    position: relative;
    padding: 4px 16px 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    z-index: 1;
}

/* Product card */
.wct-product-card {
    --wct-badge-color: #7b54d8;
    --wct-tag-size: 42px;
    position: relative;
    border-radius: 18px;
    padding: 16px 14px 78px;
    min-height: 280px;
    overflow: hidden;
    background-color: #fff;
}

.wct-product-name {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    margin: 0 62px 4px 0;
    color: #1b261d;
    width: 80%;
    padding: 0px 0px;
}

.wct-product-subtitle {
    font-size: 11px;
    line-height: 1.25;
    font-weight: 700;
    color: #2e3e31;
    margin-bottom: 8px;
    padding-right: 70px;
}

.wct-spec-badge {
    position: absolute;
    right: 12px;
    top: 12px;
    width: var(--wct-tag-size);
    height: var(--wct-tag-size);
    border-radius: 999px;
    display: grid;
    place-items: center;
    text-align: center;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    color: #fff7cd;
    background: var(--wct-badge-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.14);
}

.wct-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 5px;
    max-width: 50%;
    margin-top: 25px;
}

.wct-feature-list li {
    min-height: 24px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: #f7e47c;
    border-radius: 7px;
    padding: 3px 7px;
    color: #374117;
    font-size: 14px;
    line-height: 1.15;
    font-weight: 800;
    box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    margin-left: 0px !important;
}

.wct-feature-list li::before {
    content: '\2713'; /* Unicode for ✓ */
    flex: 0 0 14px;
    width: 14px;
    height: 14px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff6d4;
    color: #000;
    font-size: 10px; /* Sized down slightly to fit the circle */
    font-weight: 900;
}

.wct-product-visual {
    position: absolute;
    right: 14px;
    top: 76px;
    width: 42%;
    height: 120px;
    display: grid;
    place-items: center;
}

.wct-product-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Old price */
.wct-old-price {
    position: absolute;
    z-index: 3;
    left: 14px;
    bottom: 45px;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    color: #7f7466;
    white-space: nowrap;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.wct-old-price::after {
    content: '';
    position: absolute;
    left: -6px;
    right: -6px;
    top: 55%;
    height: 2px;
    background: #d84d43;
    border-radius: 999px;
    transform: rotate(-18deg);
    transform-origin: center;
    pointer-events: none;
}

/* Price flag */
.wct-price-flag {
    position: absolute;
    left: 13px;
    bottom: 65px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-height: 20px;
    background: var(--wct-theme-primary, #1f8c50);
    color: #fff;
    padding: 3px 8px 3px 14px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 30px;
    line-height: 1.2;
    white-space: nowrap;
}

.wct-price-flag-icon {
    width: 20px;
    height: 30px;
    object-fit: contain;
    flex: 0 0 16px;
    position: absolute;
    bottom: 8px;
    left: -1px;
}

/* Price row */
.wct-price-row {
    position: absolute;
    left: 14px;
    bottom: 8px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    max-width: 55%;
    z-index: 2;
}

.wct-price-box {
    display: flex;
    align-items: flex-end;
}

.wct-price-main {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 1px;
    line-height: 1;
    padding-right: 24px;
}

.wct-currency {
    font-size: 26px;
    line-height: 0.9;
    font-weight: 900;
    color: var(--wct-theme-primary, #1f8c50);
    letter-spacing: -1px;
    transform: translateY(-1px);
}

.wct-price {
    font-size: 46px;
    line-height: 0.84;
    letter-spacing: -2px;
    font-weight: 900;
    color: var(--wct-theme-primary, #1f8c50);
    font-style: italic;
    font-family: Arial, 'Arial Black', 'Helvetica Neue', sans-serif;
    transform: skewX(-6deg);
}

.wct-price-unit {
    position: absolute;
    right: -14px;
    top: 2px;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    color: var(--wct-theme-primary, #1f8c50);
    white-space: nowrap;
}

/* CTA button */
.wct-cta {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 54px;
    border: 0;
    border-radius: 18px 0 16px 0;
    background: linear-gradient(
        180deg,
        var(--wct-theme-light, #40c877) 0%,
        var(--wct-theme-primary, #1f8c50) 100%
    );
    color: #fff6b7;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1px;
    box-shadow: inset 0 3px 0 rgba(255, 255, 255, 0.16);
    display: grid;
    place-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.2s;
}

.wct-cta:hover {
    filter: brightness(1.08);
    color: #fff6b7;
    text-decoration: none;
}

/* Footer */
.wct-flyer-footer {
    position: relative;
    padding: 20px 24px 14px;
    min-height: 80px;
    display: grid;
    place-items: end center;
    margin-top: auto;
}

.wct-flyer-footer::before {
    content: '';
    position: absolute;
    inset: 14px 0 0;
    background: linear-gradient(
        180deg,
        rgba(var(--wct-theme-footer-overlay-rgb, 41, 172, 100), 0.18) 0%,
        rgba(var(--wct-theme-footer-overlay-rgb, 41, 172, 100), 0.5) 100%
    );
    z-index: -1;
}

.wct-footer-cta {
    width: 58%;
    min-width: 200px;
    height: 54px;
    border-radius: 999px;
    border: 3px solid rgba(var(--wct-theme-mid-rgb, 41, 172, 100), 0.75);
    background: rgba(255, 248, 245, 0.88);
    display: grid;
    place-items: center;
    color: var(--wct-theme-primary, #1f8c50);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 8px;
    box-shadow: 0 4px 12px rgba(var(--wct-theme-mid-rgb, 41, 172, 100), 0.12);
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}

/* ─── Clickable card link ────────────────────────────── */

.wct-product-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* ─── Shortcode standalone overrides ─────────────────── */

.wct-shortcode-banner {
    border-radius: 20px;
    overflow: hidden;
}

.wct-shortcode-footer {
    border-radius: 20px;
    overflow: hidden;
}

.wct-shortcode-footer.wct-shortcode-footer-transparent {
    background: transparent !important;
    background-image: none !important;
}

.wct-shortcode-footer.wct-shortcode-footer-transparent
    .wct-flyer-footer::before {
    content: none;
    display: none;
}

.wct-shortcode-horizontal {
    display: grid;
    gap: 12px;
}

.wct-shortcode-horizontal-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
}

.wct-shortcode-product .wct-price-unit {
    right: -14px;
    top: 2px;
    font-size: 12px;
}

.wct-shortcode-product {
    display: inline-block;
    vertical-align: top;
    box-sizing: border-box;
    padding: 4px;
}

.wct-shortcode-horizontal .wct-product-card {
    width: 100%;
    box-shadow: 0px 0px 0px 4px var(--wct-theme-primary, #1f8c50);
}

.wct-shortcode-horizontal .wct-cta {
    width: 40%;
    height: 30px;
    font-size: 12px;
}

.wct-popup-container.wct-popup-container-wide {
    width: min(100%, 1280px);
    align-items: stretch;
}

.wct-product-page-banner-wrap {
    box-sizing: border-box;
    margin: 0 auto 24px;
}

.wct-weekly-deals-main-banner-wrap {
    margin: 0 auto 24px;
}

.wct-weekly-deals-main-banner-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.wct-product-page-banner-header {
    margin: 0 auto 0px;
}

.wct-product-page-banner-header-image {
    display: block;
    height: 48px;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.wct-product-page-banner {
    position: relative;
    overflow: hidden;
    background: #eef4ef center / cover no-repeat;
    padding: 11px;
}

.wct-product-page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.wct-product-page-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
}

.wct-product-page-banner-cards {
    width: 80%;
    display: grid;
    gap: 0;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 5px 5px -1px rgba(0, 0, 0, 0.22);
    border-radius: 18px;
    overflow: hidden;
    margin: 0 auto;
}

.wct-product-page-banner-cards-1 {
    grid-template-columns: minmax(260px, 360px);
    justify-content: start;
}

.wct-product-page-banner-cards-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wct-product-page-banner-cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wct-product-page-banner-card {
    min-width: 0;
    position: relative;
    padding: 18px 18px 16px;
    opacity: 1;
    transform: translateY(0);
    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}

.wct-product-page-banner-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18px;
    bottom: 18px;
    right: 0;
    border-right: 2px dotted rgba(32, 32, 32, 0.22);
}

.wct-product-page-banner-card.is-fading-out {
    opacity: 0;
    transform: translateX(-14px);
}

.wct-product-page-banner-card.is-fading-in {
    opacity: 0;
    transform: translateX(14px);
}

.wct-product-page-banner-card.is-prep-in {
    opacity: 0;
    transform: translateX(14px);
    transition: none;
}

.wct-product-page-banner-item-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.wct-product-page-banner-item {
    display: flex;
    flex-direction: column;
}

.wct-product-page-banner-item-title {
    margin: 0;
    font-size: 11px;
    line-height: 1.15;
    font-weight: 700;
    color: #202020;
    min-height: 2.3em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.wct-product-page-banner-item-subtitle {
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.25;
    color: #6f6f6f;
}

.wct-product-page-banner-item-image-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0 10px;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    overflow: hidden;
    border-radius: 8px;
}

.wct-product-page-banner-item-image {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.wct-product-page-banner-item-prices {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.wct-product-page-banner-item-old-price {
    font-size: 11px;
    line-height: 1.2;
    color: #8a8a8a;
}

.wct-product-page-banner-item-price {
    font-size: 22px;
    line-height: 0.9;
    font-weight: 900;
    color: #d7264d;
    letter-spacing: -2px;
    white-space: nowrap;
}

.wct-product-page-banner-item-currency {
    font-size: 14px;
    vertical-align: top;
    margin-right: 3px;
}

@media (max-width: 640px) {
    .wct-shortcode-product {
        width: 100% !important;
    }

    .wct-shortcode-horizontal-row {
        flex-wrap: wrap;
    }

    .wct-shortcode-horizontal-cell {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .wct-shortcode-horizontal .wct-product-card {
        min-height: 250px;
    }

    .wct-shortcode-horizontal .wct-product-name {
        font-size: 20px;
        margin: 0 36px 2px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .wct-shortcode-horizontal .wct-feature-list {
        margin-top: 20px;
    }

    .wct-shortcode-horizontal .wct-feature-list li {
        min-height: 14px;
        font-size: 14.5px;
    }

    .wct-shortcode-horizontal .wct-old-price {
        font-size: 23px;
        left: 6px;
        bottom: 40px;
    }

    .wct-shortcode-horizontal .wct-price-flag {
        font-size: 26px;
        padding: 2px 5px;
        border-radius: 3px;
        bottom: 66px;
    }

    .wct-shortcode-horizontal .wct-price {
        font-size: 43px;
        letter-spacing: -1px;
    }

    .wct-product-page-banner {
        padding: 10px;
    }

    .wct-weekly-deals-main-banner-image {
        border-radius: 12px;
    }

    .wct-product-page-banner-header {
        margin-bottom: 0px;
    }

    .wct-product-page-banner-header-image {
        height: 36px;
    }

    .wct-product-page-banner-cards {
        border-radius: 12px;
    }

    .wct-product-page-banner-cards-1 {
        grid-template-columns: 1fr;
    }

    .wct-product-page-banner-cards-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .wct-product-page-banner-cards-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .wct-product-page-banner-card {
        padding: 10px 8px;
    }

    .wct-product-page-banner-card:not(:last-child)::after {
        top: 10px;
        bottom: 10px;
        border-right-width: 1px;
    }

    .wct-product-page-banner-item-title {
        font-size: 7px;
        line-height: 1.2;
        min-height: 2.4em;
    }

    .wct-product-page-banner-item-subtitle {
        margin-top: 2px;
        font-size: 9px;
        line-height: 1.15;
    }

    .wct-product-page-banner-item-price {
        font-size: 18px;
        letter-spacing: -1px;
    }

    .wct-product-page-banner-item-old-price {
        font-size: 9px;
        line-height: 1.1;
    }

    .wct-product-page-banner-item-image {
        max-height: 34px;
    }

    .wct-product-page-banner-item-image-wrap {
        margin: 6px 0 8px;
        height: 34px;
        min-height: 34px;
        max-height: 34px;
    }

    .wct-product-page-banner-item-prices {
        gap: 6px;
        align-items: flex-end;
    }

    .wct-product-page-banner-item-currency {
        font-size: 12px;
        margin-right: 2px;
    }
}

/* ─── Responsive: mobile (full-width, 2×2 grid) ──────── */

@media (max-width: 640px) {
    .wct-popup-overlay {
        padding: 0;
        align-items: center;
        justify-content: center;
    }

    .wct-popup-container {
        width: 100vw;
        max-width: none;
        align-items: center;
    }

    .wct-popup-dismiss {
        position: fixed;
        top: 8px;
        right: 8px;
        z-index: 1000000;
        margin-bottom: 0;
        padding: 3px 4px 3px 10px;
        gap: 4px;
    }

    .wct-popup-countdown {
        font-size: 12px;
        min-width: 14px;
    }

    .wct-popup-close {
        width: 28px;
        height: 28px;
        font-size: 17px;
        min-height: unset !important;
        min-width: unset !important;
        margin: 0 !important;
    }

    .wct-popup-inner {
        border-radius: 0;
        max-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .wct-flyer {
        border-radius: 0;
    }

    .wct-top-note {
        font-size: 9px;
        left: 10px;
        top: 7px;
    }

    .wct-flyer-header {
        padding: 34px 12px 8px;
        min-height: 80px;
    }

    .wct-headline {
        font-size: 22px;
        padding: 8px 14px 10px;
        border-radius: 14px;
        text-shadow:
            -2px 0 var(--wct-theme-shadow, #1f7f49),
            0 2px var(--wct-theme-shadow, #1f7f49),
            2px 0 var(--wct-theme-shadow, #1f7f49),
            0 -2px var(--wct-theme-shadow, #1f7f49),
            2px 3px 0 rgba(255, 198, 88, 0.95);
        box-shadow: 0 5px 0 rgba(255, 194, 76, 0.9);
    }

    .wct-headline-image {
        max-width: 78%;
    }

    .wct-headline-wrap {
        gap: 6px;
    }

    .wct-period {
        font-size: 17px;
    }

    .wct-store-badge {
        width: 38px;
        height: 38px;
        right: 8px;
        top: 8px;
    }

    .wct-products-grid {
        grid-template-columns: 1fr 1fr;
        padding: 2px 6px 8px;
        gap: 6px;
    }

    .wct-product-card {
        --wct-tag-size: 32px;
        min-height: 160px;
        border-radius: 10px;
        padding: 8px 6px 52px;
    }

    .wct-product-name {
        font-size: 12px;
        margin: 0 36px 2px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .wct-product-subtitle {
        font-size: 7px;
        padding-right: 38px;
        margin-bottom: 3px;
    }

    .wct-spec-badge {
        font-size: 11px;
        right: 4px;
        top: 4px;
    }

    .wct-feature-list {
        gap: 2px;
        max-width: 54%;
        margin-top: 10px;
    }

    .wct-feature-list li {
        min-height: 14px;
        font-size: 6.5px;
        padding: 2px 3px;
        border-radius: 3px;
        gap: 2px;
    }

    .wct-feature-list li::before {
        flex: 0 0 10px;
        width: 10px;
        height: 10px;
        font-size: 7px;
    }

    .wct-product-visual {
        right: 4px;
        top: 46px;
        width: 42%;
        height: 60px;
    }

    .wct-old-price {
        font-size: 13px;
        left: 6px;
        bottom: 29px;
    }

    .wct-old-price::after {
        height: 1.5px;
        left: -3px;
        right: -3px;
    }

    .wct-price-flag {
        font-size: 14px;
        left: 5px;
        bottom: 43px;
        padding: 2px 5px;
        border-radius: 3px;
    }

    .wct-price-flag-icon {
        width: 16px;
    }
    .wct-price-row {
        left: 6px;
        bottom: 2px;
    }

    .wct-price-main {
        padding-right: 14px;
    }

    .wct-currency {
        font-size: 14px;
    }

    .wct-price {
        font-size: 26px;
        letter-spacing: -1px;
    }

    .wct-price-unit {
        font-size: 10px;
    }

    .wct-cta {
        width: 40%;
        height: 25px;
        font-size: 9px;
        border-radius: 10px 0 8px 0;
        letter-spacing: 0;
    }

    .wct-flyer-footer {
        padding: 10px 10px 6px;
        min-height: 44px;
    }

    .wct-flyer-footer::before {
        inset: 6px 0 0;
    }

    .wct-footer-cta {
        width: 68%;
        min-width: 0;
        height: 34px;
        border-width: 2px;
        font-size: 13px;
        letter-spacing: 4px;
    }
}
