:root {
    --koravixo-navy: #1a2332;
    --koravixo-charcoal: #2d3748;
    --koravixo-gold: #c9a227;
    --koravixo-gold-light: #e5d4a1;
    --koravixo-cream: #f5f0e8;
    --koravixo-offwhite: #faf8f5;
    --koravixo-text: #1a2332;
    --koravixo-text-muted: #4a5568;
    --koravixo-border: #e2e8f0;
    --koravixo-shadow: 0 4px 20px rgba(26, 35, 50, 0.08);
    --koravixo-shadow-strong: 0 8px 30px rgba(26, 35, 50, 0.12);
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--koravixo-offwhite);
    color: var(--koravixo-text);
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

.header {
    border-bottom: 1px solid var(--koravixo-border);
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--koravixo-shadow);
}

.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.header .navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    font-size: 1.75rem;
    letter-spacing: 4px;
    font-weight: 600;
    color: var(--koravixo-navy) !important;
    transition: color 0.2s ease;
}

.navbar-brand:hover {
    color: var(--koravixo-gold) !important;
}

.nav-menu-equal {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex: 1;
    gap: 0;
    margin: 0 auto;
}

.nav-menu-equal .nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
}

.nav-menu-equal .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 48px;
    padding: 0.5rem 0.75rem !important;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--koravixo-charcoal) !important;
    transition: all 0.25s ease;
    font-weight: 400;
    text-align: center;
}

.nav-menu-equal .nav-link:hover {
    color: var(--koravixo-gold) !important;
    background-color: var(--koravixo-cream);
}

.search-input {
    border-radius: 4px;
    border: 1px solid var(--koravixo-border);
    max-width: 200px;
    background: var(--koravixo-offwhite);
}

.search-input:focus {
    box-shadow: 0 0 0 2px var(--koravixo-gold-light);
    border-color: var(--koravixo-gold);
}

.btn-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem;
    border: none;
    background: transparent;
    color: var(--koravixo-navy);
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.btn-cart:hover {
    color: var(--koravixo-gold);
}

.cart-count {
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25rem;
    text-align: center;
    background: var(--koravixo-gold);
    color: var(--koravixo-navy);
    border-radius: 50%;
}

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

.btn {
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    transition: all 0.25s ease;
    font-weight: 500;
}

.btn-dark {
    background-color: var(--koravixo-navy);
    border-color: var(--koravixo-navy);
}

.btn-dark:hover {
    background-color: var(--koravixo-charcoal);
    border-color: var(--koravixo-charcoal);
}

.btn-outline-dark {
    border-color: var(--koravixo-charcoal);
    color: var(--koravixo-charcoal);
}

.btn-outline-dark:hover {
    background-color: var(--koravixo-navy);
    border-color: var(--koravixo-navy);
    color: #fff;
}

.breadcrumb {
    margin-bottom: 0;
    font-size: 0.85rem;
}

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

.breadcrumb-item a:hover {
    color: var(--koravixo-gold);
}

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

.nav-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fade {
    transition: opacity 0.3s ease-in-out;
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 1rem 0;
    }

    .nav-menu-equal {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-menu-equal .nav-item {
        flex: none;
        min-height: 44px;
    }

    .nav-menu-equal .nav-link {
        min-height: 44px;
        justify-content: flex-start;
        padding-left: 1rem !important;
    }

    .nav-icons {
        margin-top: 0.75rem;
        justify-content: center;
    }
}

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

.footer h5 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
    color: var(--koravixo-gold-light);
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    text-decoration: none;
    color: var(--koravixo-cream);
    transition: color 0.25s ease;
}

.footer a:hover {
    color: var(--koravixo-gold) !important;
}

.footer .text-dark,
.footer address,
.footer p {
    color: var(--koravixo-cream) !important;
}

.footer a.text-dark {
    color: var(--koravixo-cream) !important;
}

.footer a.text-dark:hover {
    color: var(--koravixo-gold) !important;
}

.cookie-consent {
    box-shadow: 0 -4px 20px rgba(26, 35, 50, 0.15);
    border-top: 1px solid var(--koravixo-border);
}

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

.hero-section {
    position: relative;
}

.carousel-modern {
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    box-shadow: var(--koravixo-shadow-strong);
}

.hero-section .carousel-item {
    height: 580px;
    overflow: hidden;
}

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

.hero-section .carousel-caption {
    background: rgba(255, 255, 255, 0.92);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    max-width: 560px;
    margin: auto;
    bottom: 50%;
    transform: translateY(50%);
    box-shadow: var(--koravixo-shadow);
}

