:root {
    --cream: #f7efe4;
    --sand: #e6d0b4;
    --clay: #c68f5b;
    --ink: #2b1d14;
    --green: #3f6f61;
    --rose: #d08b7b;
    --white: #ffffff;
    --shadow: 0 20px 40px rgba(43, 29, 20, 0.12);
    --radius: 18px;
    --font-title: "Playfair Display", Georgia, serif;
    --font-body: "Nunito", "Trebuchet MS", sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: radial-gradient(circle at top, #fdf8f1 0%, var(--cream) 55%, #efe0cd 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
    backdrop-filter: blur(12px);
    background: rgba(247, 239, 228, 0.92);
    border-bottom: 1px solid rgba(198, 143, 91, 0.15);
}

.navbar .nav-link {
    font-weight: 600;
    color: var(--ink);
    padding: 0.85rem 1.1rem;
}

.navbar .nav-link:hover,
.dropdown-item:hover {
    color: var(--green);
}

.navbar-nav {
    gap: 0.5rem;
}

.dropdown-menu {
    min-width: 240px;
    padding: 0.75rem 0.6rem;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(198, 143, 91, 0.18);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    padding: 0.55rem 1rem;
    border-radius: 10px;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active,
.dropdown-item.active {
    background-color: #fbf7f2;
}

.header-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    position: relative;
}

.header-search input {
    border: 1px solid rgba(43, 29, 20, 0.2);
    border-radius: 999px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.7);
    min-width: 260px;
}

.header-search button {
    border: none;
    background: var(--ink);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-weight: 600;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.header-search button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    background: var(--white);
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(198, 143, 91, 0.18);
    max-height: 320px;
    overflow: auto;
    display: none;
    z-index: 20;
}

.search-suggestions.show {
    display: block;
}

.search-suggestion {
    display: flex;
    gap: 12px;
    padding: 10px 14px;
    align-items: center;
    border-bottom: 1px solid rgba(198, 143, 91, 0.12);
}

.search-suggestion:last-child {
    border-bottom: none;
}

.search-suggestion img {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    object-fit: cover;
}

.search-suggestion span {
    display: block;
    font-weight: 600;
}

.search-suggestion small {
    color: #6b4b36;
}

.mobile-search-wrap {
    display: none;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 10px 0 0;
}

.mobile-search input {
    border: 1px solid rgba(43, 29, 20, 0.2);
    border-radius: 999px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
}

.mobile-search button {
    border: none;
    background: var(--ink);
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.mobile-search button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

.logo-canvas {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--sand), var(--rose));
    position: relative;
    box-shadow: var(--shadow);
}

.logo-canvas::after {
    content: "";
    position: absolute;
    width: 26px;
    height: 6px;
    background: var(--ink);
    border-radius: 999px;
    transform: rotate(-20deg);
    top: 20px;
    left: 10px;
}

.logo-img {
    width: auto;
    height: 78px;
    object-fit: contain;
}

.logo-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #6b4b36;
}

.hero {
    padding: 80px 0 50px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: #6b4b36;
}

.hero h1 {
    font-family: var(--font-title);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin: 12px 0;
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.primary-button {
    display: inline-block;
    padding: 14px 28px;
    background: var(--ink);
    color: var(--white);
    border-radius: 999px;
    font-weight: 600;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: var(--shadow);
}

.hero-carousel {
    height: 220px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 18px;
}

.hero-carousel img {
    height: 220px;
    object-fit: cover;
}

.hero-canvas {
    height: 180px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--rose), var(--sand));
    margin-bottom: 18px;
    position: relative;
}

.hero-canvas::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    top: 40px;
    left: 40px;
}

.section-title {
    font-family: var(--font-title);
    margin: 0;
}

.section-header h2 {
    font-family: var(--font-title);
    margin: 0;
}

.view-all {
    font-weight: 600;
    color: var(--green);
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 200px;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-thumb {
    width: auto;
    height: auto;
    overflow: hidden;
    display: grid;
    place-items: center;
    margin: 0 auto 5px;
    padding: 5px;
}

.circle-thumb img {
    width: auto;
    height: 350px;
    border-radius: 20px;
    object-fit: cover;
}

.product-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    column-gap: 8px;
}

.tag {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 999px;
    color: var(--white);
    font-weight: 700;
}

