:root {
  --primary: #0b7974;
  --bg-light: #f2f5f5cb;
  --bg-dark: #121416;
  --paypal-yellow: #ffc439;
  --paypal-blue: #0070ba;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: var(--bg-light);
  color: #111;
}
.navbar {
  background-color: #ffffff;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.logo-img {
  height: 40px;
  width: auto;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: #555555;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.nav-links li a:hover {
  color: #0b7974;
  transform: translateY(-2px);
}

.logout-btn {
  background-color: transparent;
  border: 2px solid #777;
  color: #555;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.logout-btn:hover {
  background-color: #0b7974;
  color: #fff;
  border-color: #0b7974;
}

.footer-dark {
  background-color: #1a1a1a;
  color: #b0b0b0;
  padding-top: 50px;
  font-size: 14px;
  direction: ltr;
  text-align: left;
  border-top: 5px solid #0b7974;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px 40px;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4,
.footer-logo {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  text-transform: uppercase;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #0b7974;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}

.footer-desc {
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #b0b0b0;
  transition: 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
  padding-left: 5px;
  border-left: 2px solid #0b7974;
}

.social-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  transition: 0.4s;
  border: 1px solid #444;
}
.contact-info a {
  text-decoration: none;
  color: #b0b0b0;
  transition: 0.3s;
  display: inline-block;
}

.social-btn.facebook:hover {
  background-color: #1877f2;
  border-color: #1877f2;
}
.social-btn.instagram:hover {
  background-color: #e4405f;
  border-color: #e4405f;
}
.social-btn.whatsapp:hover {
  background-color: #25d366;
  border-color: #25d366;
}

.social-btn:hover {
  transform: rotate(360deg);
}

.contact-info {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  background-color: #111;
  padding: 15px;
  text-align: center;
  border-top: 1px solid #222;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .social-row {
    justify-content: center;
  }
  .contact-info {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
}


.icon {
  position: relative;
  font-size: 20px;
}

.badge {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #0f766e;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 50%;
}

.breadcrumb {
  padding: 25px 40px;
  color: #777;
}

.container {
  display: flex;
  gap: 30px;
  padding: 0 40px;
}

.cart-section {
  flex: 3;
}

.cart-section h1 {
  font-size: 32px;
}

.subtitle {
  margin: 8px 0 25px;
  color: #666;
}

.cart-item {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  display: grid;
  grid-template-columns: 90px 1fr auto auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.cart-item img {
  width: 80px;
  border-radius: 10px;
}

.item-info p {
  color: #666;
  font-size: 14px;
}

.qty {
  margin-top: 10px;
}

.qty button {
  padding: 4px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: none;
}

.price {
  font-weight: 600;
}

.remove {
  color: red;
  font-size: 14px;
  cursor: pointer;
}

.gift {
  display: block;
  margin-top: 15px;
}


.row,
.total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.green {
  color: #0f766e;
}

.total {
  font-size: 22px;
  font-weight: 700;
}

.checkout {
  width: 100%;
  background: #0f766e;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 30px;
  margin: 20px 0;
}

.express {
  text-align: center;
  color: #999;
  font-size: 12px;
}

.trust {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 12px;
  color: #777;
}



