:root {
    --samei-ink: #17130f;
    --samei-muted: #6f665c;
    --samei-soft: #f5efe6;
    --samei-soft-2: #fbf8f3;
    --samei-card: #ffffff;
    --samei-gold: #c8a96a;
    --samei-gold-dark: #9a783d;
    --samei-coffee: #34251c;
    --samei-border: rgba(23, 19, 15, 0.1);
    --samei-shadow: 0 22px 60px rgba(31, 24, 16, 0.13);
    --samei-radius-xl: 30px;
    --samei-radius-lg: 22px;
    --samei-radius-md: 16px;
    --samei-header-height: 98px;
}

html {
    scroll-behavior: smooth;
}

body.samei-modern-site {
    color: var(--samei-ink);
    background: var(--samei-soft-2);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.samei-modern-site,
body.samei-modern-site p,
body.samei-modern-site a,
body.samei-modern-site li,
body.samei-modern-site span {
    letter-spacing: -0.01em;
}

body.samei-modern-site h1,
body.samei-modern-site h2,
body.samei-modern-site h3,
body.samei-modern-site h4,
body.samei-modern-site h5,
body.samei-modern-site h6 {
    color: var(--samei-ink);
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 780;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

.samei-wrap {
    width: min(1180px, calc(100% - 34px));
    margin-inline: auto;
}

.samei-site-main {
    min-height: 60vh;
    padding-top: var(--samei-header-height);
}

/* Oculta cabeceras duplicadas del tema anterior si algún hook del parent las imprime. */
.samei-modern-site .top-header,
.samei-modern-site .mid-header,
.samei-modern-site .bottom-header,
.samei-modern-site .fixed-header,
.samei-modern-site .mobile-menu-container,
.samei-modern-site header.site-header:not(.samei-site-header) {
    display: none !important;
}

.samei-site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 9998;
    background: rgba(251, 248, 243, 0.88);
    border-bottom: 1px solid rgba(23, 19, 15, 0.08);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.samei-site-header.samei-is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 40px rgba(31, 24, 16, 0.08);
}

.samei-topbar {
    background: var(--samei-coffee);
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
}

.samei-topbar-inner,
.samei-mainbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.samei-topbar-inner {
    min-height: 34px;
}

.samei-topbar-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.samei-topbar a {
    color: rgba(255, 255, 255, 0.88);
}

.samei-topbar a:hover {
    color: #fff;
}

.samei-mainbar {
    background: transparent;
}

.samei-mainbar-inner {
    min-height: 64px;
}

.samei-brand {
    display: inline-flex;
    align-items: center;
    min-width: 128px;
    position: relative;
    z-index: 2;
}

.samei-brand img {
    width: auto;
    max-width: 158px;
    max-height: 48px;
    object-fit: contain;
    display: block;
}

.samei-desktop-menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.samei-nav,
.samei-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.samei-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.samei-nav > li {
    position: relative;
}

.samei-nav > li > a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--samei-ink);
    font-size: 14px;
    font-weight: 680;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.samei-nav > li:hover > a,
.samei-nav > li.current-menu-item > a,
.samei-nav > li.current_page_item > a {
    color: var(--samei-coffee);
    background: rgba(200, 169, 106, 0.18);
    transform: translateY(-1px);
}

.samei-nav li ul {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 230px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--samei-border);
    border-radius: 18px;
    box-shadow: var(--samei-shadow);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.samei-nav li:hover > ul,
.samei-nav li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.samei-nav li ul a {
    display: block;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--samei-ink);
    font-size: 14px;
    font-weight: 620;
}

.samei-nav li ul a:hover {
    background: var(--samei-soft);
    color: var(--samei-gold-dark);
}

.samei-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.samei-icon-link,
.samei-cta,
.samei-btn,
.samei-footer-cta,
.samei-mobile-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 760;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.samei-icon-link {
    min-height: 40px;
    padding: 0 13px;
    color: var(--samei-ink);
    background: #fff;
    border: 1px solid var(--samei-border);
    font-size: 13px;
}

.samei-cta,
.samei-btn-primary,
.samei-footer-cta,
.samei-mobile-whatsapp {
    min-height: 42px;
    padding: 0 18px;
    color: #fff;
    background: linear-gradient(135deg, var(--samei-gold), var(--samei-gold-dark));
    box-shadow: 0 12px 26px rgba(154, 120, 61, 0.25);
}

.samei-cta:hover,
.samei-btn-primary:hover,
.samei-footer-cta:hover,
.samei-mobile-whatsapp:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(154, 120, 61, 0.28);
}

.samei-menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--samei-ink);
    cursor: pointer;
}

.samei-menu-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.samei-menu-open .samei-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.samei-menu-open .samei-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.samei-menu-open .samei-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.samei-mobile-panel {
    display: none;
}

