:root {
    --primary-color: #c45c26;
    --primary-dark: #9e4520;
    --accent: #e07d4a;
    --background-color: #f0eeeb;
    --surface: #faf9f7;
    --text-color: #2c2825;
    --secondary-color: #5c534d;
    --charcoal: #1a1816;
    --warm-gray: #8b8178;
    --border-light: #e5e2de;
    --shadow-sm: 0 2px 8px rgba(26,24,22,0.06);
    --shadow-md: 0 4px 20px rgba(26,24,22,0.08);
    --shadow-lg: 0 8px 32px rgba(26,24,22,0.1);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    padding-top: 62px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--charcoal);
}

.navbar {
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
    background: var(--surface) !important;
    border-bottom: 1px solid var(--border-light);
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color) !important;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.nav-menu-flex {
    flex: 1;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    max-width: 720px;
    margin-left: 2rem !important;
}

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

.nav-menu-flex .nav-link {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.5rem 0.25rem !important;
}

@media (max-width: 991px) {
    .nav-menu-flex { flex-direction: column; max-width: none; margin-left: 0 !important; }
    .nav-menu-flex .nav-item { flex: none; text-align: left; }
    .nav-menu-flex .nav-link { justify-content: flex-start; min-height: auto; }
}

.nav-link {
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.25s ease;
    position: relative;
    color: var(--secondary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent));
    transition: width 0.25s ease;
    transform: translateX(-50%);
}

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

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

.cart-btn {
    color: var(--text-color) !important;
    text-decoration: none !important;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px;
    transition: background 0.2s, color 0.2s;
}

.cart-btn:hover {
    color: var(--primary-color) !important;
    background: rgba(196,92,38,0.08);
}

.cart-count {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 1.25rem;
    text-align: center;
}

.btn-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.25s ease;
}

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

.input-group {
    width: 250px;
}

.input-group .form-control {
    border-right: none;
}

.input-group .btn {
    border-left: none;
    padding: 0.375rem 0.75rem;
}

.input-group .form-control:focus {
    box-shadow: none;
    border-color: var(--border-light);
}

.input-group .btn-outline-primary {
    color: var(--secondary-color);
    border-color: var(--border-light);
}

.input-group .btn-outline-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.carousel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--charcoal);
}

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

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 480px;
}

.carousel-caption {
    bottom: 2.5rem;
    padding: 1.25rem 1.75rem;
    background: linear-gradient(to top, rgba(26,24,22,0.92), rgba(26,24,22,0.75));
    border-radius: 10px;
    left: 1rem;
    right: 1rem;
    margin: 0 auto;
    max-width: 90%;
    color: #fff;
}

.carousel-caption h1,
.carousel-caption h2 {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.carousel-caption .lead {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 1px rgba(0,0,0,0.2);
}

.carousel-caption.text-dark {
    background: linear-gradient(to top, rgba(250,249,247,0.97), rgba(250,249,247,0.85));
    color: var(--text-color);
}

.carousel-caption.text-dark h1,
.carousel-caption.text-dark h2 {
    color: var(--charcoal);
    text-shadow: none;
}

.carousel-caption.text-dark .lead {
    color: var(--secondary-color);
    text-shadow: none;
}

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

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

.carousel-indicators .active {
    width: 28px;
    border-radius: 5px;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.3);
    opacity: 1;
    transition: background 0.25s, transform 0.25s;
}

.carousel-control-prev { left: 1rem; }
.carousel-control-next { right: 1rem; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-50%) scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.hero-section .carousel {
    margin-top: 0;
}

.breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
}

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

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

.footer {
    box-shadow: 0 -2px 12px rgba(26,24,22,0.06);
    border-top: 1px solid var(--border-light);
    background: var(--surface) !important;
}

.footer-heading {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer a {
    color: var(--secondary-color);
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0.5rem;
}

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

.contact-info p {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

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

.contact-item {
    padding: 1rem;
    background: linear-gradient(145deg, var(--surface) 0%, var(--background-color) 100%);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.contact-form-wrapper {
    background: linear-gradient(145deg, var(--background-color) 0%, var(--surface) 100%);
    box-shadow: var(--shadow-md);
    border-radius: 10px;
}

.services-section {
    background: var(--background-color) !important;
}

.services-section.bg-light {
    background: var(--background-color) !important;
}

.services-section .container > h2 {
    color: var(--charcoal);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(196,92,38,0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .card-body {
    padding: 1.75rem;
}

.service-card.text-center {
    padding: 2rem 1.5rem;
}

.service-card.text-center .fa-3x {
    width: 4rem;
    height: 4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(196,92,38,0.12), rgba(224,125,74,0.08));
    color: var(--primary-color);
    border-radius: 14px;
    margin-bottom: 1.25rem;
    font-size: 1.75rem !important;
}

.service-card h3 {
    color: var(--charcoal);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card.text-center h3 {
    font-size: 1.35rem;
    margin-bottom: 0.875rem;
}

.service-card p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.service-card i.fa-user-tie,
.service-card i.fa-tape,
.service-card i.fa-scissors {
    color: var(--primary-color);
}

.service-card .card-body h3 .fas {
    width: 2rem;
    text-align: center;
    margin-right: 0.5rem;
}

.service-card .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-width: 2px;
    border-radius: 10px;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: all 0.25s ease;
}

.service-card .btn-outline-primary:hover {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border-color: var(--primary-color);
}

.category-card {
    background: var(--surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-card .card-title {
    color: var(--charcoal);
}

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

.btn-primary {
    background: linear-gradient(145deg, var(--primary-color), var(--primary-dark));
    border: none;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(145deg, var(--accent), var(--primary-color));
    box-shadow: var(--shadow-md);
}

.cookie-consent {
    box-shadow: 0 -2px 12px rgba(26,24,22,0.12);
}
