* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #fff;
  background-color: #1a1a1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.95);
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  z-index: 1000;
  display: none;
  backdrop-filter: blur(10px);
}

.cookie-content p {
  margin-bottom: 15px;
  font-size: 14px;
  color: #ccc;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: #00bfff;
  color: white;
}

.cookie-btn.accept:hover {
  background: #0099cc;
}

.cookie-btn.decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #555;
}

.cookie-btn.decline:hover {
  background: #333;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.00);
  position: relative;
  /* background-image: url('/assets/images/bg.png'); */
  background-size: cover;
  background-position: center;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
 
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;

  border-radius: 40px;
border: 1px solid #FFF;
margin-top: 24px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  margin: 0 5px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hero-container {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px;
  max-width: 900px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: url(/assets/images/bg.png);
  background-size: cover;
}

.hero-card h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 400;
}

.hero-description {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  background: #00bfff;
  color: white;
  border: none;
  padding: 18px 35px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  background: #0099cc;
  transform: translateY(-2px);
}

/* Design Section */
.design-section {
  padding: 100px 0;
  background-color: #1a1a1a;
}

.design-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.design-text {
  flex: 1;
}

.design-text h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.design-text p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}

.design-image {
  flex: 1;
  max-width: 500px;
}

.design-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Products Section */
.products-section {
  padding: 100px 0;
  background-color: #1a1a1a;
}

.products-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;

  border-radius: 20px;
background: #1E2131;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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


.product-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
  padding: 0 25px;
  margin-top: 25px;
}

.product-card h3:first-line {
  color: #00cc00;
}

.product-card .product-card h3:nth-of-type(2) {
  color: #ff6b9d;
}

.product-card:nth-child(1) h3 {
  color: #00cc00;
}

.product-card:nth-child(2) h3 {
  color: #ff6b9d;
}

.product-card:nth-child(3) h3 {
  color: #ff9500;
}

.product-card p {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.6;
  padding: 0 25px;
}

.product-price {
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  font-size: 1rem;
  padding: 0 25px;
}

.product-btn {
  background: #00bfff;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  width: calc(100% - 50px);
  margin: 0 25px 25px;
  display: flex;
  text-decoration: none;
  justify-content: center;
}

.product-btn:hover {
  background: #0099cc;
}

/* Why Section */
.why-section {
  padding: 100px 0;
  background-color: #1a1a1a;
}

.why-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-number {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Materials Section */
.materials-section {
  padding: 100px 0;
  background-color: #1a1a1a;
}

.materials-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.materials-text {
  flex: 1;
}

.materials-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.materials-text p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}

.materials-image {
  flex: 1;
  max-width: 500px;
}

.materials-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Reviews Section */
.reviews-section {
  padding: 100px 0;
  background-color: #1a1a1a;
}

.reviews-section h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.review-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.reviewer-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 25px;
  overflow: hidden;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.review-card p {
  font-size: 1rem;
  color: #ccc;
  line-height: 1.6;
}

/* Quality Section */
.quality-section {
  padding: 100px 0;
  background-color: #1a1a1a;
}

.quality-content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.quality-text {
  flex: 1;
}

.quality-text h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.quality-text p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.7;
}

.quality-image {
  flex: 1;
  max-width: 500px;
}

.quality-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: #1a1a1a;
  text-align: center;
}


.contact-content h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 60px;
}

.contact-layout {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
  min-width: 290px;
}

.contact-form-container {
  flex: 1;
  max-width: 400px;
  width: 100%;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  width: 100%;
}

.contact-form input {
  width: 100%;
  padding: 18px 20px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
}

.contact-form input::placeholder {
  color: #999;
}

.contact-form input:focus {
  outline: none;
  border-color: #00bfff;
  background: rgba(255, 255, 255, 0.15);
}

