/*global*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, Verdana, sans-serif;
    line-height: 1.5;
    color: #000;
    background: #fff;
    min-height: 100dvh;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
p,
blockquote {
    margin: 0;
}

button {
    cursor: pointer;
}

/* skip link */
.skip-link {
    position: absolute;
    left: -999px;
    top: 1rem;
    z-index: 9999;
    background: #000;
    color: #fff;
}

.skip-link:focus {
    left: 1rem;
    outline: 3px solid #1a6cf0;
    outline-offset: 3px;
}

:focus-visible {
    outline: 5px solid #1a6cf0;
    outline-offset: 5px;
}

/* containers ********************************************************************/
.container {
    width: min(100% - 2rem, 1200px);
    margin-inline: auto;
}

.section {
    padding: 3rem 0;
}

.section-nd {
    background: #f8f8f8;
}

.section-dark {
    background: #0f172a;
    color: #fff;
}

.section-dark .heading p {
    color: #94a3b8;
}

.heading {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-inline: auto;
}

.heading h2 {
    margin-bottom: .5rem;
}

/* text ********************************************************************/
h1,
.logo {
    font-size: 1.6rem;
    font-weight: 700;
}

h2 {
    font-size: 2.3rem;
    line-height: 1.15;
    font-weight: 800;
}

h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

p,
li,
a,
td,
th,
blockquote,
cite {
    font-size: 1rem;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: .4rem 1rem;
    background: #e8f1ff;
    color: #1a6cf0;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.section-dark .tag {
    background: rgba(255, 255, 255, .12);
    color: #fff;
}

/* header nav ********************************************************************/
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #0f172a;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: .8rem;
    color: #fff;
    flex-shrink: 0;
    text-decoration: none;
}


.main-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: .2rem;
}

.main-nav a {
    color: #cbd5e1;
    padding: .5rem .8rem;
    border-radius: 999px;
    font-weight: 500;
    font-size: .85rem;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background: #1a6cf0;
}

.main-nav a.active {
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    padding: .6rem;
    border-radius: .5rem;
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* buttons ********************************************************************/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    padding: .7rem 1.4rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-blue {
    background: #1a6cf0;
    color: #fff;
    border-color: #1a6cf0;
}

.btn-blue:hover {
    background: #1248a6;
}

.btn-outline {
    background: rgba(255, 255, 255, .2);
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, .35);
}

.btn-outline-dark {
    background: transparent;
    border-color: #ccc;
    color: #1e293b;
}

.btn-outline-dark:hover {
    background: #f1f5f9;
}

.btn-sm {
    padding: .4rem .9rem;
    font-size: .85rem;
}

.btn-block {
    width: 100%;
}

.btn-red {
    background: #b91c1c;
    color: #fff;
    border-color: #b91c1c;
}

.btn-red:hover {
    background: #991b1b;
}

.text-link {
    color: #1a6cf0;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
}

.text-link:hover {
    text-decoration: underline;
}

/* two column ********************************************************************/
.two-col {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.content-card {
    flex: 1 1 350px;
}

.image-panel {
    flex: 1 1 320px;
}

.image-panel img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 1rem;
}

.image-panel-center {
    max-width: 800px;
    margin-inline: auto;
}

/* table ********************************************************************/
.table-wrap {
    overflow-x: auto;
    border-radius: 1rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
}

thead {
    background: #1a6cf0;
    color: #fff;
}

th {
    padding: .8rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: .9rem;
}

td {
    padding: .7rem 1rem;
    border: 1px solid #eee;
    text-align: center;
}

tbody tr:nth-child(even) {
    background: #fafafa;
}

tbody tr:hover {
    background: #e8f1ff;
}

/* vue card */
.vue-card {
    max-width: 650px;
    margin-inline: auto;
    background: #1e293b;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
}

.vue-card input[type="range"] {
    width: 100%;
    margin: 1rem 0;
    accent-color: #1a6cf0;
}

.vue-card p {
    color: #cbd5e1;
}

