/* Vloershop Core — bezorg-countdown + trust-iconen in het bestelblok (PDP). */
.vs-pdp-trust { margin: 14px 0 4px; font-family: 'Lato', system-ui, sans-serif; }

/* Bezorg-countdown */
.vs-deadline {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px !important;
    padding: 10px 14px;
    background: #f0faf3;
    border: 1px solid #cdeed7;
    border-radius: 10px;
    font-size: 14px;
    color: #1f2733;
    line-height: 1.35;
}
.vs-deadline__text strong { color: #138a37; }
.vs-deadline__dot {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1a8a3a;
    box-shadow: 0 0 0 0 rgba(26, 138, 58, 0.5);
    animation: vs-deadline-pulse 1.6s infinite;
}
@keyframes vs-deadline-pulse {
    0% { box-shadow: 0 0 0 0 rgba(26, 138, 58, 0.45); }
    70% { box-shadow: 0 0 0 7px rgba(26, 138, 58, 0); }
    100% { box-shadow: 0 0 0 0 rgba(26, 138, 58, 0); }
}

/* Trust-iconen */
.vs-pdp-trust__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    /* Nette 2-koloms uitlijning i.p.v. rommelige wrap (iconen lijnen uit). */
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 9px 14px !important;
}
.vs-pdp-trust__item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    margin: 0 !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #3a4150 !important;
    list-style: none !important;
}
.vs-pdp-trust__item::before { content: none !important; }
.vs-pdp-trust__check {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1a8a3a;
    position: relative;
}
.vs-pdp-trust__check::after {
    content: "";
    position: absolute;
    left: 37%;
    top: 19%;
    width: 0.22em;
    height: 0.46em;
    border: solid #fff;
    border-width: 0 0.15em 0.15em 0;
    transform: rotate(45deg);
}

@media (max-width: 600px) {
    .vs-pdp-trust__list { grid-template-columns: 1fr !important; }
}
