/* Universal Showcase Plugin Styles */

/* Property Showcase Styles */
.universal-property-showcase {
    margin: 20px 0;
}

.property-showcase-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    height: 60px;
    line-height: 60px;
    margin: 0 0 20px 0;
    text-align: center;
    width: 100%;
}

.property-filters {
    margin-bottom: 20px;
    text-align: center;
}

.property-filters select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: #fff;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.property-item {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.property-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.property-thumbnail {
    position: relative;
}

.property-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.property-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
}

.property-wishlist-btn {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.95);
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    color: #ff4757;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.property-wishlist-btn::before {
    content: "\2665";
    font-size: 14px;
    line-height: 1;
}

.property-wishlist-btn:hover {
    background: #ff4757;
    border-color: #ff4757;
    color: #ffffff;
    transform: translateY(-1px);
}

.property-wishlist-btn.in-wishlist {
    background: #ff4757;
    border-color: #ff4757;
    color: #ffffff;
}

.property-content {
    padding: 20px;
}

.property-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.property-content h3 a {
    color: #333;
    text-decoration: none;
}

.property-content h3 a:hover {
    color: #007cba;
}

.property-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #555;
}

.property-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #007cba;
}

.regular-price {
    font-size: 14px;
    color: #999;
    font-weight: 400;
}

.regular-price del {
    color: #999;
}

/* Property summary (price, location, meta) */
.property-summary {
    margin-top: 8px;
    font-size: 14px;
    color: #555;
}

.property-main-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 10px;
    margin-bottom: 4px;
}

.property-main-price {
    font-weight: 700;
    color: #007cba;
}

.property-period {
    color: #777;
    font-size: 13px;
}

.property-location {
    color: #888;
    font-size: 13px;
}

.property-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    font-size: 13px;
    color: #666;
}

.property-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.detail-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Vehicle Showcase Styles */
.universal-vehicle-showcase {
    margin: 20px 0;
}

.vehicle-showcase-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    height: 60px;
    line-height: 60px;
    margin: 0 0 20px 0;
    text-align: center;
    width: 100%;
}

.vehicle-filters {
    margin-bottom: 20px;
    text-align: center;
}

.vehicle-filters select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: #fff;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.vehicle-item {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.vehicle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.vehicle-thumbnail {
    position: relative;
}

.vehicle-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vehicle-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
}

.vehicle-wishlist-btn {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.95);
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    color: #ff4757;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.vehicle-wishlist-btn::before {
    content: "\2665";
    font-size: 14px;
    line-height: 1;
}

.vehicle-wishlist-btn:hover {
    background: #ff4757;
    border-color: #ff4757;
    color: #ffffff;
    transform: translateY(-1px);
}

.vehicle-wishlist-btn.in-wishlist {
    background: #ff4757;
    border-color: #ff4757;
    color: #ffffff;
}

.vehicle-content {
    padding: 20px;
}

.vehicle-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.vehicle-content h3 a {
    color: #333;
    text-decoration: none;
}

.vehicle-content h3 a:hover {
    color: #007cba;
}

.vehicle-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.vehicle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #555;
}

.vehicle-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.vehicle-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #007cba;
}

/* Real Estate Showcase Styles */
.universal-real-estate-showcase {
    margin: 20px 0;
}

.real-estate-showcase-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.real-estate-filters {
    margin-bottom: 20px;
    text-align: center;
}

.real-estate-filters select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: #fff;
}

.real-estate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.real-estate-item {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.real-estate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.real-estate-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.real-estate-content {
    padding: 20px;
}

.real-estate-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.real-estate-content h3 a {
    color: #333;
    text-decoration: none;
}

.real-estate-content h3 a:hover {
    color: #007cba;
}

.real-estate-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.real-estate-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #007cba;
}

/* Women's Showcase Styles */
.universal-womens-showcase {
    margin: 20px 0;
}

.womens-showcase-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    height: 60px;
    line-height: 60px;
    margin: 0 0 20px 0;
    text-align: center;
    width: 100%;
}

.womens-filters {
    margin-bottom: 20px;
    text-align: center;
}

.womens-filters select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: #fff;
}

.womens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.womens-item {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.womens-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.womens-thumbnail {
    position: relative;
}

.womens-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.womens-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
}

