
    

  /* ======== FOOTER SECTION ======== */
  .footer {
  background: #f7f7f8;
  color: #333;
  font-family: Arial, sans-serif;
  border-top: 1px solid #ddd;
}

.footer-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 1px solid #e0e0e0;
  flex-wrap: wrap;
}

.footer-stats .stat-item {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-stats img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}

.footer-stats p {
  font-weight: 500;
  font-size: 15px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 180px;
  margin: 10px;
}

.footer-column h4 {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 12px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column.newsletter p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #666;
}

.footer-column.newsletter form {
  display: flex;
}

.footer-column.newsletter input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-right: none;
  outline: none;
  font-size: 14px;
}

.footer-column.newsletter button {
  background-color: #000;
  color: #fff;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-column.newsletter button:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ✅ 2 columns on mobile */
    gap: 20px;
    padding: 20px;
    text-align: center;
  }

  .footer-column {
    flex: unset;
    margin: 0;
  }

  .footer-column.newsletter {
    grid-column: span 2; /* ✅ Newsletter takes full width */
  }

  .footer-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ✅ 2 stats per row */
    gap: 15px;
  }

  .footer-column.newsletter form {
    flex-direction: column;
  }

  .footer-column.newsletter input,
  .footer-column.newsletter button {
    width: 100%;
    border-radius: 4px;
  }

  .footer-column.newsletter button {
    margin-top: 8px;
  }
}


        .shop-top-banner {
            width: 100%;
            padding: 80px 0;
            margin-top: -10px;
            background: linear-gradient(135deg, #111 0%, #2c2c2c 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .shop-top-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.03)"/></svg>');
            background-size: cover;
        }

        .shop-container {
            text-align: center;
            color: #fff;
            position: relative;
            z-index: 1;
        }

        .shop-title {
            font-size: 46px;
            font-weight: 700;
            letter-spacing: 1.5px;
            margin-bottom: 15px;
            
        }

        .shop-breadcrumb {
            font-size: 16px;
            opacity: 0.8;
            font-weight: 400;
        }

        .shop-breadcrumb span {
            margin: 0 8px;
            opacity: 0.5;
        }
      @media (max-width: 768px) {
            .shop-title {
                font-size: 38px;
            }
        }

        @media (max-width: 576px) {
            .shop-title {
                font-size: 32px;
            }
        }