.samei-hero {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    background: radial-gradient(circle at top left, rgba(200, 169, 106, 0.25), transparent 36%), linear-gradient(135deg, #fff7ed 0%, #f4ecdf 45%, #e8ddcc 100%);
}

.samei-hero::before {
    content: "";
    position: absolute;
    inset: auto -8% -35% auto;
    width: 54vw;
    height: 54vw;
    border-radius: 50%;
    background: rgba(52, 37, 28, 0.07);
}

.samei-hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: linear-gradient(90deg, rgba(23, 19, 15, 0.3) 1px, transparent 1px), linear-gradient(180deg, rgba(23, 19, 15, 0.22) 1px, transparent 1px);
    background-size: 56px 56px;
}

.samei-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 44px;
    align-items: center;
    padding: 86px 0 70px;
}

.samei-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--samei-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.12em !important;
    font-size: 12px;
    font-weight: 850;
}

.samei-eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.samei-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(44px, 7vw, 86px);
}

.samei-hero p {
    max-width: 620px;
    margin: 22px 0 0;
    color: var(--samei-muted);
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.65;
}

.samei-hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.samei-btn {
    min-height: 52px;
    padding: 0 24px;
    font-size: 15px;
}

.samei-btn-secondary {
    color: var(--samei-ink);
    background: #fff;
    border: 1px solid var(--samei-border);
}

.samei-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(31, 24, 16, 0.1);
}

.samei-trust-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.samei-trust-row span {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--samei-coffee);
    border: 1px solid rgba(255, 255, 255, 0.75);
    font-size: 13px;
    font-weight: 720;
}

.samei-hero-showcase {
    display: grid;
    grid-template-columns: 1fr 0.82fr;
    grid-template-rows: 270px 270px;
    gap: 18px;
    align-items: stretch;
}

.samei-showcase-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: var(--samei-shadow);
    background: #ddd;
}

.samei-card-large {
    grid-row: 1 / span 2;
}

.samei-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.samei-showcase-card:hover img {
    transform: scale(1.08);
}

.samei-showcase-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.62));
}

.samei-showcase-card span {
    position: absolute;
    z-index: 1;
    left: 18px;
    right: 18px;
    bottom: 18px;
    color: #fff;
    font-size: 18px;
    font-weight: 820;
}

.samei-service-strip {
    position: relative;
    z-index: 1;
    margin-top: -44px;
}

.samei-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 26px;
    border: 1px solid var(--samei-border);
    box-shadow: var(--samei-shadow);
    overflow: hidden;
}

.samei-service-grid > div {
    padding: 22px 24px;
    border-right: 1px solid var(--samei-border);
}

.samei-service-grid > div:last-child {
    border-right: 0;
}

.samei-service-grid strong {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    color: var(--samei-ink);
}

.samei-service-grid span {
    display: block;
    color: var(--samei-muted);
    font-size: 13px;
    line-height: 1.45;
}

.samei-section {
    padding: 88px 0;
}

.samei-section-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.samei-section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    max-width: none;
}

.samei-section-heading h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
}

.samei-section-heading p {
    margin: 15px 0 0;
    color: var(--samei-muted);
    font-size: 17px;
    line-height: 1.65;
}

.samei-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.samei-category-card {
    position: relative;
    min-height: 240px;
    display: flex;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--samei-border);
    box-shadow: 0 14px 40px rgba(31, 24, 16, 0.07);
    isolation: isolate;
}

.samei-category-img {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
    transition: transform 0.45s ease;
    opacity: 0.92;
}

.samei-category-card:hover .samei-category-img {
    transform: scale(1.1);
}

.samei-category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(180deg, rgba(23, 19, 15, 0.02), rgba(23, 19, 15, 0.76));
}

.samei-category-content {
    position: relative;
    z-index: 1;
    align-self: flex-end;
    padding: 22px;
    color: #fff;
}

.samei-category-content strong {
    display: block;
    color: #fff;
    font-size: 22px;
    line-height: 1.05;
}

.samei-category-content small {
    display: block;
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.4;
    font-size: 13px;
}

.samei-about-section {
    background: #fff;
}

.samei-about-grid {
    display: grid;
    grid-template-columns: 0.86fr 1fr;
    gap: 58px;
    align-items: center;
}

.samei-about-media {
    position: relative;
}

.samei-about-media::before {
    content: "";
    position: absolute;
    inset: 28px -20px -20px 28px;
    border-radius: var(--samei-radius-xl);
    background: var(--samei-soft);
}

.samei-about-media img {
    position: relative;
    width: 100%;
    border-radius: var(--samei-radius-xl);
    box-shadow: var(--samei-shadow);
    object-fit: cover;
    aspect-ratio: 5 / 6;
}

.samei-about-copy h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
}

.samei-about-copy p {
    color: var(--samei-muted);
    font-size: 17px;
    line-height: 1.75;
}

.samei-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--samei-gold-dark);
    font-weight: 800;
}

.samei-link-arrow::after {
    content: "→";
    transition: transform 0.2s ease;
}

.samei-link-arrow:hover::after {
    transform: translateX(4px);
}

.samei-products-section {
    background: var(--samei-soft-2);
}

