:root {
    --bg: #eff3fa;
    --bg-soft: #e4ebf5;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --ink: #0f172f;
    --muted: #61708b;
    --line: rgba(15, 23, 47, 0.08);
    --brand: #173a72;
    --brand-deep: #0c1d3f;
    --brand-soft: rgba(23, 58, 114, 0.08);
    --accent: #efb24b;
    --accent-soft: rgba(239, 178, 75, 0.16);
    --whatsapp: #1ba651;
    --whatsapp-deep: #11783b;
    --dark: #071224;
    --dark-soft: #10233e;
    --success: #1f9650;
    --warning: #c38c2e;
    --danger: #ad463e;
    --shadow: 0 34px 90px rgba(8, 21, 48, 0.12);
    --shadow-soft: 0 22px 60px rgba(8, 21, 48, 0.08);
    --shadow-card: 0 14px 36px rgba(8, 21, 48, 0.08);
}

body {
    background:
        radial-gradient(circle at top left, rgba(23, 58, 114, 0.14), transparent 25%),
        radial-gradient(circle at top right, rgba(239, 178, 75, 0.14), transparent 18%),
        linear-gradient(180deg, #f8fbff 0%, #eef2f8 42%, #f7f9fd 100%);
    color: var(--ink);
}

.site-shell {
    overflow: clip;
}

.section {
    position: relative;
    padding: 84px 0;
}

.section--soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(230, 237, 247, 0.74));
}

.section--dark {
    background:
        radial-gradient(circle at top left, rgba(239, 178, 75, 0.12), transparent 26%),
        linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
}

.text-link {
    color: var(--brand);
}

.text-link:hover {
    color: var(--brand-deep);
}

.button {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
}

.button--primary,
.header-search button {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.button--secondary {
    background: linear-gradient(135deg, #efb24b, #d6962f);
    color: #1f1607;
}

.button--ghost {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(15, 23, 47, 0.08);
}

.button--soft {
    background: rgba(23, 58, 114, 0.08);
    color: var(--brand);
    border: 1px solid rgba(23, 58, 114, 0.12);
}

.button--compact {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.92rem;
}

.button--whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
    color: #f3fff7;
    box-shadow: 0 18px 38px rgba(27, 166, 81, 0.24);
}

.button--whatsapp:hover {
    box-shadow: 0 20px 44px rgba(27, 166, 81, 0.3);
}

.topbar--premium {
    background: linear-gradient(90deg, rgba(7, 18, 36, 0.98), rgba(16, 35, 62, 0.98));
    padding: 12px 0;
}

.topbar__copy {
    display: grid;
    gap: 10px;
}

.topbar__copy p {
    margin: 0;
}

.topbar__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.84rem;
    font-weight: 700;
}

.topbar__trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(27, 166, 81, 0.16);
    border: 1px solid rgba(27, 166, 81, 0.32);
    color: #f0fff5;
    font-weight: 800;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(248, 251, 255, 0.82);
    border-bottom: 1px solid rgba(15, 23, 47, 0.05);
}

.header-main--premium {
    padding: 22px 0;
}

.brand__mark {
    background:
        radial-gradient(circle at top left, rgba(239, 178, 75, 0.58), transparent 42%),
        linear-gradient(135deg, #1d447e, #091529);
}

.brand__text strong {
    color: var(--brand-deep);
}

.brand__text small {
    max-width: 30ch;
}

.header-search {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 47, 0.08);
    box-shadow: var(--shadow-soft);
}

.header-search input {
    color: var(--ink);
}

.header-pill,
.mobile-toggle,
.category-pill-bar a,
.category-strip__inner a,
.filter-card,
.product-card,
.service-card,
.testimonial-card,
.review-card,
.info-card,
.faq-item,
.support-panel,
.form-card,
.summary-card,
.tab-shell,
.product-gallery__main,
.product-gallery__thumbs,
.cart-table,
.newsletter-banner,
.footer-cta,
.success-card,
.empty-state,
.metric-card {
    border-color: rgba(15, 23, 47, 0.06);
}

.header-pill {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(15, 23, 47, 0.06);
}

.header-pill strong {
    color: var(--brand-deep);
}

.header-pill--whatsapp {
    background: rgba(27, 166, 81, 0.1);
    color: var(--whatsapp-deep);
}

.mobile-toggle {
    background: rgba(255, 255, 255, 0.94);
}

