:root {
    --color-beige: #F5F5DC;
    --color-pine: #2F4F4F;
    --color-terracotta: #E2725B;
    --gradient-warm: linear-gradient(135deg, var(--color-beige) 0%, #FFF8DC 100%);
}

header.sticky-top {
    z-index: 1030;
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-menu-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-menu-items .nav-item {
    flex: 1 1 auto;
    min-width: 0;
    text-align: center;
}

.nav-menu-items .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 40px;
    padding: 0.75rem 1rem;
    white-space: nowrap;
}

.cart-count-text {
    color: var(--color-pine);
    font-weight: 600;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.carousel-modern {
    border-radius: 0;
}

.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-caption-modern {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    padding: 2rem;
}

.carousel-content-wrapper {
    max-width: 800px;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease;
}

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

.carousel-title {
    color: var(--color-pine) !important;
    margin-bottom: 1rem;
    font-size: 3rem;
    text-shadow: none;
}

.carousel-text {
    color: var(--color-pine) !important;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    text-shadow: none;
}

.btn-carousel {
    background-color: var(--color-pine);
    color: white;
    border: 2px solid var(--color-pine);
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-carousel:hover {
    background-color: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(226, 114, 91, 0.4);
}

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

.carousel-control-prev-modern {
    left: 30px;
    transform: translateY(-50%);
}

.carousel-control-next-modern {
    right: 30px;
    transform: translateY(-50%);
}

.carousel-control-modern:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 1);
}

.carousel-control-prev-modern:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-next-modern:hover {
    transform: translateY(-50%) scale(1.1);
}

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

.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);
    margin: 0 6px;
    transition: all 0.3s ease;
}

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

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

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Source+Sans+Pro:wght@300;400;600&display=swap');

body {
    background-color: var(--color-beige);
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
}

.navbar-brand {
    color: var(--color-pine);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 0.5px;
}

.nav-link {
    color: var(--color-pine);
    transition: all 0.3s ease;
    font-weight: 400;
    padding: 0.5rem 1rem;
    margin: 0 0.2rem;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--color-terracotta);
    border-bottom-color: var(--color-terracotta);
}

.search-form {
    position: relative;
    max-width: 300px;
}

.search-form input {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-pine);
    border-radius: 20px;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    width: 100%;
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-pine);
    cursor: pointer;
}

.search-form button:hover {
    color: var(--color-terracotta);
}

.nav-link:hover {
    color: var(--color-terracotta);
}

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

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

.btn-link {
    text-decoration: none;
}

.btn-link:hover {
    color: var(--color-terracotta) !important;
}

.contact-info {
    background: var(--gradient-warm);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.contact-info i {
    color: var(--color-pine);
    width: 24px;
}

.contact-info a:hover {
    color: var(--color-terracotta) !important;
    text-decoration: none;
}

.footer {
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.footer h5 {
    color: var(--color-pine);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.2rem;
}

.footer a {
    color: var(--color-pine);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--color-terracotta);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--color-pine);
    text-decoration: underline;
}

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

.cookie-content .btn-primary:hover {
    background-color: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.card-img-top,
.card img,
.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.carousel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-fluid.rounded {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .card-img-top,
    .card img,
    .category-card img {
        height: 250px;
    }
    
    .img-fluid.rounded {
        height: 300px;
    }
}
