body {
  margin: 0;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
  padding-top: 70px; 
}

/* Navbar */
.navbar {
    background-color: white;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12); 
    padding: 15px 20px;
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Logo image */
.logo img {
  height: 35px; 
  width: auto;
}



/* Navbar Links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-size: 18px;
}

.nav-links a:hover {
  color: blue;
}

/* My Account Button */
.account-btn {
  border: 1px solid black;
  padding: 6px 15px;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  color: black;
}

.account-btn:hover {
  background: #f5f5f5;
}

/* Hamburger Icon */
.menu-icon {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 15px;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 200px;
    z-index: 1000;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}


/* Hero Section ---------------------------------------------------------------------------------------------------------------------------------------*/
.hero {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(./images/bg.png);
    background-size: cover;
    background-position: center;
    filter: contrast(0.5);
    z-index: -1;
}


.hero-content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    
    width: 100%;
    height: 77vh;
    padding: 60px 0;
}

.hero-text{
    display: flex;
    flex-direction: column;
   

   

}
.hero-text h1 {
  font-family: 'Times New Roman', Georgia, serif;
  font-size: 50px;
  /* font-weight: 600; */
  line-height: 1.3;
  color: black;
}

.hero-text h1 span {
    font-weight: 600;
  color: #0056d6;
}

.hero-text p {
  margin-top: 15px;
  font-size: 16px;
  color: #555;
  max-width: 500px;
}

/* Form */
.hero-form {
  display: flex;
  margin: 25px 0;
  width: 500px;
}

.hero-form input {
  padding: 12px;
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
}

.hero-form button {
  background: #d93025;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 15px;
}

.hero-form button:hover {
  background: #b7281f;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-stats div {
  background: white;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  min-width: 120px;
}

.hero-stats h3 {
  color: #0056d6;
  font-size: 22px;
  margin: 0;
}

.hero-stats p {
  font-size: 14px;
  color: #777;
  margin: 5px 0 0;
}

/* Right Image */
.hero-image {
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  z-index: 10;
}

.hero-image .arrow {
  position: absolute;
    left: -223px;
    top: 83px;
    width: 178px;
    transform: rotate(-28deg);
}

.image-bg-men{
    position: absolute;
    border: 8px solid #0a4bc5;
    border-bottom: none;
  top: 55px;
  bottom: 0;
  left: 50%;
  transform: translateX(-30%);
  z-index: -1; 
    width: 260px; 
  height: 260px; 
  background: #b0c8f9; 
  border-radius: 125px 125px 0 0;
}
.magic-arrow{
    position: absolute;
    left: -38px;
    top: 101px;
    
}

.banner-img{
       position: absolute;
    right: 0;
    /* bottom: 0; */
    top: 0;
    width: 248px;
    height: 255px;
    z-index: -10;
}

/* Responsive */
/* Tablet Devices (max-width: 768px) */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: auto;
    padding: 40px 20px;
  }

  .hero-text h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 15px;
    max-width: 90%;
    margin: 15px auto;
  }

  .hero-form {
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    margin: 20px auto;
  }

  .hero-form input,
  .hero-form button {
    width: 100%;
    margin: 5px 0;
    border-radius: 8px;
  }

  .hero-stats {
    justify-content: center;
    gap: 20px;
  }

  .hero-image {
    margin-top: 30px;
  }

  .hero-image .arrow,
  .magic-arrow {
    display: none; 
  }
}

/* Mobile Devices (max-width: 480px) */

@media (max-width: 480px) {
    .hero{
        top: -42px;
    }
   .hero-text{
    padding-top: 30px;
   }
  .hero-content {
    flex-direction: column-reverse; 
    align-items: center;
    text-align: center;
    height: auto;
    padding: 20px 10px;
  }

  .hero-text h1 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 13px;
    margin: 10px auto;
  }

  .hero-form {
    max-width: 280px;
  }

  .hero-form input,
  .hero-form button {
    font-size: 13px;
    padding: 10px;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
  }

  .hero-stats div {
    width: 90%;
    padding: 12px;
  }

  .hero-stats h3 {
    font-size: 18px;
  }

  .hero-stats p {
    font-size: 12px;
  }

  .hero-image img {
    width: 85%;
  }

  .image-bg-men {
        width: 243px;
        height: 233px;
        top: 37px;
        left: 57%;
        transform: translateX(-50%);
        border-width: 14px
  }

  .banner-img {
    width: 150px;
    height: auto;
    
    top: 0;
    right: 0;
  }
}