/* footer ********************************************************************/
.site-footer {
    background: #0b1220;
    color: #fff;
    padding-top: 3rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-container section {
    flex: 1 1 200px;
}

.footer-container h3 {
    color: #fff;
    margin-bottom: .6rem;
    font-size: 1.1rem;
}

.footer-container p,
.footer-container address,
.footer-container a {
    color: #94a3b8;
    font-size: .9rem;
    line-height: 1.8;
}

.footer-container a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: 2rem;
    color: #64748b;
    font-size: .85rem;
}

/*HOME PAGE**********************************************************************/

/* hero */
.hero {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    display: flex;
    align-items: center;
    min-height: 85dvh;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 35, .35);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
}

.hero-text {
    flex: 1 1 460px;
    color: #fff;
}

.hero-text h2 {
    margin-bottom: .75rem;
}

.hero-text p {
    max-width: 60ch;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: .75rem;
    font-weight: 700;
    color: #8ec5ff;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.hero-card {
    flex: 1 1 340px;
    background: rgba(255, 255, 255, .06);
    padding: 1rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, .1);
}

.hero-card img {
    border-radius: 1rem;
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.hero-highlights {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}

.hero-highlights li {
    background: rgba(255, 255, 255, .08);
    padding: .5rem 1rem;
    border-radius: 999px;
    font-size: .85rem;
    border: 1px solid rgba(255, 255, 255, .12);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
}

/* stats ********************************************************************/
.stats {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.stat-card {
    flex: 1 1 130px;
    background: #fafafa;
    padding: 1.25rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #eee;
}

.stat-number {
    display: block;
    color: #1a6cf0;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .2rem;
}

.stat-label {
    color: #64748b;
    font-size: .85rem;
}

/* features ********************************************************************/
.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, .08);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, .06);
    flex: 1 1 300px;
}

.feature-card img {
    width: 100%;

}

.feature-card h3 {
    margin-bottom: .4rem;
}

.feature-card p {
    color: #cbd5e1;
    font-size: 1rem;
}

/* store cards ********************************************************************/
.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.store-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #eee;
    flex: 1 1 280px;
}

.store-card img {
    width: 100%;
    object-fit: cover;
}

.store-card .card-content {
    padding: 1.2rem;
}

.store-card .card-content h3 {
    margin-bottom: .3rem;
}

.store-card .card-content p {
    color: #64748b;
    font-size: .9rem;
    margin-bottom: .6rem;
}

/* slideshow ********************************************************************/
.slideshow-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    max-width: 1000px;
    margin-inline: auto;
}

.slideshow-card img {
    width: 100%;
    object-fit: cover;
}

/* reviews ********************************************************************/
.review-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.review-card {
    background: #fff;
    padding: 1.5rem 1.5rem .8rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #eee;
    flex: 1 1 300px;
}

.review-card blockquote p {
    font-style: italic;
    font-size: 1rem;
}

.review-card cite {
    font-weight: 700;
    color: #64748b;
    font-size: 1rem;
}

/* cta ********************************************************************/
.cta-section {
    background: #0f172a;
    color: white;
}

.cta-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.cta-layout>* {
    flex: 1 1 300px;
}

.cta-layout p {
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.cta-image img {
    border-radius: 1rem;
    object-fit: cover;
    width: 100%;
}

/* about preview home********************************************************************/
.about-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
}

.about-preview>* {
    flex: 1 1 300px;
}

.about-preview p {
    color: #64748b;
    margin-bottom: .6rem;
}

.about-preview img {
    border-radius: 1rem;
    object-fit: cover;
    width: 100%;
}

/* message section********************************************************************/
.message-section {
    text-align: center;
    background: #cbd5e1;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #e0e0e0;
}

.message-section p {
    color: #64748b;
    margin-bottom: 1rem;
}

/*product page********************************************************************/
.product-hero {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    display: flex;
    align-items: center;
    min-height: 50dvh;
}

.product-hero-sm {
    min-height: 40dvh;
}

.prod-hero-text {
    min-height: 45dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    max-width: 680px;
}

.prod-hero-text h2 {
    margin-bottom: .6rem;
}

.prod-hero-text p {
    color: #cbd5e1;
}

/* carousel ********************************************************************/
.product-carousel {
    position: relative;
}

.carousel-header {
    display: flex;
    justify-content: flex-end;
    gap: .75rem;
    margin-bottom: 1.5rem;
}

