﻿/* ===========================
   GLOBAL / RESET
=========================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #0f172a;
    background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
}

main {
    min-height: 60vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===========================
   HEADER
=========================== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(2, 6, 23, 0.86);
    border-bottom: 1px solid rgba(148,163,184,0.25);
}

.header-spacer {
    height: 70px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.04em;
}

.logo span {
    color: #3b82f6;
}

/* NAVIGATION */

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav a {
    color: #e2e8f0;
    font-size: .95rem;
    text-decoration: none;
    transition: color .2s ease;
}

.nav a:hover {
    color: #60a5fa;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: white;
}

/* ===========================
   BUTTONS
=========================== */

.btn-primary,
.btn-secondary,
.btn-secondary-outline,
.btn-buy {
    border-radius: 999px;
    padding: 0.55rem 1.3rem;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
    font-weight: 600;
}

.btn-primary {
    background: #3b82f6;
    color: #f9fafb;
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background: #2563eb;
    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.55);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.85);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 1);
}

.btn-secondary-outline {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid rgba(148, 163, 184, 0.9);
}

.btn-secondary-outline:hover {
    background: rgba(15, 23, 42, 0.7);
}

.btn-buy {
    width: 100%;
    margin-top: 0.75rem;
    padding: 0.5rem 0;
    border-radius: 10px;
    background: #3b82f6;
    color: #fff;
    text-align: center;
    display: block;
}

.btn-buy:hover {
    background: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
}

/* Responsive nav */

@media (max-width: 900px) {
    .nav {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(2, 6, 23, 0.97);
        flex-direction: column;
        padding: 1rem 0;
        gap: 1rem;
        display: none;
    }

    .nav.open {
        display: flex;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
    }
}

/* ===========================
   HERO – HOME
=========================== */

.hero {
    padding-top: 90px;
    padding-bottom: 3rem;
}

.hero-premium {
    background: radial-gradient(circle at top left, #1d4ed8 0, #020617 45%, #020617 100%);
    color: #e5e7eb;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    align-items: center;
    padding: 2.3rem 0 2.6rem;
}

.hero-left {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.1rem;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #22c55e;
}

.hero-title {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 520px;
}

.hero-subtitle {
    color: #cbd5f5;
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.hero-btn {
    border-radius: 12px;
    padding: 0.55rem 1.2rem;
    font-size: 0.88rem;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
}

.hero-card {
    background: #020617;
    border-radius: 1.1rem;
    padding: 1.4rem;
    border: 1px solid rgba(148, 163, 184, 0.6);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.85);
}

.hero-card.premium {
    background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.16), #020617 60%);
}

.hero-card-title {
    font-size: 1rem;
    margin-bottom: 0.9rem;
    color: #e5e7eb;
}

.hero-card-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
    gap: 1rem;
    align-items: center;
}

.hero-card-preview {
    background: linear-gradient(135deg, #1d4ed8, #38bdf8);
    border-radius: 0.9rem;
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
}

.hero-card-preview::after {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: 0.7rem;
    background: rgba(15, 23, 42, 0.55);
}

.hero-card-meta {
    font-size: 0.83rem;
    color: #cbd5f5;
    margin-bottom: 0.6rem;
}

.hero-card-list {
    list-style: none;
    font-size: 0.82rem;
    color: #e5e7eb;
    padding-left: 0;
}

.hero-card-list li {
    margin-bottom: 0.35rem;
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        margin: 0 auto;
        max-width: 420px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-btn {
        width: 100%;
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }

    .hero-meta {
        justify-content: center;
    }

    .hero-card {
        margin-top: 1.8rem;
    }
}

@media (max-width: 500px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-btn {
        padding: 0.55rem 0;
        font-size: 0.85rem;
    }
}

/* ===========================
   SECTIONS & PAGE HERO
=========================== */

.section {
    padding: 3rem 0;
}

.premium-section {
    background: #020617;
    color: #e5e7eb;
}

.trust-section {
    padding-top: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.section-title {
    font-size: 1.4rem;
    color: #e5e7eb;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
}

.premium-section .section-subtitle {
    color: #9ca3af;
}

.page-hero {
    padding-top: 90px;
    padding-bottom: 1.8rem;
    background: #020617;
    color: #e5e7eb;
    border-bottom: 1px solid rgba(148,163,184,0.4);
}

.page-hero h1 {
    font-size: 1.8rem;
    margin: 0.4rem 0;
}

.page-hero p {
    margin: 0.2rem 0;
    color: #94a3b8;
}

.breadcrumbs {
    font-size: 0.8rem;
    color: #9ca3af;
}

.breadcrumbs a {
    color: #9ca3af;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #e5e7eb;
}

/* ===========================
   PRODUCT GRID + CARDS
=========================== */

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
    margin-top: 2rem;
}

.products-grid.small-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.1rem;
}

.product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 0.9rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: all .25s ease;
    border: 1px solid #e5e7eb;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
    border-color: rgba(59,130,246,0.6);
}

.product-card.small-card {
    padding: 0.7rem;
    border-radius: 12px;
}

.product-image {
    width: 100%;
    height: 140px;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.9rem;
}

.product-image.small-img {
    height: 110px !important;
    border-radius: 10px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
    padding: 5px;
    transition: transform .25s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    margin: .35rem 0;
    color: #0f172a;
}

.product-name.small-name {
    font-size: 0.9rem !important;
}

.product-meta {
    font-size: .83rem;
    color: #6b7280;
    min-height: 40px;
}

.product-meta.small-meta {
    font-size: 0.75rem !important;
    min-height: 30px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: .6rem;
}