.womens-wishlist-btn {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.95);
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    color: #ff4757;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.womens-wishlist-btn::before {
    content: "\2665";
    font-size: 14px;
    line-height: 1;
}

.womens-wishlist-btn:hover {
    background: #ff4757;
    border-color: #ff4757;
    color: #ffffff;
    transform: translateY(-1px);
}

.womens-wishlist-btn.in-wishlist {
    background: #ff4757;
    border-color: #ff4757;
    color: #ffffff;
}

.womens-content {
    padding: 20px;
}

.womens-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.womens-content h3 a {
    color: #333;
    text-decoration: none;
}

.womens-content h3 a:hover {
    color: #e75480;
}

.womens-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.womens-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #e75480;
}

/* Electronics Showcase Styles */
.universal-electronics-showcase {
    margin: 20px 0;
}

.electronics-showcase-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    height: 60px;
    line-height: 60px;
    margin: 0 0 20px 0;
    text-align: center;
    width: 100%;
}

.electronics-filters {
    margin-bottom: 20px;
    text-align: center;
}

.electronics-filters select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: #fff;
}

.electronics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.electronics-item {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
}

.electronics-thumbnail {
    position: relative;
}

.electronics-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.electronics-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
}

.electronics-wishlist-btn {
    width: 24px;
    height: 24px;
    background: rgba(255,255,255,0.95);
    border: 1px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    color: #ff4757;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.electronics-wishlist-btn::before {
    content: "\2665";
    font-size: 14px;
    line-height: 1;
}

.electronics-wishlist-btn:hover {
    background: #ff4757;
    border-color: #ff4757;
    color: #ffffff;
    transform: translateY(-1px);
}

.electronics-wishlist-btn.in-wishlist {
    background: #ff4757;
    border-color: #ff4757;
    color: #ffffff;
}

.electronics-content {
    padding: 20px;
}

.electronics-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.electronics-content h3 a {
    color: #333;
    text-decoration: none;
}

.electronics-content h3 a:hover {
    color: #007cba;
}

.electronics-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.electronics-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #007cba;
}

/* Universal Showcase Styles */
.universal-showcase {
    margin: 20px 0;
}

.showcase-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    height: 60px;
    line-height: 60px;
    margin: 0 0 20px 0;
    text-align: center;
    width: 100%;
}

.showcase-filters {
    margin-bottom: 20px;
    text-align: center;
}

.showcase-filters select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    background: #fff;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.showcase-item {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.showcase-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.showcase-content {
    padding: 20px;
}

.showcase-content h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    font-weight: 600;
}

.showcase-content h3 a {
    color: #333;
    text-decoration: none;
}

.showcase-content h3 a:hover {
    color: #007cba;
}

.showcase-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.showcase-price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #007cba;
}

.showcase-actions {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.showcase-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    border: 1px solid transparent;
}

.showcase-btn-view {
    background-color: #ffffff;
    color: #007cba;
    border-color: #007cba;
}

.showcase-btn-view:hover {
    background-color: #007cba;
    color: #ffffff;
}

.showcase-btn-bid {
    background-color: #ff6b35;
    color: #ffffff;
}