.hero-section .carousel-caption h1,
.hero-section .carousel-caption h2 {
    color: var(--koravixo-navy);
    font-weight: 600;
}

.hero-section .carousel-caption .lead {
    color: var(--koravixo-text-muted);
}

.hero-section .carousel-caption .btn {
    margin-top: 0.5rem;
}

.carousel-modern .carousel-control-prev,
.carousel-modern .carousel-control-next {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(26, 35, 50, 0.6);
    border-radius: 50%;
    opacity: 1;
    transition: background 0.25s ease;
}

.carousel-modern .carousel-control-prev {
    left: 24px;
}

.carousel-modern .carousel-control-next {
    right: 24px;
}

.carousel-modern .carousel-control-prev:hover,
.carousel-modern .carousel-control-next:hover {
    background: var(--koravixo-navy);
}

.carousel-modern .carousel-control-prev-icon,
.carousel-modern .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

.carousel-modern .carousel-indicators {
    margin-bottom: 20px;
    gap: 10px;
}

.carousel-modern .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.25s ease;
}

.carousel-modern .carousel-indicators [data-bs-target]:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-modern .carousel-indicators .active {
    background: var(--koravixo-gold);
    border-color: var(--koravixo-gold);
    transform: scale(1.2);
}

.category-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 12px;
    box-shadow: var(--koravixo-shadow);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(26, 35, 50, 0.85), transparent);
    color: #fff;
}

.category-content h3 {
    color: #fff;
}

.category-content .btn-outline-dark {
    border-color: rgba(255,255,255,0.8);
    color: #fff;
}

.category-content .btn-outline-dark:hover {
    background: var(--koravixo-gold);
    border-color: var(--koravixo-gold);
    color: var(--koravixo-navy);
}

.product-card {
    border: 1px solid var(--koravixo-border);
    border-radius: 14px;
    box-shadow: var(--koravixo-shadow);
    transition: transform 0.3s ease, box-shadow 0.35s ease, border-color 0.25s ease;
    background: #fff;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--koravixo-shadow-strong);
    border-color: var(--koravixo-gold-light);
}

.product-card > a {
    display: block;
    overflow: hidden;
    background: var(--koravixo-offwhite);
}

.product-card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-card .card-body {
    padding: 1.35rem 1.5rem;
}

.product-card .card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--koravixo-navy);
    margin-bottom: 0.4rem;
    line-height: 1.35;
}

.product-card .card-title a:hover {
    color: var(--koravixo-gold);
}

.product-card .card-text {
    font-size: 0.9rem;
    color: var(--koravixo-text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-card .btn-dark {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 6px;
}

.price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--koravixo-gold);
    letter-spacing: 0.02em;
}

.service-card {
    padding: 2rem;
    height: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--koravixo-shadow);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--koravixo-shadow-strong);
}

.service-card i {
    color: var(--koravixo-gold);
}

.contact-section .form-control {
    border-radius: 6px;
    border: 1px solid var(--koravixo-border);
}

.contact-section .form-control:focus {
    box-shadow: 0 0 0 2px var(--koravixo-gold-light);
    border-color: var(--koravixo-gold);
}

.contact-info {
    border-left: 3px solid var(--koravixo-gold);
}

@media (max-width: 767px) {
    .hero-section .carousel-item {
        height: 420px;
    }

    .carousel-modern .carousel-control-prev,
    .carousel-modern .carousel-control-next {
        width: 44px;
        height: 44px;
    }

    .carousel-modern .carousel-control-prev {
        left: 12px;
    }

    .carousel-modern .carousel-control-next {
        right: 12px;
    }

    .contact-info {
        border-left: none;
        margin-top: 2rem;
        padding-left: 0 !important;
    }
}

.contact-info-section .card,
.contact-form-section .card {
    border: none;
    border-radius: 12px;
    box-shadow: var(--koravixo-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-section .card:hover,
.contact-form-section .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--koravixo-shadow-strong);
}

.contact-info-section .list-group-item {
    border: none;
    padding: 1rem 0;
}

.contact-info-section .list-group-item i {
    color: var(--koravixo-gold);
    width: 24px;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border: 1px solid var(--koravixo-border);
    border-radius: 6px;
    padding: 0.75rem;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    box-shadow: 0 0 0 2px var(--koravixo-gold-light);
    border-color: var(--koravixo-gold);
}

.faq-section .accordion-button {
    background-color: #fff;
    color: var(--koravixo-navy);
    font-family: 'Playfair Display', serif;
    padding: 1.5rem;
    border-color: var(--koravixo-border);
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--koravixo-cream);
    color: var(--koravixo-navy);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: var(--koravixo-gold);
}

.faq-section .accordion-body {
    padding: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}
