/* LA Tech Repairs - Tech-Focused Design System */
:root {
    --primary: #007aff; /* Apple-style Blue */
    --secondary: #1d1d1f; /* Dark Slate */
    --accent: #f5f5f7; /* Light Grey */
    --success: #34c759;
    --text-main: #1d1d1f;
    --text-muted: #86868b;
    --bg-light: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    line-height: 1.5;
    padding-top: 90px;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: 600;
    letter-spacing: -0.02em;
}

/* Product Cards */
.product-card {
    border: 1px solid #e5e5e5;
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
    background: #fff;
    padding: 20px;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-img-wrapper {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.badge-condition {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--secondary);
    color: white;
    font-size: 0.65rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.x-small {
    font-size: 0.7rem;
}

.product-card img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
}


/* Google Ads Compliance Footer */
.compliance-footer {
    background: #fbfbfd;
    padding: 40px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid #d2d2d7;
}

.compliance-footer a {
    color: var(--primary);
    text-decoration: none;
}

.compliance-footer a:hover {
    text-decoration: underline;
}

/* Contact Info Highlight */
.contact-highlight {
    background: var(--accent);
    padding: 40px;
    border-radius: 20px;
}

.btn-buy {
    background: var(--primary);
    color: white;
    border-radius: 20px;
    padding: 10px 25px;
    font-weight: 500;
    border: none;
}

.btn-buy:hover {
    background: #0062cc;
    color: white;
}

/* About Section Enhancements */
.feature-badge {
    background: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.rounded-4 {
    border-radius: 20px !important;
}

/* Quote Page Device Selection Styles */
.device-selection-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.device-select-card {
    flex: 1 1 140px;
    max-width: 180px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    background: #fff;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-main);
    min-height: 140px;
}

.device-select-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transform: translateY(-4px);
    border-color: var(--primary);
    color: var(--text-main);
}

.device-select-card i {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
    transition: var(--transition);
}

.device-select-card:hover i {
    color: var(--primary);
}

.device-select-card span {
    font-weight: 500;
    font-size: 0.95rem;
}

.quote-sidebar {
    background: #fbfbfd;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #d2d2d7;
    position: sticky;
    top: 100px;
}

.quote-sidebar h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

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

.sidebar-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.sidebar-list li i {
    color: var(--text-main);
    margin-right: 12px;
    margin-top: 3px;
}

.sidebar-list li i.fa-check {
    color: var(--text-main);
}

/* Quote Phone Form Styles */
.quote-form-group {
    position: relative;
    margin-bottom: 20px;
}

.quote-form-select {
    width: 100%;
    padding: 25px 15px 10px 15px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    appearance: none;
    background: #fff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 15px center/16px 12px;
    font-size: 1rem;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

.quote-form-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.quote-form-select:disabled {
    background-color: #f5f5f7;
    color: var(--text-muted);
    cursor: not-allowed;
}

.quote-form-label {
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 0.75rem;
    color: var(--text-muted);
    pointer-events: none;
}

.bottom-action-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    margin-top: 40px;
}

.btn-continue {
    background-color: #8b3dff; /* uBreakiFix Purple */
    color: white;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 500;
    border: none;
    transition: var(--transition);
}

.btn-continue:hover {
    background-color: #712bcc;
    color: white;
}

.btn-back {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
}

.btn-back:hover {
    text-decoration: underline;
}

/* Best Buy Inspired Spec Lists */
.spec-item {
    font-size: 0.8rem;
    color: #4a4a4a;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
}

.spec-item i {
    width: 20px;
    color: var(--primary);
    font-size: 0.75rem;
}

.product-title {
    color: #041e42; /* Best Buy Dark Blue */
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1d1d1f;
}

.model-number {
    font-size: 0.7rem;
    color: var(--text-muted);
}
