:root {
    --blue: #1C4178;
    --blue2: #0e294f;
    --white: #fff;
    --black: #111827;
    --muted: #667085;
    --light: #f3f7fc;
    --line: #dbe5f0;
    --shadow: 0 18px 55px rgba(28, 65, 120, .14)
}



* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Manrope, Arial, sans-serif;
    color: var(--black);
    background: #fff;
    line-height: 1.65
}

img {
    max-width: 100%;
    display: block
}

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

.container {
    width: min(1180px, 92%);
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid transparent;
    transition: .3s
}

.site-header.scrolled {
    border-color: var(--line);
    box-shadow: 0 8px 30px rgba(15, 43, 82, .08)
}

.nav-wrap {
    height: 88px;
    display: flex;
    align-items: center;
    gap: 30px
}

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

.brand img {
    width: 135px;
    height: 68px;
    object-fit: contain
}

.main-nav {
    display: flex;
    gap: 26px;
    margin-left: auto;
    align-items: center
}

.main-nav a {
    font-weight: 700;
    font-size: 14px;
    position: relative
}

.main-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -9px;
    height: 2px;
    background: var(--blue);
    transition: .25s
}

.main-nav a:hover:after,
.main-nav a.active:after {
    right: 0
}

.menu-toggle {
    display: none;
    margin-left: auto;
    background: none;
    border: 0;
    padding: 8px
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--blue);
    margin: 5px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 21px;
    border-radius: 10px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .25s
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 10px 28px rgba(28, 65, 120, .22)
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--blue2)
}

.btn-outline {
    border-color: var(--blue);
    color: var(--blue);
    background: #fff
}

.btn-white {
    background: #fff;
    color: var(--blue)
}

.btn-whatsapp {
    background: #25d366 !important;
    color: #fff !important;
    box-shadow: 0 10px 28px rgba(37, 211, 102, .25);
    border: none;
}

.btn-whatsapp:hover {
    background: #1fae55 !important;
    transform: translateY(-2px);
}

/* Ensure banner-specific CTA uses same green and white text */
.banner .btn-whatsapp {
    background: #25d366 !important;
    color: #fff !important;
    white-space: nowrap;
}

.full {
    width: 100%
}

.hero {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .88) 50%, rgba(255, 255, 255, .18) 78%), linear-gradient(135deg, #eef4fb, #d7e3f3)
}

.hero:before {
    content: "";
    position: absolute;
    right: -70px;
    top: 60px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0 24%, #dce8f5 25% 45%, #b9cce5 46% 65%, transparent 66%);
    opacity: .85
}

.hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2
}

.eyebrow {
    color: var(--blue);
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 800
}

.eyebrow.light {
    color: #dce9f8
}

.hero h1,
.page-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1.04;
    margin: 15px 0 20px;
    color: #10233f
}

.hero h1 span {
    color: var(--blue)
}

.hero p {
    font-size: 18px;
    color: #465263;
    max-width: 620px
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 30px
}

.floating-card {
    position: absolute;
    right: 6%;
    bottom: 45px;
    background: rgba(255, 255, 255, .9);
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    animation: float 5s ease-in-out infinite
}

.floating-card strong {
    display: block;
    color: var(--blue)
}

@keyframes float {
    50% {
        transform: translateY(-12px)
    }
}

.stats {
    margin-top: -38px;
    position: relative;
    z-index: 4
}

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

.stat {
    padding: 27px;
    text-align: center;
    border-right: 1px solid var(--line)
}

.stat:last-child {
    border: 0
}

.stat b {
    font-size: 30px;
    color: var(--blue);
    display: block
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: rgba(28, 65, 120, 0.08);
    color: #1c4178;
}

.stat-icon svg {
    width: 20px;
    height: 20px;
}

.stat-icon-heart {
    font-size: 20px;
    line-height: 1;
}

.stat span {
    display: block;
    color: #53627a;
    font-size: 15px;
    margin-top: 6px;
}

.section {
    padding: 90px 0
}

.section-light {
    background: var(--light)
}

.section-head {
    max-width: 720px;
    margin-bottom: 42px
}

.section-head.center {
    text-align: center;
    margin: 0 auto 42px
}

.section h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.15;
    margin: 10px 0 18px;
    color: #10233f
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.visual-panel {
    min-height: 460px;
    border-radius: 26px;
    background: linear-gradient(145deg, #f8fbff, #dfe9f6);
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    padding: 50px
}

.visual-panel-image {
    padding: 0;
    overflow: hidden;
}

.visual-panel-image > img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
}

.cards-3,
.cards-4 {
    display: grid;
    gap: 24px
}

.cards-3 {
    grid-template-columns: repeat(3, 1fr)
}

.cards-4 {
    grid-template-columns: repeat(4, 1fr)
}

.info-card,
.category-card,
.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(28, 65, 120, .07);
    transition: .3s
}

.info-card {
    padding: 30px
}

.info-card:hover,
.category-card:hover,
.product-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.icon-dot {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--blue);
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 800;
    margin-bottom: 18px
}

.category-card img,
.product-card img {
    aspect-ratio: 1/1;
    object-fit: contain;
    width: 100%;
    background: #eef3f9;
    padding: 26px
}

.card-body {
    padding: 22px
}

.card-body h3 {
    margin: 0 0 10px;
    color: #10233f
}

