.wst-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.wst-overlay.active {
    display: flex;
}
.wst-popup {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
}
.wst-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    color: #333;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}
.wst-close:hover {
    color: #e74c3c;
}
.wst-popup-content {
    padding: 30px;
}
.wst-header {
    margin: 0 0 10px;
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}
.wst-product-name {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 600;
    color: #555;
}
.wst-subtext {
    margin: 0 0 20px;
    color: #7f8c8d;
    font-size: 15px;
    line-height: 1.5;
}
.wst-price-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.wst-original-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 18px;
}
.wst-discounted-price {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
}
.wst-savings {
    background: #e74c3c;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}
.wst-timer-box {
    text-align: center;
    margin-bottom: 20px;
}
.wst-timer-label {
    display: block;
    font-size: 13px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.wst-timer {
    font-size: 48px;
    font-weight: 700;
    color: #e74c3c;
    font-variant-numeric: tabular-nums;
}
.wst-timer-minutes, .wst-timer-seconds {
    display: inline-block;
    min-width: 70px;
}
.wst-cta-button {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    text-align: center;
    text-decoration: none;
}
.wst-cta-button:hover {
    background: #c0392b;
}
.wst-dismiss {
    display: block;
    width: 100%;
    margin-top: 10px;
    background: none;
    border: none;
    color: #95a5a6;
    cursor: pointer;
    font-size: 14px;
    text-decoration: underline;
    padding: 5px;
}

.wst-popup-product-image {
    text-align: center;
    margin-bottom: 15px;
}
.wst-popup-product-image img {
    max-width: 150px;
    height: auto;
    border-radius: 8px;
}

.wst-design-1 .wst-align-right, .wst-design-1 .wst-align-left {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.wst-design-1 .wst-align-right .wst-popup-product-image { order: 0; margin-bottom: 0; flex-shrink: 0; }
.wst-design-1 .wst-align-right .wst-popup-info { order: 1; flex: 1; }
.wst-design-1 .wst-align-left { flex-direction: row-reverse; }
.wst-design-1 .wst-align-left .wst-popup-product-image { order: 0; margin-bottom: 0; flex-shrink: 0; }
.wst-design-1 .wst-align-left .wst-popup-info { order: 1; flex: 1; }

.wst-design-1 .wst-align-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wst-design-1 .wst-align-center .wst-popup-product-image { margin-bottom: 15px; }
.wst-design-1 .wst-align-center .wst-popup-info { text-align: center; }

.wst-position-center {
    align-items: center;
    justify-content: center;
}
.wst-position-bottom-left {
    align-items: flex-end;
    justify-content: flex-start;
}
.wst-position-bottom-right {
    align-items: flex-end;
    justify-content: flex-end;
}
.wst-position-top-center {
    align-items: flex-start;
    justify-content: center;
}

.wst-position-bottom-left .wst-popup,
.wst-position-bottom-right .wst-popup {
    margin: 20px;
    max-width: 400px;
}
.wst-position-top-center .wst-popup {
    margin-top: 20px;
    max-width: 500px;
}

/* Design 2 */
.wst-popup-design-2 .wst-popup-content {
    padding: 0;
}
.wst-popup-design-2 .wst-top-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wst-popup-design-2 .wst-badge {
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
}
.wst-popup-design-2 .wst-timer-mini {
    font-weight: 700;
    font-size: 18px;
    font-variant-numeric: tabular-nums;
}
.wst-popup-design-2 .wst-middle {
    padding: 20px;
}
.wst-popup-design-2 .wst-price-inline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}
.wst-popup-design-2 .wst-arrow {
    color: #27ae60;
    font-size: 24px;
    font-weight: 700;
}
.wst-popup-design-2 .wst-discounted-price {
    color: #27ae60;
}
.wst-popup-design-2 .wst-timer-bar {
    height: 6px;
    background: #ecf0f1;
    border-radius: 3px;
    margin-bottom: 15px;
    overflow: hidden;
}
.wst-popup-design-2 .wst-timer-progress {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    width: 100%;
    transition: width 1s linear;
    border-radius: 3px;
}
.wst-popup-design-2 .wst-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.wst-popup-design-2 .wst-cta-button:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b3fa0 100%);
}