.samei-product-shell {
    background: #fff;
    border: 1px solid var(--samei-border);
    border-radius: 28px;
    padding: 22px;
    box-shadow: 0 18px 50px rgba(31, 24, 16, 0.07);
}

.samei-modern-site.woocommerce ul.products,
.samei-product-shell ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px !important;
    margin: 0 !important;
}

.samei-modern-site.woocommerce ul.products li.product,
.samei-product-shell ul.products li.product {
    width: auto !important;
    float: none !important;
    margin: 0 !important;
    padding: 12px !important;
    background: #fff;
    border: 1px solid var(--samei-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(31, 24, 16, 0.06);
}

.samei-modern-site.woocommerce ul.products li.product img,
.samei-product-shell ul.products li.product img {
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    width: 100% !important;
}

.samei-modern-site.woocommerce ul.products li.product .woocommerce-loop-product__title,
.samei-product-shell ul.products li.product .woocommerce-loop-product__title {
    color: var(--samei-ink);
    font-size: 16px !important;
    line-height: 1.25;
    padding: 12px 4px 4px !important;
    text-align: left;
}

.samei-modern-site.woocommerce ul.products li.product .price,
.samei-product-shell ul.products li.product .price {
    color: var(--samei-gold-dark) !important;
    font-weight: 800 !important;
    padding-inline: 4px;
    text-align: left;
}

.samei-modern-site.woocommerce ul.products li.product .button,
.samei-product-shell ul.products li.product .button {
    width: 100%;
    border-radius: 999px;
    background: var(--samei-ink) !important;
    color: #fff !important;
    text-align: center;
    margin-top: 10px !important;
    padding: 12px 14px !important;
    font-weight: 760;
}

.samei-cta-banner {
    padding: 78px 0;
    background: var(--samei-coffee);
    color: #fff;
}

.samei-cta-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.samei-cta-banner h2,
.samei-cta-banner .samei-eyebrow {
    color: #fff;
}

.samei-cta-banner h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
}

.samei-cta-banner p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.65;
}

.samei-page-title {
    padding: 74px 0 36px;
    background: linear-gradient(135deg, #fff7ed, #efe3d1);
}

.samei-page-title h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 64px);
}

.samei-page-content {
    padding: 54px 0 84px;
}

.samei-content-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid var(--samei-border);
    box-shadow: 0 16px 44px rgba(31, 24, 16, 0.06);
    padding: clamp(24px, 4vw, 46px);
}

.samei-content-card p,
.samei-content-card li {
    color: var(--samei-muted);
    line-height: 1.75;
}

.samei-footer {
    background: #120f0c;
    color: rgba(255, 255, 255, 0.78);
}

.samei-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1fr;
    gap: 34px;
    padding: 58px 0;
}

.samei-footer-logo {
    max-width: 150px;
    max-height: 58px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.samei-footer h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 18px;
    letter-spacing: -0.02em;
}

.samei-footer a {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.78);
}

.samei-footer a:hover {
    color: #fff;
}

.samei-footer p {
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.65;
}

.samei-footer-cta {
    display: inline-flex !important;
    margin-top: 8px !important;
}

.samei-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