.nav-wrap {
    background: rgba(255, 255, 255, 0.74);
    border-top: 1px solid rgba(15, 23, 47, 0.05);
}

.site-nav a:hover,
.site-nav a.is-active,
.category-pill-bar a:hover,
.category-pill-bar a.is-active {
    background: rgba(23, 58, 114, 0.08);
    color: var(--brand);
}

.header-support {
    color: var(--whatsapp-deep);
    font-weight: 800;
}

.category-strip {
    background: rgba(255, 255, 255, 0.72);
}

.category-strip__inner a:hover {
    background: rgba(23, 58, 114, 0.08);
    color: var(--brand);
}

.breadcrumbs {
    margin-bottom: 26px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 0.92rem;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs li + li::before {
    content: "/";
    color: rgba(97, 112, 139, 0.55);
}

.page-hero {
    padding: 40px 0 18px;
}

.page-hero__panel,
.page-hero__panel--visual,
.premium-hero__copy,
.visual-card,
.hero-visual-panel,
.product-summary--premium,
.product-gallery--premium .product-gallery__main,
.product-gallery--premium .product-gallery__thumbs {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 47, 0.06);
    border-radius: 34px;
    box-shadow: var(--shadow);
}

.page-hero__panel {
    padding: 34px;
}

.page-hero__panel--visual {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 26px;
    padding: 22px;
    align-items: stretch;
}

.page-hero__copy h1 {
    margin: 0;
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 0.98;
}

.page-hero__copy p {
    margin-top: 18px;
    font-size: 1.02rem;
}

.page-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.metric-card {
    padding: 24px 22px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(246, 249, 255, 0.96), rgba(237, 243, 252, 0.92));
    box-shadow: var(--shadow-card);
}

.metric-card strong {
    display: block;
    font-size: 1.1rem;
    color: var(--brand-deep);
}

.metric-card span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.92rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-visual-panel {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: 0;
}

.hero-visual-panel::after,
.visual-card::after,
.category-tile::after,
.lifestyle-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 18, 36, 0.02), rgba(7, 18, 36, 0.08));
    pointer-events: none;
}

.hero-visual-panel img,
.visual-card img,
.category-tile img,
.lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.premium-hero {
    padding: 54px 0 34px;
}

.premium-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
    gap: 28px;
    align-items: stretch;
}

.premium-hero__copy {
    position: relative;
    overflow: hidden;
    padding: 40px;
}

.premium-hero__copy::before {
    content: "";
    position: absolute;
    inset: -160px auto auto -120px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(23, 58, 114, 0.16), transparent 66%);
}

.premium-hero__copy::after {
    content: "";
    position: absolute;
    inset: auto -120px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(27, 166, 81, 0.12), transparent 68%);
}

.premium-hero__copy h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 11ch;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.3rem);
    line-height: 0.97;
    letter-spacing: -0.06em;
}

.premium-hero__copy p {
    position: relative;
    z-index: 1;
    margin: 22px 0 0;
    max-width: 62ch;
    color: var(--muted);
    font-size: 1.06rem;
}

.premium-hero__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.premium-hero__note {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    color: var(--brand);
    font-weight: 800;
}

.premium-hero__trust {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.premium-hero__trust div,
.why-card,
.support-ribbon,
.whatsapp-band,
.info-card--premium,
.lifestyle-card__content,
.visual-chip {
    background: rgba(245, 249, 255, 0.8);
    border: 1px solid rgba(15, 23, 47, 0.06);
    border-radius: 24px;
}

.premium-hero__trust div {
    padding: 16px;
}

.premium-hero__trust strong {
    display: block;
    margin-bottom: 6px;
}

.premium-hero__trust span {
    color: var(--muted);
    font-size: 0.92rem;
}

.premium-hero__visuals {
    display: grid;
    gap: 18px;
}

.visual-card {
    position: relative;
    overflow: hidden;
}

.visual-card--primary {
    min-height: 380px;
}

.visual-card--secondary {
    min-height: 220px;
}

.visual-card__content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(7, 18, 36, 0.12), rgba(7, 18, 36, 0.82));
    color: #f7f9fd;
}

.visual-card__content h2 {
    margin: 6px 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.9rem);
    line-height: 1.04;
}

.visual-card-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.visual-chip {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--brand-deep);
    font-weight: 800;
}

.category-showcase,
.premium-services,
.premium-faq-preview {
    position: relative;
}

