      /* CSS chung */
        :root {
            --primary: #00D5EF;
            --secondary: #545454;
            --light: #FDF5EB;
            --dark: #1E1916;
            --accent: #006418;
        }
        
        body {
            background: linear-gradient(to bottom, #ffffff, #00D5EF);
            font-family: Arial, sans-serif;
        }
        
        .header {
            background-color: #FFFFFF;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand img {
            transition: transform 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        hr {
            border-top: 2px solid var(--primary);
            opacity: 1;
            margin: 2rem auto;
            max-width: 200px;
        }
        
        h2 {
            color: var(--dark);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Style cho card sản phẩm */
        .card {
            height: 100%;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            margin-bottom: 20px;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-color: var(--primary);
        }
        
        .card-img-top {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .card:hover .card-img-top {
            transform: scale(1.1);
        }
        
        .card-body {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
        }
        
        .card-title {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 0.75rem;
            font-weight: 600;
        }
        
        .card-text {
            font-size: 1.1rem;
            color: var(--secondary);
            font-weight: bold;
            margin-bottom: 1.5rem;
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--dark);
            color: var(--dark);
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s ease;
            align-self: flex-start;
            margin-top: auto;
        }
        
        .btn-primary:hover {
            background-color: var(--dark);
            border-color: var(--dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        /* Style cho phần Capypara */
        .media {
            transition: all 0.3s ease;
        }
        
        .media:hover {
            transform: translateX(5px);
        }
        
        .media img {
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .media:hover img {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Style cho phần The Boss */
        .theboss img {
            border-radius: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .theboss img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }
        
        /* ==== FIX ALIGNMENT + BEAUTIFY FOOTER HEADINGS ==== */
.footer-new h4 {
  font-weight: bold;
  font-size: 18px;
  color: #000000;
  margin-bottom: 20px;
  padding-left: 0;
  text-align: start;
}

.footer-new .footer-section {
  padding-left: 15px; /* Optional: tạo khoảng cách nhỏ giữa các section */
}

.footer-new a.btn-link {
  color: #000000;
  font-weight: normal;
  padding-left: 0;
  padding-right: 0;
  text-align: start;
}

.footer-new .col-lg-3,
.footer-new .col-md-6 {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (max-width: 767.98px) {
  .footer-new h4,
  .footer-new a.btn-link {
    text-align: center !important;
  }
}
        /* Social icons */
        .btn-square {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 5px;
            transition: all 0.3s ease;
            border: 1px solid white;
            color: white;
        }
        
        .btn-square:hover {
            transform: translateY(-3px);
            background-color: rgba(255,255,255,0.1);
        }
        
        /* Responsive */
        @media (max-width: 767.98px) {
            .card-img-top {
                height: 200px;
            }
            
            .card {
                margin-bottom: 15px;
            }
        }

