:root {
    --ns-blue: #4a90e2;
    --ns-charcoal: #2c3e50;
    --ns-light-gray: #f5f6fa;
    --ns-border: #e1e8ed;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--ns-light-gray);
    color: var(--ns-charcoal);
}

.header {
    background: white;
    border-bottom: 1px solid var(--ns-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1030;
}

.header.sticky-top {
    position: sticky;
    top: 0;
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--ns-charcoal);
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.search-input {
    min-width: 300px;
    border: 1px solid var(--ns-border);
    border-radius: 4px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--ns-blue);
    box-shadow: 0 0 0 0.2rem rgba(74,144,226,0.15);
}

.nav-link {
    color: var(--ns-charcoal);
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    min-width: 100px;
    text-align: center;
    white-space: nowrap;
}

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

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
    height: 44px;
    flex: 0 0 auto;
}

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

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

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

.btn-primary {
    background-color: var(--ns-blue);
    border-color: var(--ns-blue);
    box-shadow: 0 2px 4px rgba(74,144,226,0.2);
}

.btn-primary:hover {
    background-color: #357abd;
    border-color: #357abd;
}

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

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

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

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

.footer h5 {
    color: var(--ns-charcoal);
    font-weight: 600;
}

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

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


.cookie-consent {
    border-top: 1px solid rgba(0,0,0,0.1);
}

.cookie-consent p {
    font-size: 0.9rem;
}
.contact-info-section .card {
    transition: transform 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

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

.contact-info-section .fa-3x {
    background: linear-gradient(145deg, var(--ns-blue) 0%, #357abd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-form-section .form-control,
.contact-form-section .form-select {
    border: 1px solid var(--ns-border);
    transition: all 0.3s ease;
}

.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
    border-color: var(--ns-blue);
    box-shadow: 0 0 0 0.2rem rgba(74,144,226,0.15);
}

.contact-form-section .btn-primary {
    background: linear-gradient(145deg, var(--ns-blue) 0%, #357abd 100%);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact-form-section .btn-primary:hover {
    background: linear-gradient(145deg, #357abd 0%, #2868a9 100%);
    transform: translateY(-2px);
}

.map-section .card {
    overflow: hidden;
    border: none;
}

.map-section iframe {
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.map-section iframe:hover {
    filter: grayscale(0);
}

.faq-section .accordion-button {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--ns-charcoal);
    font-weight: 500;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(145deg, var(--ns-blue) 0%, #357abd 100%);
    color: white;
}

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

.carousel {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

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

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

.carousel-caption {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.carousel-indicators {
    margin-bottom: 1.5rem;
    gap: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-indicators [type=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);
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
    text-indent: 0;
    flex-shrink: 0;
}

.carousel-indicators [type=button]:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-indicators [type=button].active {
    background-color: var(--ns-blue);
    border-color: var(--ns-blue);
    width: 32px;
    border-radius: 6px;
    transform: scale(1.1);
}

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

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-color: var(--ns-blue);
    border-radius: 50%;
    opacity: 1;
    background-size: 60%;
    background-position: center;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.snipcart-checkout {
    position: relative;
    padding: 0.5rem 1rem;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.snipcart-checkout .badge {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    min-width: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.snipcart-items-count:empty {
    display: none;
}

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

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

.category-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    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.6) 100%);
    backdrop-filter: blur(2px);
    transition: background 0.3s ease;
}

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

.category-overlay h3 {
    color: white !important;
    font-weight: 700;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.category-overlay p {
    color: white !important;
    font-size: 1.1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-overlay .btn-primary {
    background-color: white;
    color: var(--ns-blue);
    border-color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.category-overlay .btn-primary:hover {
    background-color: var(--ns-blue);
    color: white;
    border-color: var(--ns-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
