:root {
    --sword-primary: #000000;
    --sword-secondary: #ffffff;
    --sword-accent: #ff6900;
    --surface-muted: #f5f5f5;
    --surface-soft: #ecefed;
    --text-primary: #111111;
    --text-muted: #5b6572;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Roboto", sans-serif;
    background: #ffffff;
    color: var(--text-primary);
}

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

.container {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.app-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background: var(--sword-primary);
    color: var(--sword-secondary);
}

.site-header-desktop {
    display: none;
    padding: 1rem 0;
}

.site-header-mobile {
    display: block;
    padding: 1rem 0;
}

.header-row,
.mobile-header-row,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-brand {
    display: flex;
    align-items: center;
}

.header-logo-desktop {
    display: block;
    height: 4rem;
    width: auto;
    object-fit: contain;
}

.header-logo-mobile {
    display: block;
    height: 3rem;
    width: auto;
    object-fit: contain;
}

.header-nav {
    flex: 1;
}

.header-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.header-nav-link,
.mobile-menu-link {
    color: var(--sword-secondary);
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-nav-link:hover,
.mobile-menu-link:hover,
.header-nav-link.is-active,
.mobile-menu-link.is-active {
    color: var(--sword-accent);
}

.header-language-cell,
.mobile-language-cell {
    display: flex;
    align-items: center;
}

.mobile-header-actions {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.mobile-menu-button {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--sword-secondary);
    cursor: pointer;
}

.mobile-menu-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.mobile-menu {
    margin-top: 1rem;
}

.mobile-menu[hidden] {
    display: none;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.mobile-menu-link {
    display: block;
}

.storefront-actions {
    display: none;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.storefront-actions-mobile {
    display: grid;
    justify-items: stretch;
    gap: 0.75rem;
}

.storefront-action-link,
.storefront-action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.5rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: var(--sword-secondary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.storefront-action-form {
    margin: 0;
}

.storefront-action-button {
    cursor: pointer;
}

.storefront-action-link:hover,
.storefront-action-button:hover {
    border-color: rgba(255, 105, 0, 0.7);
    color: var(--sword-accent);
}

.storefront-action-link-accent {
    background: var(--sword-accent);
    border-color: var(--sword-accent);
    color: #111111;
}

.storefront-action-link-accent:hover {
    background: #ff7d26;
    color: #111111;
}

.storefront-action-link-cart {
    position: relative;
}

.storefront-cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    font-size: 0.75rem;
    font-weight: 700;
}

.brand-block {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: var(--sword-accent);
    color: var(--sword-primary);
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.brand-title,
.footer-title {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.brand-subtitle,
.footer-copy,
.footer-meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.shell-nav {
    display: flex;
    gap: 1rem;
    font-weight: 600;
}

.shell-nav a:hover {
    color: var(--sword-accent);
}

.site-main {
    flex: 1;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown summary {
    list-style: none;
}

.language-dropdown summary::-webkit-details-marker {
    display: none;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    background: #ffffff;
    color: #111111;
    border: 1px solid rgba(17, 17, 17, 0.12);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    user-select: none;
}

.language-toggle .language-flag {
    font-size: 1rem;
    line-height: 1;
}

.language-toggle .language-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.language-toggle .language-code {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.125rem 0.375rem;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.08);
}

.language-toggle .language-caret {
    width: 0.875rem;
    height: 0.875rem;
    opacity: 0.7;
}

.language-menu {
    position: absolute;
    top: calc(100% + 0.625rem);
    right: 0;
    min-width: 13.75rem;
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 0.875rem;
    padding: 0.375rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
    display: none;
    max-height: 17.5rem;
    overflow-y: auto;
}

.language-dropdown[open] .language-menu {
    display: block;
}

.language-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0.625rem;
    border-radius: 0.625rem;
    color: #111111;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.language-item:hover,
.language-item:focus-visible {
    background: #f3f4f6;
    transform: translateX(2px);
    outline: none;
}

.language-item.is-active {
    background: #111111;
    color: #ffffff;
}

.hero-panel {
    padding: 4.5rem 0 3rem;
    background:
        radial-gradient(circle at top right, rgba(255, 105, 0, 0.16), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
}

.hero-grid,
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 105, 0, 0.12);
    color: var(--sword-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-title {
    margin: 0 0 1rem;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.hero-copy,
.info-card p,
.status-list {
    color: var(--text-muted);
    line-height: 1.7;
}

.hero-panel-compact {
    padding-top: 3rem;
}

.hero-title-compact {
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 1.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    font-weight: 700;
}

.button-primary {
    background: var(--sword-accent);
    color: var(--sword-primary);
}

.button-ghost {
    background: var(--surface-soft);
    color: var(--text-primary);
}

.status-card,
.info-card {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
}

.status-card h2,
.info-card h2 {
    margin-top: 0;
    font-family: "Poppins", sans-serif;
}

.status-list {
    margin: 0;
    padding-left: 1.2rem;
}

.info-panel {
    padding: 0 0 4rem;
}

.site-footer {
    background: var(--surface-soft);
    padding: 4rem 0 1.5rem;
}

.site-footer .footer-copy,
.site-footer .footer-meta {
    color: var(--text-muted);
}

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

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-contact {
    align-items: flex-start;
}

.footer-logo-wrap {
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 5rem;
    height: 5rem;
    object-fit: contain;
}

.footer-contact-list {
    color: var(--text-muted);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 0.75rem;
    line-height: 1.6;
}

.footer-contact-item a:hover,
.footer-links-list a:hover,
.footer-social-link:hover {
    color: var(--sword-accent);
}

.footer-contact-icon {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.footer-heading {
    margin: 0 0 1rem;
    font-family: "Poppins", sans-serif;
    font-size: 1.125rem;
}

.footer-links {
    align-items: center;
}

.footer-links-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
    text-align: center;
    color: var(--text-muted);
}

.footer-social {
    align-items: center;
}

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

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    color: var(--text-primary);
    background: rgba(17, 17, 17, 0.04);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
    background: rgba(255, 105, 0, 0.12);
}

.footer-social-link svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.footer-copyright {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.92rem;
}

body .whatsapp-float {
    position: fixed !important;
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    left: auto !important;
    top: auto !important;
    z-index: 60 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 3.5rem !important;
    min-width: 3.5rem !important;
    max-width: 3.5rem !important;
    height: 3.5rem !important;
    min-height: 3.5rem !important;
    max-height: 3.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    box-sizing: border-box !important;
    background: #25d366 !important;
    color: #ffffff !important;
    font-size: 0 !important;
    line-height: 0 !important;
    text-decoration: none !important;
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.28) !important;
    overflow: hidden !important;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease !important;
}

body .whatsapp-float:hover {
    background: #1fbe5d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 22px 44px rgba(37, 211, 102, 0.32) !important;
}

body .whatsapp-float:focus-visible {
    outline: 2px solid rgba(37, 211, 102, 0.45) !important;
    outline-offset: 4px !important;
}

body .whatsapp-float > svg {
    display: block !important;
    width: 2.35rem !important;
    height: 2.35rem !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
}

.page-stub {
    max-width: 54rem;
}

.packaging-guide {
    display: grid;
    gap: 0.9rem;
    padding: 1.75rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 1.75rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.packaging-label {
    font-family: "Poppins", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    color: #ff6900;
}

.packaging-heading {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.packaging-barcode {
    margin: 0;
    padding: 0.85rem 1rem;
    border-radius: 1rem;
    background: rgba(15, 23, 42, 0.04);
    color: #475569;
    font-size: 0.96rem;
    line-height: 1.6;
}

.packaging-barcode strong {
    color: #0f172a;
}

.packaging-divider {
    margin: 0.2rem 0 0;
    background: rgba(15, 23, 42, 0.1);
}

.packaging-section-title {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 1.15rem;
    line-height: 1.3;
}

.packaging-list {
    margin: 0;
    list-style: none;
}

.packaging-row {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
    gap: 1rem;
    align-items: start;
    padding: 0.8rem 0;
    border-bottom: 1px dashed rgba(148, 163, 184, 0.45);
}

.packaging-list .packaging-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.packaging-key {
    display: block;
    font-family: "Poppins", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.5;
    color: #0f172a;
}

.packaging-value {
    display: block;
    font-size: 0.98rem;
    font-weight: 500;
    line-height: 1.6;
    color: #475569;
    text-align: right;
}

.packaging-subsection {
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.packaging-subtitle {
    margin: 0 0 0.4rem;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    color: #0f172a;
}

@media (max-width: 800px) {
    .hero-grid,
    .info-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links,
    .footer-social {
        align-items: flex-start;
    }

    .footer-links-list {
        text-align: left;
    }

    body .whatsapp-float {
        right: 1rem !important;
        bottom: 1rem !important;
        width: 3.25rem !important;
        min-width: 3.25rem !important;
        max-width: 3.25rem !important;
        height: 3.25rem !important;
        min-height: 3.25rem !important;
        max-height: 3.25rem !important;
    }

    .packaging-guide {
        padding: 1.25rem;
    }

    .packaging-row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }

    .packaging-value {
        text-align: left;
    }
}

@media (min-width: 801px) {
    .site-header-desktop {
        display: block;
    }

    .site-header-mobile {
        display: none;
    }

    .storefront-actions {
        display: flex;
    }
}