.tag-new { background: #0dcaf0; }
.tag-popular { background: var(--green); }
.tag-discount { background: #d63384 ; }
.tag-default { background: #fd7e14; }

.product-info h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.product-info p {
    margin: 0 0 6px;
    font-size: 0.9rem;
    color: #5c4537;
}

.price {
    font-weight: 700;
    color: var(--ink);
}

.card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin-top: 10px;
    padding: 10px 16px;
    border-radius: 12px;
    background: #b98d7d;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-cta:hover {
    color: var(--white);
    opacity: 0.9;
}

.card-cta-arrow {
    font-weight: 400;
    opacity: 0.85;
}

.category-hero {
    padding: 50px 0;
    background: linear-gradient(120deg, rgba(214, 176, 132, 0.3), rgba(208, 139, 123, 0.25));
    border-bottom: 1px solid rgba(198, 143, 91, 0.2);
}

.category-hero h1 {
    font-family: var(--font-title);
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.product-detail {
    padding: 50px 0;
}

.product-gallery {
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.main-media {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: #f6f0e6;
    display: grid;
    place-items: center;
}

.main-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.main-media img.is-sliding {
    animation: productImageSlide 0.45s ease;
}

.main-media:hover img {
    transform: scale(1.08);
}

@keyframes productImageSlide {
    0% {
        opacity: 0;
        transform: translateX(32px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.zoom-trigger {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: rgba(43, 29, 20, 0.78);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--white);
}

.zoom-icon {
    width: 18px;
    height: 18px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}

.zoom-icon::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 2px;
    background: currentColor;
    right: -6px;
    bottom: -2px;
    transform: rotate(45deg);
    border-radius: 999px;
}

.image-lightbox {
    border: none;
    padding: 0;
    border-radius: 18px;
    max-width: min(92vw, 1100px);
    width: 100%;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.image-lightbox::backdrop {
    background: rgba(0, 0, 0, 0.6);
}

.image-lightbox img {
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    border-radius: 18px;
}

.lightbox-close {
    position: absolute;
    top: 10px;
    right: 14px;
    border: none;
    background: rgb(176 176 176 / 15%);
    color: #010101;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
}

.thumbs {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 0;
    flex-wrap: wrap;
    order: 0;
}

.thumb {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

.thumb img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid transparent;
}

.thumb.active img {
    border-color: var(--clay);
}

.video-thumb {
    display: grid;
    place-items: center;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    background: var(--sand);
    font-weight: 700;
    border: 2px solid transparent;
    color: var(--ink);
}

.video-thumb .play-icon {
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .thumbs {
        flex-direction: row;
        margin-top: 16px;
    }
}

.product-summary h1 {
    font-family: var(--font-title);
    font-size: 2.2rem;
}

.meta {
    margin: 2px 0;
    color: #6b4b36;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.85rem;
    line-height: 1.25;
}

.product-notes {
    margin-top: 10px;
    display: grid;
    gap: 0px;
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(43, 29, 20, 0.08);
}

.meta-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #6b4b36;
    flex: 0 0 22px;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
    place-content:center;
}

.whatsapp-button {
    display: inline-block;
    padding: 10px 14px;
    background: #1f8f55;
    color: var(--white);
    border-radius: 999px;
    font-weight: 700;
}

.contact-button {
    display: inline-block;
    padding: 10px 32px;
    background: #5c3b29;
    color: var(--white);
    border-radius: 999px;
    font-weight: 700;
}

.dimensions ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: grid;
    gap: 1px;
}

.disclaimer {
    margin-top: 0px;
    padding: 10px 18px;
    background: rgba(208, 139, 123, 0.2);
    border-radius: 12px;
}

.seo-details {
    margin-top: 18px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    border: 1px solid rgba(43, 29, 20, 0.08);
}

.seo-details h3 {
    margin-top: 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.seo-details ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: grid;
    gap: 6px;
}

.site-footer {
    padding: 40px 0;
    background: #2b1d14;
    color: var(--white);
}

.footer-inner h3 {
    margin-top: 0;
    font-family: var(--font-title);
}

.footer-inner h4 {
    margin-top: 0;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-lead {
    font-family: var(--font-title);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.footer-note {
    color: rgba(255, 255, 255, 0.8);
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 8px;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-links {
    display: grid;
    gap: 6px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
}

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

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.float-btn {
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 700;
    color: var(--white);
    background: var(--ink);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.float-whatsapp {
    background: #1f8f55;
}

.float-whatsapp span {
    display: inline-block;
}

.float-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.float-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.float-top {
    display: inline-flex;
    background: #2b1d14;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform 0.2s ease, background 0.2s ease;
}

.float-top .float-icon {
    margin-right: 0;
}

.float-top:hover {
    background: #5c3b29;
}

.search-hero {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.search-hero h1 {
    font-family: var(--font-title);
    margin-top: 0;
}

.search-form {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.search-form input {
    flex: 1 1 260px;
    border: 1px solid rgba(43, 29, 20, 0.2);
    border-radius: 999px;
    padding: 10px 16px;
}

.search-form button {
    border: none;
    background: var(--ink);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
}

.search-meta {
    margin-bottom: 20px;
    color: #6b4b36;
}

.search-empty {
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
}

.promo-dialog {
    border: none;
    border-radius: 26px;
    padding: 0;
    box-shadow: 0 30px 70px rgba(43, 29, 20, 0.18);
    max-width: min(760px, 92vw);
    overflow: hidden;
    background: transparent;
}

.video-lightbox {
    border: none;
    padding: 0;
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: min(860px, 92vw);
}

.video-lightbox::backdrop {
     background: rgba(0, 0, 0, 0.6);
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
}

.video-frame iframe,
.video-frame video {
    width: 100%;
    height: 100%;
    display: none;
    border: none;
}

.contact-hero {
    padding: 50px 0 20px;
    background: var(--sand);
}

.contact-hero h1 {
    font-family: var(--font-title);
    margin: 0 0 8px;
}

.contact-section {
    background: #fff7f0;
}

.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.contact-card h2 {
    font-family: var(--font-title);
    margin-top: 0;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    font-weight: 600;
    color: var(--ink);
}

.contact-form input,
.contact-form textarea {
    border: 1px solid rgba(43, 29, 20, 0.2);
    border-radius: 12px;
    padding: 10px 14px;
    font: inherit;
}

.contact-form button {
    border: none;
    background: var(--ink);
    color: var(--white);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    justify-self: start;
}

.contact-note {
    margin: 0;
    color: #6b4b36;
    font-size: 0.95rem;
}

.contact-note-success {
    color: #1f6a41;
    font-weight: 700;
}

.contact-note-error {
    color: #a33c2d;
    font-weight: 700;
}

.contact-details .whatsapp-button {
    margin-top: 14px;
}

.promo-dialog::backdrop {
    background: rgba(0, 0, 0, 0.4);
}

.promo-content {
    background: var(--white);
    display: grid;
    gap: 0;
}

.promo-content.has-media {
    grid-template-columns: minmax(220px, 280px) 1fr;
}

.promo-copy {
    padding: 34px 34px 32px;
    display: grid;
    align-content: center;
    gap: 14px;
}

.promo-copy h3 {
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(1.5rem, 2vw, 2rem);
    line-height: 1.15;
    color: var(--ink);
}

.promo-copy p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #5c4537;
}

.promo-media {
    display: block;
    overflow: hidden;
    min-height: 100%;
    background: linear-gradient(160deg, #f4eadf, #ead8c3);
    border-right: 1px solid rgba(198, 143, 91, 0.18);
}

.promo-media picture {
    display: block;
    height: 100%;
}

.promo-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.dialog-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(43, 29, 20, 0.1);
    color: var(--ink);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(43, 29, 20, 0.12);
}

.promo-tag {
    display: inline-block;
    background: var(--green);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    width: fit-content;
}

.promo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 6px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-weight: 700;
    width: fit-content;
}

.promo-link:hover {
    color: var(--white);
    opacity: 0.92;
}

@media (max-width: 767px) {
    .promo-dialog {
        max-width: min(92vw, 440px);
    }

    .promo-content.has-media {
        grid-template-columns: 1fr;
    }

    .promo-media {
        border-right: none;
        border-bottom: 1px solid rgba(198, 143, 91, 0.18);
        min-height: 220px;
    }

    .promo-copy {
        padding: 24px 22px 22px;
    }
}

@media (max-width: 991px) {
    .hero-inner {
        grid-template-columns: 1fr;
    }

    .header-search {
        display: none;
    }

    .header-search input {
        flex: 1;
        min-width: 0;
    }

    .search-suggestions {
        position: static;
        margin-top: 10px;
    }

    .mobile-search-wrap {
        display: block;
    }
}

@media (max-width: 600px) {
    .hero { padding: 60px 0 30px; }
    .circle-thumb { padding: 5px; }
    .circle-thumb img { height: 200px; }
    .product-card { min-height: 360px; }
    .logo-img { height: 58px; }
    .navbar .container { justify-content: space-between; }
    .navbar-toggler { margin-left: auto; }
}

@media (min-width: 1200px) {
    .col-xl-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}