@media (max-width: 1080px) {
    :root {
        --samei-header-height: 84px;
    }

    .samei-topbar {
        display: none;
    }

    .samei-mainbar-inner {
        min-height: 84px;
    }

    .samei-desktop-menu,
    .samei-icon-link {
        display: none;
    }

    .samei-menu-toggle {
        display: inline-flex;
    }

    .samei-mobile-panel {
        display: block;
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        max-height: calc(100vh - 84px);
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--samei-border);
        box-shadow: 0 24px 50px rgba(31, 24, 16, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .samei-menu-open .samei-mobile-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .samei-mobile-panel-inner {
        width: min(520px, calc(100% - 34px));
        margin-inline: auto;
        padding: 18px 0 24px;
    }

    .samei-mobile-nav,
    .samei-mobile-nav ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .samei-mobile-nav a {
        display: flex;
        padding: 14px 0;
        color: var(--samei-ink);
        border-bottom: 1px solid var(--samei-border);
        font-weight: 760;
    }

    .samei-mobile-nav ul {
        padding-left: 16px;
    }

    .samei-mobile-whatsapp {
        min-height: 48px;
        width: 100%;
        margin-top: 16px;
    }

    .samei-hero-grid {
        grid-template-columns: 1fr;
        padding-top: 58px;
    }

    .samei-hero-showcase {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 240px 240px;
    }

    .samei-service-grid,
    .samei-category-grid,
    .samei-modern-site.woocommerce ul.products,
    .samei-product-shell ul.products,
    .samei-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .samei-about-grid,
    .samei-cta-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    :root {
        --samei-header-height: 76px;
    }

    .samei-wrap {
        width: min(100% - 24px, 1180px);
    }

    .samei-site-main {
        padding-top: 76px;
    }

    .samei-mainbar-inner {
        min-height: 76px;
        gap: 12px;
    }

    .samei-brand img {
        max-width: 126px;
        max-height: 42px;
    }

    .samei-cta {
        display: none;
    }

    .samei-mobile-panel {
        top: 76px;
        max-height: calc(100vh - 76px);
    }

    .samei-hero {
        min-height: auto;
    }

    .samei-hero-grid {
        padding: 42px 0 64px;
        gap: 28px;
    }

    .samei-hero h1 {
        font-size: clamp(40px, 14vw, 58px);
    }

    .samei-hero p {
        font-size: 16px;
    }

    .samei-hero-actions {
        align-items: stretch;
    }

    .samei-btn {
        width: 100%;
    }

    .samei-hero-showcase {
        grid-template-columns: 1fr;
        grid-template-rows: 360px 220px 220px;
    }

    .samei-card-large {
        grid-row: auto;
    }

    .samei-service-strip {
        margin-top: -24px;
    }

    .samei-service-grid,
    .samei-category-grid,
    .samei-modern-site.woocommerce ul.products,
    .samei-product-shell ul.products,
    .samei-footer-grid {
        grid-template-columns: 1fr;
    }

    .samei-service-grid > div {
        border-right: 0;
        border-bottom: 1px solid var(--samei-border);
    }

    .samei-service-grid > div:last-child {
        border-bottom: 0;
    }

    .samei-section {
        padding: 62px 0;
    }

    .samei-section-heading-row {
        display: block;
    }

    .samei-category-card {
        min-height: 220px;
    }

    .samei-about-media::before {
        display: none;
    }

    .samei-product-shell {
        padding: 14px;
    }

    .samei-cta-banner {
        padding: 58px 0;
    }
}


/* =========================
   POLISH V2
   ========================= */

:root {
    --samei-soft: #f6eee4;
    --samei-soft-2: #fcf8f2;
    --samei-card: #ffffff;
    --samei-gold: #d2a25c;
    --samei-gold-dark: #9f6f2f;
    --samei-coffee: #2b1d15;
    --samei-border: rgba(51, 34, 22, 0.12);
    --samei-shadow: 0 20px 55px rgba(35, 23, 13, 0.12);
}

body.samei-modern-site {
    background:
        radial-gradient(circle at top left, rgba(210,162,92,0.08), transparent 22%),
        radial-gradient(circle at bottom right, rgba(124,87,50,0.08), transparent 20%),
        linear-gradient(180deg, #fffdf9 0%, #fbf6ef 100%);
}

.samei-site-header {
    background: linear-gradient(180deg, rgba(252, 248, 242, 0.92), rgba(252, 248, 242, 0.72));
    border-bottom: 0;
    backdrop-filter: blur(20px);
}

.samei-topbar {
    background: linear-gradient(90deg, #b97745 0%, #d59055 45%, #d6a867 100%);
    color: rgba(255,255,255,0.94);
}

.samei-topbar a {
    color: rgba(255,255,255,0.95);
}

.samei-mainbar {
    padding: 12px 0 14px;
}

.samei-mainbar-inner {
    min-height: 72px;
    padding: 0 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,243,235,0.94));
    border: 1px solid rgba(95, 72, 47, 0.1);
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(58, 39, 26, 0.08);
}

.samei-site-header.samei-is-scrolled .samei-mainbar-inner {
    box-shadow: 0 18px 46px rgba(58, 39, 26, 0.12);
}

.samei-brand {
    padding: 10px 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffaf5, #f4eadf);
    border: 1px solid rgba(95, 72, 47, 0.09);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
}

.samei-brand img {
    max-width: 172px;
    max-height: 52px;
}

.samei-nav > li > a {
    color: #3b2a1e;
    font-size: 14px;
    font-weight: 720;
}

.samei-nav > li:hover > a,
.samei-nav > li.current-menu-item > a,
.samei-nav > li.current_page_item > a {
    color: #fff;
    background: linear-gradient(135deg, var(--samei-gold), #b78343);
}

.samei-icon-link {
    background: #fffaf6;
    border-color: rgba(72, 51, 34, 0.1);
}

.samei-hero {
    min-height: 700px;
    background:
        radial-gradient(circle at top left, rgba(210, 162, 92, 0.28), transparent 36%),
        radial-gradient(circle at 85% 15%, rgba(226, 190, 141, 0.35), transparent 22%),
        linear-gradient(135deg, #fff7ef 0%, #f7eee2 42%, #ecd9c4 100%);
}

.samei-hero::before {
    background: rgba(125, 88, 54, 0.09);
}

.samei-hero-showcase .samei-showcase-card,
.samei-about-media,
.samei-category-card,
.samei-product-shell,
.samei-content-card {
    box-shadow: 0 18px 48px rgba(36, 24, 14, 0.08);
}

.samei-service-strip {
    background: linear-gradient(90deg, #2b1d15 0%, #3a271d 100%);
    color: #fff;
}

.samei-service-grid div {
    border-color: rgba(255,255,255,0.12);
}

.samei-categories-section {
    background: linear-gradient(180deg, #fffdf9 0%, #fbf5ed 100%);
}

.samei-about-section {
    background: transparent;
}

.samei-products-section {
    background: linear-gradient(180deg, #fbf4eb 0%, #fffdf9 100%);
}

.samei-modern-site.woocommerce ul.products li.product,
.samei-product-shell ul.products li.product {
    border-radius: 24px;
    padding: 14px !important;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.samei-modern-site.woocommerce ul.products li.product:hover,
.samei-product-shell ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(36, 24, 14, 0.1);
}

.samei-modern-site.woocommerce ul.products li.product img,
.samei-product-shell ul.products li.product img {
    border-radius: 22px;
}

.samei-cta-banner {
    background: linear-gradient(135deg, #2b1d15 0%, #5a3926 100%);
}

.samei-footer {
    background: linear-gradient(180deg, #21140f 0%, #120b08 100%);
    color: rgba(255,255,255,0.86);
}

.samei-footer-grid {
    padding: 60px 0 52px;
}

.samei-footer-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #fffaf5, #f4e7d8);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
    margin-bottom: 18px;
}

.samei-footer-logo {
    max-width: 165px;
    max-height: 62px;
    margin-bottom: 0;
    filter: none;
    display: block;
}

.samei-footer h3 {
    color: #f5d7a4;
}

.samei-footer a,
.samei-footer p,
.samei-footer-bottom {
    color: rgba(255,255,255,0.82);
}

.samei-footer p {
    color: rgba(255,255,255,0.78);
}

.samei-footer a:hover {
    color: #f5d7a4;
}

.samei-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.11);
}

@media (max-width: 1080px) {
    .samei-mainbar {
        padding: 10px 0 12px;
    }

    .samei-mainbar-inner {
        min-height: 68px;
        padding: 0 14px;
    }

    .samei-brand {
        padding: 8px 12px;
    }
}

@media (max-width: 767px) {
    .samei-site-header {
        background: linear-gradient(180deg, rgba(252,248,242,0.96), rgba(252,248,242,0.82));
    }

    .samei-mainbar-inner {
        border-radius: 20px;
    }

    .samei-brand img {
        max-width: 148px;
        max-height: 46px;
    }

    .samei-hero {
        min-height: auto;
    }

    .samei-product-shell {
        padding: 18px;
        border-radius: 22px;
    }

    .samei-modern-site.woocommerce ul.products li.product,
    .samei-product-shell ul.products li.product {
        border-radius: 22px;
    }

    .samei-modern-site.woocommerce ul.products li.product img,
    .samei-product-shell ul.products li.product img {
        border-radius: 18px;
    }

    .samei-footer-logo-shell {
        padding: 10px 14px;
    }
}

/* =========================
   PREMIUM VERSION 3
   ========================= */
:root {
    --samei-header-height: 132px;
    --samei-cream: #fff8ef;
    --samei-sand: #ead4bc;
    --samei-caramel: #c78345;
    --samei-caramel-dark: #8a562e;
    --samei-brown-rich: #24150f;
}

.samei-mainbar-inner {
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 239, 0.94)),
        radial-gradient(circle at 20% 0%, rgba(210, 162, 92, 0.18), transparent 30%);
    border-radius: 28px;
}

.samei-nav {
    gap: 8px;
}

.samei-nav > li > a {
    position: relative;
    overflow: hidden;
    min-height: 42px;
    padding: 9px 15px;
}

.samei-nav > li > a::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.26), transparent 55%);
    transition: opacity 0.2s ease;
}

