/* ==================== RESET & BASE ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0284C7;
    --primary-dark: #075985;
    --primary-light: #0EA5E9;
    --accent: #06B6D4;
    --dark: #0C4A6E;
    --text: #1E293B;
    --gray: #64748B;
    --light-gray: #94A3B8;
    --bg: #F8FAFC;
    --bg-soft: #F0F9FF;
    --border: #E2E8F0;
    --white: #FFFFFF;
    --success: #10B981;
    --whatsapp: #25D366;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ==================== HEADER ==================== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    /*width: 48px;*/
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.logo-tag {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.nav a {
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav a:hover, .nav a.active {
    color: var(--primary);
}

.btn-order {
    background: var(--whatsapp);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}

.btn-order:hover {
    background: #1FAD52;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-dark);
}

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, #0EA5E9 0%, #06B6D4 100%);
    color: var(--white);
    padding: 80px 20px 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.15;
    max-width: 800px;
    letter-spacing: -1px;
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 700px;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-dark) !important;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-outline {
    background: transparent;
    color: var(--white) !important;
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

/* ==================== PAGE HEADER ==================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.page-header p {
    opacity: 0.9;
    font-size: 16px;
}

.breadcrumb {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 12px;
}

.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { text-decoration: underline; }

/* ==================== SECTIONS ==================== */
.section {
    padding: 70px 0;
}

.section-bg {
    background: var(--bg-soft);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .label {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
}

.section-title h2 {
    font-size: 34px;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.5px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.2;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 14px auto 0;
    font-size: 16px;
}

/* ==================== FEATURES (Service highlights) ==================== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.feature {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.25s;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(2, 132, 199, 0.1);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: var(--bg-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 26px;
}

.feature h3 {
    font-size: 17px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.feature p {
    font-size: 14px;
    color: var(--gray);
}

/* ==================== CATEGORY CARDS ==================== */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.cat-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(2, 132, 199, 0.15);
}

.cat-img {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-soft), #DBEAFE);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cat-img img {
    max-height: 170px;
    max-width: 80%;
    object-fit: contain;
}

.cat-body {
    padding: 24px;
}

.cat-body h3 {
    font-size: 20px;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 8px;
}

.cat-body p {
    color: var(--gray);
    margin-bottom: 18px;
    font-size: 14px;
}

.cat-body a {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cat-body a:hover {
    gap: 10px;
}

/* ==================== PRODUCT GRID ==================== */
.product-brand {
    margin-bottom: 50px;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--bg-soft);
}

.brand-header img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    padding: 6px;
    background: var(--white);
    border: 1px solid var(--border);
}

.brand-header h2 {
    font-size: 26px;
    color: var(--dark);
    font-weight: 800;
}

.brand-header .from {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s;
}

.product:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(2, 132, 199, 0.12);
    border-color: var(--primary-light);
}

.product-img {
    height: 200px;
    background: var(--bg-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-info {
    padding: 14px 16px 18px;
}

.product-info h4 {
    font-size: 15px;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 6px;
    min-height: 42px;
}

.product-info .price {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 16px;
}

/* ==================== ABOUT PAGE ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-grid img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(2, 132, 199, 0.15);
}

.about-grid h2 {
    font-size: 32px;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.about-grid .label {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.about-grid p {
    color: var(--gray);
    margin-bottom: 14px;
    line-height: 1.75;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 26px;
}

.value-item {
    background: var(--bg-soft);
    padding: 18px;
    border-radius: 10px;
    border-left: 3px solid var(--primary);
}

.value-item h4 {
    color: var(--dark);
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 700;
}

.value-item p {
    font-size: 13px;
    margin: 0;
}

/* ==================== LEGAL INFO ==================== */
.legal-box {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
}

.legal-box h3 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-box h3::before {
    content: "✓";
    background: var(--success);
    color: var(--white);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
}

.legal-list {
    list-style: none;
}

.legal-list li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    align-items: start;
    font-size: 14px;
}

.legal-list li:last-child {
    border-bottom: none;
}

.legal-list strong {
    color: var(--dark);
    font-weight: 600;
}

/* ==================== CONTACT ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: var(--bg-soft);
    border-radius: 12px;
    padding: 32px;
}

.contact-info h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-info .subtitle {
    color: var(--gray);
    margin-bottom: 24px;
    font-size: 14px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-text strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
    font-weight: 600;
    font-size: 14px;
}

.contact-item-text p, .contact-item-text a {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.contact-item-text a:hover {
    color: var(--primary);
}

.map-embed {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 400px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

/* ==================== LEGAL PAGES (Privacy / Terms) ==================== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h2 {
    color: var(--dark);
    font-size: 24px;
    font-weight: 700;
    margin: 32px 0 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bg-soft);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p, .legal-content li {
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 15px;
}

.legal-content ul {
    padding-left: 22px;
    margin-bottom: 16px;
}

.legal-content .updated {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 30px;
    padding: 10px 14px;
    background: var(--bg-soft);
    border-radius: 6px;
    display: inline-block;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.85);
    padding: 60px 20px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer p, .footer a, .footer li {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    line-height: 1.85;
}

.footer a:hover { color: var(--accent); }

.footer ul {
    list-style: none;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .logo-tag {
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 22px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom .verified-note {
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.7;
}

/* ==================== WHATSAPP FLOATING ==================== */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--whatsapp);
    color: var(--white);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: transform 0.2s;
}

.wa-float:hover {
    transform: scale(1.08);
}

.wa-float svg {
    width: 30px;
    height: 30px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .legal-list li { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 768px) {
    .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 16px; border-bottom: 1px solid var(--border); }
    .nav.show { display: flex; }
    .menu-toggle { display: block; }
    .hero { padding: 60px 20px; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .page-header h1 { font-size: 28px; }
    .section { padding: 50px 0; }
    .section-title h2 { font-size: 26px; }
    .products { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-img { height: 150px; }
    .product-info h4 { font-size: 13px; min-height: 36px; }
    .product-info .price { font-size: 14px; }
    .brand-header h2 { font-size: 22px; }
    .logo-text { font-size: 17px; }
    .logo-tag { display: none; }
}
