:root {
    --primary-color: #C4A484;
    --secondary-color: #3E2723;
    --background-color: #FFFDF6;
}

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

.header-top {
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.header-top .contact-info {
    color: var(--secondary-color);
}

.header-top .btn-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-top .btn-link:hover {
    color: var(--primary-color) !important;
}

.navbar-brand {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    padding: 0.25rem 0;
}

.nav-link {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

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

.btn {
    background-color: var(--primary-color);
    color: white;
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: none;
    transition: all 0.3s ease;
}

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

.breadcrumb {
    margin-bottom: 0;
}

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

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

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

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

.footer-area {
    background-color: #F8F9FA;
    border-top: 2px solid var(--primary-color);
}

.contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-5px);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(196, 164, 132, 0.25);
}

.footer-title {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-text {
    color: #666;
    line-height: 1.8;
}

.contact-info p {
    color: #666;
    transition: color 0.3s ease;
}

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

.footer-area .list-unstyled li {
    margin-bottom: 0.8rem;
}

.footer-area .list-unstyled a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-area .list-unstyled a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.footer-area .list-unstyled a:hover {
    color: var(--primary-color);
    padding-left: 20px;
}

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

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-inner {
    border-radius: 15px;
}

.carousel-item {
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item img {
    object-fit: cover;
}

.carousel-caption {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    margin: 0 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.carousel-indicators {
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.carousel-indicators [type="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);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.carousel-indicators [type="button"]:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-indicators [type="button"].active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
    transform: scale(1);
}

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

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

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

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

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--background-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    background-color: var(--background-color) !important;
    min-height: 50px;
}

.navbar-nav {
    align-items: center;
    flex: 1;
    justify-content: space-around;
    max-width: 800px;
    margin: 0 auto;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
    justify-content: center;
}

.nav-link {
    padding: 0.4rem 0.75rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    white-space: nowrap;
    text-align: center;
    width: 100%;
    font-size: 0.9rem;
}

.snipcart-checkout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.snipcart-checkout:hover {
    background-color: rgba(196, 164, 132, 0.1);
}

.snipcart-items-count {
    position: static !important;
    transform: none !important;
    margin-left: 0;
    font-size: 0.85rem;
    padding: 0.25rem 0.6rem;
    min-width: 24px;
    text-align: center;
}

.snipcart-checkout .fa-shopping-cart {
    font-size: 1.2rem;
}
