/* Wolf Valley Preowned - Texas Themed Styles */

:root {
    /* Texas Flag Colors */
    --tx-blue: #002868;
    --tx-blue-dark: #001a4d;
    --tx-blue-light: #003d99;
    --tx-red: #BF0A30;
    --tx-red-dark: #8B0720;
    --tx-red-hover: #d40b36;
    --tx-white: #FFFFFF;
    
    /* Warm Texas Earth Tones */
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --tan: #E8E0D5;
    --brown: #5C4033;
    --brown-light: #8B7355;
    
    /* Neutral */
    --gray-100: #f7f7f7;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #171717;
    
    /* Functional */
    --success: #16a34a;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    
    /* Typography */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    
    /* Spacing */
    --container-width: 1400px;
    --section-padding: 60px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--cream);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--tx-blue);
    text-decoration: none;
}

a:hover {
    color: var(--tx-blue-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--tx-red);
    color: var(--tx-white);
}

.btn-primary:hover {
    background-color: var(--tx-red-hover);
    color: var(--tx-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background-color: var(--tx-blue);
    color: var(--tx-white);
}

.btn-secondary:hover {
    background-color: var(--tx-blue-light);
    color: var(--tx-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ==================== HEADER ==================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--tx-white);
    box-shadow: var(--shadow);
}

.header-banner {
    background: linear-gradient(135deg, var(--tx-blue) 0%, var(--tx-blue-dark) 100%);
    color: var(--tx-white);
    text-align: center;
    padding: 8px 20px;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo-link {
    display: block;
}

.logo {
    height: 60px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    color: var(--tx-blue);
    border-bottom-color: var(--tx-red);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--tx-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, var(--tx-blue) 0%, var(--tx-blue-dark) 100%);
    color: var(--tx-white);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--tx-white);
    font-size: 3rem;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    position: relative;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
}

.feature-icon {
    width: 24px;
    height: 24px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature span {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
}

/* ==================== FILTER SECTION ==================== */
.filter-section {
    background: var(--tx-white);
    border-bottom: 3px solid var(--tx-red);
    padding: 20px;
    position: sticky;
    top: 98px;
    z-index: 100;
}

.filter-bar {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
}

.filter-controls {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-select {
    padding: 10px 36px 10px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    background-color: var(--tx-white);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23525252' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
    appearance: none;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--tx-blue);
}

.filter-reset {
    padding: 10px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--gray-600);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}

.filter-reset:hover {
    color: var(--tx-red);
}

.building-count {
    margin-left: auto;
    font-family: var(--font-display);
    font-weight: 500;
    color: var(--gray-600);
}

/* ==================== BUILDINGS GRID ==================== */
.buildings-section {
    padding: 40px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.buildings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.loading-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--gray-500);
    font-size: 1.1rem;
}

/* ==================== BUILDING CARD ==================== */
.building-card {
    background: var(--tx-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.building-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.building-card.hidden {
    display: none;
}

/* Slideshow Container */
.slideshow-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #1a1a1a;
    overflow: hidden;
}

.slideshow-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slideshow-container img.active {
    opacity: 1;
}

/* Slideshow Navigation */
.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0,40,104,0.8);
    color: var(--tx-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background 0.2s ease;
    z-index: 10;
}

.slide-nav:hover {
    background: var(--tx-blue);
}

.slide-nav.prev {
    left: 10px;
}

.slide-nav.next {
    right: 10px;
}

/* Slide Dots */
.slide-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.slide-dot.active {
    background: var(--tx-white);
}

/* Image Counter */
.image-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: var(--tx-white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-family: var(--font-display);
    z-index: 10;
}

/* Building Info */
.building-info {
    padding: 20px;
}

.building-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.building-style {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.building-serial {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-family: monospace;
}

/* Interest Form Container */
.interest-form-container {
    border-top: 1px solid var(--gray-200);
    padding: 16px 20px;
    background: var(--cream);
}

.interest-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.interest-checkbox {
    display: none;
}

.custom-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid var(--tx-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.custom-checkbox svg {
    width: 14px;
    height: 14px;
    stroke: var(--tx-white);
    stroke-width: 3;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.interest-checkbox:checked + .custom-checkbox {
    background: var(--tx-blue);
}

.interest-checkbox:checked + .custom-checkbox svg {
    opacity: 1;
}

.arrow-indicator {
    color: var(--tx-red);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.interest-checkbox:checked ~ .arrow-indicator {
    transform: rotate(90deg);
}

.checkbox-text {
    font-size: 0.95rem;
    color: var(--tx-blue);
    font-weight: 500;
}

/* Interest Form */
.interest-form {
    display: none;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--gray-300);
}

.interest-form.visible {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.interest-input {
    display: block;
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    transition: border-color 0.2s ease;
    background: var(--tx-white);
    box-sizing: border-box;
}

.phone-placeholder {
    line-height: 1.5;
}

.interest-input:focus {
    outline: none;
    border-color: var(--tx-blue);
}

.interest-input::placeholder {
    color: var(--gray-400);
}

.interest-button {
    width: 100%;
    padding: 14px 20px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--tx-red);
    color: var(--tx-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.interest-button:hover {
    background: var(--tx-red-hover);
}

.interest-button:disabled {
    background: var(--gray-400);
    cursor: not-allowed;
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: linear-gradient(135deg, var(--tx-blue-dark) 0%, var(--tx-blue) 100%);
    color: var(--tx-white);
    padding: 80px 20px;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    color: var(--tx-white);
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.contact-content > p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--tx-white);
    transition: all 0.2s ease;
    backdrop-filter: blur(5px);
}

.contact-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
    color: var(--tx-white);
}

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-info {
    text-align: left;
}

.contact-label {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 4px;
}

.contact-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-700);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--tx-white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: var(--gray-400);
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--tx-white);
}

