* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #252d32;
    scroll-behavior: smooth;
  }
  
  /* Auth Container */
  .auth-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10000;
  }
  
  .auth-container.active {
    display: flex;
  }
  
  .auth-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(37, 45, 50, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    display: flex;
    min-height: 600px;
    position: relative;
  }
  
  .auth-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #3a4750;
    color: #ffffff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    z-index: 10001;
  }
  
  .auth-close:hover {
    background: #252d32;
  }
  
  .auth-left {
    background: linear-gradient(135deg, #3a4750 0%, #252d32 100%);
    color: #ffffff;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
  }
  
  .auth-left h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .auth-left p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
  }
  
  .auth-features {
    list-style: none;
  }
  
  .auth-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
  }
  
  .auth-features i {
    margin-right: 1rem;
    color: #d4d4d4;
    font-size: 1.2rem;
  }
  
  .auth-right {
    padding: 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eeeeee;
  }
  
  .auth-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    color: #4f616e;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
  }
  
  .auth-tab.active {
    color: #3a4750;
    border-bottom-color: #3a4750;
  }
  
  .auth-form {
    display: none;
  }
  
  .auth-form.active {
    display: block;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #252d32;
    font-weight: 500;
  }
  
  .form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #d4d4d4;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus {
    outline: none;
    border-color: #3a4750;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .auth-btn {
    width: 100%;
    background: #3a4750;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-bottom: 1rem;
  }
  
  .auth-btn:hover {
    background: #252d32;
  }
  
  .auth-btn.secondary {
    background: transparent;
    color: #3a4750;
    border: 2px solid #3a4750;
  }
  
  .auth-btn.secondary:hover {
    background: #3a4750;
    color: #ffffff;
  }
  
  .forgot-password {
    text-align: center;
    margin-top: 1rem;
  }
  
  .forgot-password a {
    color: #3a4750;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .forgot-password a:hover {
    text-decoration: underline;
  }
  
  .social-login {
    margin-top: 2rem;
    text-align: center;
  }
  
  .social-login p {
    color: #4f616e;
    margin-bottom: 1rem;
  }
  
  .social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
  }
  
  .social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #d4d4d4;
    background: #ffffff;
    color: #4f616e;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .social-btn:hover {
    border-color: #3a4750;
    color: #3a4750;
  }
  
  /* Navigation */
  nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(37, 45, 50, 0.1);
  }
  
  .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: relative;
}
  
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3a4750;
    margin-left: 0;
  }
  
  .logo-suffix {
    font-size: 0.8rem;
    font-weight: 400;
    color: #4f616e;
    opacity: 0.7;
    margin-left: 0.5rem;
    text-transform: lowercase;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-links a {
    color: #4f616e;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #3a4750;
  }
  
  .login-btn {
    background: #3a4750;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }
  
  .login-btn:hover {
  background: #252d32;
  transform: translateY(-1px);
}

/* Mode Button */
.mode-btn {
  background: none;
  border: 2px solid #3a4750;
  color: #3a4750;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mode-btn:hover {
  background-color: #3a4750;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(58, 71, 80, 0.3);
}

/* Navigation Buttons */
.nav-btn {
  background: none;
  border: 2px solid #3a4750;
  color: #3a4750;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  margin: 0 0.5rem;
}

.nav-btn:hover {
  background-color: #3a4750;
  color: #ffffff;
  transform: translateY(-1px);
}
  
  /* Sections */
  section {
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #eeeeee 0%, #d4d4d4 100%);
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #252d32;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.25rem;
    color: #4f616e;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-button {
    display: inline-block;
    background: #3a4750;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
  }
  
  .cta-button:hover {
    background: #252d32;
    transform: translateY(-2px);
  }
  
  .cta-button.secondary {
    background: transparent;
    color: #3a4750;
    border: 2px solid #3a4750;
  }
  
  .cta-button.secondary:hover {
    background: #3a4750;
    color: #ffffff;
  }
  
  /* About Section */
  .about {
    background: #ffffff;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .about-content h2 {
    font-size: 2.5rem;
    color: #252d32;
    margin-bottom: 1.5rem;
  }
  
  .about-content p {
    color: #4f616e;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
  }
  
  .countdown-section {
    margin: 3rem 0;
    text-align: center;
  }
  
  .countdown-section h3 {
    color: #252d32;
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
  
  .countdown-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .countdown-item {
    background: #3a4750;
    color: #ffffff;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(58, 71, 80, 0.3);
  }
  
  .countdown-number {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .countdown-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #eeeeee;
    border-radius: 12px;
  }
  
  .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3a4750;
  }
  
  .stat-label {
    color: #4f616e;
    font-size: 0.9rem;
  }
  
  /* Services Section */
  .services {
    background: #eeeeee;
  }
  
  .services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #252d32;
    margin-bottom: 3rem;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .service-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(37, 45, 50, 0.1);
    transition: transform 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-5px);
  }
  
  .service-icon {
    font-size: 2.5rem;
    color: #3a4750;
    margin-bottom: 1rem;
  }
  
  .service-card h3 {
    color: #252d32;
    margin-bottom: 1rem;
  }
  
  .service-card p {
    color: #4f616e;
  }
  
  /* Contact Section */
  .contact {
    background: #ffffff;
  }
  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .contact-info h2 {
    font-size: 2.5rem;
    color: #252d32;
    margin-bottom: 1.5rem;
  }
  
  .contact-info p {
    color: #4f616e;
    margin-bottom: 2rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    background: #3a4750;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
  }
  
  .contact-form {
    background: #eeeeee;
    padding: 2rem;
    border-radius: 12px;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #252d32;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d4d4d4;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #3a4750;
  }
  
  .submit-btn {
    background: #3a4750;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .submit-btn:hover {
    background: #252d32;
  }
  
  /* Footer */
  footer {
    background: #252d32;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
  }
  
  .social-links {
    margin-top: 1rem;
  }
  
  .social-links a {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
  }
  
  .social-links a:hover {
    color: #d4d4d4;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .auth-box {
      flex-direction: column;
      min-height: auto;
    }
  
    .auth-left {
      padding: 2rem;
    }
  
    .auth-right {
      padding: 2rem;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .nav-links {
      display: none;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .about-grid,
    .contact-container {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .countdown-container {
      flex-wrap: wrap;
      gap: 1rem;
    }
  
    .countdown-item {
      min-width: 70px;
      padding: 1rem 0.5rem;
    }
  
    .countdown-number {
      font-size: 1.5rem;
    }
  
    .stats {
      grid-template-columns: 1fr;
    }
  
    .services-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Verification Styles */
  .verification-section {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
  }

  .verification-section h4 {
    margin-bottom: 0.5rem;
    color: #3a4750;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .verification-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
  }

  .verification-code {
    width: 50px;
    height: 40px;
    text-align: center;
    border: 1px solid #d4d4d4;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #3a4750;
  }

  .verification-code:focus {
    outline: none;
    border-color: #3a4750;
    box-shadow: 0 0 0 2px rgba(58, 71, 80, 0.2);
  }

  .send-code-btn {
    background: #4f616e;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s ease;
  }

  .send-code-btn:hover {
    background: #3a4750;
  }

  .send-code-btn:disabled {
    background: #d4d4d4;
    cursor: not-allowed;
  }

  .verification-status {
    font-size: 0.8rem;
    margin-top: 0.5rem;
  }

  .verification-status.success {
    color: #28a745;
  }

  .verification-status.error {
    color: #dc3545;
  }

  .verification-status.pending {
    color: #ffc107;
  }
  
  /* Verification Screen Styles */
  .verification-screen {
    text-align: center;
  }
  
  .verification-screen h3 {
    color: #3a4750;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
  
  .verification-screen p {
    color: #4f616e;
    margin-bottom: 2rem;
    font-size: 0.9rem;
  }
  
  .verification-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
  }
  
  .back-btn {
    background: #d4d4d4;
    color: #3a4750;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  
  .back-btn:hover {
    background: #c4c4c4;
  }
  
  /* Center verification inputs */
  .verification-screen .verification-inputs {
    justify-content: center;
    margin-bottom: 1rem;
  }
  
  /* Responsive adjustments for verification screens */
  @media (max-width: 768px) {
    .verification-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .verification-buttons button {
      width: 100%;
      max-width: 200px;
    }
  }

/* Products Page Styles */
.products-hero {
  background: linear-gradient(135deg, #3a4750 0%, #252d32 100%);
  color: #ffffff;
  padding: 6rem 0;
  text-align: center;
}

.products-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.products-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.products-section {
  padding: 4rem 0;
  background: #eeeeee;
}

.products-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: #ffffff;
  color: #3a4750;
  border: 2px solid #d4d4d4;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #3a4750;
  color: #ffffff;
  border-color: #3a4750;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(37, 45, 50, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 45, 50, 0.15);
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #252d32;
}

.product-category {
  color: #4f616e;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  font-weight: 500;
}

.product-description {
  color: #4f616e;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3a4750;
}

.currency {
  color: #4f616e;
  font-weight: 500;
}

.loading-spinner {
  text-align: center;
  padding: 3rem;
  color: #4f616e;
}

.loading-spinner i {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #3a4750;
}

.error-message,
.no-products {
  text-align: center;
  padding: 3rem;
  color: #4f616e;
  font-size: 1.1rem;
}

/* Product Modal */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 10000;
}

.product-modal-content {
  background: #ffffff;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #3a4750;
  color: #ffffff;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10001;
}

.modal-close:hover {
  background: #252d32;
}

.product-modal-body {
  display: flex;
  gap: 2rem;
  padding: 2rem;
}

.product-modal-image {
  flex: 1;
  max-width: 400px;
}

.product-modal-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.product-modal-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-modal-info h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #252d32;
}

.product-modal-info .product-category {
  color: #4f616e;
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 500;
}

.product-modal-info .product-description {
  color: #4f616e;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-features {
  margin-bottom: 2rem;
}

.product-features h4 {
  color: #252d32;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.product-features ul {
  list-style: none;
  padding-left: 0;
}

.product-features li {
  color: #4f616e;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.product-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3a4750;
  font-weight: bold;
}

.product-modal-info .product-price {
  margin-bottom: 2rem;
}

.product-modal-info .price {
  font-size: 2rem;
  font-weight: 700;
  color: #3a4750;
}

.product-modal-info .currency {
  color: #4f616e;
  font-weight: 500;
  font-size: 1.2rem;
}

/* Active nav link */
.nav-links a.active {
  color: #3a4750;
  font-weight: 600;
}

/* Responsive Design for Products */
@media (max-width: 768px) {
  .products-hero h1 {
    font-size: 2rem;
  }
  
  .products-hero p {
    font-size: 1rem;
  }
  
  .products-filters {
    gap: 0.5rem;
  }
  
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }
  
  .product-modal-body {
    flex-direction: column;
    gap: 1rem;
  }
  
  .product-modal-image {
    max-width: 100%;
  }
  
  .product-modal-image img {
    height: 200px;
  }
  
  .product-modal-info h2 {
    font-size: 1.5rem;
  }
  
  .product-modal-info .price {
    font-size: 1.5rem;
  }
}

/* Animation Styles */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.page-transition-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3a4750 0%, #252d32 100%);
  z-index: 9999;
  animation: page-transition 0.5s ease-in-out;
}