.product-price {
    font-size: 0.98rem;
    font-weight: 700;
    color: #111827;
}

.product-price.small-price {
    font-size: 0.85rem !important;
}

.product-link,
.details-link {
    font-size: .9rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.product-link:hover,
.details-link:hover {
    text-decoration: underline;
}

.btn-buy.small-buy {
    padding: 0.45rem 0 !important;
    font-size: 0.8rem !important;
}

@media (max-width: 700px) {
    .products-grid {
        gap: 1.2rem;
    }

    .product-card {
        padding: 0.8rem;
        border-radius: 14px;
    }

    .product-image {
        height: 120px;
    }

    .product-name {
        font-size: 0.96rem;
    }

    .product-meta {
        font-size: 0.82rem;
    }

    .product-price {
        font-size: 0.95rem;
    }

    .btn-buy {
        font-size: 0.85rem;
        padding: 0.45rem 0;
    }
}

/* ===========================
   PRODUCT DETAIL PAGE
=========================== */

.product-detail-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.2rem;
    align-items: start;
    margin-bottom: 2.8rem;
}

.product-detail-image {
    background: #0f172a;
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    overflow: hidden;
}

.product-detail-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 0.7rem;
}

.product-detail-info {
    padding-top: 0.5rem;
}

.product-detail-description {
    font-size: 1rem;
    line-height: 1.55;
    color: #e5e7eb;
    margin-bottom: 1.4rem;
}

.product-detail-buttons {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.additional-info-card {
    background: rgba(2, 6, 23, 0.90);
    border-radius: 1rem;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 1.4rem 1.6rem;
    color: #e5e7eb;
    margin-top: 2.2rem;
    box-shadow: 0 14px 35px rgba(0,0,0,0.3);
}

.additional-info-card h3 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    color: #fff;
}

.additional-info-card ul {
    list-style: none;
    padding-left: 0;
}

.additional-info-card li {
    font-size: 0.93rem;
    margin-bottom: 0.4rem;
    color: #cbd5e1;
}

@media (max-width: 900px) {
    .product-detail-container {
        grid-template-columns: 1fr;
    }

    .product-detail-image img {
        height: 330px;
    }
}

/* ===========================
   TRUST STRIP
=========================== */

.trust-strip {
    border-radius: 1rem;
    padding: 1.1rem 1.2rem;
    background: linear-gradient(90deg, rgba(15,23,42,0.96), rgba(30,64,175,0.9));
    color: #e5e7eb;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
}

.trust-strip span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #38bdf8;
}

/* ===========================
   TABLES
=========================== */

.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.table th,
.table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.table th {
    background: #f3f4f6;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
/* FIX PRODUCT GRID SIZE */
.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
    gap: 1rem !important;
    max-width: 900px;
    margin: 1rem auto;
}

/* FIX PRODUCT CARD SIZE */
.product-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    text-align: center;
}

/* FIX IMAGE SIZE */
.product-image {
    width: 150px !important;
    height: 150px !important;
    margin: 0 auto 0.5rem !important;
    background: transparent !important;
}

.product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    padding: 0 !important;
}

/* PRODUCT NAME */
.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #fff !important;
    margin-top: 0.3rem;
}

/* CENTER GRID MOBILE */
@media (max-width: 700px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)) !important;
    }

    .product-image {
        width: 130px !important;
        height: 130px !important;
    }
}
/* ===========================
   FORMS
=========================== */

.form {
    background: #ffffff;
    border-radius: 0.9rem;
    padding: 1.2rem 1.3rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.form-row {
    margin-bottom: 0.9rem;
}

.form label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
    color: #374151;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    padding: 0.55rem 0.6rem;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    font-size: 0.9rem;
    font-family: inherit;
}

.form textarea {
    min-height: 120px;
    resize: vertical;
}

/* CONTACT PAGE */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
}

.contact-info-card,
.contact-form-card {
    background: rgba(2, 6, 23, 0.75);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    padding: 1.8rem;
    border-radius: 1.1rem;
    box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}

.contact-title {
    font-size: 1.3rem;
    color: #e5e7eb;
    margin-bottom: 0.5rem;
}

.contact-text {
    color: #94a3b8;
    margin-bottom: 1.4rem;
    line-height: 1.6;
}

.contact-info-box {
    margin-bottom: 1.4rem;
}

.contact-info-box h3 {
    margin: 0;
    color: #38bdf8;
    font-size: 1rem;
}

.contact-info-box p {
    margin: .2rem 0 0;
    color: #cbd5e1;
    font-size: .95rem;
}

.contact-form input,
.contact-form textarea {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #e5e7eb;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 1px #38bdf8;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   FAQ
=========================== */

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-block {
    margin-bottom: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    backdrop-filter: blur(6px);
}

.faq-toggle {
    width: 100%;
    padding: 1rem 1.1rem;
    background: transparent;
    color: #e5e7eb;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: bold;
    color: #38bdf8;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.1rem;
    color: #cbd5e1;
    transition: max-height .3s ease;
}

.faq-content p {
    margin: 1rem 0;
    line-height: 1.6;
}

/* ===========================
   FOOTER
=========================== */

.footer {
    margin-top: 4rem;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(148,163,184,0.35);
    padding: 2.5rem 0;
    color: #e2e8f0;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    margin-bottom: 0.25rem;
}

.footer-title span {
    color: #3b82f6;
}

.footer-tag {
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-right {
    text-align: right;
    font-size: 0.9rem;
}

.footer-right p {
    margin: 0.2rem 0;
}

@media (max-width: 700px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }
}