:root {
    --primary-color: #2B3A67;
    --secondary-color: #333333;
    --background-color: #FAFAFA;
    --accent-color: #4A5568;
    --border-color: #E2E8F0;
}

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

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

.nav-link {
    color: var(--secondary-color);
    font-weight: 400;
    padding: 0.75rem 1.25rem;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    text-align: center;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.2s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

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

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

.navbar-nav .nav-item .nav-link {
    width: 100%;
    white-space: nowrap;
}

.btn-link {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.breadcrumb {
    font-size: 0.9rem;
}

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

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

.footer {
    background-color: var(--background-color);
    border-top: 1px solid var(--border-color);
}

.footer h5 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    display: inline-block;
}

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

.contact-info a {
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color) !important;
    text-decoration: none;
    transform: translateX(5px);
}

.opening-hours li {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

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

.accordion-button:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(43, 58, 103, 0.25);
}

.footer address {
    line-height: 1.6;
}

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

.cookie-consent p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

#heroCarousel {
    position: relative;
}

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

.carousel-item {
    position: relative;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

.carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.85);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.carousel-item.active img {
    transform: scale(1.05);
}

.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.3) 50%, transparent 100%);
    text-align: left;
}

.carousel-caption h1,
.carousel-caption h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease;
}

.carousel-caption .lead {
    color: #f0f0f0;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.carousel-caption .btn {
    animation: fadeInUp 0.8s ease 0.4s both;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
}

.carousel-caption .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    background-color: transparent;
    color: #fff;
}

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

.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: #fff;
    width: 30px;
    border-radius: 6px;
}

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

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

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

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

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

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

header.sticky-top {
    z-index: 1020;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease;
}

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

.snipcart-items-count {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

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

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

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

.category-card {
    height: 400px;
    overflow: hidden;
    position: relative;
}

.category-card img {
    height: 100%;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 10;
    transition: background 0.3s ease;
}

.category-overlay:hover {
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.8) 100%);
}

.category-overlay h3,
.category-overlay .h2,
.category-overlay .h3 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 600;
    font-size: 2.5rem;
}

.category-overlay p {
    color: #fff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.category-overlay .btn,
.category-overlay .btn-outline-light {
    background-color: rgba(255,255,255,0.95);
    color: var(--secondary-color);
    border: 2px solid rgba(255,255,255,0.95);
    font-weight: 600;
    padding: 0.75rem 2rem;
    text-shadow: none;
    transition: all 0.3s ease;
}

.category-overlay .btn:hover,
.category-overlay .btn-outline-light:hover {
    background-color: #fff;
    color: var(--secondary-color);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.category-overlay .btn-outline-dark {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.9);
    font-weight: 600;
    padding: 0.75rem 2rem;
    text-shadow: none;
    transition: all 0.3s ease;
}

.category-overlay .btn-outline-dark:hover {
    background-color: rgba(255,255,255,0.95);
    color: var(--secondary-color);
    border-color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.latest-news .card-img-top,
.styling-guide .card-img-top {
    height: 300px;
}

.vision-section img {
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-item {
        height: 40vh;
        min-height: 300px;
    }
    
    .carousel-caption {
        padding: 2rem 1.5rem;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2rem;
    }
    
    .carousel-caption .lead {
        font-size: 1rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 1rem;
    }
    
    .carousel-control-next {
        right: 1rem;
    }
    
    .navbar-nav .nav-item .nav-link {
        padding: 0.5rem 0.75rem;
        min-height: 40px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 35vh;
        min-height: 250px;
    }
    
    .carousel-caption {
        padding: 1.5rem 1rem;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .carousel-caption .lead {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .carousel-caption .btn {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .card-img-top {
        height: 250px;
    }
    
    .category-card img {
        height: 300px;
    }
    
    .category-card {
        height: 300px;
    }
    
    .category-overlay h3 {
        font-size: 1.75rem;
    }
    
    .category-overlay p {
        font-size: 0.95rem;
    }
    
    .category-overlay .btn,
    .category-overlay .btn-outline-light,
    .category-overlay .btn-outline-dark {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .latest-news .card-img-top,
    .styling-guide .card-img-top {
        height: 250px;
    }
    
    .vision-section img {
        height: 300px;
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a2540 100%);
    color: #fff;
}

.stat-item {
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* How It Works Section */
.how-it-works-item {
    padding: 1.5rem;
}

.works-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.works-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(43, 58, 103, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works-item:hover .works-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(43, 58, 103, 0.4);
}

.how-it-works-item h4 {
    color: var(--primary-color);
    font-weight: 600;
}

.how-it-works-item p {
    color: var(--accent-color);
}

/* Transparency Section */
.transparency-section {
    background: #fff;
}

.transparency-section ul li {
    font-size: 1rem;
    line-height: 1.8;
}

.transparency-section .bg-light {
    border-left: 4px solid var(--primary-color);
}

/* Quality Guarantee Section */
.quality-guarantee-section .p-3 {
    transition: transform 0.3s ease;
}

.quality-guarantee-section .p-3:hover {
    transform: translateY(-5px);
}

.quality-guarantee-section .p-3 h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
}

.quality-guarantee-section .p-3 p {
    color: var(--accent-color);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
    
    .works-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .transparency-section .bg-light {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .stat-item {
        padding: 1.5rem 0.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .how-it-works-item {
        padding: 1rem;
    }
    
    .works-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}
