/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #222;
}

Dark mode styles body.dark-mode {
  background-color: #000000;
  color: #eee;
}

body.dark-mode .container {
  background-color: #1e1e1e;
  border-bottom-color: #333;
}


body.dark-mode a,
body.dark-mode .main-nav a,
body.dark-mode .mobile-nav-list a {
  color: #ddd;
}

body.dark-mode a:hover,
body.dark-mode .main-nav a:hover,
body.dark-mode .mobile-nav-list a:hover {
  color: #ff9800;
  background-color: transparent;
}

body.dark-mode .search-wrapper,
body.dark-mode .mobile-search {
  background-color: #222;
  border-color: #444;
}

body.dark-mode .search-wrapper input,
body.dark-mode .mobile-search input .mobile-nav-list {
  background-color: #222;
  color: #eee;
  border: none;
}

body.dark-mode .language-select,
body.dark-mode .mobile-language-select {
  background-color: #222;
  color: #eee;
  border-color: #444;
}


body.dark-mode .mobile-menu,
body.dark-mode {
  background-color: #222;
  color: #eee;
}

body.dark-mode .hamburger-btn {
  color: #eee;
}

body.dark-mode .hamburger-btn:hover {
  color: #ff9800;
  background-color: transparent;
}

body.dark-mode .cart-btn,
body.dark-mode .mode-toggle,
body.dark-mode .mobile-cart-btn,
body.dark-mode .mobile-theme-toggle {
  color: #ff9800;
}

body.dark-mode .search-wrapper button,
body.dark-mode .mobile-search button {
  background-color: #ff9800;
  color: #121212;
}

body.dark-mode .search-wrapper button:hover,
body.dark-mode .mobile-search button:hover {
  background-color: #e68a00;
}


body.dark-mode .product-card {
  background-color: #fffcfc10;
  color: white;
}

body.dark-mode .featured-products {
  background-color: #222;
  color: #eee;
}

body.dark-mode h3 {
  color: #eee;
}

body.dard-mode .featured-text {
  color: white;
  background-color: #222;
}

body.dark-mode .separator {
  background-color: #3d3c3c;
  color: #666;
}

body.dark-mode .testimonial-text {
  color: #eee;

}

body.dark-mode .testimonial-name {
  color: #eee;
}


body.dark-mode .testimonial-item {
  background-color: #fffcfc10;
}

body.dark-mode .faq-section {
  background-color: #fffcfc10;
}

body.dark-mode .faq-section {
  background-color: #fffcfc10;
  color: #aaa;
}

body.dark-mode .faq-answer {
  background-color: #3d3c3c;
  color: #eee;
}

body.dark-mode .footer {
  background-color: #1e1e1e;
  border-bottom-color: #333;
  color: #eee;
}

body.dark-mode .contact-hero {
  background-color: #333;
  color: #eee;
}

body.dark-mode .contact-info {
  color: #eee;
}

body.dark-mode .terms-title-section {
  background-color: #1e1e1e;
  color: #eee;
}

body.dark-mode h1 {
  color: #eee;
}

body.dark-mode .subtitle {
  color: #c5c5c5;
}

body.dark-mode .tos-introduction {
  background-color: #1e1e1e;
  color: #eee;
}

body.dark-mode h2 {
  color: #eee;
}

body.dark-mode p {
  color: #c5c5c5;
}



body.dark-mode .tos-user-responsibilities {
  background-color: #1e1e1e;
  color: #eee;
}

body.dark-mode .tos-orders-communication {
  background-color: #1e1e1e;
  color: #eee;
}

body.dark-mode .tos-intellectual-property {
  background-color: #1e1e1e;
  color: #eee;
}

body.dark-mode .tos-limitation-liability {
  background-color: #1e1e1e;
  color: #eee;
}

body.dark-mode .tos-changes {
  background-color: #1e1e1e;
  color: #eee;
}

body.dark-mode .contact-info {
  background-color: #1e1e1e;
  border-bottom: #1e1e1e;
  color: #eee;
}

body.dark-mode h2 {
  color: #eee;
}

body.dark-mode p {
  color: #c5c5c5;
}

body.dark-mode li {
  color: #c5c5c5;
}


