@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
:root {
  --primary: #00e6c0;
  --secondary: #222;
  --accent: #ff4e50;
  --bg: #1a2226;
  --card: #181c1f;
  --text: #f4f6fb;
  --shadow: 0 4px 24px rgba(0,230,192,0.10);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  transition: background 0.3s, color 0.3s;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--card);
  box-shadow: var(--shadow);
}
.contact-section {
  background: var(--card);
  border-radius: 1.2rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0,230,192,0.10);
  margin: 2.5rem auto;
  max-width: 500px;
  text-align: center;
}
.contact-section h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-list li {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: var(--text);
}
.contact-list a {
  color: var(--accent);
  text-decoration: none;
  word-break: break-all;
}
.contact-list a:hover {
  text-decoration: underline;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  gap: 0.6rem;
}
.logo-img {
  height: 2.2rem;
  width: 2.2rem;
  margin-right: 0.2rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 2px 10px rgba(0,230,192,0.10);
}
.logo-large {
  width: 120px;
  height: 120px;
  margin: 2rem auto 1rem auto;
  display: block;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 4px 32px rgba(0,230,192,0.18);
}
nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}
nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}
nav a.active, nav a:hover {
  color: var(--primary);
}
nav a.active::after, nav a:hover::after {
  content: '';
  display: block;
  height: 2px;
  background: var(--primary);
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -4px;
  border-radius: 2px;
  transition: width 0.3s;
}
.home .intro {
  max-width: 600px;
  margin: 8vh auto 0 auto;
  text-align: center;
  animation: fadeIn 1.2s;
  background: rgba(24,28,31,0.92);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(0,230,192,0.10);
  padding: 2.5rem 2rem 2.5rem 2rem;
  position: relative;
}
.brand-highlight {
  color: var(--primary);
  text-shadow: 0 2px 12px rgba(0,230,192,0.18);
}
.logo-showcase {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* About Page */
.about-page {
  max-width: 900px;
  margin: 6vh auto 0 auto;
  padding: 0 1.5rem;
}
.about-hero {
  text-align: center;
  margin-bottom: 2.5rem;
}
.about-logo-large {
  width: 110px;
  height: 110px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 4px 32px rgba(0,230,192,0.18);
}
.about-hero h1 {
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.about-tagline {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.about-story {
  background: rgba(24,28,31,0.92);
  border-radius: 1.2rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 16px rgba(0,230,192,0.10);
}
.about-story h2 {
  color: var(--primary);
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;
}
.about-story p {
  color: var(--text);
  margin-bottom: 1.2rem;
}
.about-features {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}
.about-features li {
  color: var(--accent);
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.home h1 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.home p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  animation: popIn 1.2s 0.3s backwards;
}
.cta-btn:hover {
  transform: scale(1.07) translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,78,80,0.15);
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}
.products {
  max-width: 1200px;
  margin: 6vh auto 0 auto;
  padding: 0 1.5rem;
}
.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: flex-start;
  max-width: 900px;
  margin: 6vh auto 0 auto;
  padding: 0 1.5rem;
  background: rgba(24,28,31,0.96);
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(0,230,192,0.10);
}
.products-title {
  text-align: center;
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  animation: fadeIn 1.2s;
}
.products-cim{
   text-align: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
  letter-spacing: 1px;
  animation: fadeIn 1.2s;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2.2rem;
}
.product-card {
  background: var(--card);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  animation: popIn 1.1s;
}
.product-detail-img { 
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  max-width: 320px;
  background: var(--card);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
  padding: 2rem;
  margin: 2rem 0;
}
.product-detail-img img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 24px rgba(0,230,192,0.10));
}
.product-detail-info {
  flex: 2 1 340px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2rem 0;
}
.product-detail-info h1 {
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.product-detail-price {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.product-detail-desc {
  color: var(--text);
  font-size: 1.08rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
  background: rgba(0,230,192,0.07);
  border-radius: 0.7rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 8px rgba(0,230,192,0.06);
}
input[type="file"] {
  display: none;
}
.product-order-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--card);
  border-radius: 1rem;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 2px 12px rgba(0,230,192,0.08);
  margin-bottom: 1.2rem;
}
.custom-file-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  color: #000000;
  padding: 0.7rem 1.6rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 1rem;
  transition: background 0.2s, transform 0.2s;
}
.custom-file-btn:hover {
  background: linear-gradient(90deg, var(--accent), var(--secondary));
  transform: scale(1.05);
}
.product-order-form label {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.product-order-form input[type="text"],
.product-order-form input[type="file"] {
  background: #23282c;
  color: var(--text);
  border: 1.5px solid var(--primary);
  border-radius: 0.5rem;
  padding: 0.7rem 1rem;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  transition: border 0.2s;
}
.product-order-form input[type="text"]:focus {
  border: 1.5px solid var(--accent);
  outline: none;
}
.product-order-form input[type="file"] {
  padding: 0.5rem 0;
  background: transparent;
  color: var(--primary);
}
.form-note {
  color: var(--accent);
  font-size: 0.98rem;
  margin-bottom: 0.5rem;
}
.animated-btn {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: #181c1f;
  font-weight: 700;
  border: none;
  border-radius: 2rem;
  padding: 0.8rem 2rem;
  font-size: 1.08rem;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,230,192,0.10);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  margin-top: 0.5rem;
}
.animated-btn:hover {
  transform: scale(1.06) translateY(-2px);
  background: linear-gradient(90deg, var(--accent), var(--primary));
  box-shadow: 0 6px 24px rgba(255,78,80,0.13);
}
.back-link {
  color: var(--primary);
  text-decoration: none;
  font-size: 1.02rem;
  margin-top: 0.7rem;
  display: inline-block;
  transition: color 0.18s;
}
.back-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 36px rgba(30,144,255,0.13);
  border: 2px solid var(--primary);
}
.product-img {
  background: none !important;
  border-radius: 0 !important;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 2px 12px rgba(249,212,35,0.13);
  overflow: hidden;
}
.product-img img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(30,144,255,0.08));
}
.product-card h2 {
  text-decoration:none;
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.product-price {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  text-decoration:none;
}
.custom-label {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.2rem;
  margin-top: 0.7rem;
  align-self: flex-start;
}
.product-card input[type="text"] {
  width: 100%;
  padding: 0.6rem 1rem;
  border-radius: 0.7rem;
  border: 1.5px solid #e0e0e0;
  margin-bottom: 0.6rem;
  font-size: 1rem;
  outline: none;
  transition: border 0.2s;
}
.product-card input[type="text"]:focus {
  border: 1.5px solid var(--secondary);
}
.product-card input[type="file"] {
  margin-bottom: 1.1rem;
  font-size: 0.97rem;
}
.animated-btn {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 2.1rem;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.25s, transform 0.18s, box-shadow 0.18s;
  margin-top: 0.5rem;
  animation: popIn 1.1s 0.2s backwards;
}
.animated-btn:hover {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 32px rgba(30,144,255,0.16);
}
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .home .intro {
    margin-top: 4vh;
    padding: 0 1rem;
  }
  .home h1 {
    font-size: 2rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}
/* Featured Products Section */
.featured-products {
  margin: 3rem 0 2rem 0;
  text-align: center;
}
.featured-products h2 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}
.featured-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.featured-card {
  background: var(--card-color);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-color) 0 2px 12px 0;
  padding: 1.2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  color: var(--primary-color);
  width: 160px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.featured-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 0.7rem;
}
.featured-card span {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
}
.featured-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: var(--accent-color) 0 4px 24px 0;
}

/* Testimonials Section */
.testimonials {
  margin: 3rem 0 2rem 0;
  text-align: center;
}
.testimonials h2 {
  color: var(--accent-color);
  margin-bottom: 1.2rem;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.testimonial {
  background: var(--card-color);
  border-radius: 1.2rem;
  box-shadow: var(--shadow-color) 0 2px 12px 0;
  padding: 1.2rem 1.5rem;
  max-width: 320px;
  min-width: 220px;
  font-style: italic;
  color: var(--text-color);
}
.testimonial span {
  display: block;
  margin-top: 0.7rem;
  font-weight: 500;
  color: var(--accent-color);
  font-style: normal;
}

/* Call-to-Action Section */
.cta {
  margin: 3rem 0 2rem 0;
  text-align: center;
}
.cta h2 {
  color: var(--accent-color);
  margin-bottom: 1.2rem;
}
.cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--background-color);
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: var(--shadow-color) 0 2px 12px 0;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.cta-button:hover {
  background: var(--secondary-color);
  color: var(--accent-color);
  transform: translateY(-3px) scale(1.03);
}
@media (max-width: 700px) {
  .cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}