.contact-form button {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  padding: 18px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.contact-form button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.contact-info {
  flex: 1;
  text-align: left;
  color: #ccc;
  line-height: 1.8;
  padding-top: 50px;
}

.contact-info p {
  margin-bottom: 8px;
  font-size: 1rem;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 0;
  background-color: #1a1a1a;
}

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

.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00bfff;
}

.footer-copyright {
  color: #ccc;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .design-content,
  .materials-content,
  .quality-content {
      flex-direction: column;
      gap: 50px;
      text-align: center;
  }
  
  .contact-layout {
      flex-direction: column;
      gap: 50px;
      text-align: center;
  }
  
  .contact-info {
      text-align: center;
      padding-top: 0;
  }
}

@media (max-width: 768px) {
  .container {
      padding: 0 15px;
  }
  
  .hero-card {
      padding: 40px 30px;
      margin: 0 15px;
  }
  
  .hero-card h1 {
      font-size: 2.5rem;
  }
  
  .hero-subtitle {
      font-size: 1.2rem;
  }
  
  .design-text h2,
  .materials-text h2,
  .quality-text h2,
  .products-section h2,
  .why-section h2,
  .reviews-section h2,
  .contact-content h2 {
      font-size: 2.2rem;
  }
  
  .products-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .features-grid {
      grid-template-columns: 1fr;
      gap: 25px;
  }
  
  .reviews-grid {
      grid-template-columns: 1fr;
      gap: 30px;
  }
  
  .nav-links {
      gap: 15px;
      padding: 6px 15px;
  }
  
  .nav-links a {
      font-size: 0.9rem;
      padding: 6px 12px;
  }
  
  .logo {
      font-size: 20px;
  }
  
  .footer-content {
      flex-direction: column;
      gap: 25px;
      text-align: center;
  }
  
  .footer-links {
      gap: 25px;
  }
  
  .cookie-popup {
      left: 10px;
      right: 10px;
  }
  
  .cookie-buttons {
      flex-direction: column;
  }
  
  .contact-form {
      padding: 35px 25px;
  }
}

@media (max-width: 480px) {
  .hero-card h1 {
      font-size: 2rem;
  }
  
  .hero-card {
      padding: 30px 20px;
  }
  
  .design-text h2,
  .materials-text h2,
  .quality-text h2,
  .products-section h2,
  .why-section h2,
  .reviews-section h2,
  .contact-content h2 {
      font-size: 1.8rem;
  }
  
  .product-card,
  .feature-card,
  .review-card {
      padding: 25px;
  }
  
  .contact-form {
      padding: 25px 20px;
  }
  
  .nav-links {
      flex-wrap: wrap;
      justify-content: center;
  }
  
  .nav-links a {
      font-size: 0.8rem;
      padding: 5px 10px;
      margin: 2px;
  }
  
  .footer-links {
      flex-wrap: wrap;
      justify-content: center;
      gap: 15px;
  }
}

.product-card-c {
  text-decoration: none;
}
.product-card-c h3{
  color: #00bfff !important;
}
.product-card-c:nth-child(1) h3{
  color: #00bfff !important;
}
.product-card-c:nth-child(2) h3{
  color: #00bfff !important;
}
.product-card-c h3:first-line{
  color: #00bfff !important;
}




/* Product Detail Section */
.product-detail-section .product-detail-section {
  padding: 100px 0;
  background-color: #2a2d3a;
  color: #fff;
}

.product-detail-section .product-detail-content {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.product-detail-section .product-info {
  flex: 1;
}

.product-detail-section .product-info h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
  color: #fff;
}

.product-detail-section .product-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 40px;
}

.product-detail-section .product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
}

.product-detail-section .key-features {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail-section .key-features h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.product-detail-section .key-features ul {
  list-style: none;
  padding: 0;
}

.product-detail-section .key-features li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  color: #ccc;
  position: relative;
  padding-left: 15px;
}