.category-tiles,
.why-grid,
.lifestyle-grid,
.info-grid,
.service-grid,
.testimonial-grid,
.review-grid {
    display: grid;
    gap: 18px;
}

.category-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-tile,
.lifestyle-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    min-height: 320px;
    box-shadow: var(--shadow-soft);
}

.category-tile__overlay {
    position: absolute;
    inset: auto 18px 18px 18px;
    z-index: 1;
    padding: 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(7, 18, 36, 0.12), rgba(7, 18, 36, 0.84));
    color: #f8fbff;
}

.category-tile__overlay span {
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 800;
}

.category-tile__overlay strong {
    display: block;
    font-size: 1.05rem;
    line-height: 1.45;
}

.why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-card {
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.why-card__icon {
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(23, 58, 114, 0.08);
    color: var(--brand);
    margin-bottom: 18px;
}

.why-card h3,
.lifestyle-card__content h3 {
    margin: 0 0 10px;
    font-family: var(--font-display);
    font-size: 1.34rem;
    line-height: 1.08;
}

.why-card p,
.lifestyle-card__content p {
    margin: 0;
    color: var(--muted);
}

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

.product-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 246, 253, 0.94));
    border: 1px solid rgba(15, 23, 47, 0.06);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:hover,
.service-card:hover,
.lifestyle-card:hover,
.category-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-card:hover {
    border-color: rgba(23, 58, 114, 0.12);
}

.product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 0.96;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(239, 178, 75, 0.2), transparent 28%),
        linear-gradient(180deg, #ffffff, #eaf1fc);
}

.product-card__media img {
    position: absolute;
    inset: 10%;
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.26s ease;
}

.product-card:hover .product-card__media img {
    transform: scale(1.04);
}

.product-card__quick,
.product-chip {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.product-card__quick {
    top: 18px;
    right: 18px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--brand-deep);
    box-shadow: 0 8px 22px rgba(15, 23, 47, 0.1);
}

.product-chip {
    left: 18px;
    top: 18px;
    padding: 8px 12px;
}

.product-chip--accent {
    background: rgba(239, 178, 75, 0.18);
    color: #85570d;
}

.product-chip--dark {
    background: rgba(12, 29, 63, 0.9);
    color: #eff4ff;
}

.product-chip--soft {
    background: rgba(23, 58, 114, 0.1);
    color: var(--brand);
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
}

.product-card__topline,
.service-card__topline,
.product-meta-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-card h3,
.service-card h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.26rem;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.product-card__subtitle,
.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.96rem;
}

.product-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: auto;
}

.product-card__price strong,
.product-price-line strong {
    font-size: 1.42rem;
    color: var(--brand-deep);
}

.product-card__price span,
.product-price-line span {
    color: rgba(97, 112, 139, 0.8);
    text-decoration: line-through;
}

.product-card__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 10px;
}

.product-card__actions form,
.service-card__actions,
.quantity-form {
    display: contents;
}

.icon-button {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(15, 23, 47, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--brand);
    transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.icon-button:hover,
.icon-button.is-active {
    background: rgba(23, 58, 114, 0.1);
    color: var(--brand-deep);
    transform: translateY(-1px);
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.stock-badge.is-in {
    background: rgba(31, 150, 80, 0.12);
    color: var(--success);
}

.stock-badge.is-low {
    background: rgba(195, 140, 46, 0.14);
    color: var(--warning);
}

.stock-badge.is-out {
    background: rgba(173, 70, 62, 0.12);
    color: var(--danger);
}

.service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 246, 253, 0.94));
    border: 1px solid rgba(15, 23, 47, 0.06);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.service-card__media {
    aspect-ratio: 1 / 0.78;
    background:
        radial-gradient(circle at top right, rgba(239, 178, 75, 0.18), transparent 24%),
        linear-gradient(180deg, #ffffff, #eaf1fc);
}

.service-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
}

.service-card__meta {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.9rem;
}

.service-card__actions {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card,
.support-panel,
.form-card,
.summary-card,
.faq-item,
.testimonial-card,
.review-card,
.success-card,
.empty-state {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 47, 0.06);
    border-radius: 28px;
    box-shadow: var(--shadow-card);
}

.info-card {
    padding: 24px;
}

.info-card strong,
.support-panel h2,
.support-panel h3,
.summary-card h2,
.success-card h2,
.empty-state h3 {
    margin: 0;
    font-family: var(--font-display);
    letter-spacing: -0.04em;
}

