body.site-body {
    font-family: 'Barlow', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.95), rgba(255,255,255,0.75)),
        linear-gradient(135deg, rgba(78,115,223,0.08), rgba(28,200,138,0.1));
    color: #223046;
    min-height: 100vh;
}

.hp-field {
    display: none;
}

.contato-page {
    padding-bottom: 1.5rem;
}

.contato-card {
    max-width: 560px;
    margin: 0 auto;
}

.contato-card .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.contato-card .form-control {
    padding: 0.55rem 0.85rem;
}

.contato-robot-check {
    margin: 0.15rem 0 0;
    padding: 0.6rem 0.9rem;
    background: rgba(34, 48, 70, 0.04);
    border: 1px dashed rgba(34, 48, 70, 0.18);
    border-radius: 0.75rem;
}

.contato-robot-check .form-check-label {
    font-weight: 500;
}

.site-navbar {
    background: linear-gradient(135deg, var(--site-primary), var(--site-secondary));
    box-shadow: 0 10px 30px rgba(34, 48, 70, 0.16);
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
}

.site-search-form .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(34, 48, 70, 0.18);
}

.site-search-input {
    border: 0;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
}

.site-search-btn {
    background: var(--site-accent);
    border: 0;
    color: #223046;
    padding: 0 1.1rem;
}

.site-search-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

.site-search-btn:hover {
    background: #fff;
    color: var(--site-primary);
}

.site-navbar .nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus {
    color: #fff;
}

.site-category-bar {
    background: #fff;
    border-bottom: 1px solid rgba(34, 48, 70, 0.08);
    box-shadow: 0 4px 14px rgba(34, 48, 70, 0.06);
    padding: 0.55rem 0;
}

.category-bar-link {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    border-radius: 50px;
    color: #223046;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}

.category-bar-link:hover,
.category-bar-link:focus {
    background: var(--site-accent);
    color: #223046;
}

.category-bar-link.category-bar-all {
    background: linear-gradient(135deg, var(--site-primary), var(--site-secondary));
    color: #fff;
}

.site-category-dropdown {
    border: 0;
    border-radius: 16px;
    box-shadow: 0 16px 36px rgba(34, 48, 70, 0.16);
}

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

.site-category-dropdown .dropdown-item:hover,
.site-category-dropdown .dropdown-item:focus {
    background: rgba(78, 115, 223, 0.1);
    color: var(--site-primary);
}

.hero-carousel {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(34, 48, 70, 0.14);
}

.hero-carousel-item {
    min-height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(34, 48, 70, 0.78), rgba(34, 48, 70, 0.2));
}

.hero-carousel-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 560px;
    padding: 3rem;
    margin-left: 10%;
}

.hero-carousel-content h2 {
    text-shadow: 0 2px 12px rgba(34, 48, 70, 0.4);
}

.hero-carousel .carousel-indicators {
    margin-bottom: 1rem;
}

.promo-banner-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 14px 30px rgba(34, 48, 70, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(34, 48, 70, 0.16);
}

.promo-banner-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.promo-banner-img-tall {
    height: 260px;
}

.promo-banner-card:hover .promo-banner-img {
    transform: scale(1.05);
}

.promo-banner-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem 1rem 0.8rem;
    background: linear-gradient(180deg, transparent, rgba(34, 48, 70, 0.82));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
}

.promo-banner-caption-center {
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(34, 48, 70, 0.55), rgba(34, 48, 70, 0.55));
}

.promo-banner-caption-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.site-logo {
    height: 56px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
}

.hero-card {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 45px rgba(34, 48, 70, 0.12);
}

.hero-banner {
    min-height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(34,48,70,0.86), rgba(34,48,70,0.35));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 3rem;
}

.section-title {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.carousel-header {
    padding-bottom: 0.5rem;
}

.carousel-title-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--site-primary, #4e73df), var(--site-secondary, #1cc88a));
    box-shadow: 0 10px 20px rgba(34, 48, 70, 0.18);
    flex-shrink: 0;
}

.carousel-title-icon svg {
    width: 26px;
    height: 26px;
    display: block;
}

.carousel-title-text {
    position: relative;
    padding-bottom: 0.5rem;
}

.carousel-title-text::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 46px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--site-primary, #4e73df), var(--site-accent, #f6c23e));
}

.carousel-title {
    font-weight: 800;
    letter-spacing: -0.01em;
}

.carousel-subtitle {
    margin-top: 0.15rem;
    font-size: 0.9rem;
}

.carousel-nav .carousel-nav-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(34, 48, 70, 0.14);
    background: #fff;
    color: #223046;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.carousel-nav .carousel-nav-btn:hover {
    background: var(--site-primary, #4e73df);
    border-color: var(--site-primary, #4e73df);
    color: #fff;
    box-shadow: 0 10px 20px rgba(78, 115, 223, 0.28);
    transform: translateY(-2px);
}

.product-card {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 32px rgba(34, 48, 70, 0.08);
    height: 100%;
}

.product-card-media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 1rem;
    background: linear-gradient(180deg, rgba(255,255,255,1), rgba(238,242,247,0.9));
}