.product-detail-section .key-features li:before {
  content: "•";
  color: #00bfff;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.product-detail-section .key-features li strong {
  color: #fff;
}

.product-detail-section .size-info {
  margin-top: 30px;
}

.product-detail-section .size-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 10px;
}

.product-detail-section .size-info p:first-child {
  font-weight: 600;
  color: #fff;
}

.product-detail-section .product-image-container {
  flex: 0 0 450px;
}

.product-detail-section .product-image {
  width: 100%;
  height: 450px;
  background: #f5f5f5;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-detail-section .product-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .product-detail-section .product-detail-content {
      flex-direction: column-reverse;
      gap: 50px;
      text-align: center;
  }
  
  .product-detail-section .product-image-container {
      flex: none;
      max-width: 400px;
      margin: 0 auto;
  }
  
  .product-detail-section .product-image {
      height: 400px;
  }
}

@media (max-width: 768px) {
  .product-detail-section .product-info h1 {
      font-size: 2.2rem;
  }
  
  .product-detail-section .product-description {
      font-size: 1rem;
  }
  
  .product-detail-section .product-price {
      font-size: 1.3rem;
  }
  
  .product-detail-section .key-features {
      padding: 25px;
      text-align: left;
  }
  
  .product-detail-section .product-image-container {
      max-width: 350px;
  }
  
  .product-detail-section .product-image {
      height: 350px;
  }
}

@media (max-width: 480px) {
  .product-detail-section .product-info h1 {
      font-size: 1.8rem;
  }
  
  .product-detail-section .key-features {
      padding: 20px;
  }
  
  .product-detail-section .product-image-container {
      max-width: 300px;
  }
  
  .product-detail-section .product-image {
      height: 300px;
  }
}


/* Success Section */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 60px;
  background-color: #f5f5f5;
  color: #333;
}

.success-content {
  max-width: 900px;
  text-align: center;
}

.success-content h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
  line-height: 1.2;
}

.success-message {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.success-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 50px;
  line-height: 1.6;
}

.success-actions {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.btn-primary {
  background: #00bfff;
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;

  border-radius: 16px;
background: radial-gradient(286.37% 67% at 4.6% 40.8%, #00E7F7 0%, #00C2F1 100%);
box-shadow: 0 -3px 3px 0 #003744 inset;
}

.btn-primary:hover {
  background: #0099cc;
  transform: translateY(-2px);
}

.btn-secondary {
  color: #00bfff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;

  color: #00B8CC;
text-align: center;
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 120%; /* 19.2px */
text-transform: uppercase;
}

.btn-secondary:hover {
  color: #0099cc;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background: #00bfff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.btn-secondary:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .success-content h1 {
      font-size: 2.5rem;
  }
  
  .success-message {
      font-size: 1.125rem;
  }
  
  .success-description {
      font-size: 1rem;
  }
  
  .success-actions {
      flex-direction: column;
      gap: 25px;
  }
  
  .btn-primary {
      width: 100%;
      max-width: 280px;
  }
}

@media (max-width: 480px) {
  .success-content h1 {
      font-size: 2rem;
  }
  
  .success-section {
      padding: 100px 15px 40px;
  }
}

/* Stock Update Section */
.stock-update-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.stock-update-card {
  background: #e8f4f8;
  border-radius: 20px;
  padding: 60px 50px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.stock-update-card h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.2;
}

.stock-description {
  font-size: 1.125rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.stock-button {
  background: #00bfff;
  color: white;
  padding: 18px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.stock-button:hover {
  background: #0099cc;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .stock-update-card {
      padding: 40px 30px;
  }
  
  .stock-update-card h2 {
      font-size: 2.2rem;
  }
  
  .stock-description {
      font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .stock-update-card {
      padding: 35px 25px;
      border-radius: 16px;
  }
  
  .stock-update-card h2 {
      font-size: 1.8rem;
  }
  
  .stock-button {
      width: 100%;
      max-width: 280px;
  }
}