:root {
    --product-ink: #30252a;
    --product-muted: #76666d;
    --product-rose: #b63e6c;
    --product-rose-dark: #8e2851;
    --product-blush: #fff4f7;
    --product-paper: #fffdfc;
    --product-border: #eddde3;
    --product-gold: #e8a317;
    --product-whatsapp: #1c9a56;
}

body {
    background:
        radial-gradient(circle at 4% 18%, rgba(244, 193, 210, 0.26), transparent 25rem),
        linear-gradient(180deg, #fffaf9 0%, #fff 54%, #fff8fa 100%);
    color: var(--product-ink);
    text-align: left;
}

.skip-link {
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    z-index: 1000;
    padding: 0.7rem 1rem;
    border-radius: 0.6rem;
    background: var(--product-ink);
    color: #fff;
    text-decoration: none;
    transform: translateY(-150%);
}

.skip-link:focus {
    transform: translateY(0);
}

.product-nav {
    border-bottom: 1px solid rgba(182, 62, 108, 0.09);
    box-shadow: 0 6px 24px rgba(62, 35, 46, 0.05);
    padding: 0.65rem 1rem;
}

.product-nav .nav-inner {
    width: min(1180px, 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-nav .brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--product-rose-dark);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    width: 2.15rem;
    height: 2.15rem;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #d75b87, #98325b);
    color: #fff;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(182, 62, 108, 0.24);
}

.product-nav ul {
    align-items: center;
    gap: 0.3rem;
}

.product-nav ul li a {
    color: #5b4850;
    font-size: 0.9rem;
    padding: 0.55rem 0.72rem;
}

.product-nav ul li a:hover,
.product-nav ul li a:focus-visible {
    background: var(--product-blush);
    color: var(--product-rose-dark);
    transform: none;
}

main {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.breadcrumbs {
    position: static;
    justify-content: flex-start;
    padding: 1.35rem 0 1rem;
    background: transparent;
    box-shadow: none;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    color: var(--product-muted);
    font-size: 0.82rem;
}

.breadcrumbs li:not(:last-child)::after {
    margin-left: 0.5rem;
    color: #c2acb5;
    content: "/";
}

.breadcrumbs a {
    color: var(--product-rose-dark);
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.product-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.94fr);
    gap: clamp(2rem, 5vw, 4.75rem);
    align-items: start;
    padding: 0 0 clamp(2.75rem, 6vw, 5.5rem);
}

.gallery-panel,
.product-info {
    max-width: none;
    margin: 0;
    padding: 0;
}

.gallery-frame {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--product-border);
    border-radius: 1.4rem;
    background: #f7edef;
    box-shadow: 0 22px 60px rgba(89, 42, 60, 0.12);
}

.gallery-scroller {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.gallery-scroller::-webkit-scrollbar {
    display: none;
}

.gallery-scroller:focus-visible {
    outline: 3px solid rgba(182, 62, 108, 0.42);
    outline-offset: -4px;
}

.gallery-slide {
    flex: 0 0 100%;
    aspect-ratio: 4 / 5;
    margin: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

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

.gallery-arrow {
    position: absolute;
    top: 50%;
    display: grid;
    width: 2.8rem;
    height: 2.8rem;
    place-items: center;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--product-ink);
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(45, 27, 34, 0.16);
    transform: translateY(-50%);
    transition: background 0.2s, transform 0.2s;
}

.gallery-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.06);
}

.gallery-arrow:focus-visible,
.thumbnail:focus-visible,
.share-button:focus-visible,
.whatsapp-order:focus-visible,
.mobile-order-bar a:focus-visible {
    outline: 3px solid rgba(182, 62, 108, 0.42);
    outline-offset: 3px;
}

.gallery-arrow svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.gallery-arrow-prev {
    left: 1rem;
}

.gallery-arrow-next {
    right: 1rem;
}

.photo-counter {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    padding: 0.4rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    background: rgba(41, 29, 34, 0.76);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 4.8rem);
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.thumbnail {
    overflow: hidden;
    aspect-ratio: 3 / 4;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 0.7rem;
    background: #f3e6ea;
    cursor: pointer;
    opacity: 0.66;
    transition: border-color 0.2s, opacity 0.2s, transform 0.2s;
}

.thumbnail:hover {
    opacity: 0.9;
}

