/* ============================================
   PROPERTY DETAIL PAGE - PREMIUM MODERN DESIGN
   ============================================ */

/* === Cinematic Gallery === */
.pd-gallery {
    position: relative;
    margin: 0 -24px;
    background: #0a0a0a;
    overflow: hidden;
}

.pd-gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 21/9;
    overflow: hidden;
    cursor: zoom-in;
}

.pd-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

.pd-gallery-main:hover img {
    transform: scale(1.03);
}

/* Gallery overlay gradient */
.pd-gallery-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.pd-gallery-counter {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 5;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
}

.pd-gallery-counter svg {
    opacity: 0.8;
}

/* Fullscreen button */
.pd-gallery-fullscreen {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 5;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pd-gallery-fullscreen:hover {
    background: rgba(211, 175, 55, 0.8);
    transform: scale(1.1);
}

/* Back button on gallery */
.pd-back-btn {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.pd-back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
}

/* Thumbnail strip */
.pd-thumbnails {
    display: flex;
    gap: 4px;
    padding: 8px;
    background: #0a0a0a;
    overflow-x: auto;
    scrollbar-width: none;
}

.pd-thumbnails::-webkit-scrollbar {
    display: none;
}

.pd-thumb {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.pd-thumb:hover {
    opacity: 0.85;
    border-color: rgba(211, 175, 55, 0.5);
}

.pd-thumb.active {
    opacity: 1;
    border-color: #D3AF37;
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* === Property Header Section === */
.pd-header-section {
    padding: 2.5rem 0 0 0;
}

.pd-header-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    align-items: start;
}

.pd-title-area {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pd-badges {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pd-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4375rem 1rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    border: none;
}

.pd-badge-type {
    background: linear-gradient(135deg, #0F123D 0%, #1a1f52 100%);
    color: #D3AF37;
    border: 1px solid rgba(211, 175, 55, 0.3);
}

.pd-badge-listing {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
}

.pd-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
}

.pd-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 1rem;
    font-weight: 500;
}

.pd-location i {
    color: #D3AF37;
    font-size: 1.125rem;
}

/* Price Card */
.pd-price-card {
    background: linear-gradient(135deg, #0F123D 0%, #0A0D2E 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 18, 61, 0.3);
}

.pd-price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(211, 175, 55, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.pd-price-label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.75rem;
    display: block;
}

.pd-price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #D3AF37;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(211, 175, 55, 0.3);
}

.pd-price-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.pd-btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #D3AF37 0%, #e6c04e 100%);
    color: #0F123D;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.pd-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(211, 175, 55, 0.4);
}

.pd-btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
}

.pd-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.pd-favorite-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pd-favorite-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    transform: scale(1.1);
}

.pd-favorite-btn.active {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.pd-favorite-btn.active i {
    animation: heartBeat 0.4s ease;
}

@keyframes heartBeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.3); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* === Quick Stats Bar === */
.pd-quick-stats {
    display: flex;
    gap: 0;
    margin: 2.5rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-100);
    overflow: hidden;
}

.pd-stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    position: relative;
    transition: all 0.3s ease;
}

.pd-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--gray-200);
}

.pd-stat-item:hover {
    background: var(--gray-50);
}

.pd-stat-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 18, 61, 0.06) 0%, rgba(15, 18, 61, 0.02) 100%);
    border-radius: 14px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pd-stat-content {
    display: flex;
    flex-direction: column;
}

.pd-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.75px;
}

.pd-stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-top: 0.125rem;
}

/* === Content Layout === */
.pd-content-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
    padding-bottom: 4rem;
}

/* Section Cards */
.pd-section-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-100);
    transition: box-shadow 0.3s ease;
    animation: fadeUpIn 0.6s ease both;
}

.pd-section-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pd-section-card:nth-child(1) { animation-delay: 0.1s; }
.pd-section-card:nth-child(2) { animation-delay: 0.2s; }
.pd-section-card:nth-child(3) { animation-delay: 0.3s; }
.pd-section-card:nth-child(4) { animation-delay: 0.4s; }
.pd-section-card:nth-child(5) { animation-delay: 0.5s; }

.pd-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.pd-section-title span {
    font-size: 1.25rem;
}

.pd-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D3AF37;
}

/* Detail Grid */
.pd-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.pd-detail-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.pd-detail-item:hover {
    background: white;
    border-color: var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pd-detail-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
}

.pd-detail-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Feature Tags */
.pd-features-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.pd-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #166534;
    transition: all 0.2s ease;
}

.pd-feature-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(22, 101, 52, 0.1);
}

.pd-feature-tag .check {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    font-size: 0.625rem;
}

/* Description Card */
.pd-description-text {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--gray-600);
}

.pd-description-text p {
    margin: 0;
}

/* === Video Section === */
.pd-video-section {
    margin-bottom: 1.5rem;
}

.pd-video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pd-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* === Sidebar === */
.pd-sidebar {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Sidebar Cards */
.pd-sidebar-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-100);
    transition: box-shadow 0.3s ease;
}

.pd-sidebar-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.pd-sidebar-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Offer Form */
.pd-offer-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pd-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.pd-form-group label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pd-form-group input,
.pd-form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    background: var(--gray-50);
    color: var(--gray-900);
    width: 100%;
}

