:root {
    --secondary-color: #aa2224;
    --accent-color: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Verdana, Geneva, sans-serif;
    line-height: 1.6;
}

.header-main {
    width: 100%;
}

/* Header Top */
.header-top {
    background-color: #000;
    padding: 0 11vw;
    display: flex;
    justify-content: space-between;
    height: 27px;
    font-size: 0.8rem;
}

.header-top-left {
    background-color: var(--accent-color);
    color: #eee;
    width: 40vw;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    gap: 1rem;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.header-top-left:hover,
.header-top-left:hover svg,
.header-top-left:hover span {
    color: #bbb;
}

.header-top-left svg {
    width: 16px;
    height: 16px;
    fill: #eee;
}

.header-top-left:hover svg {
    fill: #bbb;
}

.header-top-right {
    background-color: var(--secondary-color);
    color: #eee;
    width: 40vw;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    letter-spacing: 0.5px;
}

.header-top-right:hover,
.header-top-right:hover svg,
.header-top-right:hover span {
    color: #bbb;
}

.header-top-right svg {
    width: 16px;
    height: 16px;
    fill: #eee;
}

.header-top-right:hover svg {
    fill: #bbb;
}

/* Header Middle */
.header-middle {
    background-color: #f8f8f8;
    padding: 0 11vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 120px;
}

.header-logo {
    display: flex;
    align-items: center;
    height: 120px;
}

.header-logo img {
    height: 90px;
    padding: 0 10px;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.4));
}

.header-right-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 125px;
    padding: 0 10px 0 0;
}

.header-search {
    display: flex;
    justify-content: flex-end;
    position: relative;
    margin-bottom: 8px;
}

.header-search input {
    background-color: #fff;
    color: #666;
    border: 1px solid #666;
    padding: 10px 20px 9px;
    border-radius: 20px;
    width: 285px;
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-search svg {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
}

.header-info {
    display: flex;
    justify-content: flex-end;
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.header-free-shipping {
    position: absolute;
    text-align: center;
    right: calc(14vw + 360px);
    top: 54px;
    transform: rotate(-2.5deg);
    font-family: "Courier New", Courier, monospace;
    color: var(--secondary-color);
    text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-free-shipping-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.header-free-shipping-world {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Header Bottom */
.header-bottom {
    background-color: #000;
    padding: 0.5rem calc(11vw + 10px) 0.5rem calc(11vw + 30px);
}

.header-quicklinks {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.header-quicklinks a {
    color: #eee;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.header-right-items {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.header-cart {
    display: flex;
    align-items: center;
    margin-right: 30px;
}

.header-cart-content {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 25px;
    text-decoration: none;
    color: inherit;
    margin-right: -40px;
}

.header-cart-content:hover {
    opacity: 0.8;
}

.header-cart-content:hover .header-cart-price,
.header-cart-content:hover .header-cart-items,
.header-cart-content:hover svg {
    color: #ccc;
}

.header-cart-text {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
}

.header-cart-price {
    color: #eee;
    font-size: 0.9rem;
}

.header-cart-items {
    color: #ccc;
    font-size: 0.65rem;
    opacity: 0.8;
    text-transform: none;
}

.header-cart svg {
    width: 25px;
    height: 25px;
    color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-flag {
    border: 1px solid #555;
}

.header-flag img {
    height: 25px;
    display: block;
}

/* Vehicle Selector */
.selector {
    background-color: #000;
    padding: 20px;
    width: 320px;
}

.selector-title {
    color: #eee;
    font-size: 1rem;
    font-weight: normal;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #777;
}

.selector-field {
    margin-bottom: 15px;
}

.selector-label {
    background-color: #454545;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 12px;
    width: 100%;
}

.selector-label label {
    color: #eee;
    font-size: 0.9rem;
}

.selector-label select {
    width: 150px;
    background-color: #f4f4f4;
    border: none;
    padding: 4px 5px;
    font-size: 0.86rem;
}

.selector-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 7px;
    cursor: pointer;
    margin-top: 23px;
}

/* Vehicle Selector Modal */
.vehicle-selector-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.vehicle-selector-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
}

.vehicle-selector-content .selector-title {
    color: #eee;
    font-size: 1rem;
    font-weight: normal;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #777;
}

.vehicle-selector-content .selector-field {
    margin-bottom: 15px;
}

.vehicle-selector-content .selector-label {
    background-color: #454545;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    width: 100%;
}

.vehicle-selector-content .selector-label label {
    color: #eee;
    font-size: 0.9rem;
}

.vehicle-selector-content .selector-label select {
    width: 150px;
    background-color: #f4f4f4;
    border: none;
    padding: 4px 5px;
    font-size: 0.86rem;
}

.vehicle-selector-content .selector-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 10px 18px;
    font-size: 1rem;
    border-radius: 7px;
    cursor: pointer;
    margin-top: 23px;
}

.vehicle-selector-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    padding-right: 1.5rem;
}

/* Service Bar Styles */
.service-bar {
    background-color: #777;
    color: #eee;
    padding: 10px 0;
    font-size: 0.9rem;
}

.service-bar .container {
    padding: 0px 11vw;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0px;
}

.service-item svg {
    fill: #eee;
}

/* Main Footer Styles */
.main-footer {
    background-color: #191919;
    color: #ddd;
    padding: 50px 0 20px;
}

.main-footer .container {
    margin: 0 auto;
    padding: 0 11vw;
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1fr 0fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 30px;
    margin-left: 10px;
}

.footer-section h3 {
    color: #ddd;
    margin-bottom: 20px;
    font-size: 1em;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    margin-left: 15px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.footer-section a:hover {
    color: #777;
    transform: translateX(5px);
}

.footer-section ul li a::before {
    content: "→";
    opacity: 0;
    margin-right: -15px;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
    opacity: 1;
    margin-right: 5px;
}

.footer-company-desc {
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-bottom {
    color: #aaa;
    border-top: 1px solid #555;
    padding: 20px 0px 10px;
    text-align: center;
}

.footer-bottom a {
    
    color: red;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #777;
}

.footer-section-1 {
    padding-right: 100px;
    line-height: 1.3;
}

.footer-section-2, .footer-section-3 {
    white-space: nowrap;
    margin-top: 20px;
    font-size: 0.95rem;
}

.footer-section-3 p {
    margin-top: 30px;
}

.footer-section p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-section svg {
    fill: #ddd; 
    margin-right: 5px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-link:hover {
    color: #777;
    transform: translateX(5px);
}

.footer-contact-link:hover svg {
    fill: #777;
}

.footer-contact-link svg {
    fill: #ddd;
    transition: fill 0.3s ease;
}

.footer-copyright {
    text-align: right;
}

.footer-section-2 a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-section-2 ul li a::before {
    content: "→";
    opacity: 0;
    margin-right: -15px;
    transition: all 0.3s ease;
}

.footer-section-2 ul li a:hover::before {
    opacity: 1;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .service-item {
        justify-content: center;
        margin: 5px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-section {
        text-align: center;
    }
} 