*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
    font-weight: 400;
    font-kerning: auto;
    color: #f5f5f5;
    background-color: #000;
    background-image: url('/static/img/bg_tree.png');
    background-size:auto;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode:hard-light;
    line-height: 1.6;
}

header {
    background-color: #000;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 6px solid #ffffff;
        height:10%;
}

.nav-container {
display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 2000px;
  max-width: 200%;
}

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

.logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #78e5ff;
}

.nav-links a.active {
    color: #78e5ff;
}

.page-content {
    margin-top: 80px;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px;
    align-items: center;
    justify-content: center;
}

#home {
    scroll-margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#about {
    scroll-margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    width: 100%;
}

#faq {
    scroll-margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow-y: auto;
}

.hero {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    margin: 0;
    padding: 2rem 0;
    animation: fadeInUp 1s forwards;
}

.hero-title {
    font-size: clamp(8rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #ffffffa6;
    text-shadow: 4px 4px 20px #ffffff;
    border-top: solid white 4px;
    text-decoration:solid;
    text-decoration-thickness: 20px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #b0b0b0;
    font-weight: 400;
    letter-spacing: 0.02em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button,
.secondary-button,
.buy-button,
.submit-button {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    border: 2px solid transparent;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button {
    background-color: #0f388a;
    color: #ffffff;
    border-color: #0f388a;
}

.cta-button:hover {
    background-color: #78e5ff;
    color: #000;
    border-color: #78e5ff;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(120, 229, 255, 0.2);
}

.secondary-button {
    background-color: transparent;
    border-color: #78a5ff;
    color: #78a5ff;
}

.secondary-button:hover {
    background-color: #78a5ff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(120, 165, 255, 0.2);
}

.buy-button,
.submit-button {
    background: linear-gradient(135deg, #0f388a 0%, #0a2560 100%);
    color: #ffffff;
    border: 2px solid #78e5ff;
    width: 100%;
    text-align: center;
}

.buy-button:hover,
.submit-button:hover {
    background: linear-gradient(135deg, #78e5ff 0%, #78a5ff 100%);
    color: #000;
    box-shadow: 0 12px 24px rgba(120, 229, 255, 0.3);
}

.section {
    padding: 0;
    max-width: 100%;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.section-header p {
    color: #a0a0a0;
    font-size: 1.1rem;
    margin: 0;
}

.about {
    background: transparent;
    border-radius: 12px;
    padding: 3rem;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about p {
    max-width: 100%;
    margin: 0;
    text-align: center;
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.8;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.faq-item {
    border: 1px solid #ffffff22;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    background-color: #0a0a0a;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #78e5ff44;
    box-shadow: 0 4px 12px rgba(120, 229, 255, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: #ffffff;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #78e5ff;
}

.faq-question:focus-visible {
    outline: 2px solid #78a5ff;
    outline-offset: -2px;
}

.faq-icon {
    font-size: 1.25rem;
    transition: transform 0.25s ease;
    color: #78e5ff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    background-color: #050505;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
}

.faq-answer p {
    margin: 0;
    color: #b0b0b0;
    padding: 1rem 0;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 1rem;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.featured-products {
    padding: 0;
    margin-top: 3rem;
    width: 100%;
    max-width: 1200px;
}

.featured-products h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.product-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding-left:30px;
    padding-right: 30px;
    margin: 0;
}

.product {
    background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
    border: 1px solid #ffffff22;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    animation: fadeInUp 0.6s forwards;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.product:nth-child(1) {
    animation-delay: 0.1s;
}

.product:nth-child(2) {
    animation-delay: 0.2s;
}

.product:nth-child(3) {
    animation-delay: 0.3s;
}

.product:nth-child(4) {
    animation-delay: 0.4s;
}

.product:hover {
    border-color: #78e5ff;
    box-shadow: 0 12px 40px rgba(120, 229, 255, 0.15);
    transform: translateY(-4px);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #78e5ff 0%, #78a5ff 100%);
    color: #000;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 10;
}

.product-image-wrapper {
    width: 100%;
    height: 220px;
    background-color: #050505;
    border-bottom: 1px solid #ffffff11;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
}

.product-description {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-description p {
    margin: 0;
    color: #909090;
    font-size: 0.9rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #78e5ff;
    margin: 0;
    text-shadow: 0 0 10px #78e5ff44;
}

.stock {
    padding: 0.35rem 0.75rem;
    background-color: #0f388a;
    border: 1px solid #78e5ff;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #ffffff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.stock.in-stock {
    border-color: #4ade80;
    color: #4ade80;
    background-color: rgba(74, 222, 128, 0.1);
}

.stock.out-stock {
    border-color: #a07b00;
    color: #a07b00;
    background-color: rgba(160, 123, 0, 0.1);
}

.stock .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: currentColor;
}

.buy-button {
    padding: 0.875rem 1.5rem;
}

.no-products {
    grid-column: 1 / -1;
    padding: 3rem 2rem;
    text-align: center;
    color: #b0b0b0;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: #0a0a0a;
    border-radius: 10px;
    border: 1px solid #ffffff22;
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #78e5ff;
    box-shadow: 0 8px 24px rgba(120, 229, 255, 0.1);
    transform: translateY(-2px);
}

.service-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-card p {
    margin-bottom: 1rem;
    color: #a0a0a0;
}

.service-card ul {
    margin: 0;
    padding-left: 1.5rem;
    color: #909090;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1.2fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form label {
    font-weight: 600;
    color: #ffffff;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 0.875rem;
    border: 1px solid #ffffff22;
    border-radius: 6px;
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #78e5ff;
    box-shadow: 0 0 12px rgba(120, 229, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #666;
}

.contact-sidebar {
    background-color: #0a0a0a;
    border-radius: 10px;
    border: 1px solid #ffffff22;
    padding: 2rem;
    color: #b0b0b0;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-details li {
    margin-bottom: 1.5rem;
}

.loader-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top, #101020 0, #050505 60%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    transition: opacity 0.4s ease;
}

.loader-spinner {
    border: 6px solid #f3f3f311;
    border-top: 6px solid #78e5ff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.loader-text {
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e0e0e0;
}

.scroll-up-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: #0f388a;
    color: #ffffff;
    border: 2px solid #78e5ff;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.scroll-up-button:hover {
    background-color: #78e5ff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(120, 229, 255, 0.2);
}

footer {
    background-color: #000;
    border-top: 1px solid #ffffff22;
    padding: 3rem 2rem 1.5rem;
}

footer > p:first-child {
    text-align: center;
    color: #808080;
    margin: 0 0 2rem 0;
}

.footer-pay-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-pay-icons svg,
.footer-pay-icons img {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-pay-icons svg:hover,
.footer-pay-icons img:hover {
    opacity: 1;
}

.trustpilot-widget {
    margin: 2rem auto;
    max-width: 600px;
}

.footer-ctn-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
    padding: 0;
}

.footer-ctn-inner a {
    color: #808080;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.footer-ctn-inner a:hover {
    color: #78e5ff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    #home,
    #about,
    #faq {
        min-height: auto;
        display: block;
        padding: 2rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem;
    }

    .logo img {
        height: 32px;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 4rem 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section {
        padding: 3rem 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .product-list {
        grid-template-columns: 1fr;
    }

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

.auth-section {
    scroll-margin-top: 80px;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-container {
    width: 100%;
    max-width: 420px;
}

.auth-card {
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid #ffffff22;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px #78e5ff44;
}

.auth-header p {
    margin: 0;
    color: #a0a0a0;
    font-size: 0.95rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
}

.form-group input {
    padding: 0.875rem 1rem;
    border: 1px solid #ffffff22;
    border-radius: 6px;
    background-color: #050505;
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #78e5ff;
    box-shadow: 0 0 12px rgba(120, 229, 255, 0.15);
    background-color: #0a0a0a;
}

.form-group input::placeholder {
    color: #666;
}

.form-remember,
.form-agree {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-remember input,
.form-agree input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #0f388a;
}

.form-remember label,
.form-agree label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: #b0b0b0;
    cursor: pointer;
}

.form-agree label a {
    color: #78e5ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-agree label a:hover {
    color: #78a5ff;
    text-decoration: underline;
}

.auth-form .cta-button {
    width: 100%;
    padding: 0.975rem 1.5rem;
    margin-top: 0.5rem;
}

.auth-divider {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #ffffff22, transparent);
}

.auth-divider span {
    background-color: #0a0a0a;
    padding: 0 1rem;
    position: relative;
    color: #808080;
    font-size: 0.85rem;
}

.auth-form .secondary-button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    text-align: center;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.auth-footer a {
    color: #78a5ff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: #78e5ff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .auth-section {
        padding: 1.5rem;
    }

    .auth-card {
        padding: 2rem 1.5rem;
    }

    .auth-header h1 {
        font-size: 1.5rem;
    }

    .auth-form {
        gap: 1.25rem;
    }
}