.pd-form-group input:focus,
.pd-form-group textarea:focus {
    outline: none;
    border-color: #D3AF37;
    background: white;
    box-shadow: 0 0 0 4px rgba(211, 175, 55, 0.1);
}

.pd-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.pd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.pd-submit-btn {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #0F123D 0%, #1a1f52 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    margin-top: 0.5rem;
}

.pd-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 18, 61, 0.3);
}

/* === Comments Section === */
.pd-comments-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.pd-comment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.pd-comment-item {
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: all 0.2s ease;
}

.pd-comment-item:hover {
    border-color: var(--gray-200);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pd-comment-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.pd-comment-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pd-comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0F123D 0%, #1a1f52 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.pd-comment-name {
    font-weight: 600;
    color: var(--gray-900);
    font-size: 0.9375rem;
}

.pd-comment-date {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.pd-comment-text {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.pd-no-comments {
    text-align: center;
    color: var(--gray-400);
    padding: 2rem;
    font-style: italic;
}

/* Comment Form */
.pd-comment-form {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 2px solid var(--gray-100);
}

.pd-comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    min-height: 80px;
    resize: vertical;
    transition: all 0.2s ease;
    background: var(--gray-50);
}

.pd-comment-form textarea:focus {
    outline: none;
    border-color: #D3AF37;
    background: white;
    box-shadow: 0 0 0 4px rgba(211, 175, 55, 0.1);
}

.pd-comment-submit {
    margin-top: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #0F123D 0%, #1a1f52 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
    font-size: 0.875rem;
}

.pd-comment-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 18, 61, 0.25);
}

/* Login Prompt */
.pd-login-prompt {
    text-align: center;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 1px dashed var(--gray-300);
}

.pd-login-prompt p {
    color: var(--gray-500);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.pd-login-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    background: linear-gradient(135deg, #0F123D 0%, #1a1f52 100%);
    color: white;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.pd-login-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 18, 61, 0.25);
}

/* === Map Section === */
.pd-map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pd-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.pd-map-address {
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.pd-map-address i {
    color: #D3AF37;
}

/* === DM Form === */
.pd-dm-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    padding: 1.75rem;
    border: 1px solid var(--gray-200);
}

.pd-dm-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* === Commission Badge === */
.pd-commission {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0.875rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    border-left: 3px solid #8b5cf6;
    font-size: 0.875rem;
}

.pd-commission-label {
    color: var(--gray-600);
}

.pd-commission-value {
    font-weight: 700;
    color: #7c3aed;
}

/* === Lightbox === */
.pd-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pd-lightbox.active {
    display: flex;
    opacity: 1;
}

.pd-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.pd-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.pd-lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.pd-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.pd-lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.25);
}

.pd-lightbox-prev { left: 1.5rem; }
.pd-lightbox-next { right: 1.5rem; }

.pd-lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 600;
}

/* === Site Features Grid === */
.pd-site-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
}

.pd-site-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.pd-site-feature:hover {
    background: white;
    border-color: #D3AF37;
    box-shadow: 0 2px 8px rgba(211, 175, 55, 0.1);
}

.pd-site-feature .check-icon {
    color: #22c55e;
    font-weight: bold;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    font-size: 0.6875rem;
    flex-shrink: 0;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .pd-header-grid {
        grid-template-columns: 1fr;
    }
    
    .pd-content-layout {
        grid-template-columns: 1fr;
    }
    
    .pd-sidebar {
        position: static;
    }
    
    .pd-gallery-main {
        aspect-ratio: 16/9;
    }
    
    .pd-details-grid {
        grid-template-columns: 1fr;
    }
    
    .pd-site-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pd-gallery {
        margin: 0 -16px;
    }
    
    .pd-gallery-main {
        aspect-ratio: 4/3;
    }
    
    .pd-thumb {
        width: 72px;
        height: 50px;
    }
    
    .pd-quick-stats {
        flex-direction: column;
        border-radius: 16px;
    }
    
    .pd-stat-item:not(:last-child)::after {
        right: 15%;
        top: auto;
        bottom: 0;
        height: 1px;
        width: 70%;
    }
    
    .pd-title {
        font-size: 1.5rem;
    }
    
    .pd-price-amount {
        font-size: 2rem;
    }
    
    .pd-section-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .pd-form-row {
        grid-template-columns: 1fr;
    }
    
    .pd-site-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .pd-lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .pd-lightbox-prev { left: 0.75rem; }
    .pd-lightbox-next { right: 0.75rem; }
}

@media (max-width: 480px) {
    .pd-header-section {
        padding: 1.5rem 0 0 0;
    }
    
    .pd-back-btn {
        top: 1rem;
        left: 1rem;
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
    
    .pd-gallery-counter {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.75rem;
    }
    
    .pd-site-features {
        grid-template-columns: 1fr;
    }
}

/* Fix for "white on white" text in contact forms */
input:not([type="submit"]):not([type="button"]), 
textarea, 
select {
    color: #111827 !important;
}

input::placeholder, 
textarea::placeholder {
    color: #6b7280 !important;
}

