
.price-box {
    display: inline-block;
    max-width: 100%;
    text-align: right;
}

.personal-old-price {
    display: block;
    margin-top: 3px;
    font-size: 13px;
    line-height: 1.2;
    color: #9ca3af;
    font-weight: 600;
    text-decoration: line-through;
    white-space: normal;
    word-break: break-word;
}

.home-campaigns-layer {
    position: relative;
    z-index: 50;
    isolation: isolate;
}

.dar-campaigns-wrap {
    margin: 30px 0 10px;
    position: relative;
    z-index: 50;
    overflow: visible;
}

.dar-campaign-block {
    position: relative;
    z-index: 51;
    margin-bottom: 28px;
    padding: 22px 18px 18px;
    border: 1px solid #f1d9d9;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.dar-campaign-head {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.dar-campaign-head-left {
    flex: 1 1 520px;
    min-width: 280px;
}

.dar-campaign-head-right {
    flex: 0 0 380px;
    max-width: 380px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

.dar-campaign-badges {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.dar-campaign-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
}

.dar-campaign-badge-discount {
    background: #ef4444;
    color: #fff;
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.18);
}

.dar-campaign-badge-count {
    background: #fff;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.dar-campaign-title {
    margin: 0 0 8px;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
}

.dar-campaign-description {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

.dar-campaign-description p {
    margin: 0 0 8px;
}

.dar-campaign-description p:last-child {
    margin-bottom: 0;
}

.dar-campaign-timer-box {
    width: 100%;
    max-width: 380px;
    padding: 16px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.28), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #ff512f 0%, #f09819 45%, #ff3d77 100%);
    box-shadow: 0 18px 36px rgba(255, 81, 47, 0.22),
    0 10px 22px rgba(240, 152, 25, 0.18);
    animation: darTimerGlow 3.5s ease-in-out infinite;
}

.dar-campaign-timer-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.00) 20%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.00) 80%);
    transform: translateX(-120%);
    animation: darTimerShine 4.5s linear infinite;
    pointer-events: none;
}

.dar-campaign-timer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.dar-campaign-timer-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.20);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.dar-campaign-timer-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: rgba(255, 255, 255, 0.96) !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

.dar-campaign-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(58px, 1fr));
    gap: 10px;
    position: relative;
    z-index: 2;
}

.dar-campaign-countdown-item {
    background: rgba(255, 255, 255, 0.16) !important;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    padding: 12px 8px;
    text-align: center;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform .2s ease, box-shadow .2s ease;
}

.dar-campaign-countdown-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.10);
}

.dar-campaign-countdown-value {
    display: block;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.dar-campaign-countdown-text {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 700;
}

.js-dar-campaign-countdown.is-ending-soon .dar-campaign-countdown-item {
    background: rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 24px rgba(255, 82, 82, 0.18);
}

.js-dar-campaign-countdown.is-ending-critical .dar-campaign-countdown-item {
    animation: darCriticalPulse 1s ease-in-out infinite;
}

.js-dar-campaign-countdown.is-ended .dar-campaign-countdown-item {
    opacity: .72;
    filter: grayscale(.08);
}

.dar-campaign-products {
    margin-top: 6px;
}

.dar-campaign-product-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f3f4f6;
    transition: .2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dar-campaign-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.08);
}

.dar-campaign-product-image-wrap {
    position: relative;
    padding: 15px 15px 8px;
}

.dar-campaign-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    background: #111827;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 999px;
    line-height: 1;
}