.product-card-showcase {
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card-showcase:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(34, 48, 70, 0.14);
}

.product-card-media-showcase {
    position: relative;
    height: 280px;
    padding: 0.75rem;
    overflow: hidden;
}

.product-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card-image-showcase {
    object-fit: contain;
    object-position: center center;
    padding: 0.25rem;
    transition: transform 0.35s ease;
}

.product-card-showcase:hover .product-card-image-showcase {
    transform: scale(1.03);
}

.product-card-badges {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    right: 0.9rem;
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    pointer-events: none;
}

.product-card-photo-count {
    position: absolute;
    left: 0.9rem;
    bottom: 0.9rem;
    padding: 0.38rem 0.7rem;
    border-radius: 999px;
    background: rgba(34, 48, 70, 0.82);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.product-card-preview-strip {
    position: absolute;
    right: 0.9rem;
    bottom: 0.9rem;
    display: flex;
    gap: 0.35rem;
}

.product-card-preview-strip img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.92);
    box-shadow: 0 8px 18px rgba(34, 48, 70, 0.14);
}

.product-card-title {
    font-size: 1.05rem;
    line-height: 1.15;
}

.product-card-description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-page .product-gallery {
    background: #fff;
    border-radius: 24px;
}

.product-hero {
    padding: 1.5rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(246, 194, 62, 0.18), rgba(246, 194, 62, 0) 30%),
        linear-gradient(135deg, rgba(255,255,255,0.96), rgba(245,248,252,0.98));
}

.product-hero-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
}

.product-hero-kicker {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--site-primary);
}

.product-hero-text {
    max-width: 52rem;
    color: #667085;
}

.product-hero-meta {
    min-width: 220px;
    text-align: right;
}

.product-carousel .carousel-inner {
    border-radius: 24px;
    overflow: hidden;
}

.product-carousel-frame {
    background:
        radial-gradient(circle at top, rgba(78, 115, 223, 0.12), rgba(255,255,255,0.95)),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(241,244,249,0.98));
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.product-gallery-main {
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafc;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery-image {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: contain;
}

.product-carousel-image {
    width: 100%;
    height: 100%;
    max-height: 620px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(34, 48, 70, 0.12));
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
    gap: 0.75rem;
}

.product-gallery-thumb {
    padding: 0;
    border: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f7fb;
    aspect-ratio: 1 / 1;
}

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

.product-thumb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(76px, 1fr));
    gap: 0.75rem;
}

.product-thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f7fb;
    aspect-ratio: 1 / 1;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.product-thumb.is-active,
.product-thumb:hover {
    border-color: var(--site-primary);
    box-shadow: 0 10px 22px rgba(78, 115, 223, 0.18);
    transform: translateY(-1px);
}

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

.product-buy-card {
    border: 0;
}

.product-buy-summary {
    padding-top: 1rem;
    border-top: 1px solid rgba(34, 48, 70, 0.08);
}

.product-quantity-field {
    max-width: 130px;
}

.product-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: var(--site-primary);
}

.product-card-form {
    margin-top: auto;
}

.product-detail-box {
    position: relative;
    padding: 1rem;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(246, 194, 62, 0.18), rgba(246, 194, 62, 0) 38%),
        linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,247,252,0.96)),
        #fff;
    border: 1px solid rgba(34, 48, 70, 0.09);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.product-detail-box-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.55rem;
}

.product-detail-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8c95a7;
    margin-bottom: 0.2rem;
}

.product-detail-box-title {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: #223046;
}

.product-detail-badge {
    flex-shrink: 0;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(34, 48, 70, 0.06);
    color: #526079;
    font-size: 0.74rem;
    font-weight: 700;
}

.product-detail-helper {
    margin-bottom: 0.85rem;
    font-size: 0.88rem;
    color: #677389;
}

.product-detail-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
}

.product-detail-option {
    margin: 0;
    cursor: pointer;
}