.samei-nav > li:hover > a::before,
.samei-nav > li.current-menu-item > a::before,
.samei-nav > li.current_page_item > a::before {
    opacity: 1;
}

.samei-catalog-link {
    background: #fff6ec;
    color: var(--samei-caramel-dark);
    border-color: rgba(199, 131, 69, 0.22);
}

.samei-hero-premium {
    min-height: 690px;
    background:
        radial-gradient(circle at 8% 12%, rgba(224, 178, 115, 0.32), transparent 25%),
        radial-gradient(circle at 92% 16%, rgba(119, 72, 38, 0.16), transparent 30%),
        linear-gradient(135deg, #fffaf4 0%, #f4e4d2 52%, #dfc0a0 100%);
}

.samei-hero-premium::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(91, 58, 34, 0.12) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.22;
    pointer-events: none;
}

.samei-hero-grid-premium {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.05fr);
    min-height: 690px;
    padding: 56px 0 76px;
    z-index: 1;
}

.samei-hero-premium h1 {
    font-size: clamp(46px, 6.3vw, 82px);
    letter-spacing: -0.06em;
}

.samei-hero-premium p {
    color: #5e4c3e;
}

.samei-hero-visual {
    position: relative;
    min-height: 550px;
    border-radius: 36px;
    overflow: hidden;
    background: #e9d8c7;
    box-shadow: 0 30px 80px rgba(52, 31, 18, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.42);
    isolation: isolate;
}

.samei-hero-visual::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 28px;
    z-index: 3;
    pointer-events: none;
}

.samei-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.035);
    transition: opacity 0.7s ease, transform 1.1s ease;
}

.samei-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

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

