* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg: #eef6f7;
    --surface: #ffffff;
    --surface-strong: #dff1f2;
    --line: #c8dde0;
    --text: #163336;
    --muted: #567478;
    --primary: #0b8f88;
    --primary-dark: #066962;
    --accent: #f2a65a;
    --shadow: 0 18px 45px rgba(12, 62, 66, 0.12);
}

html {
    scroll-behavior: smooth;
}

.logo-clickja {
    display: flex;
    align-items: center;
    gap: 14px;
}

body {
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(11, 143, 136, 0.16), transparent 28%),
        linear-gradient(180deg, #f6fbfb 0%, var(--bg) 100%);
    color: var(--text);
}

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

main,
.topbar {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0 12px;
    gap: 24px;
}

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

.brand-badge {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-family: "Sora", sans-serif;
    font-weight: 800;
    letter-spacing: 0.08em;
    box-shadow: var(--shadow);
}

.brand strong,
.nav-cta,
.button,
h1,
h2,
h3 {
    font-family: "Sora", sans-serif;
}



.brand p {
    color: var(--muted);
    font-size: 0.92rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.nav a {
    color: var(--muted);
    font-weight: 600;
}

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(11, 143, 136, 0.12);
    color: var(--primary);
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    padding: 42px 0 28px;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.category-card,
.product-card,
.feature-strip article,
.contact-card {
    border: 1px solid rgba(200, 221, 224, 0.9);
    box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel {
    border-radius: 32px;
    padding: 36px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(11, 143, 136, 0.1);
    color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

h1 {
    font-size: clamp(2.4rem, 5vw, 4.6rem);
    line-height: 1.04;
    margin-bottom: 20px;
}

.hero-copy p {
    max-width: 62ch;
    font-size: 1.07rem;
    line-height: 1.7;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.product-meta a:hover,
.nav a:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.button-secondary {
    background: #fff;
    color: var(--text);
    border: 1px solid var(--line);
}

.hero-points {
    list-style: none;
    display: grid;
    gap: 12px;
    color: var(--text);
}

.hero-points li::before {
    content: "+";
    color: var(--accent);
    font-weight: 800;
    margin-right: 10px;
}

.hero-panel {
    display: grid;
    gap: 18px;
    background:
        linear-gradient(180deg, rgba(11, 143, 136, 0.08), rgba(255, 255, 255, 0.95)),
        #fff;
}

.hero-visual,
.product-media {
    overflow: hidden;
    background: linear-gradient(180deg, #f7fcfc, #e6f3f4);
}

.hero-visual {
    border-radius: 26px;
    min-height: 260px;
    border: 1px solid rgba(200, 221, 224, 0.9);
}

.hero-image,
.product-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit:fill;
}

.status-card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(160deg, #0d5d63 0%, #0b8f88 100%);
    color: #fff;
}

.status-label,
.product-tag {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-card strong,
.status-price {
    display: block;
}

.status-card strong {
    margin-bottom: 8px;
    font-size: 1.35rem;
}

.status-card p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.status-price {
    margin-top: 16px;
    font-size: 1.3rem;
    font-weight: 800;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.metric-grid article {
    padding: 20px;
    border-radius: 22px;
    background: var(--surface);
}

.metric-grid strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1.45rem;
}

.metric-grid span,
.category-card p,
.product-card p,
.feature-strip p,
.contact-card p {
    color: var(--muted);
    line-height: 1.6;
}

.section {
    padding: 40px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.15;
}

.category-grid,
.product-grid,
.feature-strip {
    display: grid;
    gap: 18px;
}

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

.shop-categories {
    scroll-margin-top: 18px;
}

.store-panel {
    overflow: hidden;
    border: 1px solid rgba(200, 221, 224, 0.9);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.store-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
}

.store-tabs a {
    display: flex;
    min-height: 64px;
    align-items: center;
    justify-content: center;
    border-bottom: 3px solid transparent;
    color: var(--muted);
    font-weight: 800;
}

.store-tabs a.active {
    border-color: #df4e43;
    color: #c8483d;
}

.category-list {
    padding: 14px 18px 18px;
}

.category-row {
    background: #fff;
}

.category-row + .category-row {
    border-top: 1px solid #e5eef0;
}

.category-row summary {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto 24px;
    gap: 16px;
    align-items: center;
    min-height: 92px;
    padding: 12px 0;
    cursor: pointer;
    list-style: none;
}

.category-row summary::-webkit-details-marker {
    display: none;
}

.category-thumb {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 12px;
    background: #f4f8f8;
    border: 1px solid #e2eeee;
}

.category-thumb img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}

.category-cube::before {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, transparent 48%, rgba(255, 255, 255, 0.45) 50%),
        linear-gradient(135deg, #fb6a52, #e03d2e);
    box-shadow: inset -10px -10px 0 rgba(143, 32, 25, 0.16);
}

.category-main {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.category-title {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 800;
}

.category-spec {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.45;
}

.category-count,
.category-arrow {
    color: #8a9da0;
    font-weight: 700;
}

.category-arrow {
    font-size: 2rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.category-row[open] .category-arrow {
    transform: rotate(90deg);
}

.category-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    
}

.category-details button {
    padding: 8px 11px;
    border: none;
    border-radius: 8px;
    background-color: rgba(11, 143, 136, 0.09);
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
}

.product-grid {
    display: grid;
    gap: 18px;
    margin-top: 15px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.category-card,
.product-card,
.feature-strip article {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
}

.category-card,
.feature-strip article {
    padding: 24px;
}

.product-card {
    padding: 0;
    overflow: hidden;
}

.product-media {
    aspect-ratio: 3 / 3;
    border-bottom: 1px solid var(--line);
}

 


.product-card .product-tag,
.product-card h3,
.product-card p,
.product-card .product-meta {
    margin-left: 24px;
    margin-right: 24px;
}

.product-card .product-tag {
    margin-top: 20px;
}

.product-card .product-meta {
    margin-bottom: 24px;
}

.category-card h3,
.product-card h3,
.feature-strip h3 {
    margin-bottom: 12px;
    font-size: 1.12rem;
}

.product-tag {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(242, 166, 90, 0.16);
    color: #9a5b19;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.product-meta strong {
    font-size: 1.2rem;
}

.product-meta a {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(11, 143, 136, 0.1);
    color: var(--primary-dark);
    font-weight: 800;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.feature-strip {
    grid-template-columns: repeat(3, 1fr);
}

.contact-card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: center;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(223, 241, 242, 0.95));
}

.contact-card strong {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

@media (max-width: 980px) {
    .hero,
    .category-grid,
    .product-grid,
    .feature-strip,
    .contact-card {
        grid-template-columns: 1fr;
    }

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

    .hero-copy,
    .hero-panel {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    main,
    .topbar {
        width: min(100% - 20px, 1180px);
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-actions,
    .nav {
        width: 100%;
    }

    .button,
    .nav-cta,
    .product-meta a {
        width: 100%;
    }

    .metric-grid {
        grid-template-columns: 1fr;
    }

    .store-tabs a {
        min-height: 56px;
        font-size: 0.95rem;
    }

    .category-list {
        padding: 8px 12px 14px;
    }

    .category-row summary {
        grid-template-columns: 58px minmax(0, 1fr) auto 18px;
        gap: 10px;
        min-height: 82px;
    }

    .category-thumb {
        width: 52px;
        height: 52px;
    }

    .category-title {
        font-size: 0.98rem;
    }

    .category-spec {
        font-size: 0.8rem;
    }

    .category-details {
        padding-left: 68px;
    }

    .product-meta {
        flex-direction: column;
        align-items: stretch;
    }
}

.WhatsApp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: #25D366;
    color: white;
    font-weight: 700;
    transition: 0.3s;
}

.WhatsApp-button:hover {
    background: #1ea952;
    transform: translateY(-2px);
}