.phm-widget-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

.phm-widget-empty {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border: 1px dashed rgba(0,0,0,.2);
    border-radius: 8px;
    color: #777;
    font-style: italic;
}

.phm-widget-card {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,.06);
}

.phm-widget-card header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.phm-card-heading {
    flex: 1;
    min-width: 0;
}

.phm-card-heading h4 {
    margin: 0;
    font-size: 1.1rem;
}

.phm-card-table {
    display: block;
    font-size: .85rem;
    color: #666;
}

.phm-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phm-widget-meta {
    font-size: .88rem;
    color: #666;
}

.phm-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.phm-meta-stakes {
    font-weight: 600;
}

.phm-widget-meta--seats {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phm-seat-display {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.phm-seat-display--icon-right {
    flex-direction: row-reverse;
}

.phm-seat-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #111;
}

.phm-seat-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.phm-seat-values,
.phm-compact-seats {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.phm-widget-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 999px;
    background: #111;
    color: #fff;
    font-size: .75rem;
    margin-left: 4px;
}

.phm-widget--compact .phm-compact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phm-compact-row {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 14px;
    padding: 10px 16px;
    background: #fff;
    gap: 16px;
}

.phm-compact-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phm-compact-col--info {
    flex: 1;
    min-width: 0;
}

.phm-compact-col--info strong {
    display: block;
    font-size: .95rem;
    line-height: 1.2;
}

.phm-compact-lines {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: .8rem;
    color: #555;
}

.phm-compact-table {
    font-weight: 600;
    color: #333;
}

.phm-compact-col--seats {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.phm-compact-col--seats .phm-seat-display {
    justify-content: center;
}

.phm-compact-col--call {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phm-call-button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #27ae60;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
}

.phm-call-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.phm-card-actions .phm-call-button {
    width: 32px;
    height: 32px;
}

.phm-accordion {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 8px;
    padding: 12px 16px;
    background: #f5f6f7;
    margin-bottom: 20px;
}

.phm-accordion summary {
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.phm-accordion summary::-webkit-details-marker {
    display: none;
}

.phm-accordion summary::after {
    content: '\25bc';
    font-size: .8rem;
    transition: transform .2s ease;
}

.phm-accordion[open] summary::after {
    transform: rotate(-180deg);
}

.phm-accordion .phm-widget-list {
    margin-top: 12px;
}

.phm-promos-grid {
    display: grid;
    gap: var(--phm-promo-gap, 16px);
    grid-template-columns: repeat(var(--phm-promo-cols, 3), minmax(0, 1fr));
}

@media (max-width: 1024px) {
    .phm-promos-grid {
        grid-template-columns: repeat(var(--phm-promo-cols-tablet, 2), minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .phm-promos-grid {
        grid-template-columns: repeat(var(--phm-promo-cols-mobile, 1), minmax(0, 1fr));
    }
}

.phm-promo-card {
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 8px;
    overflow: hidden;
    background: var(--phm-promo-bg, #fff);
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
}

.phm-promo-image {
    width: 100%;
    padding-top: 56%;
    background-position: center;
    background-size: cover;
}

.phm-promo-body {
    padding: 12px 14px 16px;
}

.phm-promo-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.phm-promo-details {
    margin: 0;
    color: #555;
    font-size: .92rem;
}

.phm-widget-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.phm-blinking-dot {
    display: inline-block;
    border-radius: 50%;
    margin-left: 10px;
    flex-shrink: 0;
    animation: phm-blink 1.5s ease-in-out infinite;
    -webkit-animation: phm-blink 1.5s ease-in-out infinite;
    -moz-animation: phm-blink 1.5s ease-in-out infinite;
    -o-animation: phm-blink 1.5s ease-in-out infinite;
    will-change: opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

@keyframes phm-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

@-webkit-keyframes phm-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

@-moz-keyframes phm-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

@-o-keyframes phm-blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}
