@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-red: #D62828;
    --primary-blue: #003049;
    --bg-steel: #f4f5f6;
    --text-dark: #2D3436;
    --text-muted: #636E72;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-steel);
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-blue);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
    z-index: 1030;
    transition: all 0.3s ease;
}

.navbar.sticky-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-red) !important;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1rem !important;
    transition: all 0.3s ease;
    color: var(--text-dark) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    text-align: center;
}

.navbar-nav {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 1rem;
    }
    
    .navbar-nav .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        justify-content: flex-start;
    }
}

.nav-link:hover {
    color: var(--primary-red) !important;
    transform: translateY(-1px);
}

.navbar .input-group {
    width: 250px;
}

.navbar .form-control {
    border-radius: 20px 0 0 20px;
    border: 1px solid #dee2e6;
    padding-left: 1rem;
}

.navbar .btn-outline-primary {
    border-radius: 0 20px 20px 0;
    border: 1px solid #dee2e6;
    border-left: none;
    color: var(--primary-red);
}

.navbar .btn-outline-primary:hover {
    background-color: var(--primary-red);
    color: white;
}

.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 2px 4px rgba(214,40,40,0.2);
}

.btn-primary:hover {
    background-color: #c41e1e;
    border-color: #c41e1e;
    transform: translateY(-1px);
}

.snipcart-checkout {
    color: var(--primary-blue);
    transition: all 0.3s ease;
    font-size: 1.25rem;
    padding: 0.5rem;
    position: relative;
    border: none;
    background: none;
    text-decoration: none;
}

.snipcart-checkout:hover {
    color: var(--primary-red);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--primary-red);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    min-width: 22px;
}

.snipcart-items-count:empty {
    display: none;
}

.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-red);
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px) rotate(2deg);
}

.footer {
    background-color: #fff;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
    font-size: 0.95rem;
}

.footer h5 {
    color: var(--primary-blue);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer p {
    line-height: 1.6;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: var(--primary-red);
    transform: translateX(5px);
}

.footer address {
    margin-top: 1.5rem;
    line-height: 1.6;
}

.footer address a {
    color: var(--primary-blue);
}

.footer .border-top {
    border-color: rgba(0,0,0,0.1) !important;
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
    z-index: 1000;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.cookie-content p {
    margin: 0;
    padding-right: 2rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 1rem;
        padding-right: 0;
    }
}
.contact-info-card {
    background: linear-gradient(145deg, #ffffff 0%, #f4f5f6 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-list i {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-list strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-form .form-control {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    padding: 0.75rem;
}

.contact-form .form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(214, 40, 40, 0.25);
}

.business-hours-card,
.support-info-card {
    background: linear-gradient(145deg, #ffffff 0%, #f4f5f6 100%);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

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

.support-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}

.support-list i {
    color: var(--primary-red);
    font-size: 1.25rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.support-list strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.hero-section {
    margin-top: 0;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

#heroCarousel {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.carousel-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 70vh;
    min-height: 500px;
}

.carousel-image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
}

.carousel-item:hover .carousel-image-wrapper img {
    transform: scale(1.05);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    text-align: left;
}

.carousel-content {
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.carousel-btn {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(214, 40, 40, 0.4);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 40, 40, 0.6);
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    width: 30px;
    border-radius: 6px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.carousel-control-prev {
    left: 2rem;
}

.carousel-control-next {
    right: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
    .carousel-image-wrapper {
        height: 50vh;
        min-height: 400px;
    }
    
    .carousel-title {
        font-size: 1.75rem;
    }
    
    .carousel-text {
        font-size: 1rem;
    }
    
    .carousel-caption {
        padding: 2rem 1.5rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 1rem;
    }
    
    .carousel-control-next {
        right: 1rem;
    }
}