.info-card p,
.support-panel p,
.notice-card p,
.summary-card p,
.success-card p,
.empty-state p {
    margin: 10px 0 0;
    color: var(--muted);
}

.split-grid,
.split-showcase,
.product-layout--premium,
.product-support-layout,
.cart-layout,
.checkout-layout,
.catalog-shell {
    display: grid;
    gap: 24px;
}

.split-grid,
.split-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.support-panel,
.form-card,
.summary-card {
    padding: 28px;
}

.support-panel--compact {
    margin-top: 18px;
}

.support-ribbon,
.whatsapp-band,
.newsletter-banner,
.footer-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 28px 30px;
}

.support-ribbon {
    margin-top: 28px;
}

.whatsapp-band {
    color: #eef5ff;
    background:
        radial-gradient(circle at top left, rgba(239, 178, 75, 0.16), transparent 28%),
        linear-gradient(135deg, #081326 0%, #123158 100%);
    box-shadow: var(--shadow);
}

.whatsapp-band .eyebrow,
.section--dark .whatsapp-band .eyebrow {
    color: rgba(239, 245, 255, 0.72);
}

.whatsapp-band h2,
.support-ribbon h3,
.newsletter-banner h2,
.footer-cta h2 {
    margin: 6px 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
}

.whatsapp-band p,
.support-ribbon p,
.newsletter-banner p,
.footer-cta p {
    margin: 12px 0 0;
    color: var(--muted);
}

.whatsapp-band p {
    color: rgba(239, 245, 255, 0.76);
}

.whatsapp-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.lifestyle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lifestyle-card__content {
    position: absolute;
    inset: auto 18px 18px 18px;
    z-index: 1;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
}

.lifestyle-card__content span {
    display: block;
    margin-bottom: 10px;
    color: var(--brand);
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.74rem;
}

.testimonial-grid,
.review-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.testimonial-card,
.review-card {
    padding: 24px;
}

.testimonial-card p,
.review-card p {
    margin: 14px 0;
    color: var(--ink);
}

.testimonial-card span,
.review-card span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.stars {
    display: flex;
    gap: 4px;
    color: rgba(97, 112, 139, 0.3);
}

.star.is-filled {
    color: #f0b24c;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item p {
    margin: 0;
    padding: 0 24px 22px;
    color: var(--muted);
}

.newsletter-banner {
    background:
        radial-gradient(circle at top right, rgba(239, 178, 75, 0.16), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(240, 245, 252, 0.94));
}

.newsletter-form--wide {
    max-width: 460px;
}

.newsletter-form input,
.newsletter-form select,
.newsletter-form textarea,
.form-field input,
.form-field select,
.form-field textarea,
.filter-group input,
.filter-group select {
    width: 100%;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 47, 0.08);
    background: rgba(255, 255, 255, 0.95);
    color: var(--ink);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.newsletter-form textarea,
.form-field textarea,
.filter-group textarea {
    min-height: 130px;
    padding: 14px 16px;
    resize: vertical;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-card {
    display: grid;
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label,
.filter-group label {
    font-weight: 800;
    color: var(--brand-deep);
}

.detail-list,
.spec-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.detail-list li,
.spec-list li {
    position: relative;
    padding-left: 18px;
}

.detail-list li::before,
.spec-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

.catalog-shell {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    align-items: start;
}

.catalog-topline {
    margin-bottom: 18px;
}

.catalog-topline strong {
    display: block;
    font-size: 1.1rem;
    color: var(--brand-deep);
}

.catalog-topline p {
    margin: 6px 0 0;
    color: var(--muted);
}

.category-pill-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.category-pill-bar a {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(15, 23, 47, 0.06);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    font-weight: 800;
    box-shadow: var(--shadow-card);
}

.filter-card {
    display: grid;
    gap: 18px;
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
}

.filter-card__header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: start;
}

.filter-card__header h3 {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.filter-card__icon {
    width: 46px;
    height: 46px;
    display: inline-grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(23, 58, 114, 0.08);
    color: var(--brand);
}

.filter-group {
    display: grid;
    gap: 8px;
}

.filter-group--inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.filter-card__actions {
    display: grid;
    gap: 10px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.pagination a {
    min-width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 23, 47, 0.08);
    box-shadow: var(--shadow-card);
    font-weight: 800;
}

.pagination a.is-current {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #f5f9ff;
}

.empty-state {
    padding: 34px;
    text-align: center;
}

.product-layout--premium {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    align-items: start;
}

.product-gallery--premium {
    display: grid;
    gap: 18px;
}

.product-gallery__main {
    aspect-ratio: 1 / 0.9;
    display: grid;
    place-items: center;
    padding: 40px;
    background:
        radial-gradient(circle at top right, rgba(239, 178, 75, 0.18), transparent 22%),
        linear-gradient(180deg, #ffffff, #eaf1fc);
}

.product-gallery__main img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.88);
}

.product-thumb {
    border: 1px solid rgba(15, 23, 47, 0.08);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #edf3fb);
    padding: 12px;
}

.product-thumb img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.product-summary--premium {
    padding: 32px;
}

.product-summary--premium h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: 0.98;
}

.product-summary__text {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1rem;
}

.product-price-line {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin-top: 22px;
}

.product-price-line em {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(239, 178, 75, 0.18);
    color: #8b5b12;
    font-style: normal;
    font-weight: 800;
}

.product-meta-line {
    margin-top: 16px;
}

.product-actions--premium {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.quantity-control {
    display: inline-grid;
    grid-template-columns: 48px minmax(90px, 1fr) 48px;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 47, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
}

.quantity-control button,
.quantity-control input {
    min-height: 52px;
    border: 0;
    background: transparent;
    text-align: center;
}

.quantity-form .button {
    width: 100%;
}

.notice-stack {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.notice-card {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(245, 249, 255, 0.82);
    border: 1px solid rgba(15, 23, 47, 0.06);
}

.notice-card strong {
    display: block;
    color: var(--brand-deep);
}

.product-support-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    align-items: start;
}

.tab-shell {
    padding: 26px;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.tab-buttons button {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(15, 23, 47, 0.08);
    border-radius: 999px;
    background: rgba(244, 248, 255, 0.9);
    color: var(--muted);
    font-weight: 800;
}

.tab-buttons button.is-active {
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
    color: #f3f7ff;
}

.tab-panel {
    display: none;
    color: var(--muted);
}

.tab-panel.is-active {
    display: block;
}

.tab-panel p {
    margin: 0 0 12px;
}

.cart-layout,
.checkout-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    align-items: start;
}

.cart-table {
    display: grid;
    gap: 14px;
    padding: 26px;
}

.cart-row {
    display: grid;
    grid-template-columns: minmax(260px, 1.8fr) minmax(90px, 0.7fr) minmax(110px, 0.8fr) minmax(90px, 0.7fr) minmax(90px, 0.7fr);
    gap: 14px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(15, 23, 47, 0.06);
}

.cart-row:last-of-type {
    border-bottom: 0;
}

.cart-row__product {
    display: flex;
    gap: 14px;
    align-items: center;
}

.cart-row__product img {
    width: 88px;
    height: 88px;
    object-fit: contain;
    padding: 12px;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff, #edf3fb);
}

.cart-row__product strong,
.summary-product strong,
.summary-line strong {
    color: var(--brand-deep);
}

.cart-row__product span {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.cart-row__qty input {
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 47, 0.08);
    text-align: center;
}

.cart-row__remove {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
}

.summary-card {
    display: grid;
    gap: 14px;
}

.summary-product,
.summary-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: start;
}

.summary-line--total {
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 47, 0.08);
    font-size: 1.08rem;
}