.dar-campaign-product-figure {
    min-height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dar-campaign-product-content {
    padding: 0 15px 10px;
    min-height: 62px;
}

.dar-campaign-product-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
    min-height: 44px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.dar-campaign-product-title a {
    color: #111827;
    text-decoration: none;
}

.dar-campaign-card-footer {
    margin-top: auto;
    border-top: 1px solid #eef2f7;
    padding: 10px 12px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.dar-campaign-card-footer-left {
    flex: 1 1 auto;
    min-width: 0;
}

.dar-campaign-card-footer-right {
    flex: 0 0 95px;
    max-width: 95px;
    text-align: right;
}

.dar-campaign-price-box {
    text-align: right;
}

.dar-campaign-price-current {
    color: #ef4444;
    font-weight: 800;
}

.dar-campaign-price-old {
    color: #9ca3af;
}

.dar-campaign-discount-line {
    margin-top: 2px;
    color: #16a34a;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
}

@keyframes darTimerGlow {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 18px 36px rgba(255, 81, 47, 0.22),
        0 10px 22px rgba(240, 152, 25, 0.18);
    }
    50% {
        transform: translateY(-2px);
        box-shadow: 0 22px 42px rgba(255, 61, 119, 0.24),
        0 12px 28px rgba(240, 152, 25, 0.22);
    }
}

@keyframes darTimerShine {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(140%);
    }
}

@keyframes darCriticalPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.12);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
    }
}

