/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #edf6f9;
  color: #333;
}

/* Navbar */
header {
  background: linear-gradient(to bottom, #1a1a1a, #4d4d4d);
  padding: 1rem 2rem;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: lowercase;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.cart-icon {
  font-size: 1.2rem;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  gap: 0.5rem;
}

/* Circular image */
.logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .logo-img {
    width: 36px;
    height: 36px;
  }

  .logo {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 30px;
    height: 30px;
  }

  .logo {
    font-size: 0.9rem;
  }
}



/* Products */
.products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4rem;
  padding: 3rem 2rem;
}

.product-card {
  background: #ffffff;
  padding: 1rem;
  width: 320px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card p {
  margin-top: 1rem;
  font-weight: bold;
  color: #b24d00;
}


/* ========== Responsive Styles ========== */

/* Tablet and below */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
    align-items: flex-start;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .products {
    justify-content: center;
    padding: 2rem 1rem;
  }

  .product-card {
    width: 45%;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .nav-links {
    gap: 0.8rem;
    font-size: 0.95rem;
  }

  .product-card {
    width: 100%;
  }

  .logo {
    font-size: 1.2rem;
  }

  .cart-icon {
    font-size: 1rem;
  }
}

/*supplement  */
/* Supplement Facts Section */
.supplement-section {
  display: flex;
  flex-direction: column;
}

.supplement-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.supplement-box img {
  width: 100%;
  max-width: 700px;
  height: auto;
  object-fit: cover;
}

.info {
  background-color: #eaf8fa;
  padding: 30px;
  max-width: 500px;
  font-size: 1rem;
  line-height: 1.6;
}

.info h3 {
  margin-bottom: 10px;
  font-weight: bold;
}

.info.left {
  text-align: left;
}

.info.right {
  text-align: left;
}

@media (min-width: 768px) {
  .supplement-box {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .info.left {
    order: -1; /* text on left, image on right */
    margin: 0 30px 0 0;
  }

  .info.right {
    order: 1;  /* text on right, image on left */
    margin: 0 0 0 30px;
  }

  .supplement-box img {
    max-width: 50%;
  }

  .info {
    max-width: 45%;
  }
}
/* Hero Section Stylish */
.hero-sections {
  background: linear-gradient(
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url('image/download.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;


  padding: 120px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: fadeIn 1.2s ease-in;
}

.hero-sections::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,165,0,0.1) 0%, transparent 80%);
  animation: pulse 6s infinite ease-in-out;
  z-index: 0;
}

.hero-sections h1 {
  font-size: 3.5rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
  padding: 20px 40px;
  background: linear-gradient(90deg, #ff8c00, #ff6f00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.6; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-sections {
    padding: 80px 15px;
  }

  .hero-sections h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-sections {
    padding: 60px 10px;
  }

  .hero-sections h1 {
    font-size: 1.8rem;
  }
}


/* contact */
.contact-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      padding: 60px 20px;
      background: #f7fbfc;
    }

    .contact-section img {
      width: 100%;
      max-width: 450px;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    }

    .contact-info {
      max-width: 400px;
      text-align: center;
    }

    .contact-info h1 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #333;
    }

    .contact-info p {
      margin: 10px 0;
      line-height: 1.6;
      font-size: 1rem;
    }

    .contact-info a {
      color: #b24d00;
      text-decoration: none;
    }

    .contact-info a:hover {
      text-decoration: underline;
    }

    .social-icon img {
      width: 28px;
      margin-top: 10px;
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
        padding: 40px 15px;
      }

      .contact-info h1 {
        font-size: 2rem;
      }
    }
    /* Login Modal */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 1rem;
  overflow-y: auto;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.modal-box h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.modal-box input {
  width: 100%;
  padding: 0.8rem;
  margin: 0.5rem 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.modal-box button {
  width: 100%;
  padding: 0.8rem;
  background-color: #333;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 1rem;
  font-size: 1rem;
  cursor: pointer;
}

.form-footer {
  margin-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.form-footer a {
  color: #007BFF;
  text-decoration: none;
  flex: 1;
  text-align: center;
}

#message {
  margin-top: 1rem;
  font-weight: bold;
  font-size: 0.95rem;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.4rem;
  color: #999;
  cursor: pointer;
}

/* 📱 Mobile-specific adjustments */
@media (max-width: 480px) {
  .modal-box {
    padding: 1.2rem;
    border-radius: 10px;
  }

  .modal-box h2 {
    font-size: 1.25rem;
  }

  .modal-box input,
  .modal-box button {
    font-size: 0.95rem;
  }

  .form-footer {
    flex-direction: column;
    gap: 0.4rem;
  }

  .form-footer a {
    font-size: 0.9rem;
  }

  .close-btn {
    font-size: 1.2rem;
  }
}






/*Footer */
.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}

.footer-locations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
}

.location {
  max-width: 300px;
}

.location h3.highlight {
  color: #ff7c00;
  margin-bottom: 10px;
}

.footer p {
  margin: 4px 0;
}

.tagline {
  font-weight: bold;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 600px) {
  .footer-locations {
    flex-direction: column;
    align-items: center;
  }

  .location {
    width: 100%;
    max-width: 90%;
  }
}

.hero-section {
  background: url('image/sporty-woman-exercising-on-multistation-600nw-2251700937.webp') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 300px 20px;
  position: relative;
}

.hero-content {
  max-width: 600px;
  margin: auto;
  z-index: 2;
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  text-transform: lowercase;
  z-index: 2;
  position: relative;
}

.tagline {
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  margin: 1rem 0;
  z-index: 2;
  position: relative;
}

.shop-button {
  background: #b24d00;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  z-index: 2;
  position: relative;
  display: inline-block;
  margin-top: 1rem;
}

.shop-button:hover {
  background: #ff6600;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1rem;
    letter-spacing: 0.2rem;
  }

  .shop-button {
    font-size: 0.95rem;
    padding: 10px 25px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-attachment: scroll;
    padding: 180px 20px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .tagline {
    font-size: 1rem;
    letter-spacing: 0.2rem;
  }

  .shop-button {
    font-size: 0.95rem;
    padding: 10px 25px;
  }
}

.add-to-cart {
  margin-top: 10px;
  padding: 8px 16px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.add-to-cart:hover {
  background-color: black;
}



.cart-count {
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 5px;
}
/* Style the Subscribe link like a button */
.nav-links li a#openSubscribe {
  background-color: #1a73e8;
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.nav-links li a#openSubscribe:hover {
  background-color: #155ab6;
  color: #fff;
  text-decoration: none;
}


/* Full screen preloader */
.logo-center {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 60%;        /* Makes it circular */
  border: 2px solid #1a73e8; /* Optional border */
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Center content wrapper */
.ring-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
}

/* Rotating ring surrounds logo */
.rotating-ring {
  width: 100px;
  height: 100px;
  border: 6px solid #1a73e8;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo stays centered inside rotating ring */
.logo-center {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}


.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Hide menu by default */
#navbarLinks {
  display: flex;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  #navbarLinks {
    display: none; /* HIDE BY DEFAULT */
    background-color: #1a1a1a;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 10;
  }

  #navbarLinks.active {
    display: block; /* SHOW ONLY ON CLICK */
  }

  .nav-links {
    flex-direction: column;
    text-align: center;
    padding: 10px 0;
    list-style: none;
  }

  .nav-links li {
    padding: 10px 0;
  }

  .nav-links li a {
    color: white;
    text-decoration: none;
  }
}