/* Design 3 */
.wst-popup-design-3 .wst-popup-content {
    display: flex;
    padding: 0;
}
.wst-popup-design-3 .wst-align-right {
    flex-direction: row;
}
.wst-popup-design-3 .wst-align-left {
    flex-direction: row-reverse;
}
.wst-popup-design-3 .wst-align-center {
    flex-direction: column;
}
.wst-popup-design-3 .wst-popup-image-side {
    flex: 0 0 40%;
    flex-shrink: 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 1px solid #e9ecef;
    min-height: 160px;
    box-sizing: border-box;
}
.wst-popup-design-3 .wst-align-left .wst-popup-image-side {
    border-right: none;
    border-left: 1px solid #e9ecef;
}
.wst-popup-design-3 .wst-align-center .wst-popup-image-side {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
    min-height: auto;
}
.wst-popup-design-3 .wst-popup-image-side img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
}
.wst-popup-design-3 .wst-popup-details-side {
    flex: 1;
    padding: 25px 20px;
    box-sizing: border-box;
}
.wst-popup-design-3 .wst-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.wst-popup-design-3 .wst-fire-badge {
    background: #e74c3c;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}
.wst-popup-design-3 .wst-clock-badge {
    font-size: 18px;
}
.wst-popup-design-3 .wst-product-name {
    font-size: 14px;
    margin: 0 0 6px;
}
.wst-popup-design-3 .wst-header {
    font-size: 18px;
    margin: 0 0 8px;
}
.wst-popup-design-3 .wst-subtext {
    font-size: 13px;
    margin: 0 0 14px;
}
.wst-popup-design-3 .wst-timer-horizontal {
    margin-bottom: 16px;
}
.wst-popup-design-3 .wst-timer-bar {
    height: 10px;
    background: #ecf0f1;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}
.wst-popup-design-3 .wst-timer-progress {
    height: 100%;
    background: #e74c3c;
    width: 100%;
    transition: width 1s linear;
    border-radius: 5px;
}
.wst-popup-design-3 .wst-timer-label {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #e74c3c;
    font-variant-numeric: tabular-nums;
    font-family: monospace;
}
.wst-popup-design-3 .wst-timer-minutes,
.wst-popup-design-3 .wst-timer-seconds {
    display: inline-block;
    min-width: 1.2em;
}
.wst-popup-design-3 .wst-price-details {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.wst-popup-design-3 .wst-discounted-price {
    font-size: 24px;
    color: #e74c3c;
    font-weight: 700;
}
.wst-popup-design-3 .wst-original-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 16px;
}
.wst-popup-design-3 .wst-savings-badge {
    background: #e74c3c;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}
.wst-popup-design-3 .wst-btn-elegant {
    background: #2c3e50;
    border-radius: 25px;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.wst-popup-design-3 .wst-btn-elegant:hover {
    background: #1a252f;
}

.wst-popup-design-3 {
    max-width: 580px !important;
}

.wst-popup-design-3 .wst-close {
    z-index: 20;
    top: 8px;
    right: 10px;
}
.wst-popup-design-3 .wst-popup-image-side {
    flex: 0 0 40%;
    flex-shrink: 0;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-right: 1px solid #e9ecef;
    min-height: 160px;
    box-sizing: border-box;
}
.wst-popup-design-3 .wst-popup-image-side img {
    max-width: 100%;
    height: auto;
    max-height: 180px;
}
.wst-popup-design-3 .wst-popup-details-side {
    flex: 1;
    padding: 25px 20px;
    box-sizing: border-box;
}
.wst-popup-design-3 .wst-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}
.wst-popup-design-3 .wst-fire-badge {
    background: #e74c3c;
    color: #fff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}
.wst-popup-design-3 .wst-clock-badge {
    font-size: 18px;
}
.wst-popup-design-3 .wst-price-details {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.wst-popup-design-3 .wst-discounted-price {
    font-size: 24px;
    color: #e74c3c;
    font-weight: 700;
}
.wst-popup-design-3 .wst-original-price {
    text-decoration: line-through;
    color: #95a5a6;
    font-size: 16px;
}
.wst-popup-design-3 .wst-savings-badge {
    background: #e74c3c;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}
.wst-popup-design-3 .wst-btn-elegant {
    background: #2c3e50;
    border-radius: 25px;
    font-size: 16px;
    letter-spacing: 0.5px;
}
.wst-popup-design-3 .wst-btn-elegant:hover {
    background: #1a252f;
}

.wst-popup-design-3 {
    max-width: 580px !important;
}

.wst-popup-design-3 .wst-close {
    z-index: 20;
    top: 8px;
    right: 10px;
}

@media (max-width: 600px) {
    .wst-popup {
        width: 95%;
    }
    .wst-popup-design-3 .wst-popup-content {
        flex-direction: column !important;
    }
    .wst-popup-design-3 .wst-popup-image-side {
        border-right: none !important;
        border-left: none !important;
        border-bottom: 1px solid #e9ecef;
        min-height: auto;
    }
    .wst-popup-design-3 .wst-popup-image-side img {
        max-height: 120px;
    }
}
