/* Yerba Product Card - Main Styles */

/* CSS Variables */
:root {
    --ypc-neon: #4AF056;
    --ypc-neon-hover: #3BD145;
    --ypc-neon-light: #ECFDF0;
    --ypc-dark: #1a1a1a;
    --ypc-white: #ffffff;
    --ypc-gray-50: #f9fafb;
    --ypc-gray-100: #f3f4f6;
    --ypc-gray-200: #e5e7eb;
    --ypc-gray-300: #d1d5db;
    --ypc-gray-400: #9ca3af;
    --ypc-gray-500: #6b7280;
    --ypc-gray-700: #374151;
    --ypc-red-50: #fef2f2;
    --ypc-red-100: #fee2e2;
    --ypc-red-400: #f87171;
    --ypc-red-500: #ef4444;
    --ypc-red-600: #dc2626;
    --ypc-green-100: #dcfce7;
    --ypc-green-700: #15803d;
}

/* Container */
.ypc-container {
    font-family: 'Manrope', 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--ypc-white);
    color: var(--ypc-dark);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--ypc-gray-100);
    overflow: visible;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 24px auto;
}

/* Header Section */
.ypc-header {
    padding: 24px 24px 8px 24px;
    background: var(--ypc-white);
    border-radius: 24px 24px 0 0;
}

.ypc-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--ypc-dark);
    letter-spacing: -0.025em;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

/* Rating */
.ypc-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.ypc-stars {
    display: flex;
    color: var(--ypc-neon);
    font-size: 14px;
}

.ypc-star {
    width: 16px;
    height: 16px;
}

.ypc-star-full {
    color: var(--ypc-neon);
}

.ypc-star-half {
    color: var(--ypc-neon);
    opacity: 0.6;
}

.ypc-star-empty {
    color: var(--ypc-gray-300);
}

.ypc-rating-text {
    font-size: 12px;
    color: var(--ypc-gray-400);
    font-weight: 500;
}

/* Social Proof */
.ypc-social-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    background: var(--ypc-gray-50);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--ypc-gray-100);
}

.ypc-celebrity-photos {
    display: flex;
    flex-shrink: 0;
}

.ypc-celebrity-photos img {
    display: inline-block;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--ypc-white);
    margin-left: -8px;
    object-fit: cover;
}

.ypc-celebrity-photos img:first-child {
    margin-left: 0;
}

.ypc-social-text {
    flex: 1;
}

.ypc-social-line1 {
    font-size: 10px;
    font-weight: 700;
    color: var(--ypc-dark);
    line-height: 1.3;
    margin: 0;
}

.ypc-social-line2 {
    font-size: 10px;
    color: var(--ypc-gray-500);
    line-height: 1.3;
    margin: 0;
}

.ypc-social-line2 strong {
    font-weight: 700;
    color: var(--ypc-dark);
}

/* Alerts Section */
.ypc-alerts {
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
}

.ypc-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
}

.ypc-alert-viewing,
.ypc-alert-stock {
    background: var(--ypc-red-50);
    border: 1px solid var(--ypc-red-100);
}

.ypc-alert-dot {
    position: relative;
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--ypc-neon);
    margin-top: 2px;
}

.ypc-alert-dot-red {
    background: var(--ypc-red-500);
}

.ypc-alert-dot-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: ypc-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ypc-ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.ypc-alert-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--ypc-red-600);
    margin: 0;
}

.ypc-alert-desc {
    font-size: 11px;
    color: var(--ypc-red-500);
    line-height: 1.4;
    margin: 2px 0 0 0;
}

/* Variants Section */
.ypc-variants {
    padding: 8px 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ypc-variant {
    position: relative;
    display: block;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.ypc-variant:before {
    opacity: 0;
}
.ypc-variant-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ypc-variant-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 16px;
    border: 2px solid var(--ypc-gray-100);
    background: var(--ypc-white);
    transition: all 0.2s ease-in-out;
}

.ypc-variant-radio:checked ~ .ypc-variant-content {
    border-color: var(--ypc-neon);
    background: var(--ypc-neon-light);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ypc-variant-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ypc-dark);
    color: var(--ypc-neon);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--ypc-neon);
    z-index: 20;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    display: none;
}

.ypc-variant-selected .ypc-variant-badge {
    display: block;
}

.ypc-variant-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ypc-variant-icon {
    width: 56px;
    height: 56px;
    background: var(--ypc-gray-100);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ypc-gray-400);
    overflow: hidden;
}

.ypc-variant-radio:checked ~ .ypc-variant-content .ypc-variant-icon {
    background: var(--ypc-white);
    border: 1px solid var(--ypc-gray-200);
    color: var(--ypc-neon);
}

