/* ===== PREMIUM ABOUT PAGE ===== */

.about-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* CONTAINER (IMPORTANT FIX) */
.about-container {
  max-width: 1100px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  background: white;
  padding: 50px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* TEXT SIDE */
.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 700;
}

.about-text p {
  color: #555;
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 16px;
}

/* BUTTON (FIXED) */
.about-btn {
  margin-top: 20px;
  padding: 14px 30px;
  border: none;
  background: linear-gradient(135deg, #ff6600, #ff8533);
  color: white;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,102,0,0.4);
}

/* IMAGE SIDE */
.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  transition: 0.4s;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* ===== FEATURES SECTION ===== */

.features {
  margin-top: 80px;
  text-align: center;
}

.features h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.feature-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* CARDS */
.feature-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }
}
/* ===== GLOBAL FIX ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f4f6f9;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: white;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

/* LOGO */
.logo img {
  width: 120px;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #333 !important;
  font-weight: 500;
  position: relative;
}

/* REMOVE PURPLE/BLUE */
a:visited {
  color: #333;
}

/* HOVER EFFECT */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ff6600;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #ff6600;
}

/* ACTIVE */
.nav-links .active {
  color: #ff6600;
}

/* CART */
.cart-icon {
  background: #ff6600;
  color: white;
  padding: 8px 18px;
  border-radius: 25px;
}