@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Accessibility and SEO Optimizations */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus styles for better accessibility */
a:focus,
button:focus {
    outline: 2px solid #ff6600;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ff6600;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

body {
    background: #111;
    color: #fff;
      font-family: "Poppins", sans-serif;

    margin: 0;
    padding: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: #000;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}
.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
}
.nav-links li a:hover {
    color: #ff6600;
}
.profile-icon {
    font-size: 1.5rem;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
    padding: 48px 0 0 0;
    background: #111;
}
.hero-content {
    flex: 1;
    padding-left: 10vw;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
}
.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 32px;
}
.buy-btn {
    background: #fff;
    color: #111;
    border: none;
    border-radius: 12px;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
    transition: background 0.2s, color 0.2s;
}
.buy-btn:hover {
    background: #ff6600;
    color: #fff;
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    max-width: 550px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 64px 0;
    background: #181818;
}
.feature {
    background: #222;
    border-radius: 24px;
    padding: 32px 40px;
    width: 320px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
}
.feature .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}
.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.feature p {
    font-size: 1.05rem;
    color: #ccc;
}

.products {
    padding: 64px 0;
    background: #111;
    text-align: center;
}
.products h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}
.products p {
    color: #bbb;
    margin-bottom: 40px;
}
.product-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.product-card {
    background: #222;
    border-radius: 24px;
    padding: 32px 24px;
    width: 300px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-card img {
    width: 200px;
    border-radius: 16px;
    margin-bottom: 16px;
}
.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.product-card p {
    color: #bbb;
    margin-bottom: 16px;
}
.price {
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.old-price {
    text-decoration: line-through;
    color: #ff6666;
    margin-left: 8px;
}
.discount {
    color: #ff6600;
    margin-left: 8px;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding-left: 0;
    }
    .hero-content {
        padding-left: 0;
        text-align: center;
    }
    .features, .product-list {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer Styles */
.footer {
    background: #000;
    color: #fff;
    padding: 48px 0 0 0;
    font-size: 1rem;
    margin-top: 48px;
}
.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}
.footer-contact {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 48px;
    padding-bottom: 32px;
    flex-wrap: wrap;
}
.footer-icon {
    font-size: 2rem;
    margin-right: 8px;
    vertical-align: middle;
}
.footer-contact-info {
    font-size: 1.1rem;
    font-weight: 500;
}
.footer-divider {
    border: none;
    border-top: 1px solid #222;
    margin: 32px 0;
}
.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    flex-wrap: wrap;
}
.footer-links > div {
    min-width: 180px;
}
.footer-links h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 12px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 4px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li {
    margin-bottom: 10px;
}
.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links ul li a:hover {
    color: #ff6600;
}
.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 8px;
}
.footer-social a {
    font-family: 'FontAwesome', Arial, sans-serif;
    font-size: 2rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-social a:hover {
    color: #ff6600;
}
.footer-payments {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 32px 0 0 0;
}
.footer-bottom {
    text-align: center;
    color: #bbb;
    font-size: 1rem;
    padding: 24px 0 12px 0;
}
@media (max-width: 900px) {
    .footer-contact, .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .footer-links {
        align-items: flex-start;
    }
    .footer-payments img {
        max-width: 90vw;
    }
}

@media (max-width: 600px) {
  body {
    font-size: 0.98rem;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px;
  }
  .logo {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: flex-start;
  }
  .nav-links li a {
    font-size: 1rem;
    padding: 8px 0;
  }
  .hero {
    flex-direction: column;
    padding: 24px 0 0 0;
    min-height: unset;
  }
  .hero-content {
    padding: 0 10px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .buy-btn {
    padding: 12px 20px;
    font-size: 1rem;
  }
  .hero-image img {
    max-width: 90vw;
    height: auto;
  }
  .features {
    padding: 32px 0;
    gap: 16px;
  }
  .feature {
    width: 90vw;
    padding: 20px 8px;
  }
  .products {
    padding: 32px 0;
  }
  .product-list {
    gap: 16px;
  }
  .product-card {
    width: 90vw;
    padding: 20px 8px;
  }
  .product-card img {
    width: 90vw;
    max-width: 200px;
  }
  .footer-top {
    padding: 0 8px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
  }
  .footer-links {
    flex-direction: column;
    gap: 16px;
  }
  .footer-links > div {
    min-width: unset;
  }
  .footer-payments {
    padding: 16px 0 0 0;
  }
  .footer-payments img {
    max-width: 98vw;
  }
  .footer-bottom {
    font-size: 0.95rem;
    padding: 12px 0 8px 0;
  }
} 