:root {
    --primary-color: #0F2233;
    --accent-color: #C6A16B;
    --accent-2-color: #2BB3A3;
    --background-color: #F6F4EF;
    --surface-color: #FFFFFF;
    --text-color: #1F2937;
    --muted-text-color: #6B7280;
    --border-color: rgba(15, 34, 51, 0.12);
    --shadow-color: rgba(15, 34, 51, 0.10);
    --radius-lg: 18px;
    --radius-pill: 999px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    background-image:
        radial-gradient(1000px 500px at 10% 0%, rgba(43, 179, 163, 0.12), transparent 60%),
        radial-gradient(900px 500px at 90% 10%, rgba(198, 161, 107, 0.14), transparent 60%);
    background-attachment: fixed;
}

.has-fixed-header {
    padding-top: 92px;
}

@media (max-width: 991.98px) {
    .has-fixed-header {
        padding-top: 76px;
    }
}

.site-header.navbar {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px var(--shadow-color);
    border-bottom: 1px solid rgba(15, 34, 51, 0.06);
    padding: 0.85rem 0;
}

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

.navbar-nav {
    gap: 0.35rem;
}

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

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    padding: 0.55rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.nav-link:after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, rgba(43, 179, 163, 0.18), rgba(198, 161, 107, 0.18));
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform: translateY(2px);
    z-index: -1;
}

.nav-link:hover:after {
    opacity: 1;
    transform: translateY(0);
}

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

.search-input {
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.75);
}

.search-input:focus {
    box-shadow: none;
    border-color: rgba(43, 179, 163, 0.55);
}

.btn-outline-primary {
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    border: 1px solid var(--border-color);
    border-left: none;
    color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.75);
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, rgba(43, 179, 163, 0.20), rgba(198, 161, 107, 0.22));
    border-color: rgba(15, 34, 51, 0.12);
    color: var(--primary-color);
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-2-color), var(--accent-color));
    border: none;
    box-shadow: 0 10px 24px rgba(43, 179, 163, 0.18);
}

.btn-primary:hover,
.btn-primary:focus {
    background: linear-gradient(135deg, rgba(43, 179, 163, 0.92), rgba(198, 161, 107, 0.92));
    box-shadow: 0 14px 30px rgba(43, 179, 163, 0.22);
}

.cart-button {
    position: relative;
    padding: 0.35rem 0.55rem;
    border-radius: var(--radius-pill);
}

.cart-button .snipcart-items-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    margin-left: 0.35rem;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--accent-2-color), var(--accent-color));
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    line-height: 1;
}

.hero-section .carousel {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow-color);
    border: 1px solid rgba(15, 34, 51, 0.08);
}

.hero-section .carousel-item img {
    height: clamp(360px, 42vw, 520px);
    object-fit: cover;
    filter: saturate(1.05) contrast(1.02);
}

.hero-section .carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 500px at 15% 20%, rgba(43, 179, 163, 0.28), transparent 60%),
        radial-gradient(800px 500px at 85% 30%, rgba(198, 161, 107, 0.25), transparent 62%),
        linear-gradient(to top, rgba(15, 34, 51, 0.70) 0%, rgba(15, 34, 51, 0.20) 55%, rgba(15, 34, 51, 0.05) 100%);
    pointer-events: none;
}

.hero-section .carousel-caption {
    text-align: left;
    left: 6%;
    right: 6%;
    bottom: 16%;
    color: #F9FAFB !important;
    max-width: min(720px, 92%);
}

.hero-section .carousel-caption > * {
    text-shadow: 0 12px 28px rgba(15, 34, 51, 0.55);
}

.hero-section .carousel-caption {
    padding: 1.1rem 1.2rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(
        135deg,
        rgba(15, 34, 51, 0.58),
        rgba(15, 34, 51, 0.36)
    );
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-section .carousel-caption h1,
.hero-section .carousel-caption h2,
.hero-section .carousel-caption h3 {
    color: #FFFFFF !important;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.hero-section .carousel-caption p,
.hero-section .carousel-caption .lead {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 500;
}

.hero-section .carousel-caption .btn {
    box-shadow: 0 14px 34px rgba(15, 34, 51, 0.28);
}

.hero-section .carousel-caption .alert,
.hero-section .carousel-caption .badge {
    background: rgba(255, 255, 255, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    color: #F9FAFB !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 12%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 10px 24px rgba(15, 34, 51, 0.35));
}

.carousel-indicators {
    margin-bottom: 0.9rem;
    gap: 0.45rem;
}

.carousel-indicators [data-bs-target] {
    width: 28px;
    height: 6px;
    border-radius: var(--radius-pill);
    background-color: rgba(255, 255, 255, 0.55);
    opacity: 1;
    border: 0;
}

.carousel-indicators .active {
    background: linear-gradient(135deg, var(--accent-2-color), var(--accent-color));
}

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

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

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

.footer-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--accent-color);
}

footer h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 1000;
}
.contact-info-section .card,
.customer-service-section .card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
}

.contact-info-section .card:hover,
.customer-service-section .card:hover {
    transform: translateY(-5px);
}

.contact-info-section address {
    line-height: 1.6;
    color: var(--text-color);
}

.contact-info-section a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-section a:hover {
    color: var(--accent-color);
}

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

.contact-info-section .form-control:focus,
.contact-info-section .form-select:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.customer-service-section .card-title {
    color: var(--primary-color);
    font-weight: 600;
}

.customer-service-section .fas {
    color: var(--accent-color);
}