.product-detail-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-detail-chip {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    flex-direction: column;
    align-items: start;
    gap: 0.2rem;
    width: 100%;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(34, 48, 70, 0.1);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.product-detail-option:hover .product-detail-chip {
    transform: translateY(-2px);
    box-shadow: 0 16px 28px rgba(34, 48, 70, 0.08);
}

.product-detail-input:checked + .product-detail-chip {
    border-color: rgba(78, 115, 223, 0.42);
    background: linear-gradient(180deg, rgba(78, 115, 223, 0.1), rgba(255,255,255,0.98));
    box-shadow: 0 14px 28px rgba(78, 115, 223, 0.12);
}

.product-detail-check {
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    border-radius: 50%;
    border: 1.5px solid rgba(34, 48, 70, 0.2);
    background: #fff;
    position: relative;
    transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.product-detail-input:checked + .product-detail-chip .product-detail-check {
    border-color: var(--site-primary);
    background: var(--site-primary);
    transform: scale(1.02);
}

.product-detail-input:checked + .product-detail-chip .product-detail-check::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.product-detail-name {
    grid-column: 2;
    font-weight: 700;
    color: #223046;
}

.product-detail-price {
    grid-column: 2;
    font-size: 0.84rem;
    color: #677389;
}

.product-detail-feedback {
    display: none;
    margin-top: 0.85rem;
    padding: 0.7rem 0.85rem;
    border-radius: 14px;
    font-size: 0.88rem;
    color: #a12626;
    background: rgba(177, 39, 39, 0.08);
    border: 1px solid rgba(177, 39, 39, 0.14);
}

.product-detail-feedback.is-visible {
    display: block;
}

.product-card-actions {
    display: grid;
    grid-template-columns: minmax(96px, 110px) minmax(0, 1fr) 52px;
    gap: 0.75rem;
    align-items: end;
}

@media (min-width: 1200px) {
    .product-card-actions {
        grid-template-columns: minmax(80px, 1fr) 52px;
    }

    .product-card-actions .btn-brand {
        grid-column: 1 / -1;
    }
}

.product-card-actions-details {
    display: flex;
    align-items: center;
}

.product-card-actions-details .btn-brand {
    white-space: nowrap;
}

.product-quantity .form-control {
    text-align: center;
}

.price-pill {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(246, 194, 62, 0.16);
    color: #7a5600;
    font-weight: 700;
}

.price-pill-consult {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(108, 117, 125, 0.16);
    color: #6c757d;
    font-weight: 700;
}

.price-promo-old {
    font-size: 0.82rem;
    color: #6c757d;
    text-decoration: line-through;
}

.carousel-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.carousel-row::-webkit-scrollbar {
    display: none;
}

.carousel-row > [class*='col-'] {
    scroll-snap-align: start;
    min-width: 16rem;
}

.cart-shortcut-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    flex-shrink: 0;
}

.cart-shortcut-btn svg {
    width: 22px;
    height: 22px;
}

.cart-shortcut-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cart-thumb {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: #f5f7fb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.2rem;
}

.cart-detail-list,
.checkout-detail-list {
    line-height: 1.35;
}

.site-footer {
    background: var(--site-footer-bg);
    color: var(--site-footer-text);
}

.footer-title {
    color: var(--site-footer-text);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.footer-text {
    font-size: 0.92rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-links li + li {
    margin-top: 0.45rem;
}

.footer-links a {
    color: var(--site-footer-link);
    text-decoration: none;
    font-size: 0.92rem;
    opacity: 0.88;
    transition: color 0.15s ease, opacity 0.15s ease;
}

.footer-links a:hover {
    color: var(--site-accent);
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.16);
    color: var(--site-footer-text);
    transition: background 0.15s ease, transform 0.15s ease;
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-social-link:hover {
    background: var(--site-accent);
    color: #223046;
    transform: translateY(-2px);
}

.payment-badge {
    background: rgba(0, 0, 0, 0.16);
    color: var(--site-footer-text);
    border-radius: 8px;
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.22);
}

.footer-bottom small {
    color: var(--site-footer-text);
    opacity: 0.65;
}

.card-soft {
    border: 0;
    border-radius: 24px;
    box-shadow: 0 14px 30px rgba(34,48,70,0.08);
}

.btn-brand {
    background: var(--site-primary);
    border-color: var(--site-primary);
    color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--site-secondary);
    border-color: var(--site-secondary);
    color: #fff;
}

.bg-brand {
    background: linear-gradient(135deg, var(--site-primary), var(--site-secondary));
}

.table-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 12px 28px rgba(34,48,70,0.08);
    overflow: hidden;
}

.site-cart-notice {
    position: fixed;
    right: 1rem;
    bottom: 5.2rem;
    z-index: 1080;
    max-width: 320px;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: rgba(34, 48, 70, 0.95);
    color: #fff;
    box-shadow: 0 14px 28px rgba(34, 48, 70, 0.22);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-cart-notice.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-cart-notice.is-error {
    background: rgba(177, 39, 39, 0.96);
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 1090;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.55);
}

@media (max-width: 767px) {
    .hero-content {
        padding: 2rem;
    }

    .product-hero-inner {
        align-items: start;
        flex-direction: column;
    }

    .product-hero-meta {
        min-width: 0;
        text-align: left;
    }

    .product-card-media {
        height: 180px;
    }

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

    .product-card-actions-details {
        flex-wrap: wrap;
    }

    .product-card-actions-details .btn-brand {
        flex-grow: 1;
    }

    .product-card-media-showcase {
        height: 230px;
    }

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

    .cart-shortcut-btn {
        width: 100%;
    }

    .product-carousel-frame {
        min-height: 360px;
    }
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 2000;
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(34, 48, 70, 0.1);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(34, 48, 70, 0.25);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.cookie-banner-text {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--site-primary);
    text-decoration: underline;
}

@media (max-width: 640px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

.product-description {
    line-height: 1.7;
    color: #4a5568;
    text-align: justify;
}

.product-description p {
    margin-bottom: 1rem;
}

.product-description p:last-child {
    margin-bottom: 0;
}
