/**
 * PTEK Network Plugin Styles
 * Version: 1.0.0
 */

.ptech-network-container {
    margin: 20px 0;
    text-align: center;
}

.ptek-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ptek-block {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.ptek-price {
    margin: 4px;
}

.ptek-label {
    margin: 4px;
}

.ptech-network-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.ptech-network-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.ptech-network-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.ptech-network-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
}

.ptech-network-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.ptech-network-btn:hover:before {
    left: 100%;
}

/* Responsive design */
@media (max-width: 768px) {
    .ptech-network-btn {
        font-size: 14px;
        padding: 10px 20px;
        width: 100%;
        max-width: 300px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .ptech-network-btn {
        background: linear-gradient(135deg, #4c63d2 0%, #6a4c93 100%);
        box-shadow: 0 4px 15px rgba(76, 99, 210, 0.4);
    }
    
    .ptech-network-btn:hover {
        box-shadow: 0 6px 20px rgba(76, 99, 210, 0.6);
        background: linear-gradient(135deg, #6a4c93 0%, #4c63d2 100%);
    }
}

.ptek-wrapper.custom-ptek-sc-inline {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: flex-start;
}
.custom-ptek-sc {
    padding: 20px;
    border: 2px solid #9061D7;
    border-radius: 10px;
    min-width : 230px;
}
.custom-ptek-sc h4 {
    color: #9061D7 !important;
    font-weight: 900 !important;
    font-family: 'Roboto' !important;
    letter-spacing: 0.8px !important;
}
.custom-ptek-sc p {
    color: #000;
    font-weight: 600;
}
.sc-container .e-con-inner > div:first-child {
    flex: 0 0 20%;
}