@media (max-width: 991px) {
    .dar-campaign-head-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .dar-campaign-timer-box {
        max-width: 100%;
    }

    .dar-campaign-title {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .dar-campaign-block {
        padding: 16px 12px 14px;
        border-radius: 14px;
    }

    .dar-campaign-title {
        font-size: 20px;
    }

    .dar-campaign-timer-top {
        align-items: flex-start;
    }

    .dar-campaign-timer-badge {
        font-size: 11px;
        padding: 6px 10px;
    }

    .dar-campaign-countdown {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
    }

    .dar-campaign-countdown-item {
        padding: 10px 4px;
        border-radius: 12px;
    }

    .dar-campaign-countdown-value {
        font-size: 17px;
    }

    .dar-campaign-countdown-text {
        font-size: 9px;
    }

    .dar-campaign-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .dar-campaign-card-footer-right {
        flex: 1 1 auto;
        max-width: 100%;
        width: 100%;
        text-align: right;
    }
}

.dar-campaign-cart-form .single_add_to_cart_button,
.dar-campaign-cart-form a.single_add_to_cart_button {
    width: 100%;
    padding: .25rem !important;
    padding-top: .25rem !important;
    padding-right: .25rem !important;
    padding-bottom: .25rem !important;
    padding-left: .25rem !important;
}

.dar-home-bonus-strip {
    background: linear-gradient(90deg, #fff8f1 0%, #ffffff 48%, #fdf4ff 100%);
    border-top: 1px solid #f3e8ff;
    border-bottom: 1px solid #f5e7d8;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.dar-home-bonus-strip__inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 0;
}

.dar-home-bonus-strip__label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(124, 58, 237, 0.18);
}

.dar-home-bonus-strip__slider {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    height: 30px;
    overflow: hidden;
}

.dar-home-bonus-strip__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .55s ease, transform .55s ease;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dar-home-bonus-strip__slide.is-active {
    opacity: 1;
    transform: translateY(0);
}

.dar-home-bonus-strip__name {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 900;
    color: #111827;
}

.dar-home-bonus-strip__text {
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.dar-home-bonus-strip__amount {
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 900;
    color: #16a34a;
}

.dar-home-bonus-strip__date {
    flex: 0 0 auto;
    font-size: 13px;
    font-weight: 800;
    color: #7c3aed;
}

.dar-home-bonus-strip__meta {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
}

.dar-home-bonus-strip__action {
    flex: 0 0 auto;
}

.dar-home-bonus-strip__btn {
    border: 0;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    padding: 10px 14px;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.14);
}

.dar-home-bonus-strip__btn:hover {
    transform: translateY(-1px);
    background: #000;
}

@media (max-width: 991px) {
    .dar-home-bonus-strip__inner {
        gap: 10px;
    }

    .dar-home-bonus-strip__label {
        font-size: 11px;
        padding: 6px 10px;
    }

    .dar-home-bonus-strip__name,
    .dar-home-bonus-strip__amount,
    .dar-home-bonus-strip__date {
        font-size: 13px;
    }

    .dar-home-bonus-strip__text,
    .dar-home-bonus-strip__meta {
        font-size: 12px;
    }
}

@media (max-width: 767px) {

    .dar-home-bonus-strip__inner {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 8px 0;
    }

    .dar-home-bonus-strip__label {
        align-self: flex-start;
    }

    .dar-home-bonus-strip__slider {
        height: 34px;
    }

    .dar-home-bonus-strip__slide {
        gap: 6px;
    }

    .dar-home-bonus-strip__meta {
        display: none;
    }

    .dar-home-bonus-strip__action {
        width: 100%;
    }

    .dar-home-bonus-strip__btn {
        width: 100%;
    }
}

.dar-home-bonus-strip-wrap {
    position: relative;
    z-index: 25;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    margin-bottom: 22px;
}

.dar-home-bonus-strip {
    background: linear-gradient(90deg, #fff8f1 0%, #ffffff 48%, #fdf4ff 100%);
    border-top: 1px solid #f3e8ff;
    border-bottom: 1px solid #f5e7d8;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.dar-home-bonus-strip__inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 9px 0;
}

.dar-home-bonus-strip__label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(124, 58, 237, 0.18);
}

.dar-home-bonus-strip__slider {
    position: relative;
    flex: 1 1 auto;
    min-width: 0;
    height: 34px;
    overflow: hidden;
}

.dar-home-bonus-strip__slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .55s ease, transform .55s ease;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dar-home-bonus-strip__slide.is-active {
    opacity: 1;
    transform: translateY(0);
}

.dar-home-bonus-strip__name {
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 900;
    color: #111827;
}

.dar-home-bonus-strip__text {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
}

.dar-home-bonus-strip__amount {
    flex: 0 0 auto;
    font-weight: 900;
    color: #16a34a;
    line-height: 1;
}

.dar-home-bonus-strip__amount--total {
    font-size: 19px;
    color: #0f766e;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.dar-home-bonus-strip__date {
    flex: 0 0 auto;
    font-size: 12px;
    font-weight: 800;
    color: #7c3aed;
}

.dar-home-bonus-strip__meta {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
}

.dar-home-bonus-strip__action {
    flex: 0 0 auto;
}

.dar-home-bonus-strip__btn {
    border: 0;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    padding: 10px 14px;
    cursor: pointer;
    transition: .2s ease;
    box-shadow: 0 10px 20px rgba(17, 24, 39, 0.14);
}

.dar-home-bonus-strip__btn:hover {
    transform: translateY(-1px);
    background: #000;
}

@media (max-width: 991px) {
    .dar-home-bonus-strip__inner {
        gap: 10px;
    }

    .dar-home-bonus-strip__label {
        font-size: 11px;
        padding: 6px 10px;
    }

    .dar-home-bonus-strip__name {
        font-size: 13px;
    }

    .dar-home-bonus-strip__amount--total {
        font-size: 16px;
    }

    .dar-home-bonus-strip__text,
    .dar-home-bonus-strip__date,
    .dar-home-bonus-strip__meta {
        font-size: 11px;
    }
}

@media (max-width: 767px) {
    .dar-home-bonus-strip-wrap {
        margin-bottom: 16px;
    }

    .dar-home-bonus-strip__inner {
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 8px 0;
    }

    .dar-home-bonus-strip__label {
        align-self: flex-start;
    }

    .dar-home-bonus-strip__slider {
        height: 38px;
    }

    .dar-home-bonus-strip__slide {
        gap: 6px;
    }

    .dar-home-bonus-strip__name {
        font-size: 12px;
    }

    .dar-home-bonus-strip__amount--total {
        font-size: 15px;
    }

    .dar-home-bonus-strip__meta {
        display: none;
    }

    .dar-home-bonus-strip__action {
        width: 100%;
    }

    .dar-home-bonus-strip__btn {
        width: 100%;
    }
}

