/* AW Developer - Public CSS */

.awd-profiles-grid {
    display: grid;
    gap: 20px;
}

.awd-columns-2 { grid-template-columns: repeat(2, 1fr); }
.awd-columns-3 { grid-template-columns: repeat(3, 1fr); }
.awd-columns-4 { grid-template-columns: repeat(4, 1fr); }
.awd-columns-5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 1024px) {
    .awd-columns-4,
    .awd-columns-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .awd-columns-3,
    .awd-columns-4,
    .awd-columns-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .awd-profiles-grid { grid-template-columns: 1fr; }
}

/* Karta profilu */

.awd-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.awd-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Link na zdjęciu */
.awd-card-image-link {
    display: block;
    text-decoration: none;
}

/* Zdjęcie */

.awd-card-image {
    position: relative;
    padding-top: 100%;
    background: #f0f0f0;
    overflow: hidden;
}

.awd-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awd-card-image .awd-no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

/* Status */

.awd-status {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    color: #fff;
}

.awd-status-online {
    background: #4caf50;
    animation: pulse 2s infinite;
}

.awd-status-today {
    background: #ff9800;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Zweryfikowana */

.awd-verified-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #2196f3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

/* Treść karty */

.awd-card-content {
    padding: 15px;
}

/* Nickname */

.awd-card-nickname {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
}

.awd-card-nickname a {
    color: #333;
    text-decoration: none;
}

.awd-card-nickname a:hover {
    color: #e91e63;
}

/* Wiek i płeć */

.awd-card-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
    font-size: 13px;
    color: #666;
}

/* Lokalizacja */

.awd-card-location {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
}

/* Bio */