.samei-hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 9, 6, 0.04) 12%, rgba(14, 9, 6, 0.68) 100%);
}

.samei-slide-caption {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 30px;
    z-index: 4;
    color: #fff;
}

.samei-slide-caption strong {
    display: block;
    color: #fff;
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: -0.045em;
    line-height: 1;
}

.samei-slide-caption span {
    display: block;
    margin-top: 8px;
    color: rgba(255,255,255,0.84);
    font-size: 15px;
}

.samei-slider-dots {
    position: absolute;
    z-index: 5;
    right: 28px;
    bottom: 34px;
    display: flex;
    gap: 8px;
}

.samei-slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.42);
    transition: width 0.25s ease, background 0.25s ease;
}

.samei-slider-dots span.is-active {
    width: 28px;
    background: #fff;
}

.samei-hero-badge {
    position: absolute;
    z-index: 6;
    top: 24px;
    left: 24px;
    max-width: 230px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 250, 245, 0.92);
    border: 1px solid rgba(255,255,255,0.62);
    box-shadow: 0 18px 42px rgba(28, 16, 9, 0.18);
    backdrop-filter: blur(12px);
}

.samei-hero-badge strong,
.samei-hero-badge span {
    display: block;
}

.samei-hero-badge strong {
    color: var(--samei-brown-rich);
    font-size: 15px;
    font-weight: 850;
}

.samei-hero-badge span {
    margin-top: 4px;
    color: #6f5745;
    font-size: 12px;
    line-height: 1.35;
}

.samei-home-menu-section {
    position: relative;
    z-index: 3;
    margin-top: -38px;
}

.samei-home-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    padding: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(111, 79, 52, 0.11);
    box-shadow: 0 24px 70px rgba(48, 29, 16, 0.13);
    backdrop-filter: blur(16px);
}

.samei-home-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    color: #3d2a1e;
    background: #fff7ee;
    border: 1px solid rgba(199, 131, 69, 0.16);
    font-size: 14px;
    font-weight: 760;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.samei-home-menu a:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--samei-gold), var(--samei-caramel-dark));
    color: #fff;
}

.samei-service-strip-premium {
    margin-top: 34px;
}

.samei-service-strip-premium .samei-service-grid {
    background: linear-gradient(135deg, #fffdf9, #fff3e5);
}

.samei-service-strip-premium .samei-service-grid strong {
    color: var(--samei-brown-rich);
}

.samei-categories-premium {
    padding-top: 76px;
}

.samei-category-grid {
    gap: 22px;
}

.samei-category-card {
    min-height: 280px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 22px 60px rgba(47, 29, 16, 0.13);
}

.samei-category-card:nth-child(1),
.samei-category-card:nth-child(4) {
    min-height: 330px;
}

.samei-category-img {
    opacity: 1;
}

.samei-category-glow {
    position: absolute;
    inset: auto 18px 18px 18px;
    height: 42%;
    z-index: 1;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(198, 126, 63, 0.26));
    filter: blur(16px);
    pointer-events: none;
}

.samei-category-card::after {
    background: linear-gradient(180deg, rgba(24, 15, 9, 0.03) 20%, rgba(24, 15, 9, 0.78));
}

.samei-category-content {
    padding: 26px;
}

.samei-category-content strong {
    font-size: 25px;
}

.samei-category-content em {
    display: inline-flex;
    margin-top: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.24);
    color: #fff;
    font-style: normal;
    font-size: 12px;
    font-weight: 800;
}

.samei-about-premium {
    background:
        radial-gradient(circle at 10% 15%, rgba(210, 162, 92, 0.09), transparent 28%),
        #fffdf9;
}