@keyframes page-transition {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* Enhanced hover effects */
.service-card:hover,
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-button:hover,
.auth-btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(58, 71, 80, 0.4);
}

/* Loading animations */
.loading-spinner i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Pulse animation for important elements */
.hero h1 {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Smooth transitions for all interactive elements */
* {
  transition: all 0.3s ease;
}

/* Navbar animations */
.nav-links a,
.nav-links button {
  position: relative;
  overflow: hidden;
}

.nav-links a::before,
.nav-links button::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #3a4750;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover::before,
.nav-links button:hover::before {
  width: 100%;
}

/* Logo animation */
.logo {
  animation: logo-glow 3s ease-in-out infinite;
}

@keyframes logo-glow {
  0%, 100% {
    text-shadow: 0 0 5px rgba(58, 71, 80, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(58, 71, 80, 0.6);
  }
}

/* Countdown animations */
.countdown-number {
  animation: countdown-bounce 0.5s ease-out;
}

@keyframes countdown-bounce {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Form input animations */
.form-group input:focus {
  transform: scale(1.02);
  box-shadow: 0 0 15px rgba(58, 71, 80, 0.3);
}

/* Modal animations */
.auth-container {
  animation: modal-fade-in 0.3s ease-out;
}

@keyframes modal-fade-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Filter button animations */
.filter-btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Product card image hover effect */
.product-card img {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover img {
  transform: scale(1.1) rotate(2deg);
}

/* Email Verification Message Styles */
.verification-message {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  margin: 20px 0;
}

.verification-message p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.verification-message i {
  display: block;
  margin: 0 auto 20px;
}