/* WPL Public Styles */

/* =========================================
   RESET & THEME COMPATIBILITY FIXES
   ========================================= */

/* Prevent icon/placeholder overlapping - Reset all WPL inputs */
.wpl-dashboard-container input,
.wpl-dashboard-container select,
.wpl-dashboard-container textarea,
.wpl-form-section input,
.wpl-form-section select,
.wpl-form-section textarea,
[class*="wpl-"] input:not([type="checkbox"]):not([type="radio"]),
[class*="wpl-"] select,
[class*="wpl-"] textarea {
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: none !important;
    padding-left: 44px !important;
}

/* Reset input icons - ensure they don't overlap */
[class*="wpl-"] .dashicons,
[class*="wpl-"] input + .dashicons,
[class*="wpl-"] select + .dashicons {
    position: static !important;
    display: inline-block !important;
    vertical-align: middle !important;
}

/* Fix for inputs with icons inside wrapper */
.wpl-input-with-icon {
    position: relative !important;
}

.wpl-input-with-icon input {
    padding-left: 40px !important;
}

.wpl-input-with-icon .dashicons,
.wpl-input-with-icon .wpl-input-icon {
    position: absolute !important;
    left: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

/* Ensure select dropdowns have proper arrow */
[class*="wpl-"] select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    padding-right: 36px !important;
}

/* Fix placeholder text alignment */
[class*="wpl-"] input::placeholder,
[class*="wpl-"] textarea::placeholder {
    opacity: 0.6 !important;
    color: inherit !important;
}

/* =========================================
   ORIGINAL STYLES
   ========================================= */

/* Dashboard Container */
.wpl-dashboard-container {
    max-width: 1200px;
    margin: 20px auto;
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 5px;
}

/* Dashboard Navigation */
.wpl-dashboard-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    border-bottom: 2px solid #eee;
    display: flex;
}

.wpl-dashboard-nav li {
    margin-right: 5px;
}

.wpl-dashboard-nav a {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #555;
    background: #f9f9f9;
    border-radius: 5px 5px 0 0;
    border: 1px solid #eee;
    border-bottom: none;
    transition: all 0.3s ease;
}

.wpl-dashboard-nav a:hover,
.wpl-dashboard-nav a.active {
    background: #fff;
    color: var(--wpl-primary);
    font-weight: bold;
    border-color: #ddd;
    border-bottom: 2px solid #fff;
    margin-bottom: -2px;
}

/* Forms */
.wpl-form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.wpl-form-section h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    border-left: 4px solid var(--wpl-primary);
    padding-left: 10px;
}

.wpl-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.wpl-form-group {
    flex: 1;
    padding: 0 10px;
    margin-bottom: 15px;
    min-width: 200px;
}

.wpl-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.wpl-form-group input[type="text"],
.wpl-form-group input[type="email"],
.wpl-form-group input[type="number"],
.wpl-form-group input[type="url"],
.wpl-form-group input[type="password"],
.wpl-form-group input[type="tel"],
.wpl-form-group select,
.wpl-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fcfcfc;
    box-sizing: border-box;
}

.wpl-form-group input:focus,
.wpl-form-group select:focus,
.wpl-form-group textarea:focus {
    border-color: var(--wpl-primary, #0073aa);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
    outline: none;
}

.wpl-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 14px;
}

.wpl-checkbox-group label {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    font-weight: normal;
}

/* Tables */
.wpl-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.wpl-table th,
.wpl-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.wpl-table th {
    background-color: #f9f9f9;
    font-weight: 600;
}

/* Alerts */
.wpl-alert {
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.wpl-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.wpl-alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Listings Grid */
.wpl-listings-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.wpl-filters-sidebar {
    flex: 0 0 250px;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    height: fit-content;
}

.wpl-listings-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.wpl-property-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s;
    background: #fff;
}

.wpl-property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.wpl-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.wpl-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpl-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    text-transform: uppercase;
}

.wpl-card-content {
    padding: 15px;
}

.wpl-card-content h4 {
    margin: 0 0 10px;
    font-size: 18px;
}

.wpl-location {
    color: #777;
    font-size: 14px;
    margin-bottom: 10px;
}

.wpl-specs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
    color: #555;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
}

.wpl-price {
    font-size: 20px;
    font-weight: bold;
    color: #2ecc71;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .wpl-listings-container {
        flex-direction: column;
    }
    .wpl-filters-sidebar {
        flex: auto;
        width: 100%;
    }
}

/* Pagination */
.wpl-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.wpl-pagination .button {
    padding: 8px 12px;
    text-decoration: none;
    border: 1px solid #ddd;
    background: #f9f9f9;
    color: #333;
    border-radius: 4px;
    transition: all 0.2s;
}

.wpl-pagination .button:hover {
    background: #eee;
    border-color: #ccc;
}

