:root {
    --black: #000000;
    --white: #ffffff;
    --gray-dark: #333333;
    --gray-medium: #666666;
    --gray-light: #eeeeee;
    --accent: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: var(--white);
    color: var(--black);
    line-height: 1.6;
}
header {
    background-color: var(--black);
    color: var(--white);
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.logo-container {
    text-align: center;
    margin-bottom: 0.5rem;
}
.logo-container h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.tagline {
    font-size: 0.9rem;
    color: var(--gray-light);
}
nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 1rem 0 0 0;
}

nav ul li {
    margin: 0 1rem;
}
nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--gray-light);
}
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://huggingface.co/spaces/LKNLiquidations/Home/resolve/main/images/5.jpg') no-repeat center center;
background-size: cover;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.cta-button {
    display: inline-block;
    background-color: var(--black);
    color: var(--white);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    border: 2px solid var(--black);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--black);
}
.cta-button:hover {
    background-color: var(--gray-light);
}
section {
    padding: 4rem 2rem;
}
.label-generator,
.financing-section {
    max-width: 1200px;
    margin: 0 auto;
}
.financing-container,
.delivery-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}
.delivery-notes {
    margin-top: 2rem;
    padding: 1rem;
    background-color: rgba(0,0,0,0.05);
    border-radius: 4px;
    font-size: 0.9rem;
}

.delivery-cta {
    text-align: center;
    margin-top: 2rem;
}
.financing-info {
    text-align: center;
    padding: 2rem;
    background-color: var(--gray-light);
    border-radius: 8px;
}

.financing-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.financing-benefits .benefit-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    min-width: 200px;
}

.financing-benefits i {
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
}
.financing-description {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.term-options {
    text-align: center;
    margin: 2rem 0;
}

.term-options h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.term-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.term-button {
    padding: 0.8rem 1.5rem;
    background-color: var(--gray-light);
    border: 2px solid var(--gray-medium);
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.term-button:hover,
.term-button.active {
    background-color: var(--black);
    color: var(--white);
    border-color: var(--black);
}
@media (max-width: 768px) {
    .financing-benefits {
        flex-direction: column;
        align-items: center;
    }
}
.generator-container {
    margin-top: 2rem;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.subscription-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 2rem;
    padding: 2rem;
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.modal-content {
    width: 100%;
    max-width: 500px;
}

.modal-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}
.modal-content p {
    margin-bottom: 1.5rem;
    text-align: center;
}
.label-description {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.label-description h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.label-description p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.label-description ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 1.5rem auto;
    list-style-type: disc;
    list-style-position: inside;
    padding-left: 0;
}

.label-description li {
    margin-bottom: 0.75rem;
    text-align: center;
}
.label-description li::before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: bold;
}
.label-description ul {
    margin: 1rem 0 1rem 1.5rem;
    list-style-type: none;
}
.label-description li {
    margin-bottom: 0.5rem;
}

.subscription-note {
    font-weight: 600;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-light);
    margin-top: 1rem;
}
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    font-size: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.subscribe-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--black);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.subscribe-btn:hover {
    background-color: #333;
}
section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--black);
}
.category-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 2rem;
}

.category-container {
    position: relative;
    display: inline-block;
}

.category-button {
    background-color: var(--black);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.category-button:hover {
    background-color: #333;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown-content a {
    color: var(--black);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s;
}

.dropdown-content a:hover {
    background-color: var(--gray-light);
}

.show {
    display: block;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.category-info {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--gray-medium);
}

.category-info .category {
    font-weight: 600;
}

.category-info .subcategory {
    display: inline-block;
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    border-left: 1px solid var(--gray-light);
}
.inventory-item {
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.inventory-link {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
}
.inventory-link h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.inventory-link p {
    margin-bottom: 1.5rem;
    color: var(--gray-medium);
}
.inventory-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.inventory-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.inventory-item-content {
    padding: 1.5rem;
}
.brand-model {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.brand-model .brand {
    font-weight: 700;
}

.brand-model .model {
    color: var(--gray-medium);
}

.inventory-item .name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.inventory-item .msrp {
    text-decoration: line-through;
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.inventory-item .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}
.inventory-item .savings {
    color: #d9534f;
    font-weight: 600;
}

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

.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--gray-light);
    border-radius: 4px;
}

.benefit-item i {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--black);
}
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.map-container {
    width: 100%;
    height: 400px;
    margin-bottom: 3rem;
}

.contact-info {
    text-align: center;
}
.contact-info address {
    margin-bottom: 2rem;
    font-style: normal;
    text-align: center;
}
.contact-info h3 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.reviews-widget {
    margin-top: 2rem;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.contact-info p {
    text-align: center;
    margin-bottom: 1rem;
}
.contact-info i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-logo {
    text-align: center;
    margin-bottom: 1rem;
}
.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
}
.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gray-light);
}
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
    width: 100%;
}
.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--gray-light);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-dark);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .inventory-grid {
        grid-template-columns: 1fr;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}