.footer-contact p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--gray-300);
}

.footer-contact a:hover {
    color: var(--tx-white);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 6px;
}

/* ==================== FLOATING CALL BUTTON ==================== */
.floating-call {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--tx-red);
    color: var(--tx-white);
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    font-family: var(--font-display);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    z-index: 999;
    transition: all 0.2s ease;
}

.floating-call:hover {
    background: var(--tx-red-hover);
    color: var(--tx-white);
    transform: scale(1.05);
}

.floating-call svg {
    width: 20px;
    height: 20px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 920px) {
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--tx-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        gap: 0;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .main-nav a:last-child {
        border-bottom: none;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-features {
        gap: 16px;
    }
    
    .feature {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .filter-section {
        position: static;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-controls {
        width: 100%;
    }
    
    .filter-select {
        flex: 1;
        min-width: 0;
    }
    
    .building-count {
        margin-left: 0;
        text-align: center;
    }
    
    .buildings-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 16px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .feature {
        width: 100%;
        justify-content: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .floating-call span {
        display: none;
    }
    
    .floating-call {
        padding: 16px;
        border-radius: 50%;
    }
}

/* No Buildings Message */
.no-buildings {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--tx-white);
    border-radius: 8px;
}

.no-buildings h3 {
    margin-bottom: 12px;
    color: var(--gray-600);
}

.no-buildings p {
    color: var(--gray-500);
}

/* Load More Button */
.load-more-container {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
}

.load-more-btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--tx-blue);
    color: var(--tx-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}

.load-more-btn:hover {
    background: var(--tx-blue-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Loading placeholder for lazy images */
.slideshow-container img[data-src] {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

/* Image error fallback styling */
.slideshow-container img {
    background-color: #1a1a1a;
}

/* ==================== REP MODE ==================== */

/* Rep mode banner indicator */
body.rep-mode .header-banner {
    background: linear-gradient(135deg, #166534 0%, #14532d 100%);
}

body.rep-mode .header-banner::after {
    content: ' | REP MODE';
    font-weight: 700;
    letter-spacing: 1px;
}

/* Rep serial search - hidden by default */
.rep-serial-search {
    display: none;
}

body.rep-mode .rep-serial-search {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.serial-search-input {
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border: 2px solid #166534;
    border-radius: 4px;
    background: #f0fdf4;
    min-width: 220px;
    color: #14532d;
}

.serial-search-input::placeholder {
    color: #6b7280;
}

.serial-search-input:focus {
    outline: none;
    border-color: #14532d;
    box-shadow: 0 0 0 2px rgba(22, 101, 52, 0.2);
}

.serial-search-clear {
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #166534;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
}

/* Rep data hidden by default */
.rep-data {
    display: none;
}

/* Visible in rep mode */
body.rep-mode .rep-data {
    display: block;
    margin-top: 12px;
    padding: 10px 12px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 6px;
    font-size: 0.85rem;
}

.rep-data-row {
    display: flex;
    justify-content: space-between;
    padding: 3px 0;
    border-bottom: 1px solid #dcfce7;
}

.rep-data-row:last-of-type {
    border-bottom: none;
}

.rep-label {
    color: #166534;
    font-weight: 600;
    font-family: var(--font-display);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.rep-value {
    color: #14532d;
    font-weight: 600;
    font-family: monospace;
}

.rep-data-highlight {
    background: #dcfce7;
    margin: 2px -12px;
    padding: 5px 12px;
    border-bottom: none;
}

.rep-data-highlight .rep-value {
    font-size: 1rem;
    color: #166534;
}

.rep-data-notes {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px dashed #bbf7d0;
    color: #374151;
    font-size: 0.8rem;
    font-style: italic;
    line-height: 1.4;
}

/* --- Refurbishing (red variant) --- */
body.rep-mode .rep-data-refurb {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.rep-data-refurb .rep-data-row {
    border-bottom-color: #fee2e2;
}

.rep-data-refurb .rep-label {
    color: #991b1b;
}

.rep-data-refurb .rep-value {
    color: #7f1d1d;
}

.rep-data-refurb .rep-data-highlight {
    background: #fee2e2;
}

.rep-data-refurb .rep-data-highlight .rep-value {
    color: #991b1b;
}

.rep-data-refurb .rep-data-notes {
    border-top-color: #fecaca;
}

.rep-data-badge {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 6px;
}

/* Refurbishing card border accent */
body.rep-mode .refurb-card {
    border: 2px solid #dc2626;
}

/* Refurbishing section divider */
.refurb-section-divider {
    display: none;
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px 20px;
}

body.rep-mode .refurb-section-divider {
    display: block;
}

.refurb-section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #dc2626;
    margin-bottom: 6px;
}

.refurb-section-subtitle {
    color: var(--gray-500);
    font-size: 1rem;
}

/* Screen reader only - hidden but accessible */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