.ypc-variant-icon svg {
    width: 32px;
    height: 32px;
}

.ypc-variant-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.ypc-variant-info {
    display: flex;
    flex-direction: column;
}

.ypc-variant-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--ypc-dark);
    line-height: 1.2;
}

.ypc-variant-desc {
    font-size: 12px;
    font-weight: 500;
    color: var(--ypc-gray-500);
    margin-top: 2px;
}

.ypc-variant-radio:checked ~ .ypc-variant-content .ypc-variant-desc {
    font-weight: 700;
    color: var(--ypc-gray-700);
}

.ypc-variant-pricing {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ypc-variant-regular {
    font-size: 12px;
    color: var(--ypc-gray-400);
    text-decoration: line-through;
    text-decoration-color: var(--ypc-red-400);
    font-weight: 500;
}

.ypc-variant-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--ypc-dark);
    line-height: 1;
    margin-top: 4px;
}

.ypc-variant-radio:checked ~ .ypc-variant-content .ypc-variant-price {
    font-size: 24px;
}

.ypc-variant-savings {
    font-size: 10px;
    font-weight: 700;
    color: var(--ypc-green-700);
    background: var(--ypc-green-100);
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
}

.ypc-variant-lowest {
    font-size: 8px;
    color: var(--ypc-gray-300);
    font-weight: 400;
    white-space: nowrap;
    margin-top: 4px;
}

.ypc-variant-radio:checked ~ .ypc-variant-content .ypc-variant-lowest {
    color: var(--ypc-gray-500);
}

/* Main Card */
.ypc-card {
    margin: 8px 24px;
    padding: 16px 16px 16px 16px;
    padding-top: 24px;
    background: var(--ypc-neon-light);
    border: 2px solid var(--ypc-neon);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.ypc-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ypc-dark);
    color: var(--ypc-neon);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid var(--ypc-neon);
    z-index: 20;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.ypc-card-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ypc-card-icon {
    width: 64px;
    height: 64px;
    background: var(--ypc-white);
    border: 1px solid var(--ypc-gray-200);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ypc-neon);
    overflow: hidden;
}

.ypc-card-icon svg {
    width: 36px;
    height: 36px;
}

.ypc-card-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.ypc-card-info {
    display: flex;
    flex-direction: column;
}

.ypc-short-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--ypc-dark);
    line-height: 1.2;
}

.ypc-short-desc {
    font-size: 12px;
    font-weight: 700;
    color: var(--ypc-gray-700);
    margin-top: 4px;
}

.ypc-accessories {
    font-size: 12px;
    font-weight: 500;
    color: var(--ypc-gray-500);
}

/* Pricing */
.ypc-pricing {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.ypc-price-regular {
    font-size: 16px;
    color: var(--ypc-gray-400);
    text-decoration: line-through;
    text-decoration-color: var(--ypc-red-400);
    font-weight: 500;
}

.ypc-price-current {
    font-size: 24px;
    font-weight: 700;
    color: var(--ypc-dark);
    line-height: 1;
    margin-top: 4px;
}

.ypc-savings {
    font-size: 10px;
    font-weight: 700;
    color: var(--ypc-green-700);
    background: var(--ypc-green-100);
    padding: 2px 6px;
    border-radius: 4px;
    margin-top: 4px;
}

.ypc-lowest-price {
    font-size: 8px;
    color: var(--ypc-gray-400);
    font-weight: 400;
    white-space: nowrap;
    margin-top: 4px;
}

/* Upsells Section */
.ypc-upsells {
    padding: 16px 24px;
}

.ypc-upsells-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--ypc-gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px 0;
}

.ypc-upsell-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border-radius: 12px;
    border: 1px dashed var(--ypc-gray-300);
    background: var(--ypc-gray-50);
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
    user-select: none;
}

.ypc-upsell-item:last-child {
    margin-bottom: 0;
}

.ypc-upsell-item:hover {
    background: var(--ypc-white);
    border-color: var(--ypc-neon);
}

.ypc-upsell-item.ypc-upsell-selected {
    background: var(--ypc-neon-light);
    border-color: var(--ypc-neon);
    border-style: solid;
}

.ypc-upsell-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ypc-upsell-icon {
    width: 48px;
    height: 48px;
    background: var(--ypc-white);
    border-radius: 8px;
    border: 1px solid var(--ypc-gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ypc-gray-400);
    overflow: hidden;
}

.ypc-upsell-icon svg {
    width: 24px;
    height: 24px;
}