body.dark-mode .cta-banner {
  background-color: #1e1e1e;
  border-bottom-color: #333;
  color: #eee;
}

body.dark-mode .con {
  color: orange;
}


body.dark-mode .cons {
  background-color: #1e1e1e;
  color: #eee;
}


body.dark-mode strong {
  color: #eee;
}






/* Add any other dark mode color tweaks as needed */


/* Container */
.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.4);
}

/* Logo */
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
}

/* Main Nav Desktop */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.main-nav a:hover,
.main-nav a:focus {
  background-color: #ff6600;
  color: white;
  outline: none;
}

/* Header Controls Desktop */
.header-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Language Select Desktop */
.language-select {
  padding: 5px 8px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

/* Search Bar Desktop */
.desktop-search {
  position: relative;
  background-color: #dbdbdb;
  border-radius: 30px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  margin-left: auto;
  transition: all 0.3s ease;
}

.desktop-search input {
  border: none;
  background: transparent;
  color: #fff;
  padding: 8px 10px;
  width: 220px;
  outline: none;
  border-radius: 30px;
  font-size: 1rem;
}

.desktop-search button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.desktop-search button:hover {
  background-color: #e65500;
}

/* Cart Button Desktop */
.cart-btn {
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.cart-btn:hover {
  color: #ff6600;
}

/* Mode Toggle Desktop */
.mode-toggle {
  font-size: 1.3rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.mode-toggle:hover {
  color: #ff6600;
}

/* Hamburger (Mobile) */
.hamburger-btn {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  display: none;
  /* hidden on desktop */
}

/* Mobile Menu Panel */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -320px;
  width: 280px;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 15px rgba(0, 0, 0, 0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: left 0.3s ease;
  z-index: 9999;
  overflow-y: auto;
}

/* Show mobile menu */
.mobile-menu.active {
  left: 0;
}

/* Close button mobile menu */
.close-btn {
  align-self: flex-end;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.close-btn:hover {
  color: #ff6600;
}

/* Mobile Nav List */
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
}

.mobile-nav-list a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: block;
}

.mobile-nav-list a:hover,
.mobile-nav-list a:focus {
  background-color: #ff6600;
  color: white;
  outline: none;
}

/* Language select mobile */
.mobile-language-select {
  padding: 8px 10px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;
}

/* Mobile Search Container */
.mobile-search-container {
  position: relative;
  background-color: #b4b2b2;
  border-radius: 30px;
  padding: 5px 15px;
  display: flex;
  width: 100%;
  align-items: center;
  margin-left: auto;
  transition: all 0.3s ease;
}

.mobile-search-container input {
  border: none;
  background: transparent;
  color: #fff;
  padding: 8px 10px;
  width: 159px;
  outline: none;
  border-radius: 30px;
  font-size: 1rem;
}

.mobile-search-container button {
  background: #ff6600;
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.mobile-search-container button:hover {
  background-color: #e65500;
}

/* Mobile Cart Button */
.mobile-cart-btn {
  font-size: 1.2rem;
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-align: left;
}

.mobile-cart-btn:hover {
  background-color: #ff6600;
  color: white;
}

/* Mobile Mode Toggle */
.mobile-theme-toggle {
  font-size: 1.2rem;
  padding: 10px;
  border: none;
  background: none;
  cursor: pointer;
  color: #333;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  text-align: left;
}

.mobile-theme-toggle:hover {
  background-color: #ff6600;
  color: #ffffff;
}

/* Responsive Queries */

/* Mobile View */
@media (max-width: 900px) {

  /* Hide desktop nav and controls */
  .main-nav,
  .header-controls .language-select,
  .desktop-search,
  .cart-btn,
  .mode-toggle {
    display: none;
  }

  /* Show hamburger */
  .hamburger-btn {
    display: block;
  }
}



















.terms-title-section {
  background: #f5f5f5;
  padding: 40px 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
}

.terms-title-section h1 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #222;
}

.terms-title-section .subtitle {
  font-size: 16px;
  color: #555;
}









.tos-introduction {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.tos-introduction .containe {
  max-width: 900px;
  margin: auto;
}

.tos-introduction h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
}

.tos-introduction p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}










.tos-user-responsibilities {
  padding: 40px 20px;
  background-color: #ffffff;
}

.tos-user-responsibilities .containe {
  max-width: 900px;
  margin: auto;
}

.tos-user-responsibilities h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
}