/* Products Section ---------------------------------------------------------------------------------------------------------------------------------------*/

.products {
  padding: 24px 0;
}

.products h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.products p {
  color: #666;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Grid Layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

/* Product Card */
.product-card {
  position: relative;
  height: 370px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); 
}

.product-card h3 {
  position: relative;
  color: white;
  font-size: 20px;
  font-weight: 600;
  z-index: 2;
  text-align: center;
}

/* Explore All Button */
.explore-btn {
  margin-top: 40px;
}

.explore-btn button {
  padding: 12px 30px;
  border: 2px solid #d93025;
  background: white;
  color: black;
  font-weight: 500;
  font-size: 16px;
  border-radius: 6px;
  transition: 0.3s ease;
  cursor: pointer;
}

.explore-btn button:hover {
  background: #d93025;
  color: white;
}
/* Tablet Devices (max-width: 768px) */
@media (max-width: 768px) {
  .product-card {
    height: 300px; 
  }

  .product-card h3 {
    font-size: 18px;
    padding: 0 10px;
  }

  .explore-btn button {
    padding: 10px 25px;
    font-size: 15px;
  }
}

/* Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    .products{
        padding: 20px 20px;
    }
  .product-card {
    height: 250px;
  }

  .product-card h3 {
    font-size: 16px;
    line-height: 1.4;
    padding: 0 8px;
  }

  .explore-btn {
    margin-top: 20px;
    text-align: center;
  }

  .explore-btn button {
    padding: 8px 20px;
    font-size: 14px;
    width: 100%; 
    max-width: 250px;
  }
}


/* Market Today Section ---------------------------------------------------------------------------------------------------------------------------------------*/


.market-today {
  padding: 30px 0;
}

.market-today h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.market-today p {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

/* Table Wrapper */
.table-wrapper {
  overflow-x: auto;
  border-radius: 10px;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  padding: 20px;
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

thead {
  background: #f8f9fa;
}

th, td {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

th {
  font-weight: 600;
  color: #444;
}

td {
  color: #333;
}

/* Red Price Change */
.negative {
  color: red;
  font-weight: 600;
}

.negative span {
  font-size: 13px;
  display: block;
}

/* Responsive Table */
@media (max-width: 768px) {
  table {
    font-size: 13px;
  }
  th, td {
    padding: 10px;
  }
}


/* FAQ Section ---------------------------------------------------------------------------------------------------------------------------------------*/
.faq {
  padding: 60px 0;
}

.faq-content{
    max-width: 1132px;
    margin: 0 auto;
}


.faq-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.faq-question .highlight {
  color: #d93025;
}

.faq-toggle {
  font-size: 26px;
  font-weight: 600;
  color: #333;
  transition: 0.3s ease;
}

.faq-answer {
  display: none;
  padding-top: 10px;
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question h3 {
  color: #d93025;
}

@media (max-width: 380px) {
  .faq{
    padding: 40px 20px;
  }
}



/* Footer ---------------------------------------------------------------------------------------------------------------------------------------*/


.footer {
  background: #111;
  color: #ccc;
  padding: 50px 0;
  font-size: 15px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 28px;
}

.footer-logo span {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-left: 10px;
}

.footer hr {
  margin: 15px 0;
}

.cust-care {
  margin-bottom: 0;
}

.email {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.desc {
  margin: 15px 0;
  line-height: 1.6;
  max-width: 400px;
}

.payment-icons img {
  height: 40px;
  margin-top: 10px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.enterprise {
  font-size: 13px;
  margin-top: 15px;
  color: #777;
}

.footer-right {
  display: flex;
  gap: 50px;
}

.footer-column h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #fff;
}

/* Tablet (up to 780px) */
@media (max-width: 780px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left, 
  .footer-right {
    width: 100%;
    text-align: center;
  }

  .footer-right {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
}

/* Mobile (up to 380px) */
@media (max-width: 380px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-logo span {
    font-size: 16px;
  }

  .desc {
    font-size: 14px;
    text-align: center;
  }

  .footer-right {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .footer-column h5 {
    font-size: 15px;
    text-align: center;
  }

  .footer-column ul li a {
    font-size: 14px;
  }

  .payment-icons {
    text-align: center;
  }

  .payment-icons img {
    height: 32px;
  }

  .enterprise {
    font-size: 12px;
    text-align: center;
  }
}
