/* Bags Footer Variant (Multikart) */
.bags-footer {
  background-color: #222222;
  color: #aaaaaa;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}
.bags-footer a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.2s;
}
.bags-footer a:hover {
  color: #c9a96e;
}
.bags-footer-main {
  padding: 60px 0;
  border-bottom: 1px solid #333333;
}
.bags-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.bags-footer-col {
  min-width: 0;
}
.bags-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.bags-footer-logo .logo-text {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bags-footer-desc {
  line-height: 1.6;
  margin-bottom: 25px;
  color: #aaaaaa;
}
.bags-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bags-footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaaaaa;
}
.bags-footer-contact i {
  color: #c9a96e;
  font-size: 16px;
}
.bags-footer-social {
  display: flex;
  gap: 12px;
}
.bags-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #333333;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.2s;
}
.bags-footer-social a:hover {
  background-color: #c9a96e;
}

/* Menu Links */
.bags-footer-col-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

/* Newsletter Col styling (Vertical layout) */
.bags-footer-col--newsletter {
  padding: 0 15px;
}
.bags-footer-nl-desc {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #aaaaaa;
}
.bags-nl-form-vertical {
  width: 100%;
}
.bags-nl-vertical-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.bags-nl-input-vertical {
  width: 100%;
  padding: 12px 20px;
  background-color: #2b2b2b;
  border: 1px solid #3d3d3d;
  border-radius: 4px;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
  transition: border-color 0.2s;
}
.bags-nl-input-vertical:focus {
  outline: none;
  border-color: #c9a96e;
}
.bags-nl-btn-vertical {
  background-color: #c9a96e;
  border: none;
  color: #ffffff;
  padding: 12px 40px;
  font-weight: 700;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  letter-spacing: 0.5px;
  width: auto;
}
.bags-nl-btn-vertical:hover {
  background-color: #bfa065;
}

/* Footer Bottom Links styling */
.bags-footer-links-row {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #2d2d2d;
}
.bags-footer-links-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.bags-footer-bottom-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.bags-footer-bottom-links a {
  color: #aaaaaa;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.bags-footer-bottom-links a:hover {
  color: #c9a96e;
}
.bags-link-sep {
  color: #444444;
}

/* Bottom bar */
.bags-footer-bottom {
  padding: 25px 0;
  background-color: #1c1c1c;
}
.bags-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.bags-footer-copy {
  font-size: 13px;
}
.bags-footer-payment {
  display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .bags-footer-cols {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
