.lindo-footer-top { margin:0; }
.lindo-footer-top .widget  {padding:30px 0 !important;}
.lindo-footer-main { margin:0; }
.lindo-footer-main .widget  {padding:0}
.lindo-footer-bottom  { margin:0; padding:10px!important;}
.lindo-footer-top .wpcf7-form { max-width:680px; margin-left:auto; margin-right:auto}
.lindo-footer-main img, .lindo-footer-top img, .lindo-footer-bottom img {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
  border-radius: 6px;
  object-fit: contain;
}

.lindo-footer-main { padding:20px 0}
/* Footer menu container */
.lindo-footer-main  .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

/* Footer menu items */
.lindo-footer-main .menu li {
  margin: 0;
}

/* Footer menu links */
.lindo-footer-main .menu li a {
  display: inline-block;
  color: inherit;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
  position: relative;
}

/* Hover effect */
.lindo-footer-main .menu li a:hover {
  transform: translateX(3px);
}

/* Optional underline on hover */
.lindo-footer-main .menu li a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: width 0.3s ease;
}

.lindo-footer-main .menu li a:hover::after {
  width: 100%;
}

.lindo-footer-main  .textwidget {
  color: inherit;
  font-size: 0.95rem;
  line-height: 1.6;
}

.lindo-footer-main .textwidget p {
  margin: 1rem 0 0;
}

.lindo-footer-main  .textwidget a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.lindo-footer-main .textwidget .logo-sub {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
  display: block;
}
.lindo-footer-main .textwidget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lindo-footer-main .textwidget ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: inherit;
  line-height: 1.6;
}

.lindo-footer-main .textwidget ul li a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer.lindo-footer-main { padding:30px;}
.lindo-footer-main .textwidget ul li:first-child img.logo-sub {
  max-width: 100%;
  height: auto;
  margin-bottom: 0.75rem;
  display: block;
}
.social-links-footer i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  transition: color 0.3s;
}

/* Màu riêng cho từng mạng xã hội */
.social-links-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.social-links-footer ul li {
  margin: 0;
}

.social-links-footer ul li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  background-color: #f2f2f2;
  transition: all 0.3s ease;
}

.social-links-footer ul li a:hover {
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transform: scale(1.1);
}

/* Icon FontAwesome */
.social-links-footer i {
  font-size: 1.1rem;
}

/* Màu theo mạng xã hội */
.social-links-footer a[href*="facebook.com"] {
  background-color: #1877f2;
  color: #fff !important;
}

.social-links-footer a[href*="youtube.com"] {
  background-color: #ff0000;
  color: #fff !important;
}

.social-links-footer a[href*="instagram.com"] {
  background-color: #e4405f;
  color: #fff !important;
}

.social-links-footer a[href*="tiktok.com"] {
  background-color: #010101;
  color: #fff !important;
}

.social-links-footer a[href*="shopee.vn"],
.social-links-footer a[href*="shopee."] {
  background-color: #f53d2d;
  padding: 5px;
}
.social-links-footer ul li a img { margin-bottom:0}
.social-links-footer a[href*="shopee"] img {
  width: 20px;
  height: auto;
  display: block;
}

.lindo-credit {
  font-size: 0.85rem;
  color: #888;
  text-align: center;
  margin-top: 0;
}

.lindo-credit a {
  text-decoration: none;
}

.lindo-credit a:hover {
  text-decoration: underline;
}

/* ============================================================
   LINDO FOOTER GRID — CSS thuần, không dùng Bulma
   ============================================================ */
.lindo-footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Layout 1: 4 cột đều */
.lindo-footer-grid--layout1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* Layout 2: full-width trên + 3 cột dưới */
.lindo-footer-grid--layout2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.lindo-footer-grid--layout2 .lindo-footer-col--full {
  grid-column: 1 / -1;
}

/* Layout 3: grid 2×2 */
.lindo-footer-grid--layout3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Layout 4: outer grid — 2 cột bằng nhau (1/2 + 1/2) */
.lindo-footer-grid--layout4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.lindo-footer-col--subgrid { min-width: 0; }
/* Layout 4: inner grid — 2 cột con bằng nhau bên trong subgrid */
.lindo-footer-grid--layout1x4 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
/* Responsive */
@media (max-width: 900px) {
  .lindo-footer-grid--layout1 { grid-template-columns: repeat(2, 1fr); }
  .lindo-footer-grid--layout4 { grid-template-columns: 1fr; }
  .lindo-footer-grid--layout1x4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .lindo-footer-grid--layout1,
  .lindo-footer-grid--layout2,
  .lindo-footer-grid--layout3,
  .lindo-footer-grid--layout4,
  .lindo-footer-grid--layout1x4 { grid-template-columns: 1fr; }
  .lindo-footer-container { padding: 0 16px; }
}

.lindo-footer-main { padding: 40px 0; }
.lindo-footer-top  { padding: 20px 0; }
.lindo-footer-bottom { padding: 16px 0; }

/* Widget styles */
.lindo-widget { margin-bottom: 0; }
.lindo-widget-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