.awd-card-bio {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* Usługi */

.awd-card-services {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.awd-service {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    font-size: 10px;
    font-weight: 600;
    border-radius: 4px;
    color: #fff;
}

.awd-service-escort { background: #e91e63; }
.awd-service-webcam { background: #9c27b0; }
.awd-service-phone { background: #2196f3; }
.awd-service-directcam { background: #ff5722; }
.awd-service-alt { background: #607d8b; }

/* Oceny */

.awd-card-ratings {
    display: flex;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}

.awd-rating-positive {
    color: #4caf50;
}

.awd-rating-negative {
    color: #f44336;
}

/* Przycisk Zobacz profil */

.awd-card-button {
    display: block;
    margin-top: 12px;
    padding: 10px 16px;
    background: #e91e63;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s;
}

.awd-card-button:hover {
    background: #c2185b;
    color: #fff;
    text-decoration: none;
}

/* ========================================
   STYLE: MINIMAL CLEAN
   ======================================== */

.awd-style-minimal .awd-card-minimal {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.awd-style-minimal .awd-card-minimal:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.awd-style-minimal .awd-card-image {
    padding-top: 100%;
    position: relative;
    background: #f5f5f5;
}

.awd-style-minimal .awd-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awd-style-minimal .awd-card-content {
    padding: 20px;
    text-align: center;
}

.awd-style-minimal .awd-card-nickname {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
}

.awd-style-minimal .awd-card-nickname a {
    color: #333;
    text-decoration: none;
}

.awd-style-minimal .awd-card-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.awd-style-minimal .awd-card-meta span:not(:last-child)::after {
    content: " • ";
}

.awd-style-minimal .awd-card-location {
    color: #999;
    font-size: 13px;
    margin-bottom: 15px;
}

.awd-style-minimal .awd-card-button {
    background: #333;
    border-radius: 4px;
    padding: 10px 20px;
    display: inline-block;
}

.awd-style-minimal .awd-card-button:hover {
    background: #000;
}

/* ========================================
   STYLE: OVERLAY
   ======================================== */

.awd-style-overlay .awd-card-overlay {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
}

.awd-style-overlay .awd-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.awd-style-overlay .awd-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awd-style-overlay .awd-card-overlay-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.awd-style-overlay .awd-card-nickname {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.awd-style-overlay .awd-card-meta {
    font-size: 14px;
    opacity: 0.9;
}

.awd-style-overlay .awd-card-meta span:not(:last-child)::after {
    content: " • ";
}

.awd-style-overlay .awd-verified-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2196f3;
    color: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.awd-style-overlay .awd-status-dot {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 12px;
    height: 12px;
    background: #4caf50;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: pulse 2s infinite;
}

/* ========================================
   STYLE: HORIZONTAL
   ======================================== */

.awd-style-horizontal .awd-profiles-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.awd-style-horizontal .awd-card-horizontal {
    display: flex;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.awd-style-horizontal .awd-card-image-link {
    flex-shrink: 0;
    width: 120px;
}

.awd-style-horizontal .awd-card-image {
    width: 120px;
    height: 120px;
    position: relative;
}

.awd-style-horizontal .awd-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awd-style-horizontal .awd-card-content {
    flex: 1;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.awd-style-horizontal .awd-card-nickname {
    margin: 0 0 5px;
    font-size: 16px;
}

.awd-style-horizontal .awd-card-nickname a {
    color: #333;
    text-decoration: none;
}

.awd-style-horizontal .awd-verified-inline {
    color: #2196f3;
    margin-left: 5px;
}

.awd-style-horizontal .awd-card-meta {
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.awd-style-horizontal .awd-card-meta span:not(:last-child)::after {
    content: " • ";
}

.awd-style-horizontal .awd-card-location {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}

.awd-style-horizontal .awd-card-services {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.awd-style-horizontal .awd-card-button {
    display: inline-block;
    width: auto;
    margin: 0;
    padding: 6px 12px;
    font-size: 12px;
}

/* ========================================
   STYLE: ROUNDED MODERN
   ======================================== */

.awd-style-rounded .awd-card-rounded {
    background: linear-gradient(145deg, #fff, #f8f9fa);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.awd-style-rounded .awd-card-rounded:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.awd-style-rounded .awd-card-image {
    margin: 15px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    padding-top: 100%;
}

.awd-style-rounded .awd-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awd-style-rounded .awd-card-content {
    padding: 0 20px 20px;
    text-align: center;
}

.awd-style-rounded .awd-card-nickname {
    margin: 0 0 8px;
    font-size: 18px;
}

.awd-style-rounded .awd-star {
    color: #ffc107;
    margin-right: 5px;
}

.awd-style-rounded .awd-card-nickname a {
    color: #333;
    text-decoration: none;
}

.awd-style-rounded .awd-card-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.awd-style-rounded .awd-card-meta span:not(:last-child)::after {
    content: " • ";
}

.awd-style-rounded .awd-status-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.awd-style-rounded .awd-status-today {
    background: #fff3e0;
    color: #e65100;
}

.awd-style-rounded .awd-card-button {
    border-radius: 25px;
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

/* ========================================
   STYLE: TINDER
   ======================================== */

.awd-style-tinder .awd-card-tinder {
    display: block;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.awd-style-tinder .awd-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.awd-style-tinder .awd-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awd-style-tinder .awd-card-tinder-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
}

.awd-style-tinder .awd-card-tinder-info h3 {
    margin: 0 0 5px;
    font-size: 22px;
    font-weight: 600;
}

.awd-style-tinder .awd-card-tinder-info p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.awd-style-tinder .awd-verified-inline {
    color: #2196f3;
    background: #fff;
    border-radius: 50%;
    padding: 2px;
    margin-left: 8px;
    font-size: 14px;
}

/* ========================================
   STYLE: GRID INFO
   ======================================== */

.awd-style-grid .awd-card-grid {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.awd-style-grid .awd-card-grid-top {
    display: flex;
}

.awd-style-grid .awd-card-image-link {
    flex: 1;
}

.awd-style-grid .awd-card-image {
    position: relative;
    padding-top: 100%;
}

.awd-style-grid .awd-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awd-style-grid .awd-card-grid-badges {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: #f5f5f5;
}

.awd-style-grid .awd-card-grid-badges span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.awd-style-grid .awd-card-grid-badges .awd-verified {
    background: #2196f3;
    color: #fff;
}

.awd-style-grid .awd-card-grid-badges .awd-online {
    background: #4caf50;
    color: #fff;
}

.awd-style-grid .awd-card-content {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.awd-style-grid .awd-card-nickname {
    margin: 0 0 4px;
    font-size: 14px;
}

.awd-style-grid .awd-card-nickname a {
    color: #333;
    text-decoration: none;
}

.awd-style-grid .awd-card-location {
    font-size: 12px;
    color: #999;
}

.awd-style-grid .awd-card-grid-services {
    display: flex;
    border-bottom: 1px solid #eee;
}

.awd-style-grid .awd-card-grid-services span {
    flex: 1;
    padding: 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #666;
    border-right: 1px solid #eee;
}

.awd-style-grid .awd-card-grid-services span:last-child {
    border-right: none;
}

.awd-style-grid .awd-card-grid-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
}

.awd-style-grid .awd-card-ratings {
    font-size: 12px;
    font-weight: 600;
}

.awd-style-grid .awd-card-button {
    margin: 0;
    padding: 6px 12px;
    font-size: 11px;
}

/* Komunikaty */

.awd-error {
    padding: 20px;
    background: #ffebee;
    color: #c62828;
    border-radius: 4px;
    text-align: center;
}

.awd-no-results {
    padding: 40px;
    background: #f5f5f5;
    color: #666;
    border-radius: 4px;
    text-align: center;
}

/* ===== POJEDYNCZY PROFIL ===== */

.awd-single-profile {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.awd-profile-header {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

@media (max-width: 768px) {
    .awd-profile-header {
        flex-direction: column;
    }
}

.awd-profile-images {
    flex-shrink: 0;
    width: 280px;
}

@media (max-width: 768px) {
    .awd-profile-images {
        width: 100%;
    }
}

.awd-profile-main-image {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.awd-profile-no-image {
    width: 100%;
    padding-top: 100%;
    background: linear-gradient(135deg, #ddd, #eee);
    border-radius: 8px;
}

.awd-profile-gallery {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.awd-profile-thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
}

.awd-profile-info {
    flex: 1;
}

.awd-profile-nickname {
    margin: 0 0 15px;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.awd-profile-nickname .awd-verified-badge {
    position: static;
    width: 28px;
    height: 28px;
    font-size: 16px;
}

.awd-profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.awd-meta-item {
    font-size: 15px;
    color: #555;
}

.awd-profile-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.awd-profile-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.awd-service-tag {
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    color: #fff;
}

.awd-service-tag.awd-service-escort { background: #e91e63; }
.awd-service-tag.awd-service-webcam { background: #9c27b0; }
.awd-service-tag.awd-service-phone { background: #2196f3; }
.awd-service-tag.awd-service-directcam { background: #ff5722; }
.awd-service-tag.awd-service-alt { background: #607d8b; }

.awd-profile-status {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.awd-status-badge {
    padding: 6px 12px;
    font-size: 13px;
    background: #e8f5e9;
    color: #2e7d32;
    border-radius: 6px;
}

.awd-status-badge.awd-status-online {
    background: #e8f5e9;
    color: #2e7d32;
}

.awd-status-badge.awd-status-today {
    background: #fff3e0;
    color: #e65100;
}

.awd-profile-ratings {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 600;
}

.awd-profile-ratings .awd-rating-positive { color: #4caf50; }
.awd-profile-ratings .awd-rating-neutral { color: #9e9e9e; }
.awd-profile-ratings .awd-rating-negative { color: #f44336; }
.awd-profile-ratings .awd-rating-total { font-weight: 400; color: #888; }

.awd-profile-link {
    display: inline-block;
    padding: 12px 24px;
    background: #e91e63;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.2s;
}

.awd-profile-link:hover {
    background: #c2185b;
    color: #fff;
    text-decoration: none;
}

/* Sekcje profilu */

.awd-profile-section {
    padding: 25px 30px;
    border-top: 1px solid #eee;
}

.awd-profile-section h3 {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.awd-profile-details {
    line-height: 1.7;
    color: #555;
}

/* Statystyki */

.awd-vital-stats {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.awd-stat {
    padding: 10px 15px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
}

.awd-stat strong {
    color: #333;
}

/* Preferencje */

.awd-enjoys {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.awd-enjoy-tag {
    padding: 6px 14px;
    background: #f0f0f0;
    color: #555;
    border-radius: 20px;
    font-size: 13px;
}

/* Stawki */

.awd-escort-rates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.awd-rates-table h4 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 600;
}

.awd-rates-table table {
    width: 100%;
    border-collapse: collapse;
}

.awd-rates-table th,
.awd-rates-table td {
    padding: 10px 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.awd-rates-table th {
    background: #f8f9fa;
    font-weight: 600;
}