.tos-user-responsibilities p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}

.tos-user-responsibilities ul {
  list-style-type: disc;
  padding-left: 20px;
}

.tos-user-responsibilities li {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}














.tos-orders-communication {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.tos-orders-communication .containe {
  max-width: 900px;
  margin: auto;
}

.tos-orders-communication h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
}

.tos-orders-communication p,
.tos-orders-communication li {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.tos-orders-communication ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}













.tos-intellectual-property {
  padding: 40px 20px;
  background-color: #ffffff;
}

.tos-intellectual-property .containe {
  max-width: 900px;
  margin: auto;
}

.tos-intellectual-property h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
}

.tos-intellectual-property p,
.tos-intellectual-property li {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.tos-intellectual-property ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}















.tos-limitation-liability {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.tos-limitation-liability .containe {
  max-width: 900px;
  margin: auto;
}

.tos-limitation-liability h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
}

.tos-limitation-liability p,
.tos-limitation-liability li {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.tos-limitation-liability ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}














.tos-changes {
  padding: 40px 20px;
  background-color: #ffffff;
}

.tos-changes .containe {
  max-width: 900px;
  margin: auto;
}

.tos-changes h2 {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
}

.tos-changes p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}










.contact-info {
  background-color: #f9f9f9;
  border-radius: 16px;
  padding: 2rem;
  max-width: 700px;
  margin: 2rem auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  line-height: 1.6;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #333;
}

.contact-info p {
  margin: 0.5rem 0;
}

.contact-info ul {
  list-style: none;
  padding-left: 0;
}

.contact-info ul li {
  margin: 0.6rem 0;
  font-size: 1rem;
}

.contact-info a {
  color: #ff6600;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}

.contact-info a:hover {
  color: #cc5200;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-info {
    padding: 1.5rem;
    margin: 1rem;
  }

  .contact-info h3 {
    font-size: 1.4rem;
  }

  .contact-info ul li {
    font-size: 0.95rem;
  }
}










/* CTA Banner Section */
.cta-banner {
  /* background: linear-gradient(to right, #0a0a0a, #1a1a1a); */
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  border-top: 4px solid orange;
  /* border-bottom: 4px solid orange; */
}

.cta-banner .cta-content {
  max-width: 960px;
  margin: auto;
  padding: 0 20px;
}

.cta-banner h2 {
  font-size: 2.5rem;
  color: orange;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-banner h2 span {
  color: black;
  font-weight: bold;
}

.cta-banner p {
  font-size: 1.2rem;
  color: black;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #e09406;
  color: #000;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 18px rgba(255, 165, 0, 0.4);
}

.cta-button:hover {
  background-color: #fda725;
  transform: scale(1.05);
  box-shadow: 0 0 25px #dfb15d;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .cta-banner h2 {
    font-size: 2.2rem;
  }

  .cta-banner p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .cta-banner {
    padding: 60px 15px;
  }

  .cta-banner h2 {
    font-size: 2rem;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .cta-banner {
    padding: 50px 10px;
  }

  .cta-banner h2 {
    font-size: 1.6rem;
  }

  .cta-banner p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}













.footer {
  background: rgb(255, 255, 255);
  color: #000000;
  padding: 3rem 1rem 1rem;
  font-family: 'Segoe UI', sans-serif;
  box-shadow: 0 2px 10px rgba(255, 102, 0, 0.4);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 120px;
  min-width: 200px;
}

.footer-logo img {
  max-width: 60px;
  margin-bottom: 10px;
  border-radius: 60px;
  height: 60px;
  width: 60px;
}

.footer-section h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #ff6600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-section ul li i {
  margin-right: 8px;
  color: #ff6600;
}

.footer-section a {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: white;
}

.social-icons a {
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  /* background-color: #000000; */
  color: #ff6600;
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 16px;
  transition: background 0.3s ease;
}

.social-icons a:hover {
  background: #e05500;
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #000000;
}