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

:root {
    --primary-color: #1a365d;
    --accent-color: #7c2d12;
    --bg-color: #f8f9fa;
    --text-color: #333;
    --border-color: #e2e8f0;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: opacity 0.3s ease;
}

.navbar-brand:hover .logo-img {
    opacity: 0.85;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    white-space: nowrap;
}

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

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

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

.header {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: white;
}

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

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

.snipcart-checkout {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
}

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

.search-form input {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    padding-right: 2.5rem;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
}

.search-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 54, 93, 0.1);
    outline: none;
}

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

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

.breadcrumb {
    font-size: 0.9rem;
}

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

.btn {
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.footer {
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.hero-section .carousel-item {
    position: relative;
}

.hero-section .carousel-caption {
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.category-card {
    overflow: hidden;
    border-radius: 8px;
}

.category-overlay {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.card-img-top {
    height: 300px;
    object-fit: cover;
}

.services-section i {
    transition: transform 0.3s ease;
}

.services-section .col-md-4:hover i {
    transform: translateY(-5px);
}

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

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

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

.contact-section {
    background: linear-gradient(to bottom right, var(--bg-color) 60%, #f0f2f5);
}

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

.contact-form-wrapper {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
    background: linear-gradient(to bottom right, #fff, #fafbfc);
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border-color: var(--border-color);
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus,
.contact-form-wrapper .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 54, 93, 0.15);
}

.contact-info ul li {
    position: relative;
    padding-left: 2rem;
}

.contact-info ul li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.location-info iframe {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