.wpl-pagination .button-primary {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.wpl-pagination .button-primary:hover {
    background: #006799;
}

/* Auth Forms */
.wpl-auth-container {
    display: flex;
    gap: 40px;
    max-width: 900px;
    margin: 40px auto;
    align-items: flex-start;
}

.wpl-auth-container > div {
    flex: 1;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.wpl-auth-container > div:hover {
    transform: translateY(-5px);
}

.wpl-auth-container h3 {
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 24px;
    color: #333;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.wpl-auth-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--wpl-primary, #0073aa);
    border-radius: 3px;
}

.wpl-auth-container form p {
    margin-bottom: 20px;
}

.wpl-auth-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.wpl-auth-container input[type="text"],
.wpl-auth-container input[type="password"],
.wpl-auth-container input[type="email"],
.wpl-auth-container select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    background: #f9f9f9;
    transition: all 0.3s;
    box-sizing: border-box;
}

.wpl-auth-container input:focus,
.wpl-auth-container select:focus {
    background: #fff;
    border-color: var(--wpl-primary, #0073aa);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.wpl-auth-container button.button {
    width: 100%;
    padding: 12px;
    background: var(--wpl-primary, #0073aa);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.wpl-auth-container button.button:hover {
    background: #005a87;
}

@media (max-width: 600px) {
    .wpl-auth-container {
        flex-direction: column;
    }
}

/* Single Property Redesign */
.wpl-single-property-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}

.wpl-breadcrumb {
    margin-bottom: 20px;
}

.wpl-property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.wpl-property-title {
    margin: 0 0 10px 0;
    font-size: 2.2em;
    line-height: 1.2;
}

.wpl-property-address {
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wpl-header-right {
    text-align: right;
}

.wpl-property-price {
    font-size: 2em;
    font-weight: bold;
    color: #0073aa;
    margin-bottom: 5px;
}

.wpl-badge-negotiable {
    background: #e3f2fd;
    color: #0073aa;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}

/* Gallery */
.wpl-gallery-section {
    margin-bottom: 40px;
}

.wpl-main-image-wrapper {
    position: relative;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    height: 500px;
}

.wpl-main-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Single property page status badge - only within image wrapper */
.wpl-main-image-wrapper .wpl-status-badge,
.wpl-single-property .wpl-status-badge:not(.wpl-status-approved):not(.wpl-status-pending):not(.wpl-status-draft) {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 4px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}

.wpl-main-image-wrapper .wpl-status-badge.sell { background: #2ecc71; }
.wpl-main-image-wrapper .wpl-status-badge.rent { background: #3498db; }

.wpl-gallery-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.wpl-thumb-item {
    width: 100px;
    height: 70px;
    flex-shrink: 0;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}

.wpl-thumb-item:hover {
    border-color: #0073aa;
}

.wpl-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content Layout */
.wpl-content-wrapper {
    display: flex;
    gap: 40px;
}

.wpl-main-details {
    flex: 2;
}

.wpl-sidebar {
    flex: 1;
    max-width: 350px;
}

/* Sections */
.wpl-section {
    margin-bottom: 40px;
}

.wpl-section h3 {
    font-size: 1.4em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

/* Highlights */
.wpl-highlights {
    display: flex;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.wpl-highlight-item {
    text-align: center;
}

.wpl-highlight-item .label {
    display: block;
    font-size: 0.9em;
    color: #666;
    margin-bottom: 5px;
}

.wpl-highlight-item .value {
    display: block;
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
}

/* Details Grid */
.wpl-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.wpl-grid-item {
    padding: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 4px;
}

/* Amenities */
.wpl-amenities-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.wpl-amenities-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.wpl-amenities-list .dashicons {
    color: #2ecc71;
}

/* Video */
.wpl-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.wpl-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sidebar Agent Card */
.wpl-agent-card {
    background: #fff;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.wpl-agent-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.wpl-agent-avatar img {
    border-radius: 50%;
}

.wpl-agent-details h4 {
    margin: 0 0 5px 0;
}

.agent-role {
    margin: 0;
    color: #777;
    font-size: 0.9em;
}

.wpl-btn-call, .wpl-btn-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    box-sizing: border-box;
}

.wpl-btn-call {
    background: #2ecc71;
    color: #fff;
    border-color: #2ecc71;
}

.wpl-btn-call:hover {
    background: #27ae60;
}

/* Responsive */
@media (max-width: 768px) {
    .wpl-content-wrapper {
        flex-direction: column;
    }
    
    .wpl-sidebar {
        max-width: 100%;
    }
    
    .wpl-property-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .wpl-header-right {
        text-align: left;
    }
    
    .wpl-main-image-wrapper {
        height: 300px;
    }
    
    .wpl-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Map */
.wpl-map-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

/* Virtual Tour Button */
.wpl-btn-virtual-tour {
    display: inline-block;
    background: #9b59b6;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.wpl-btn-virtual-tour:hover {
    background: #8e44ad;
    color: #fff;
}

/* Form Tabs & Steps */
.wpl-step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.wpl-step-indicator span {
    color: #aaa;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
    cursor: default;
}

.wpl-step-indicator span.active {
    color: var(--wpl-primary);
    border-bottom: 2px solid var(--wpl-primary);
}

.wpl-step-indicator span.completed {
    color: #2ecc71;
}

.wpl-form-tab-content {
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.wpl-form-actions {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.wpl-error {
    border-color: #e74c3c !important;
    background-color: #fdf2f2;
}

/* Address Search */
#wpl-address-search {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #0073aa;
    background: #f0f8ff;
}

.wpl-price-helper {
    font-size: 0.9em;
    color: #2ecc71;
    margin-top: 5px;
    display: block;
}

/* ========================================== */
/* Elementor Grid & Carousel Widget Styles */
/* ========================================== */
.wpl-elementor-grid {
    display: grid;
    gap: 20px;
}

.wpl-elementor-grid .wpl-property-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wpl-elementor-grid .wpl-property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.wpl-elementor-grid .wpl-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
}

.wpl-elementor-grid .wpl-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.wpl-elementor-grid .wpl-property-card:hover .wpl-card-image img {
    transform: scale(1.05);
}

.wpl-elementor-grid .wpl-card-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    z-index: 2;
}

.wpl-elementor-grid .wpl-card-badges span {
    display: inline-block;
    width: fit-content;
    padding: 4px 10px;
    font-size: 0.7em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.wpl-elementor-grid .wpl-badge-cat {
    background: var(--wpl-primary);
    color: var(--wpl-btn-text, #fff);
}

.wpl-elementor-grid .wpl-badge-trans {
    background: var(--wpl-secondary);
    color: var(--wpl-btn-text, #fff);
}

.wpl-elementor-grid .wpl-card-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px;
}

.wpl-elementor-grid .wpl-card-details h3 {
    margin: 0 0 8px 0;
    font-size: 1em;
    font-weight: 600;
    line-height: 1.3;
}

.wpl-elementor-grid .wpl-card-details h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s;
}

.wpl-elementor-grid .wpl-card-details h3 a:hover {
    color: var(--wpl-primary);
}

.wpl-elementor-grid .wpl-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85em;
    color: #6b7280;
    margin-bottom: 12px;
}

.wpl-elementor-grid .wpl-card-location .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: var(--wpl-primary);
}

.wpl-elementor-grid .wpl-card-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

.wpl-elementor-grid .wpl-spec-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8em;
    color: #6b7280;
}

.wpl-elementor-grid .wpl-spec-item .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: #9ca3af;
}

.wpl-elementor-grid .wpl-spec-text {
    color: var(--wpl-primary);
    font-weight: 500;
}

.wpl-elementor-grid .wpl-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.wpl-elementor-grid .wpl-card-price {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--wpl-primary);
}

.wpl-elementor-grid .wpl-btn-view {
    display: inline-block;
    padding: 8px 16px;
    background: var(--wpl-secondary);
    color: var(--wpl-btn-text, #fff);
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.wpl-elementor-grid .wpl-btn-view:hover {
    opacity: 0.9;
}

/* Carousel Widget Specific */
.wpl-elementor-carousel .wpl-property-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wpl-elementor-carousel .wpl-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: #f3f4f6;
}

.wpl-elementor-carousel .wpl-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wpl-elementor-carousel .wpl-card-badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    z-index: 2;
}

.wpl-elementor-carousel .wpl-card-badges span {
    display: inline-block;
    width: fit-content;
    padding: 4px 10px;
    font-size: 0.7em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

.wpl-elementor-carousel .wpl-badge-cat {
    background: var(--wpl-primary);
    color: var(--wpl-btn-text, #fff);
}

.wpl-elementor-carousel .wpl-badge-trans {
    background: var(--wpl-secondary);
    color: var(--wpl-btn-text, #fff);
}

.wpl-elementor-carousel .wpl-card-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px;
}

.wpl-elementor-carousel .wpl-card-details h3 {
    margin: 0 0 8px 0;
    font-size: 1em;
    font-weight: 600;
    line-height: 1.3;
}

.wpl-elementor-carousel .wpl-card-details h3 a {
    color: #1f2937;
    text-decoration: none;
}

.wpl-elementor-carousel .wpl-card-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85em;
    color: #6b7280;
    margin-bottom: 12px;
}

.wpl-elementor-carousel .wpl-card-location .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: var(--wpl-primary);
}

.wpl-elementor-carousel .wpl-card-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 12px;
}

.wpl-elementor-carousel .wpl-spec-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8em;
    color: #6b7280;
}

.wpl-elementor-carousel .wpl-spec-item .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: #9ca3af;
}

.wpl-elementor-carousel .wpl-spec-text {
    color: var(--wpl-primary);
    font-weight: 500;
}

.wpl-elementor-carousel .wpl-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.wpl-elementor-carousel .wpl-card-price {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--wpl-primary);
}

.wpl-elementor-carousel .wpl-btn-view {
    display: inline-block;
    padding: 8px 16px;
    background: var(--wpl-secondary);
    color: var(--wpl-btn-text, #fff);
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.wpl-elementor-carousel .wpl-btn-view:hover {
    opacity: 0.9;
}