.thumbnail.is-active {
    border-color: var(--product-rose);
    opacity: 1;
    transform: translateY(-2px);
}

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

.product-info {
    padding-top: clamp(0rem, 2vw, 1.25rem);
}

.eyebrow {
    margin: 0 0 0.75rem;
    color: var(--product-rose);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-info h1 {
    max-width: 12ch;
    margin: 0;
    color: var(--product-ink);
    font-size: clamp(2.15rem, 4.5vw, 3.9rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.25rem;
    color: var(--product-muted);
    font-size: 0.86rem;
}

.rating-row .stars {
    color: var(--product-gold);
    font-size: 1.12rem;
    letter-spacing: 0.08em;
}

.rating-row strong {
    color: var(--product-ink);
}

.product-price {
    margin: 1.5rem 0 1.1rem;
    color: var(--product-rose-dark);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.price-currency {
    margin-right: 0.08em;
    font-size: 0.77em;
    vertical-align: 0.12em;
}

.product-description {
    max-width: 56ch;
    margin: 0;
    color: #594a51;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1.05rem;
    line-height: 1.72;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 1.7rem 0;
    border-block: 1px solid var(--product-border);
}

.product-specs div {
    padding: 1rem 0.75rem 1rem 0;
}

.product-specs div + div {
    padding-left: 0.9rem;
    border-left: 1px solid var(--product-border);
}

.product-specs dt {
    margin-bottom: 0.35rem;
    color: var(--product-muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-specs dd {
    margin: 0;
    color: var(--product-ink);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.4;
}

.occasions h2,
.share-panel h2 {
    margin: 0 0 0.7rem;
    color: var(--product-ink);
    font-size: 0.9rem;
}

.occasions ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.48rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.occasions li {
    padding: 0.45rem 0.72rem;
    border: 1px solid #eccbd7;
    border-radius: 999px;
    background: var(--product-blush);
    color: #74445a;
    font-size: 0.78rem;
    font-weight: 600;
}

.whatsapp-order {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.65rem;
    padding: 1rem 1.25rem;
    border-radius: 0.8rem;
    background: var(--product-whatsapp);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(28, 154, 86, 0.22);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.whatsapp-order:hover {
    background: #158348;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(28, 154, 86, 0.27);
}

.whatsapp-order svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: currentColor;
}

.delivery-note {
    margin: 0.7rem 0 0;
    color: var(--product-muted);
    font-size: 0.76rem;
    text-align: center;
}

.share-panel {
    margin-top: 1.65rem;
    padding-top: 1.45rem;
    border-top: 1px solid var(--product-border);
}

.share-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
}

#share-status {
    color: var(--product-whatsapp);
    font-size: 0.76rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.share-button {
    display: inline-flex;
    min-height: 2.35rem;
    align-items: center;
    gap: 0.4rem;
    padding: 0.52rem 0.68rem;
    border: 1px solid var(--product-border);
    border-radius: 0.55rem;
    background: #fff;
    color: #56454d;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.share-button:hover {
    border-color: #d7a6b8;
    background: var(--product-blush);
    color: var(--product-rose-dark);
}

.share-button span {
    display: grid;
    min-width: 1.2rem;
    height: 1.2rem;
    place-items: center;
    border-radius: 0.28rem;
    font-size: 0.65rem;
    font-weight: 700;
}

.share-whatsapp span {
    background: #dcf8e7;
    color: #12743e;
}

.share-facebook span {
    background: #e7efff;
    color: #1877f2;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}

.share-x span {
    background: #ebebeb;
    color: #111;
    font-size: 0.8rem;
}

.share-sms span,
.share-more span,
.share-copy span {
    background: #f7e9ef;
    color: var(--product-rose-dark);
}

.share-hint {
    margin: 0.65rem 0 0;
    color: var(--product-muted);
    font-size: 0.7rem;
    line-height: 1.5;
}

.service-promises {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: none;
    margin: 0 0 clamp(3rem, 6vw, 5rem);
    padding: 0;
    overflow: hidden;
    border: 1px solid var(--product-border);
    border-radius: 1rem;
    background: var(--product-border);
    box-shadow: 0 14px 38px rgba(89, 42, 60, 0.07);
}

.service-promises > div {
    padding: 1.5rem;
    background: var(--product-paper);
    text-align: center;
}

.promise-icon {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    margin: 0 auto 0.75rem;
    place-items: center;
    border-radius: 50%;
    background: var(--product-blush);
    color: var(--product-rose);
    font-size: 1.25rem;
}

.service-promises h2 {
    margin: 0 0 0.4rem;
    color: var(--product-ink);
    font-size: 0.95rem;
}

.service-promises p {
    margin: 0;
    color: var(--product-muted);
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 0.84rem;
    line-height: 1.55;
}

footer {
    display: grid;
    gap: 0.35rem;
    border-color: var(--product-border);
    color: #75616a;
    font-size: 0.78rem;
    line-height: 1.5;
}

footer p {
    margin: 0;
}

footer a {
    color: var(--product-rose-dark);
}

.mobile-order-bar {
    display: none;
}

@media (max-width: 860px) {
    .product-shell {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-panel {
        width: min(100%, 36rem);
        margin: 0 auto;
    }

    .product-info {
        width: min(100%, 40rem);
        margin: 0 auto;
    }

    .product-info h1 {
        max-width: 15ch;
    }
}

@media (max-width: 600px) {
    body {
        padding-bottom: 4.8rem;
    }

    .product-nav {
        padding-inline: 0.75rem;
    }

    .product-nav .brand-link {
        font-size: 0.86rem;
    }

    .brand-mark {
        width: 1.85rem;
        height: 1.85rem;
        font-size: 0.95rem;
    }

    .product-nav ul li a {
        padding: 0.45rem 0.52rem;
        font-size: 0.77rem;
    }

    .nav-contact {
        display: none;
    }

    main {
        width: min(100% - 1.2rem, 1180px);
    }

    .breadcrumbs {
        padding: 0.95rem 0 0.75rem;
    }

    .breadcrumbs ol {
        font-size: 0.7rem;
    }

    .product-shell {
        gap: 1.45rem;
        padding-bottom: 2.5rem;
    }

    .gallery-frame {
        border-radius: 1rem;
    }

    .gallery-arrow {
        width: 2.55rem;
        height: 2.55rem;
    }

    .gallery-arrow-prev {
        left: 0.65rem;
    }

    .gallery-arrow-next,
    .photo-counter {
        right: 0.65rem;
    }

    .photo-counter {
        bottom: 0.65rem;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(3, 3.8rem);
        gap: 0.55rem;
    }

    .product-info h1 {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .product-description {
        font-size: 1rem;
    }

    .product-specs {
        grid-template-columns: 1fr;
    }

    .product-specs div,
    .product-specs div + div {
        display: grid;
        grid-template-columns: 7rem 1fr;
        gap: 0.6rem;
        align-items: baseline;
        padding: 0.72rem 0;
        border-left: 0;
    }

    .product-specs div + div {
        border-top: 1px solid var(--product-border);
    }

    .product-specs dt {
        margin: 0;
    }

    .whatsapp-order {
        display: none;
    }

    .delivery-note {
        margin-top: 1.25rem;
    }

    .share-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .share-button {
        justify-content: center;
    }

    .service-promises {
        grid-template-columns: 1fr;
        margin-bottom: 2.5rem;
    }

    .service-promises > div {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 0.9rem;
        padding: 1.1rem;
        text-align: left;
    }

    .promise-icon {
        grid-row: span 2;
        margin: 0;
    }

    .mobile-order-bar {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 200;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.8rem;
        padding: 0.72rem max(0.8rem, env(safe-area-inset-right)) calc(0.72rem + env(safe-area-inset-bottom)) max(0.8rem, env(safe-area-inset-left));
        border-top: 1px solid var(--product-border);
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 -8px 28px rgba(59, 34, 44, 0.12);
        backdrop-filter: blur(12px);
    }

    .mobile-order-bar > div {
        display: grid;
        gap: 0.1rem;
    }

    .mobile-order-bar strong {
        color: var(--product-rose-dark);
        font-size: 1.05rem;
    }

    .mobile-order-bar span {
        color: var(--product-muted);
        font-size: 0.68rem;
    }

    .mobile-order-bar a {
        padding: 0.78rem 1rem;
        border-radius: 0.65rem;
        background: var(--product-whatsapp);
        color: #fff;
        font-size: 0.8rem;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