.payment-options {
    display: grid;
    gap: 10px;
}

.payment-options label {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 47, 0.08);
    background: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.success-card {
    padding: 32px;
    text-align: center;
}

.success-card strong {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
}

.process-list {
    display: grid;
    gap: 14px;
}

.timeline-item {
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 23, 47, 0.06);
    box-shadow: var(--shadow-card);
}

.timeline-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    letter-spacing: -0.03em;
}

.timeline-item p {
    margin: 8px 0 0;
    color: var(--muted);
}

.site-footer {
    background:
        radial-gradient(circle at top left, rgba(239, 178, 75, 0.08), transparent 22%),
        linear-gradient(180deg, #0d1b35 0%, #091224 100%);
    color: #eef4ff;
    padding-top: 26px;
}

.footer-cta {
    margin-bottom: 26px;
    background:
        radial-gradient(circle at top right, rgba(239, 178, 75, 0.12), transparent 24%),
        linear-gradient(135deg, rgba(17, 40, 75, 0.96), rgba(9, 18, 36, 0.96));
    color: #eef4ff;
}

.footer-cta .eyebrow,
.footer-cta p {
    color: rgba(238, 244, 255, 0.76);
}

.footer-grid {
    gap: 32px;
}

.footer-copy,
.footer-contact,
.footer-bottom p,
.footer-links a {
    color: rgba(238, 244, 255, 0.72);
}

.footer-contact {
    display: grid;
    gap: 8px;
    margin-top: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(238, 244, 255, 0.08);
}

.footer-links a:hover,
.footer-grid a:hover {
    color: #ffffff;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 55;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-deep));
    color: #f2fff6;
    font-weight: 800;
    box-shadow: 0 22px 50px rgba(27, 166, 81, 0.28);
}

.whatsapp-float span {
    white-space: nowrap;
}

@media (max-width: 1199px) {
    .product-grid,
    .service-grid,
    .testimonial-grid,
    .review-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .why-grid,
    .info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .premium-hero__grid,
    .page-hero__panel--visual,
    .product-layout--premium,
    .product-support-layout {
        grid-template-columns: 1fr;
    }

    .page-hero__metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .section {
        padding: 72px 0;
    }

    .site-header {
        position: relative;
    }

    .premium-hero {
        padding-top: 34px;
    }

    .category-tiles,
    .lifestyle-grid,
    .split-grid,
    .split-showcase,
    .cart-layout,
    .checkout-layout,
    .catalog-shell {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .service-grid,
    .testimonial-grid,
    .review-grid,
    .product-grid--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-hero__metrics,
    .premium-hero__trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .support-ribbon,
    .whatsapp-band,
    .newsletter-banner,
    .footer-cta {
        grid-template-columns: 1fr;
    }

    .whatsapp-band__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767px) {
    .section {
        padding: 62px 0;
    }

    .header-main--premium {
        padding: 16px 0;
    }

    .nav-wrap {
        display: none;
    }

    .nav-wrap.is-open {
        display: block;
    }

    .nav-wrap__inner {
        display: grid;
        gap: 14px;
        padding: 14px 0 18px;
    }

    .site-nav {
        display: grid;
        gap: 10px;
    }

    .site-nav a {
        justify-content: flex-start;
    }

    .topbar__inner,
    .premium-hero__actions,
    .hero-actions,
    .product-actions--premium {
        display: grid;
    }

    .topbar__cta,
    .premium-hero__actions .button,
    .hero-actions .button,
    .product-actions--premium .button {
        width: 100%;
    }

    .premium-hero__copy,
    .page-hero__panel,
    .product-summary--premium,
    .tab-shell,
    .support-panel,
    .form-card,
    .summary-card,
    .cart-table {
        padding: 22px;
        border-radius: 26px;
    }

    .premium-hero__copy h1 {
        max-width: none;
        font-size: clamp(2.5rem, 10vw, 4.2rem);
    }

    .product-grid,
    .service-grid,
    .testimonial-grid,
    .review-grid,
    .product-grid--two,
    .info-grid,
    .why-grid,
    .page-hero__metrics,
    .premium-hero__trust,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .visual-card-stack {
        grid-template-columns: 1fr;
    }

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

    .product-card__actions form:last-child {
        display: block;
    }

    .product-card__actions form:last-child .icon-button {
        width: 100%;
        height: 44px;
    }

    .product-gallery__thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .cart-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cart-row__qty input {
        max-width: 120px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 52px;
        padding: 0 16px;
    }
}

@media (max-width: 479px) {
    .container {
        width: min(1280px, calc(100vw - 28px));
    }

    .section {
        padding: 54px 0;
    }

    .page-hero {
        padding-top: 26px;
    }

    .premium-hero__copy,
    .page-hero__panel,
    .product-summary--premium,
    .tab-shell,
    .support-panel,
    .form-card,
    .summary-card,
    .cart-table,
    .info-card,
    .review-card,
    .testimonial-card,
    .empty-state,
    .success-card {
        padding: 20px;
        border-radius: 24px;
    }

    .product-card__body,
    .service-card__body {
        padding: 18px;
    }

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

    .product-card__actions form,
    .quantity-form {
        display: block;
    }

    .support-ribbon,
    .whatsapp-band,
    .newsletter-banner,
    .footer-cta {
        padding: 22px;
        border-radius: 26px;
    }

    .whatsapp-float span {
        display: none;
    }

    .whatsapp-float {
        width: 56px;
        height: 56px;
        justify-content: center;
        padding: 0;
    }
}