.carousel-prev svg {
    width: 18px;
    height: 18px;
    transform: rotate(180deg);
    flex-shrink: 0;
}

.carousel-next svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.carousel-window {
    overflow: hidden;
    border-radius: 1rem;
}

.carousel-track {
    display: flex;
    gap: 1rem;
}

.product-card {
    flex: 0 0 calc(25% - 1rem);
    min-width: 240px;
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #eee;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    margin-bottom: .2rem;
}

.product-price {
    color: #1a6cf0;
    font-weight: 700;
    font-size: 1rem;
}

/*subscriptions********************************************************************/

.subscriptions-hero {
    position: relative;
    overflow: hidden;
    background: #0f172a;
    display: flex;
    align-items: center;
    min-height: 70dvh;
}

.subscription-container {
    max-width: 450px;
    margin-inline: auto;
}

/* plan cards ********************************************************************/
.plan-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.plan-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.75rem;
    border: 2px solid #eee;
    display: flex;
    flex-direction: column;
    flex: 1 1 300px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a6cf0;
    margin-bottom: .8rem;
}

.price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.plan-features li {
    position: relative;
    padding-left: 1.4rem;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.plan-card .btn {
    margin-top: auto;
}

/* sub features ********************************************************************/
.sub-card {
    background: #fff;
    color: #1e293b;
    border-color: #e0e0e0;
}

.sub-card p {
    color: #64748b;
}

/* faq ********************************************************************/
.faq-wrap {
    max-width: 800px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    overflow: hidden;
    border-radius: .75rem;
    background: #fff;
    border: 1px solid #e0e0e0;
}

.faq-button {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    flex-shrink: 0;
}

.faq-icon svg {
    width: 18px;
}

.faq-button[aria-expanded="true"] .faq-icon {
    background: #1a6cf0;
    color: #fff;
}

.faq-content {
    display: none;
    padding: 0 1.25rem 1rem;
    color: #64748b;
}

/* cart pages********************************************************************/

.cart-items-wrap {
    margin-bottom: 1.5rem;
}

.cart-summary {
    text-align: right;
    max-width: 400px;
    margin-left: auto;
}

.cart-total-text {
    font-size: 1.2rem;
    font-weight: 700;
}

/*contact page********************************************************************/

.form-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-input {
    width: 100%;
    padding: .7rem;
    border-radius: .5rem;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.required-star {
    color: red;
}

.error-msg {
    color: red;
    font-size: .85rem;
    display: none;
}



/*manage pages********************************************************************/

.action-msg {
    margin-top: .8rem;
    font-weight: 600;
    color: #1a6cf0;
}

.sub-info {
    color: #64748b;
}

/* MODAL ********************************************************************/

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.222);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

#product-modal-app.btn {
    width: 100%;
}

.modal-content {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: .5rem;
    right: .8rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    color: #64748b;
}

.modal-content img {
    width: 100%;
    margin-bottom: 1rem;
}

.modal-price {
    font-size: 2rem;
    font-weight: 800;
    color: #1a6cf0;
    margin-bottom: .5rem;
}

.modal-qty {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin: 1rem 0;
}

.modal-qty button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: #fafafa;
    font-size: 1.2rem;
    cursor: pointer;
}

.modal-qty span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* confirm ********************************************************************/

.confirm-wrap {
    max-width: 650px;
    text-align: center;
    margin-inline: auto;
}


/* media*/

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        width: 100%;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        padding: .5rem 0;
    }

    .main-nav a {
        display: block;
        padding: .7rem 1.5rem;
        border-radius: 0;
    }

    .hero,
    .subscriptions-hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-card {
        max-width: 480px;
        width: 100%;
    }

    .slideshow-card img {
        aspect-ratio: 16/10;
    }

    .product-card {
        flex: 0 0 calc(50% - .75rem);
        min-width: 220px;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .carousel-header {
        justify-content: center;
    }

    .product-card {
        flex: 0 0 85%;
        min-width: auto;
    }

    .slideshow-card img {
        aspect-ratio: 16/11;
    }

    .feature-list,
    .product-list,
    .review-list,
    .plan-list {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
}