/* ===================================
   POWERLESS CAR CLUBS - SHORTCODES CSS
   Beautiful Cards with Social Media
   =================================== */

/* Section Headings */
.pcc-section-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pcc-section-heading span {
    font-size: 1.5rem;
}

.pcc-featured-section {
    margin: 40px 0;
}

/* Empty State */
.pcc-empty-state {
    text-align: center;
    padding: 60px 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    margin: 20px 0;
}

.pcc-empty-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.pcc-empty-state h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.pcc-empty-state p {
    color: #666;
    margin-bottom: 20px;
}

/* Buttons */
.pcc-btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.pcc-btn-primary {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.pcc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.pcc-btn-white {
    background: #fff;
    color: #d32f2f !important;
}

.pcc-btn-white:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* Grid Layout */
.pcc-clubs-grid,
.pcc-classifieds-grid {
    display: grid;
    gap: 25px;
    margin: 25px 0;
}

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

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

@media (max-width: 640px) {
    .pcc-cols-2, .pcc-cols-3, .pcc-cols-4 { grid-template-columns: 1fr; }
}

/* ===================================
   CLUB CARDS - Beautiful Design
   =================================== */
.pcc-club-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.pcc-club-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Elite & Rolling badges */
.pcc-club-card.pcc-elite {
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #ffd700, #ffb347) border-box;
}

.pcc-club-card.pcc-rolling {
    border: 2px solid transparent;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, #667eea, #764ba2) border-box;
}

/* Card Badge */
.pcc-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.pcc-badge-elite {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.pcc-badge-rolling {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

/* Card Image */
.pcc-card-image {
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.pcc-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, rgba(0,0,0,0.1));
}

.pcc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pcc-club-card:hover .pcc-card-image img {
    transform: scale(1.08);
}

.pcc-card-initial {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    color: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Card Content */
.pcc-card-content {
    padding: 20px;
}

.pcc-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.3;
}

.pcc-card-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 13px;
    margin: 0 0 10px;
}

.pcc-card-location svg {
    color: #d32f2f;
}

.pcc-card-desc {
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 15px;
}

/* Social Icons */
.pcc-card-social {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.pcc-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
}

.pcc-social-icon.pcc-facebook {
    background: #1877f2;
}

.pcc-social-icon.pcc-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.pcc-social-icon.pcc-twitter {
    background: #000;
}

.pcc-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Card Button */
.pcc-card-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff !important;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.pcc-card-btn:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #8b0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

/* ===================================
   SPOTLIGHT CARD
   =================================== */
.pcc-spotlight-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
    margin: 25px 0;
}

.pcc-spotlight-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1rem;
}

.pcc-spotlight-body {
    display: flex;
    gap: 25px;
    padding: 25px;
    align-items: center;
}

.pcc-spotlight-logo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pcc-spotlight-info h3 {
    margin: 0 0 8px;
    font-size: 1.3rem;
    color: #1a1a2e;
}

.pcc-spotlight-location {
    color: #666;
    font-size: 14px;
    margin: 0 0 10px;
}

.pcc-spotlight-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 15px;
}

.pcc-spotlight-social {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

@media (max-width: 640px) {
    .pcc-spotlight-body {
        flex-direction: column;
        text-align: center;
    }
    
    .pcc-spotlight-social {
        justify-content: center;
    }
}

/* ===================================
   EVENTS
   =================================== */
.pcc-events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.pcc-event-card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.pcc-event-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.pcc-event-date-box {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    text-align: center;
    min-width: 65px;
    flex-shrink: 0;
}

.pcc-event-month {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pcc-event-day {
    display: block;
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
}

.pcc-event-info h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #1a1a2e;
}

.pcc-event-meta a {
    color: #d32f2f;
    text-decoration: none;
    font-weight: 500;
}

.pcc-event-location,
.pcc-event-time {
    color: #666;
    font-size: 13px;
    margin: 3px 0;
}

/* Widget */
.pcc-widget {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.pcc-widget-title {
    font-size: 1.1rem;
    margin: 0 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d32f2f;
}

.pcc-widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pcc-widget-list li {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pcc-widget-list li:last-child {
    border-bottom: none;
}

.pcc-widget-date {
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #d32f2f;
    flex-shrink: 0;
}

/* ===================================
   CLASSIFIEDS
   =================================== */
.pcc-classified-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
}

.pcc-classified-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.pcc-classified-card.pcc-premium {
    border: 2px solid #ffd700;
    background: linear-gradient(135deg, #fffef5 0%, #fff 100%);
}

.pcc-premium-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #333;
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
}

.pcc-classified-content h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    color: #1a1a2e;
    padding-right: 80px;
}

.pcc-classified-price {
    color: #d32f2f;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 10px;
}

.pcc-classified-seller {
    color: #666;
    font-size: 13px;
    margin: 0 0 8px;
}

.pcc-classified-seller a {
    color: #d32f2f;
    text-decoration: none;
}

.pcc-classified-category {
    display: inline-block;
    background: #e3f2fd;
    color: #1565c0;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
}

/* ===================================
   CTA BOX
   =================================== */
.pcc-cta-box {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 8px 30px rgba(211, 47, 47, 0.3);
}

.pcc-cta-box h3 {
    font-size: 1.8rem;
    margin: 0 0 10px;
    color: #fff;
}

.pcc-cta-box p {
    font-size: 1.1rem;
    margin: 0 0 25px;
    opacity: 0.95;
}
