/* novriisa — Modern Scandinavian Design */
:root {
    --primary-color: #1a1a1a;
    --primary-warm: #2c2416;
    --accent: #8b7355;
    --accent-light: #a89078;
    --secondary-color: #e8e0d5;
    --background-color: #faf9f7;
    --surface: #ffffff;
    --text-color: #3d3935;
    --text-muted: #6b6560;
    --sage: #9caa97;
    --terracotta: #c4a77d;
    --sand: #e5ddd4;
    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 26, 26, 0.08);
    --radius: 12px;
    --radius-lg: 20px;
}

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

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

/* Navigation — fixed to top, items aligned */
.navbar-fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: var(--surface) !important;
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
    min-height: 76px;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--primary-color) !important;
}

.navbar-nav-spaced {
    flex: 1;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto !important;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.6rem 0.5rem !important;
    color: var(--text-color) !important;
    transition: color 0.2s ease, border-color 0.2s ease;
    text-align: center;
    width: 100%;
    display: inline-block;
}

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

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-cart {
    position: relative;
    padding: 0.5rem 0.75rem !important;
    font-size: 1.1rem;
    color: var(--primary-color) !important;
}

.btn-cart:hover {
    color: var(--accent) !important;
}

.cart-count {
    margin-left: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 1.2em;
    display: inline-block;
}

.snipcart-total-price.d-none {
    display: none !important;
}

@media (max-width: 991px) {
    .navbar-nav-spaced {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        text-align: left;
    }
    .navbar-nav-spaced .nav-item {
        justify-content: flex-start;
    }
    body {
        padding-top: 70px;
    }
}

/* Search */
.search-input {
    border-radius: 20px 0 0 20px;
    border: 1px solid #ddd;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.search-input:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.btn-outline-dark {
    border-radius: 0 20px 20px 0;
    padding: 0.5rem 1rem;
}

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

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

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

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

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

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

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

.breadcrumb-item.active {
    color: #6c757d;
}

/* Footer */
footer {
    border-top: 1px solid var(--sand);
    background: linear-gradient(180deg, var(--surface) 0%, var(--secondary-color) 100%);
}

footer h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

footer a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

footer a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

footer address {
    color: #666;
    font-size: 0.95rem;
    font-style: normal;
}

footer hr {
    opacity: 0.1;
}

/* Cookie Consent */
.cookie-consent {
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-consent .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
/* Carousel — modern hero (applies to all hero carousels) */
.hero-section .carousel,
.carousel.slide {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.carousel-item {
    height: 520px;
    background: linear-gradient(135deg, var(--sand) 0%, var(--secondary-color) 100%);
    transition: opacity 0.6s ease;
}

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

.carousel-caption {
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    padding: 1.75rem 2.25rem;
    max-width: 720px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius);
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.carousel-caption h1,
.carousel-caption h2 {
    color: var(--primary-color);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.carousel-caption .lead {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Carousel indicators — modern pill/dot style */
.carousel-indicators {
    margin-bottom: 1.25rem;
    gap: 8px;
}

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

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

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

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
    border: none;
}

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

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

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    opacity: 0.7;
}

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

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    opacity: 1;
}

/* Category Cards */
.category-card {
    border: none;
    transition: transform 0.3s ease;
}

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

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

/* Product Cards — modern Scandinavian */
.product-card {
    border: none;
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(26, 26, 26, 0.12);
}

.product-card > a {
    display: block;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
    background: var(--sand);
}

.product-card img {
    height: 260px;
    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;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.product-card .card-title a {
    color: var(--primary-color) !important;
    transition: color 0.2s ease;
}

.product-card .card-title a:hover {
    color: var(--accent) !important;
}

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

.product-card .price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.product-card .btn.snipcart-add-item,
.product-card .btn-dark.snipcart-add-item {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius);
    background: var(--primary-color);
    border: none;
    transition: background 0.25s ease, transform 0.2s ease;
}

.product-card .btn.snipcart-add-item:hover,
.product-card .btn-dark.snipcart-add-item:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

/* Price outside cards (product pages etc.) */
.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent);
}

/* Newsletter Section */
.newsletter-form .form-control {
    border-radius: 20px 0 0 20px;
    border: 1px solid #ddd;
}

.newsletter-form .btn {
    border-radius: 0 20px 20px 0;
}
/* Contact Page Styles */
.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-form-wrapper {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-form-wrapper .form-control,
.contact-form-wrapper .form-select {
    border: 1px solid #ddd;
    padding: 0.8rem;
    font-size: 0.95rem;
}

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

/* FAQ Accordion Styles */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
}

.accordion-button {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    padding: 1.2rem;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background: linear-gradient(to right, var(--secondary-color), var(--surface));
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

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