.furniture-property-card {
    position: relative;
    background: var(--furniture-surface);
    border: 1px solid var(--furniture-border);
    border-radius: var(--furniture-radius-md);
    overflow: hidden;
    box-shadow: var(--furniture-shadow-soft);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.furniture-property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--furniture-shadow);
    border-color: var(--bs-primary);
}
.furniture-property-media-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: var(--furniture-bg-soft);
}
.furniture-property-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.furniture-property-card:hover .furniture-property-media-wrapper img {
    transform: scale(1.06);
}
.furniture-property-badge-floating {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    background: var(--bs-primary);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--furniture-radius-full);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.furniture-property-info-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}
.furniture-property-meta-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--furniture-text-muted);
}
.furniture-property-type-tag {
    background: var(--furniture-bg-soft);
    color: var(--furniture-text);
    padding: 3px 10px;
    border-radius: var(--furniture-radius-xs);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.furniture-property-info-body h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.35;
}
.furniture-property-info-body h3 a {
    color: var(--furniture-text);
    text-decoration: none;
    transition: color 0.2s ease;
}
.furniture-property-info-body h3 a:hover {
    color: var(--bs-primary);
}
.furniture-property-description {
    margin: 0;
    color: var(--furniture-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.furniture-property-footer-link {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--furniture-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bs-primary);
    text-decoration: none;
    transition: transform 0.2s ease;
}
.furniture-property-footer-link i {
    transition: transform 0.2s ease;
}
.furniture-property-card:hover .furniture-property-footer-link i {
    transform: translateX(4px);
}

/* Sidebar Specifications Card */
.furniture-specs-card {
    background: var(--furniture-surface);
    border: 1px solid var(--furniture-border);
    border-radius: var(--furniture-radius-lg);
    box-shadow: var(--furniture-shadow-soft);
    overflow: hidden;
    margin-bottom: 24px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.furniture-specs-card:hover {
    box-shadow: var(--furniture-shadow);
}

.furniture-specs-price-header {
    background: linear-gradient(135deg, var(--furniture-bg-soft) 0%, var(--furniture-surface-muted) 100%);
    border-bottom: 1px solid var(--furniture-border);
    padding: 24px;
    text-align: center;
}

.furniture-specs-price-title {
    color: var(--furniture-text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 6px;
}

.furniture-specs-price-value {
    color: var(--furniture-wood);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.furniture-specs-body {
    padding: 12px 24px;
}

.furniture-specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.furniture-specs-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px dashed var(--furniture-border);
}

.furniture-specs-item:last-child {
    border-bottom: none;
}

.furniture-specs-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--furniture-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.furniture-specs-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--furniture-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

.furniture-specs-value {
    color: var(--furniture-text);
    font-weight: 700;
    font-size: 0.9rem;
    text-align: right;
}

/* Badges for Yes/No */
.furniture-badge-yes, .furniture-badge-no {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--furniture-radius-full);
}

.furniture-badge-yes {
    background-color: color-mix(in srgb, var(--furniture-sage) 12%, transparent);
    color: var(--furniture-sage);
    border: 1px solid color-mix(in srgb, var(--furniture-sage) 20%, transparent);
}

.furniture-badge-no {
    background-color: color-mix(in srgb, var(--furniture-text-muted) 12%, transparent);
    color: var(--furniture-text-muted);
    border: 1px solid color-mix(in srgb, var(--furniture-text-muted) 20%, transparent);
}

/* Sidebar Categories Card */
.furniture-category-card {
    background: var(--furniture-surface);
    border: 1px solid var(--furniture-border);
    border-radius: var(--furniture-radius-lg);
    box-shadow: var(--furniture-shadow-soft);
    overflow: hidden;
    margin-bottom: 24px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.furniture-category-card:hover {
    box-shadow: var(--furniture-shadow);
}

.furniture-category-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--furniture-border);
    background: var(--furniture-surface);
}

.furniture-category-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--furniture-text);
    margin: 0;
}

.furniture-category-body {
    padding: 16px;
}

.furniture-category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    margin-bottom: 4px;
    color: var(--furniture-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--furniture-radius-md);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.furniture-category-item:last-child {
    margin-bottom: 0;
}

.furniture-category-item:hover {
    background-color: var(--furniture-bg-soft);
    color: var(--furniture-text);
}

.furniture-category-item.active {
    background-color: var(--furniture-wood);
    color: #ffffff;
}

.furniture-category-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--furniture-radius-full);
    background-color: var(--furniture-bg-soft);
    color: var(--furniture-text-muted);
}

.furniture-category-badge.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Premium Property Gallery Styling */
.property-gallery-section {
    margin-top: 3rem;
    padding-top: 2rem;
}

.property-gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--furniture-radius-md);
    border: 1px solid var(--furniture-border);
    box-shadow: var(--furniture-shadow-soft);
    background-color: var(--furniture-surface-muted);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s ease;
}

.property-gallery-item:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--furniture-shadow);
    border-color: var(--bs-primary);
}

.property-gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-gallery-item:hover .property-gallery-image {
    transform: scale(1.08);
}

.property-gallery-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(32, 28, 24, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
}

.property-gallery-item:hover .property-gallery-overlay {
    opacity: 1;
}

.property-gallery-overlay i {
    color: #ffffff;
    font-size: 1.5rem;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.property-gallery-item:hover .property-gallery-overlay i {
    transform: scale(1);
}
