:root {
    --bs-primary: #6f42c1;
    --bs-primary-rgb: 111, 66, 193;
    --bs-link-color: #6f42c1;
    --bs-link-hover-color: #5a35a0;
}

.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: var(--bs-link-hover-color);
    border-color: var(--bs-link-hover-color);
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

a {
    color: var(--bs-link-color);
}

a:hover {
    color: var(--bs-link-hover-color);
}

.card {
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.2s ease-in-out;
}

.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.item-image-placeholder {
    width: 100%;
    height: 200px;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    color: #6c757d;
}

.item-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
}

.badge {
    font-weight: 500;
}

.share-url-input {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    font-family: monospace;
    font-size: 0.9rem;
}

.copy-btn {
    cursor: pointer;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--bs-primary);
}

.navbar-brand {
    font-size: 1.5rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--bs-primary);
}

footer a:hover {
    color: var(--bs-primary) !important;
}

.reserved-badge {
    background-color: #ffc107;
    color: #000;
}

.available-badge {
    background-color: #28a745;
    color: #fff;
}

.purchased-badge {
    background-color: #6c757d;
    color: #fff;
}

.item-card {
    position: relative;
    transition: transform 0.2s;
}

.item-card:hover {
    transform: translateY(-2px);
}

.video-placeholder {
    width: 100%;
    max-width: 800px;
    height: 450px;
    background-color: #e9ecef;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto;
}

.honeypot {
    position: absolute;
    left: -9999px;
}