.samei-about-premium .samei-about-media::before {
    background: linear-gradient(135deg, #f2dac1, #d5a978);
}

.samei-products-premium .samei-product-shell {
    padding: 28px;
    border-radius: 34px;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(12px);
}

.samei-modern-site.woocommerce ul.products li.product,
.samei-product-shell ul.products li.product {
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff, #fffaf5);
}

.samei-modern-site.woocommerce ul.products li.product img,
.samei-product-shell ul.products li.product img {
    border-radius: 24px;
}

.samei-modern-site.woocommerce ul.products li.product .button:hover,
.samei-product-shell ul.products li.product .button:hover {
    background: linear-gradient(135deg, var(--samei-gold), var(--samei-caramel-dark)) !important;
}

.samei-cta-premium {
    background:
        radial-gradient(circle at 10% 10%, rgba(255,255,255,0.12), transparent 24%),
        linear-gradient(135deg, #24150f 0%, #6a3f24 100%);
}

@media (max-width: 1080px) {
    :root {
        --samei-header-height: 92px;
    }

    .samei-hero-grid-premium {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 60px;
    }

    .samei-hero-visual {
        min-height: 480px;
    }

    .samei-catalog-link {
        display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --samei-header-height: 88px;
    }

    .samei-mainbar-inner {
        border-radius: 18px;
    }

    .samei-hero-grid-premium {
        padding: 42px 0 58px;
        gap: 28px;
    }

    .samei-hero-premium h1 {
        font-size: clamp(38px, 11vw, 52px);
    }

    .samei-hero-visual {
        min-height: 380px;
        border-radius: 28px;
    }

    .samei-hero-visual::before {
        inset: 10px;
        border-radius: 22px;
    }

    .samei-slide-caption {
        left: 20px;
        right: 20px;
        bottom: 24px;
    }

    .samei-slider-dots {
        right: 20px;
        bottom: 26px;
    }

    .samei-hero-badge {
        top: 16px;
        left: 16px;
        max-width: 190px;
        padding: 12px 14px;
    }

    .samei-home-menu-section {
        margin-top: -24px;
    }

    .samei-home-menu {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 12px;
        border-radius: 22px;
        scrollbar-width: none;
    }

    .samei-home-menu::-webkit-scrollbar {
        display: none;
    }

    .samei-home-menu a {
        flex: 0 0 auto;
        min-height: 40px;
        padding: 0 15px;
    }

    .samei-service-strip-premium {
        margin-top: 24px;
    }

    .samei-category-card,
    .samei-category-card:nth-child(1),
    .samei-category-card:nth-child(4) {
        min-height: 255px;
        border-radius: 26px;
    }

    .samei-products-premium .samei-product-shell {
        padding: 18px;
        border-radius: 26px;
    }
}


/* =========================
   ELEGANT POLISH V4
   ========================= */

:root {
    --samei-logo-accent: #d79d69;
    --samei-logo-accent-dark: #c5864d;
    --samei-logo-accent-soft: #efd8c0;
    --samei-brown-rich: #261811;
}

body.samei-modern-site,
body.samei-modern-site p,
body.samei-modern-site a,
body.samei-modern-site li,
body.samei-modern-site span,
body.samei-modern-site button,
body.samei-modern-site input,
body.samei-modern-site textarea,
body.samei-modern-site select {
    font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.samei-modern-site h1,
body.samei-modern-site h2,
body.samei-modern-site h3,
body.samei-modern-site h4,
body.samei-modern-site h5,
body.samei-modern-site h6,
.samei-page-title h1,
.samei-hero h1,
.samei-cta-banner h2,
.samei-about-copy h2,
.samei-section-heading h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    letter-spacing: -0.025em;
    font-weight: 700;
}

.samei-topbar {
    background: linear-gradient(90deg, #d9a06d 0%, #c9894d 52%, #e0b384 100%);
    color: rgba(255,255,255,0.97);
}

.samei-topbar span,
.samei-topbar a {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.samei-mainbar-inner {
    background:
        linear-gradient(125deg, rgba(255,255,255,0.99), rgba(252,244,236,0.96)),
        radial-gradient(circle at 15% 0%, rgba(215,157,105,0.16), transparent 28%);
    border: 1px solid rgba(182, 133, 85, 0.16);
    box-shadow: 0 16px 42px rgba(56, 37, 24, 0.08);
}

.samei-brand {
    padding: 8px 10px;
    border-radius: 22px;
    background: linear-gradient(180deg, #fbf3ea 0%, #f2e4d4 100%);
    border: 1px solid rgba(197, 134, 77, 0.16);
    box-shadow: 0 10px 24px rgba(75, 50, 31, 0.08), inset 0 1px 0 rgba(255,255,255,0.82);
}

.samei-brand img {
    max-width: 170px;
    max-height: 58px;
    background: #fff;
    border-radius: 14px;
    padding: 5px 10px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.03);
}

.samei-nav > li > a,
.samei-catalog-link,
.samei-icon-link,
.samei-cta,
.samei-btn,
.samei-footer-cta,
.samei-mobile-whatsapp {
    font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
}

.samei-nav > li > a {
    color: #34241a;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.samei-nav > li:hover > a,
.samei-nav > li.current-menu-item > a,
.samei-nav > li.current_page_item > a {
    background: linear-gradient(135deg, var(--samei-logo-accent-dark), var(--samei-logo-accent));
    color: #fff;
}

.samei-catalog-link {
    background: linear-gradient(180deg, #fff9f1, #f8ede2);
    color: #8d5e33;
    border-color: rgba(201, 137, 77, 0.28);
}

.samei-cta,
.samei-btn-primary,
.samei-footer-cta,
.samei-mobile-whatsapp {
    background: linear-gradient(135deg, var(--samei-logo-accent-dark), var(--samei-logo-accent));
    box-shadow: 0 12px 28px rgba(197, 134, 77, 0.28);
}

.samei-hero p,
.samei-about-copy p,
.samei-section-heading p,
.samei-content-card p,
.samei-content-card li,
.samei-category-card small {
    font-size: 16px;
    line-height: 1.78;
    color: #59473c;
}

.samei-section-heading h2,
.samei-about-copy h2,
.samei-cta-banner h2,
.samei-page-title h1 {
    font-size: clamp(40px, 4.6vw, 64px);
}

.samei-footer {
    background: linear-gradient(180deg, #1f120d 0%, #100907 100%);
    color: rgba(255,255,255,0.88);
}

.samei-footer-logo-shell {
    background: linear-gradient(180deg, #fbf5ee 0%, #f1e1d0 100%);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 22px;
    padding: 10px 12px;
}

.samei-footer-logo {
    background: #fff;
    border-radius: 16px;
    padding: 8px 12px;
    max-width: 170px;
    max-height: 64px;
}

.samei-footer,
.samei-footer div,
.samei-footer p,
.samei-footer a,
.samei-footer li,
.samei-footer span {
    color: rgba(255,255,255,0.84) !important;
}

.samei-footer h3 {
    color: #f4d4a6 !important;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.samei-footer p {
    color: rgba(255,255,255,0.8) !important;
}

.samei-footer a:hover,
.samei-footer .samei-footer-cta:hover {
    color: #fff !important;
}

.samei-footer-bottom,
.samei-footer-bottom .samei-wrap {
    color: rgba(255,255,255,0.72) !important;
}

@media (max-width: 1080px) {
    :root {
        --samei-header-height: 120px;
    }

    .samei-nav > li > a {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    :root {
        --samei-header-height: 102px;
    }

    .samei-brand {
        padding: 6px 8px;
        border-radius: 18px;
    }

    .samei-brand img {
        max-width: 146px;
        max-height: 52px;
        padding: 4px 8px;
    }

    .samei-footer h3 {
        font-size: 24px;
    }
}


/* =========================
   TRANSPARENT LOGO + CREDIT V5
   ========================= */

.samei-brand {
    background: linear-gradient(180deg, rgba(251,243,234,0.72) 0%, rgba(242,228,212,0.58) 100%);
    border-color: rgba(197, 134, 77, 0.12);
}

.samei-brand img {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.samei-footer-logo-shell {
    padding: 4px 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.samei-footer-logo {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: block;
}

.samei-footer-bottom {
    padding: 16px 0 18px;
}

.samei-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.samei-footer-credit,
.samei-footer-credit a {
    color: rgba(255,255,255,0.78) !important;
    font-size: 13px;
}

.samei-footer-credit a:hover {
    color: #f4d4a6 !important;
}

@media (max-width: 767px) {
    .samei-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}


/* =========================
   MENU ICONS + PAYMENTS V6
   ========================= */

::selection {
    background: rgba(201, 137, 77, 0.88);
    color: #fff;
}

::-moz-selection {
    background: rgba(201, 137, 77, 0.88);
    color: #fff;
}

.samei-nav > li > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.samei-menu-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    font-size: 13px;
    line-height: 1;
    opacity: 0.9;
    transform: translateY(-1px);
}

.samei-catalog-link {
    background: rgba(201, 137, 77, 0.12);
    border: 0 !important;
    box-shadow: none !important;
    color: #8d5e33;
    padding: 0 16px;
}

.samei-catalog-link:hover {
    background: linear-gradient(135deg, var(--samei-logo-accent-dark), var(--samei-logo-accent));
    color: #fff;
}

.samei-origin-chip {
    background: rgba(201, 137, 77, 0.16);
    color: #714726;
    border-radius: 999px;
    padding: 10px 14px !important;
}

.samei-origin-chip strong {
    font-size: 16px;
}

.samei-payment-strip {
    padding: 28px 0 18px;
    background: linear-gradient(180deg, #fffdf9 0%, #fbf5ee 100%);
}

.samei-payment-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr) auto;
    gap: 22px;
    align-items: center;
    background: linear-gradient(135deg, #fff 0%, #fbf2e8 100%);
    border: 1px solid rgba(201, 137, 77, 0.14);
    border-radius: 28px;
    padding: 24px 28px;
    box-shadow: 0 16px 42px rgba(53, 35, 21, 0.06);
}

.samei-payment-copy h3 {
    margin: 6px 0 8px;
    font-size: 34px;
    color: #2f1f17;
}

.samei-payment-copy p {
    margin: 0;
    color: #645144;
    line-height: 1.7;
}

.samei-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.samei-payment-methods span,
.samei-payment-origin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 0 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(201, 137, 77, 0.18);
    color: #7d5530;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(74, 48, 30, 0.05);
}

.samei-payment-origin {
    background: linear-gradient(135deg, rgba(201,137,77,0.12), rgba(224,179,132,0.2));
    white-space: nowrap;
}

.samei-footer-credit,
.samei-footer-credit a {
    color: rgba(255,255,255,0.8) !important;
}

@media (max-width: 1080px) {
    .samei-payment-grid {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .samei-payment-origin {
        justify-self: flex-start;
    }
}

@media (max-width: 767px) {
    .samei-menu-icon {
        width: 16px;
        font-size: 12px;
    }

    .samei-origin-chip {
        width: 100%;
        justify-content: center;
    }

    .samei-payment-strip {
        padding: 22px 0 12px;
    }

    .samei-payment-grid {
        border-radius: 22px;
        padding: 20px 18px;
        gap: 16px;
    }

    .samei-payment-copy h3 {
        font-size: 28px;
    }
}