.ypc-upsell-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* ==========================================
   STICKY BAR PROXY
   On pages driven by the ypc card (.ypc-active, set in JS), the Kadence sticky
   bar clones the redundant standard add-to-cart form. Hide its inner controls
   (subscription block, qty, Addify) — the button stays and is proxied to
   #ypc-add-button via JS. Scoped to .ypc-active so non-ypc product pages keep
   their normal sticky bar.
   ========================================== */
.ypc-active [class*="kadence-sticky-add-to-cart"] .sakuro-subscribe-block,
.ypc-active [class*="kadence-sticky-add-to-cart"] .quantity,
.ypc-active [class*="kadence-sticky-add-to-cart"] .addf_drpc_template_header,
.ypc-active [class*="kadence-sticky-add-to-cart"] .af_drpc_variable_card,
.ypc-active [class*="kadence-sticky-add-to-cart"] .addf_drpc_table_for_dynamic_pricing {
    display: none !important;
}

/* Hide the redundant standard add-to-cart block on the page (the ypc card is the
   buy UI). sr-only rather than display:none: Kadence keys the sticky-bar trigger
   off `.product .single_add_to_cart_button`, so the element must stay measurable —
   display:none would zero its offset and pin the bar from the top. Out of flow =
   no layout gap; pointer-events:none = no stray clicks on the hidden button.
   Two markups covered:
   - `.product-cta-wrap` — classic WooCommerce single-product template.
   - `.kwt-add-to-cart-single` — Kadence block product template (WooTemplate
     Add-to-Cart block). Builder-driven layouts can drop this into a separate
     column from #ypc-container, so the adjacent-sibling rule below
     (`.ypc-container + form.cart`) never matches it — hide it here instead. */
.ypc-active .product-cta-wrap,
.ypc-active .kwt-add-to-cart-single {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    opacity: 0 !important;
    pointer-events: none !important;
}

.ypc-upsell-info {
    display: flex;
    flex-direction: column;
}

.ypc-upsell-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ypc-dark);
    line-height: 1.3;
    transition: color 0.2s ease;
}

.ypc-upsell-item:hover .ypc-upsell-name {
    color: var(--ypc-neon-hover);
}

.ypc-upsell-desc {
    font-size: 10px;
    color: var(--ypc-gray-500);
}

.ypc-upsell-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ypc-upsell-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--ypc-dark);
    white-space: nowrap;
}

/* Toggle Switch */
.ypc-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.ypc-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.ypc-toggle-slider {
    position: relative;
    width: 36px;
    height: 20px;
    background-color: var(--ypc-gray-200);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.ypc-toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: var(--ypc-white);
    border: 1px solid var(--ypc-gray-300);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.ypc-toggle input:checked + .ypc-toggle-slider {
    background-color: var(--ypc-neon);
}

.ypc-toggle input:checked + .ypc-toggle-slider::before {
    transform: translateX(16px);
    border-color: var(--ypc-white);
}

.ypc-toggle input:focus + .ypc-toggle-slider {
    outline: none;
}

/* Footer / Add to Cart Section */
.ypc-footer {
    padding: 20px;
    background: var(--ypc-white);
    border-top: 1px solid var(--ypc-gray-100);
    border-radius: 0 0 24px 24px;
}

/* Atrapa formularza wokol przycisku — istnieje wylacznie po to, zeby PixelYourSite
   nie uznal przycisku za produkt zewnetrzny (patrz komentarz w yerba-product-card.php).
   Musi byc calkowicie neutralna dla layoutu; motywy lubia dodawac formularzom marginesy. */
.ypc-cart-form {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
}

.ypc-countdown-text {
    font-size: 10px;
    color: var(--ypc-gray-400);
    text-align: center;
    margin: 0 0 8px 0;
}

.ypc-countdown {
    color: var(--ypc-dark);
    font-weight: 700;
}

.ypc-countdown span {
    min-width: 18px;
    display: inline-block;
    text-align: center;
}

/* Add to Cart Button */
.ypc-add-button {
    width: 100%;
    padding: 16px 24px;
    background: var(--ypc-neon);
    color: var(--ypc-dark);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px -5px rgba(74, 240, 86, 0.4);
}

.ypc-add-button:hover {
    background: var(--ypc-neon-hover);
    transform: translateY(-1px);
}

.ypc-add-button:active {
    transform: scale(0.98);
}

/* On no-variant cards the ypc button also carries `single_add_to_cart_button`
   (so PixelYourSite fires AddToCart). Lock the ypc look via #id (1,1,0 beats
   WooCommerce/Kadence .single_add_to_cart_button rules at 0,1,0) so the shared
   class can't restyle the button. */
#ypc-add-button.ypc-add-button {
    width: 100%;
    padding: 16px 24px;
    background: var(--ypc-neon);
    color: var(--ypc-dark);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: none;
    box-shadow: 0 10px 25px -5px rgba(74, 240, 86, 0.4);
}
#ypc-add-button.ypc-add-button:hover {
    background: var(--ypc-neon-hover);
}