.showcase-btn-bid:hover {
    background-color: #e35320;
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .property-grid,
    .vehicle-grid,
    .real-estate-grid,
    .womens-grid,
    .electronics-grid,
    .showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .property-showcase-title,
    .vehicle-showcase-title,
    .real-estate-showcase-title,
    .womens-showcase-title,
    .electronics-showcase-title,
    .showcase-title {
        font-size: 24px;
    }
    
    .property-content,
    .vehicle-content,
    .real-estate-content,
    .womens-content,
    .electronics-content,
    .showcase-content {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .property-grid,
    .vehicle-grid,
    .real-estate-grid,
    .womens-grid,
    .electronics-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .property-meta,
    .vehicle-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .property-showcase-title,
    .vehicle-showcase-title,
    .real-estate-showcase-title,
    .womens-showcase-title,
    .electronics-showcase-title,
    .showcase-title {
        font-size: 22px;
    }
}

/* Universal Showcase specific grid overrides */
.universal-showcase .showcase-grid {
    grid-template-columns: repeat(5, 1fr) !important;
}

@media (max-width: 600px) {
    .universal-showcase .showcase-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Property Showcase specific grid overrides */
.universal-property-showcase .property-grid {
    grid-template-columns: repeat(5, 1fr) !important;
}

@media (max-width: 600px) {
    .universal-property-showcase .property-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Vehicle Showcase specific grid overrides */
.universal-vehicle-showcase .vehicle-grid {
    grid-template-columns: repeat(5, 1fr) !important;
}

@media (max-width: 600px) {
    .universal-vehicle-showcase .vehicle-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Womens Showcase specific grid overrides */
.universal-womens-showcase .womens-grid {
    grid-template-columns: repeat(5, 1fr) !important;
}

@media (max-width: 600px) {
    .universal-womens-showcase .womens-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Electronics Showcase specific grid overrides */
.universal-electronics-showcase .electronics-grid {
    grid-template-columns: repeat(5, 1fr) !important;
}

@media (max-width: 600px) {
    .universal-electronics-showcase .electronics-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Centered "View more" button wrappers for all showcases */
.showcase-view-more-wrap,
.vehicle-view-more-wrap,
.womens-view-more-wrap,
.property-view-more-wrap {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.showcase-view-more {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 4px;
    border: 1px solid #007cba;
    background-color: #ffffff;
    color: #007cba;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.showcase-view-more:hover {
    background-color: #007cba;
    color: #ffffff;
}

.car-bike-showcase {
    margin: 20px 0;
}

.car-bike-header {
    margin-bottom: 20px;
    text-align: center;
}

.car-bike-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.car-bike-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.car-bike-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.car-bike-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.car-bike-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.car-bike-body {
    padding: 16px 18px 18px;
}

.car-bike-card-title {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 600;
}

.car-bike-card-title a {
    text-decoration: none;
}

.car-bike-meta {
    margin-bottom: 10px;
    font-size: 13px;
}

.car-bike-main-line {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 4px;
}

.car-bike-brand {
    font-weight: 600;
}

.car-bike-model {
    opacity: 0.9;
}

.car-bike-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
}

.car-bike-spec {
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.car-bike-price-row {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 10px;
}

.car-bike-price {
    font-size: 18px;
    font-weight: 700;
}

.car-bike-regular-price {
    font-size: 13px;
    text-decoration: line-through;
    opacity: 0.7;
}

.car-bike-actions {
    margin-top: 12px;
}

.car-bike-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.car-bike-theme-light {
    background-color: #f7f7f9;
}

.car-bike-theme-light .car-bike-title {
    color: #111827;
}

.car-bike-theme-light .car-bike-card {
    background-color: #ffffff;
}

.car-bike-theme-light .car-bike-card-title a {
    color: #111827;
}

.car-bike-theme-light .car-bike-spec {
    background-color: #f1f5f9;
    color: #1f2933;
}

.car-bike-theme-light .car-bike-price {
    color: #0f766e;
}

.car-bike-theme-light .car-bike-btn {
    background-color: #ffffff;
    color: #0f766e;
    border: 1px solid #0f766e;
}

.car-bike-theme-light .car-bike-btn:hover {
    background-color: #0f766e;
    color: #ffffff;
}

.car-bike-theme-dark {
    background: radial-gradient(circle at top, #1f2937 0, #020617 55%, #000000 100%);
    padding: 24px 20px;
    border-radius: 16px;
}

.car-bike-theme-dark .car-bike-title {
    color: #e5e7eb;
}

.car-bike-theme-dark .car-bike-card {
    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.car-bike-theme-dark .car-bike-card-title a {
    color: #e5e7eb;
}

.car-bike-theme-dark .car-bike-spec {
    background-color: rgba(30, 64, 175, 0.35);
    color: #e5e7eb;
}

.car-bike-theme-dark .car-bike-price {
    color: #22c55e;
}

.car-bike-theme-dark .car-bike-regular-price {
    color: #9ca3af;
}

.car-bike-theme-dark .car-bike-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #020617;
    border: none;
}

.car-bike-theme-dark .car-bike-btn:hover {
    filter: brightness(1.05);
}

@media (max-width: 600px) {
    .car-bike-theme-dark {
        padding: 18px 14px;
    }
}