:root {
  --bs-primary: #862734;
  --bs-primary-rgb: 134, 39, 52;
  --bs-secondary: #7c706a;
  --bs-secondary-rgb: 124, 112, 106;
}
body {
    scroll-behavior: smooth;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ecd4bd;
}
.btn-primary {
  --bs-btn-bg: #862734;
  --bs-btn-border-color: #862734;
  --bs-btn-hover-bg: #7a1f2b;
  --bs-btn-hover-border-color: #7a1f2b;
  --bs-btn-active-bg: #6d1d2a;
  --bs-btn-active-border-color: #6d1d2a;
}
.btn-outline-primary {
  --bs-btn-color: #862734;
  --bs-btn-border-color: #862734;
  --bs-btn-hover-color: #fffaf5;
  --bs-btn-hover-bg: #862734;
  --bs-btn-hover-border-color: #862734;
  --bs-btn-active-color: #fffaf5;
  --bs-btn-active-bg: #7a1f2b;
  --bs-btn-active-border-color: #7a1f2b;
  --bs-btn-disabled-color: #862734;
  --bs-btn-disabled-border-color: #862734;
}
.btn-info {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #0d6efd;
  --bs-btn-border-color: #0d6efd;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #0a5ede;
  --bs-btn-hover-border-color: #0a5ede;
  --bs-btn-active-bg: #0d6efd;
  --bs-btn-active-border-color: #0d6efd;
}
.text-gold {
    color: hsl(42, 43%, 59%);
}
h1, h2, h3 {
    font-family: Georgia, "Times New Roman", Times, serif;
}
header {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 80px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.55),
            rgba(255, 255, 255, 0.75)
        ),
        url("images/background.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: auto 100%;
    background-attachment: scroll;
    max-width: 864px;
}
header h1 {
    font-size: 3.4rem;
    font-weight: normal;
    line-height: 1;
}
.header-content {
    max-width: min(42rem, 864px);
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-left: 0;
    margin-right: auto;
}
@media (max-width: 450px) {
    header {
        text-align: center;
        justify-content: center;
    }
    .header-content {
        align-items: center;
    }
}
.card {
    text-align: left;
    justify-content: left;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 300px;
    border: none;
}
.card-img-top {
    transform: scale(1.06);
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
    filter: brightness(0.96) contrast(0.9) saturate(0.85) blur(0.3px);
    transition: filter 0.3s ease;
}
.card:hover .card-img-top {
    filter: brightness(1) contrast(1) saturate(1);
}
@media (max-width: 576px) {
    .card-img-top {
        aspect-ratio: 11/12;
    }
}
section { padding: 80px 0; }
.section-alt {
    background-color: #fff3e6 !important;
    border-top: 1px solid #e0c9a6;
    border-bottom: 1px solid #e0c9a6;
}
.navbar { background-color: #fff3e6 !important; }
.navbar-brand, .nav-link { color: #5a4633 !important; }
.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.navbar-transparent {
    background-color: transparent !important;
    box-shadow: none;
}
.navbar.navbar-solid {
    background-color: #fff3e6 !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.navbar-transparent .nav-link {
    color: #683205 !important;
    text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}
.navbar-solid .nav-link {
    text-shadow: none;
}
.btn-light { background-color: #fff3e6; border: none; color: #5a4633; }
.btn-light:hover { background-color: #ecd4bd; }
.btn-outline-dark { border-color: #a47148; color: #a47148; }
.btn-outline-dark:hover { background-color: #a47148; color: #fffaf5; }
#reviews.section-alt {
    background-color: #862734 !important;
    color: #fffaf5;
}
.review {
  font-style: italic;
  background-color: rgba(255,255,255,0.08);
  color: #e8e0da;
  font-size: .875rem;
  line-height: 1.625;
  max-width: none;
}
.review-author {
  color: #fffaf5;
  margin-top: 10px;
  font-size: 1rem;
  font-style: normal;
}
/* Floating single button */
.floating-buttons {
    position: fixed; bottom: 20px; right: 20px;
    z-index: 1000;
}
.floating-buttons a {
    display: flex; align-items: center; justify-content: center;
    width: 60px; height: 60px; border-radius: 50%;
    background-color: #a47148; color: white; font-size: 28px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3); text-decoration: none;
    transition: background-color 0.3s;
}
.floating-buttons a:hover { background-color: #8a5d39; }
/* carousel */
.category-carousel {
    margin: 30px auto 10px auto;
    position: relative;
    text-align: center;
}
.carousel-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    overflow: hidden;
}
.carousel-image {
    width: 100%;
    max-height: 50vh;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease;
}
.carousel-image:hover {
    transform: scale(1.01);
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #5a4633;
    border: none;
    font-size: 2.4rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
}
.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}
.carousel-arrow.prev { left: 12px; }
.carousel-arrow.next { right: 12px; }
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}
.carousel-dots span {
    font-size: 14px;
    cursor: pointer;
    user-select: none;
    opacity: 0.4;
    color: #5a4633;
    transition: opacity 0.3s ease;
}
.carousel-dots span.active {
    opacity: 1;
}
.carousel-description {
    justify-content: center;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 0.5em;
}
@media (max-width: 768px) {
    .carousel-arrow {
        font-size: 2rem;
        width: 38px;
        height: 38px;
    }
}
.price-box {
    max-width: 600px;
    margin: 30px auto 0 auto;
    padding: 20px 24px;
    background-color: #fff3e6;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    text-align: left;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 20px;
    padding: 10px 0;
}
.price-row + .price-row {
    border-top: 1px dashed rgba(164,113,72,0.4);
}
.price-label {
    font-family: Georgia, "Times New Roman", Times, serif;
}
.price-label small {
    font-style: normal;
    opacity: 0.7;
}
.price-value {
    white-space: nowrap;
    color: #862734;
}
@media (max-width: 576px) {
    .price-row {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        row-gap: 4px;
    }
    .price-label {
        grid-column: 1 / -1; /* full width */
    }
    .price-value {
        grid-column: 2;
        justify-self: end;
        font-size: 0.95rem;
        opacity: 0.9;
    }
}
#gallery-grid .gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}
#gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
#gallery-grid .gallery-item:hover img {
    transform: scale(1.05);
}
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.lightbox-modal.active {
    display: flex;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
#lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: transparent;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    transition: transform 0.2s ease;
}
.lightbox-close:hover {
    transform: scale(1.1);
}
.lightbox-arrow {
    color: white;
}
.lightbox-arrow:hover {
    transform: translateY(-50%) scale(1.05);
}
#lightbox-dots {
    margin-top: 10px;
}
#lightbox-dots span {
    color: white;
}
@media (max-width: 768px) {
    .lightbox-content {
        max-height: 60vh;
    }
    #lightbox-image {
        max-height: 60vh;
    }
    .lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 2.5rem;
    }
}
.site-footer {
    color: #5a4633;
    text-align: center;
    font-size: 0.9rem;
    padding: 15px 0;
    border-top: 1px solid #e0c9a6;
}
.site-footer p {
    margin: 0;
    opacity: 0.8;
}