:root {
    --primary-color: #1a365d;
    --secondary-color: #2d3748;
    --accent-color: #e53e3e;
    --background-color: #F5F9FC;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    z-index: 1030;
    top: 0;
    left: 0;
    right: 0;
}

.sticky-navbar {
    position: fixed !important;
    top: 0 !important;
    width: 100%;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    padding: 0.75rem 1.25rem !important;
    transition: var(--transition);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    text-align: center;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(26, 54, 93, 0.05);
}

.nav-menu-aligned {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.nav-menu-aligned .nav-item {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-color: #dee2e6;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.15);
}

.btn-outline-primary {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-color: #dee2e6;
    border-left: none;
}

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

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

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

.breadcrumb-container {
    margin-top: 90px;
    padding-top: 1rem;
}

.breadcrumb {
    margin-bottom: 2rem;
}

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

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

footer {
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
}

footer h5, footer h6 {
    color: var(--primary-color);
}

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

.cookie-consent {
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info-section .card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border: none;
    box-shadow: var(--shadow-md);
}

.contact-info-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-section .card-body {
    padding: 2rem;
}

.contact-info-section .fas {
    color: var(--primary-color);
}

.contact-info-section a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.contact-info-section a:hover {
    color: var(--primary-color);
}

.faq-section .accordion-button {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--secondary-color);
    font-weight: 500;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.15);
}

.hero-section {
    margin-top: 76px;
    position: relative;
}

.modern-carousel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.carousel-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 600px;
}

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

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

.modern-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.3) 50%, transparent 100%);
}

.carousel-content {
    max-width: 800px;
    margin: 0 auto;
}

.modern-caption h1,
.modern-caption h2 {
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.modern-caption p {
    color: #f0f0f0 !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.modern-caption .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.modern-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

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

.modern-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;
}

.modern-indicators button.active {
    background-color: #ffffff;
    width: 32px;
    border-radius: 6px;
}

.modern-control {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.modern-control:hover {
    opacity: 1;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.modern-control .carousel-control-prev-icon,
.modern-control .carousel-control-next-icon {
    filter: invert(1);
    width: 20px;
    height: 20px;
}

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

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.cart-button {
    position: relative;
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    border-radius: 8px;
    transition: var(--transition);
}

.cart-button:hover {
    background-color: rgba(26, 54, 93, 0.05);
}

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

.cart-count:empty {
    display: none;
}

@media (max-width: 991px) {
    .nav-menu-aligned {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-menu-aligned .nav-item {
        width: 100%;
        justify-content: flex-start;
    }
    
    .nav-menu-aligned .nav-link {
        width: 100%;
        text-align: left;
        padding: 0.75rem 1rem !important;
    }
    
    .breadcrumb-container {
        margin-top: 70px;
    }
    
    .hero-section {
        margin-top: 60px;
    }
    
    .carousel-image-wrapper {
        height: 400px;
    }
    
    .modern-caption {
        padding: 2rem 1rem;
    }
    
    .modern-caption h1,
    .modern-caption h2 {
        font-size: 2rem !important;
    }
    
    .modern-control {
        width: 40px;
        height: 40px;
    }
    
    .modern-control-prev {
        left: 1rem;
    }
    
    .modern-control-next {
        right: 1rem;
    }
}

@media (max-width: 576px) {
    .carousel-image-wrapper {
        height: 300px;
    }
    
    .modern-caption h1,
    .modern-caption h2 {
        font-size: 1.5rem !important;
    }
    
    .modern-caption p {
        font-size: 0.9rem;
    }
    
    .modern-caption .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}

.payment-methods {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.payment-methods:hover {
    opacity: 1;
}

.payment-methods i {
    color: var(--primary-color);
}

@media (max-width: 576px) {
    .payment-methods {
        justify-content: center !important;
    }
    
    .payment-methods i {
        font-size: 1.5rem !important;
    }
}