.card-body p {
    color: var(--muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.text-link {
    color: var(--blue);
    font-weight: 800
}

.banner {
    background: linear-gradient(120deg, var(--blue2), var(--blue));
    color: #fff;
    border-radius: 28px;
    padding: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.banner h2 {
    color: #fff;
    margin: 0
}

.page-hero {
    padding: 105px 0 75px;
    background: linear-gradient(120deg, #f3f7fc, #fff);
    position: relative;
    overflow: hidden
}

.contact-page .page-hero:after {
    display: none; /* removed decorative mark: was showing a blurred favicon */
}

.breadcrumb {
    color: var(--blue);
    font-weight: 800
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px
}

.mission-card {
    padding: 38px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line)
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.size-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 12px 0
}

.size-tags span {
    font-size: 12px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #edf3fb;
    color: var(--blue);
    font-weight: 700
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px
}

.contact-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow)
}

.contact-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--line)
}

form label {
    display: block;
    font-weight: 800;
    margin: 12px 0 7px
}

form input,
form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ced8e6;
    border-radius: 10px;
    font: inherit;
    outline: none
}

form textarea {
    min-height: 140px;
    resize: vertical
}

form button {
    margin-top: 16px
}

.alert {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 16px
}

.alert.success {
    background: #eaf8ef;
    color: #216e39
}

.alert.error {
    background: #fff1f1;
    color: #9a2020
}

.empty-state {
    text-align: center;
    padding: 60px;
    border: 1px dashed var(--line);
    border-radius: 20px
}

.site-footer {
    background: #0d1f38;
    color: #d9e3f0;
    padding: 65px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px
}

.footer-logo {
    width: 135px;

    margin-bottom: 16px
}

.site-footer h4 {
    color: #fff
}

.site-footer a,
.site-footer span {
    display: block;
    margin: 8px 0;
    color: #c8d4e4
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 35px;
    padding-top: 18px;
    display: flex;
    justify-content: space-between
}

.floating-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: transparent;
    padding: 0;
    overflow: hidden;
    z-index: 999;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .25)
}

.floating-wa img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%
}

.reveal {
    opacity: 1;
    transform: none;
    transition: .7s
}

.reveal.revealed {
    opacity: 1;
    transform: none
}

.admin-wrap {
    min-height: 100vh;
    background: #f2f6fb;
    padding: 36px
}

.admin-card {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow)
}

.admin-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.table {
    width: 100%;
    border-collapse: collapse
}

.table th,
.table td {
    padding: 12px;
    border-bottom: 1px solid var(--line);
    text-align: left
}

.thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px
}

.login-box {
    max-width: 460px;
    margin: 10vh auto;
    background: #fff;
    padding: 34px;
    border-radius: 18px;
    box-shadow: var(--shadow)
}

@media(max-width:900px) {
    .nav-cta {
        display: none
    }

    .menu-toggle {
        display: block
    }

    .main-nav {
        position: absolute;
        top: 88px;
        left: 4%;
        right: 4%;
        display: none;
        flex-direction: column;
        background: #fff;
        padding: 20px;
        border-radius: 14px;
        box-shadow: var(--shadow);
        align-items: flex-start
    }

    .main-nav.open {
        display: flex
    }

    .hero {
        min-height: 590px
    }

    .floating-card {
        display: none
    }

    .stats-grid,
    .cards-4,
    .products-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .grid-2,
    .contact-grid,
    .footer-grid,
    .admin-grid {
        grid-template-columns: 1fr
    }

    .cards-3 {
        grid-template-columns: 1fr
    }

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

    .mission-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 767px) {
    .floating-wa {
        left: 22px !important;
        right: auto !important;
    }
}

@media(max-width:560px) {
    .nav-wrap {
        height: 76px
    }

    .brand img {
        width: 110px;
        height: 58px
    }

    .hero {
        min-height: 560px
    }

    .hero h1 {
        font-size: 42px
    }

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

    .stats {
        margin-top: 0
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr
    }

    .cards-4,
    .products-grid {
        grid-template-columns: 1fr
    }

    .stat {
        padding: 18px 8px
    }

    .section {
        padding: 65px 0
    }

    .page-hero {
        padding: 75px 0 52px
    }

    .footer-bottom {
        flex-direction: column
    }

    .admin-wrap {
        padding: 16px
    }
}


.visual-panel-3d {
    position: relative;
    overflow: hidden;
    padding: 20px;
    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(255, 255, 255, 0.98),
            rgba(222, 233, 247, 0.88) 58%,
            rgba(195, 213, 235, 0.9) 100%
        );
}

.visual-panel-3d::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(28, 65, 120, 0.08);
    filter: blur(10px);
    pointer-events: none;
}

.acora-model {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 430px;
    background: transparent;
    --poster-color: transparent;
}

.model-hint {
    position: absolute;
    right: 20px;
    bottom: 18px;
    z-index: 4;
    padding: 8px 13px;
    color: #1c4178;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(28, 65, 120, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 24px rgba(28, 65, 120, 0.1);
    backdrop-filter: blur(10px);
    pointer-events: none;
}

@media (max-width: 900px) {
    .acora-model {
        height: 390px;
    }
}

@media (max-width: 560px) {
    .visual-panel-3d {
        min-height: 360px;
        padding: 10px;
    }

    .acora-model {
        height: 340px;
    }

    .model-hint {
        right: 14px;
        bottom: 14px;
    }
}
