/* EVP Affiliate Manager Styles */

.evp-vps-offers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.evp-vps-offers-grid .item {
    flex: 1 1 280px;
    max-width: 350px;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 25px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.evp-vps-offers-grid .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.evp-vps-offers-grid .item-header {
    text-align: center;
    margin-bottom: 20px;
}

.evp-vps-offers-grid .plan-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    margin-bottom: 5px;
}

.evp-vps-offers-grid .size {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 10px;
}

.evp-vps-offers-grid .subtitle {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.evp-vps-offers-grid p {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 20px;
}

.evp-vps-offers-grid .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2563eb;
    margin: 0;
}

.evp-vps-offers-grid .duration {
    font-size: 0.85rem;
    color: #64748b;
    display: block;
    margin-bottom: 20px;
}

.evp-vps-offers-grid .primary-solid {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    transition: background 0.3s ease;
}

.evp-vps-offers-grid .primary-solid:hover {
    background: #1d4ed8;
    color: #ffffff !important;
}

.evp-vps-offers-grid .divider_line {
    display: block;
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}

.evp-vps-offers-grid .diamond-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.evp-vps-offers-grid .diamond-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #334155;
    font-size: 0.95rem;
}

.evp-vps-offers-grid .diamond-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 0.8rem;
    top: 2px;
}

.evp-ribbon {
    position: absolute;
    top: 0;
    right: -8px;
    background: #ec4899;
    color: #fff;
    padding: 4px 20px;
    transform: rotate(45deg) translateX(30px);
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

/* Ad Manager Styles */
.evp-ad-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 20px 0;
    width: 100%;
}

.evp-ad-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.evp-ad-label {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    pointer-events: none;
}