.ypc-add-button.ypc-loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.ypc-btn-dot {
    width: 6px;
    height: 6px;
    background: var(--ypc-dark);
    border-radius: 50%;
}

.ypc-total-price {
    font-weight: 800;
}

.ypc-total-price .woocommerce-Price-currencySymbol {
    margin-left: 0.25em;
}

/* Payment Info */
.ypc-payment-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    font-size: 10px;
    color: var(--ypc-gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    text-align: center;
}

/* Znaki płatności (tylko yerbador.com — patrz yerba-product-card.php).
   ⚠ `flex-wrap` jest tu OBOWIĄZKOWY: pięć znaków + podpis nie mieszczą się w jednej
   linii na 320 px, a `.ypc-payment-info` ma `white-space` domyślny, więc bez zawijania
   pasek rozpychałby kartę w poziomie. */
.ypc-payment-info {
    flex-wrap: wrap;
}

.ypc-pay-label {
    flex: 0 0 100%;
}

.ypc-pay-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 14px;
}

/* ⛔⛔ SPECYFICZNOŚĆ, NIE `!important`. Motyw Kadence ma regułę
   `.woocommerce div.product img { width: 100% }` (0,2,1) i przy zapisie
   `.ypc-pay-logo { height:18px; width:auto }` (0,1,0) WYGRYWAŁA ONA — pięć znaków
   płatności wyszło na całą szerokość kolumny, jeden pod drugim.
   ⭐ Zmierzone na żywym zrzucie (`zrzuty/e4b/karta-de-553936-po.png`), nie zgadnięte:
     plik CSS był świeży (`?ver=` z nowym `filemtime`), reguła w nim BYŁA, a mimo to
     obrazki miały 100% szerokości. To jest różnica między „wgrałem" a „działa". */
.ypc-payment-info .ypc-pay-logos img.ypc-pay-logo {
    height: 18px;
    width: auto;
    max-width: none;
    display: block;
    /* ⛔ Kadence maluje tło/obwódkę po KAŻDYM obrazku w karcie — patrz pułapka
       „Kadence maluje po każdym button”. Zerujemy jawnie. */
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

/* Notification Toast */
.ypc-notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ypc-dark);
    color: var(--ypc-white);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    z-index: 9999;
    transition: bottom 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--ypc-neon);
}

.ypc-notification.ypc-notification-show {
    bottom: 40px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .ypc-container {
        border-radius: 16px;       
        margin: 0 8px;
    }

    .ypc-header {
        padding: 16px 16px 8px 16px;
        border-radius: 16px 16px 0 0;
    }

    .ypc-title {
        font-size: 20px;
    }

    .ypc-alerts {
        padding: 0 16px;
    }

    .ypc-card {
        margin: 8px 16px;
        padding: 12px;
        padding-top: 20px;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .ypc-card-content {
        justify-content: flex-start;
    }

    .ypc-card-icon {
        width: 48px;
        height: 48px;
    }

    .ypc-card-icon svg {
        width: 28px;
        height: 28px;
    }

    .ypc-short-name {
        font-size: 16px;
    }

    .ypc-pricing {
        text-align: left;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .ypc-price-current {
        font-size: 20px;
    }

    .ypc-upsells {
        padding: 12px 16px;
    }

    .ypc-upsell-item {
        padding: 10px;
    }

    .ypc-upsell-icon {
        width: 40px;
        height: 40px;
    }

    .ypc-upsell-icon svg {
        width: 20px;
        height: 20px;
    }

    .ypc-upsell-name {
        font-size: 13px;
    }

    .ypc-upsell-price {
        font-size: 13px;
    }

    .ypc-footer {
        padding: 16px;
        border-radius: 0 0 16px 16px;
    }

    .ypc-add-button {
        padding: 14px 20px;
        font-size: 16px;
    }
	.ypc-price-regular {
        width: 100%;
    }
}

/* WooCommerce price formatting overrides */
.ypc-container .woocommerce-Price-amount {
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
}

.ypc-container .woocommerce-Price-currencySymbol {
    font-weight: inherit;
}

/* Hide default WooCommerce elements when shortcode is used */
.ypc-container + .woocommerce-variation-add-to-cart,
.ypc-container + form.cart {
    display: none;
}
.woocommerce-Price-currencySymbol  {
    margin-left: 3px;
}