/* ==========================================================================
   Front Page Styles - TD Classic
   ========================================================================== */

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(26, 26, 26, 0.7) 50%,
    rgba(51, 51, 51, 0.6) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem 0;
}

.hero-text {
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: #cccccc;
  font-size: 0.8rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.title-highlight {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.title-main {
  color: #cccccc;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-subtitle strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-usps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.usp-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.usp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #666666 0%, #999999 100%);
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.usp-content h4 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.usp-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #cccccc 0%, #999999 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
  color: #000000;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: white;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.trust-item i {
  color: #cccccc;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
}

.hero-showcase {
  position: relative;
}

.showcase-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.showcase-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.showcase-item.featured {
  grid-column: 1 / -1;
}

.showcase-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.showcase-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.showcase-item.featured .showcase-image {
  height: 300px;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.showcase-item:hover .showcase-image img {
  transform: scale(1.1);
}

.showcase-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.showcase-label i {
  color: #cccccc;
}

.hero-stats {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative;
}

.hero-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #666666 0%, #999999 100%);
  border-radius: 12px 12px 0 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #333333;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: #666666;
  margin-top: 0.25rem;
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.about-content {
  padding-right: 2rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.1);
  color: #333333;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-badge i {
  color: #666666;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #000000;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 2rem;
}

.about-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #333333;
}

.feature-item i {
  color: #666666;
  font-size: 1rem;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #666666 0%, #999999 100%);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 1rem;
}

.service-card p {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #000000;
  gap: 0.75rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  color: white;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* News/Blog Section UX/UI nâng cấp */
.news-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.news-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
  height: 100%;
}
.news-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  transform: translateY(-10px) scale(1.03);
}
.news-image-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
}
.news-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.news-card:hover .news-image {
  transform: scale(1.08);
}
.news-gradient-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60%;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(51, 51, 51, 0.2) 80%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}
.news-content {
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  gap: 0.7rem;
}
.news-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
  color: #b0b0b0;
  margin-bottom: 0.2rem;
  align-items: center;
}
.news-meta i {
  margin-right: 0.3em;
  color: #b0b0b0;
}
.news-category {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 12px;
  padding: 0.18rem 0.7rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #888;
  display: flex;
  align-items: center;
}
.news-date {
  color: #b0b0b0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.news-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.3rem 0;
  line-height: 1.3;
  color: #181818;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.news-title a:hover {
  color: #666;
}
.news-excerpt {
  font-size: 1rem;
  color: #888;
  margin-bottom: 0.7rem;
  line-height: 1.5;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.btn-news-details {
  background: #000;
  color: #fff;
  border-radius: 25px;
  border: 2px solid #fff;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.btn-news-details:hover {
  background: linear-gradient(90deg, #222 0%, #444 100%);
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1.04);
}
.news-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #bbb;
  background: #f8f9fa;
  font-size: 2rem;
}
.news-placeholder i {
  margin-bottom: 10px;
}
/* Responsive */
@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .news-image-wrap,
  .news-image,
  .news-placeholder {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .news-section {
    padding: 48px 0;
  }
  .news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .news-content {
    padding: 1.2rem 1rem 1rem 1rem;
  }
}
@media (max-width: 480px) {
  .news-section {
    padding: 32px 0;
  }
  .news-title {
    font-size: 1.05rem;
  }
  .news-content {
    padding: 0.8rem 0.5rem 0.7rem 0.5rem;
  }
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 991.98px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-visual {
    order: -1;
  }

  .showcase-main {
    grid-template-columns: 1fr;
  }

  .showcase-item.featured {
    grid-column: 1;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-usps {
    gap: 1rem;
  }

  .usp-item {
    padding: 0.75rem;
  }

  .usp-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    justify-content: center;
    text-align: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }

  .showcase-item.featured .showcase-image {
    height: 200px;
  }

  .showcase-item .showcase-image {
    height: 150px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: center;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding: 1rem;
  }

  .hero-content {
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .usp-content h4 {
    font-size: 1rem;
  }

  .usp-content p {
    font-size: 0.8rem;
  }

  .showcase-label {
    font-size: 0.8rem;
    padding: 0.75rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }
}

/* Animation for page load */
.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hover effects */
.usp-item:hover {
  transform: translateX(10px);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

.showcase-item:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .usp-item,
  .service-card,
  .showcase-item {
    animation: none;
    transition: none;
  }

  .usp-item:hover,
  .service-card:hover,
  .showcase-item:hover {
    transform: none;
  }
}

@media (prefers-contrast: high) {
  .hero-badge {
    border: 2px solid #ffffff;
  }

  .btn-primary {
    border: 2px solid #ffffff;
  }

  .btn-secondary {
    border: 2px solid #ffffff;
  }
}
/* ===== FRONT PAGE ENHANCED STYLES ===== */
/* Bảng màu: Đen (#000), Xám (#333, #666), Trắng (#fff) */

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.category-card,
.category-image img,
.category-content,
.category-arrow {
  will-change: transform;
}

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

/* ===== LOADING ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-card {
  animation: fadeInUp 0.6s ease-out forwards;
}

.category-card:nth-child(1) {
  animation-delay: 0.1s;
}
.category-card:nth-child(2) {
  animation-delay: 0.2s;
}
.category-card:nth-child(3) {
  animation-delay: 0.3s;
}
.category-card:nth-child(4) {
  animation-delay: 0.4s;
}
.category-card:nth-child(5) {
  animation-delay: 0.5s;
}
.category-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* ===== HERO SECTION - HÌNH ẢNH + DANH MỤC SẢN PHẨM ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: brightness(0.3) contrast(1.1);
  transition: filter 0.3s ease;
  transform: scale(1.05);
}

/* Parallax effect for mobile */
@media (max-width: 768px) {
  .hero-background-image {
    background-attachment: scroll;
    transform: none;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.6) 30%,
    rgba(0, 0, 0, 0.4) 70%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-categories {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 4rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  max-width: 700px;
  line-height: 1.6;
  font-weight: 300;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.categories-grid .col-12 {
  grid-column: 1 / -1;
  color: #fff;
  font-size: 1.2rem;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  pointer-events: auto;
  z-index: 10;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
}

.category-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9) contrast(1.1);
}

.category-card:hover .category-image img {
  transform: scale(1.08);
  filter: brightness(1) contrast(1.2);
}

.category-content {
  padding: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  backdrop-filter: blur(20px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.category-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0 0 1.5rem 0;
  font-weight: 300;
}

.category-arrow {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-end;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-card:hover .category-arrow {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.15) rotate(5deg);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.category-arrow i {
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.category-card:hover .category-arrow i {
  transform: translateX(2px);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Layout (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 768px) {
  .hero-section {
    padding: 1.5rem 0;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 900px;
    padding: 0 1.5rem;
  }

  .hero-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 2.5rem;
  }

  .category-image {
    height: 160px;
  }

  .category-content {
    padding: 1.25rem;
  }

  .category-content h3 {
    font-size: 1.2rem;
  }

  .category-content p {
    font-size: 0.9rem;
  }

  .category-arrow {
    width: 35px;
    height: 35px;
    bottom: 1rem;
    right: 1rem;
  }
}

/* Mobile Layout (dưới 768px) */
@media (max-width: 767.98px) {
  .hero-section {
    padding: 1rem 0;
  }

  .hero-content {
    padding: 1.5rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 320px;
    line-height: 1.4;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
    padding: 0 0.75rem;
  }

  .category-image {
    height: 140px;
  }

  .category-content {
    padding: 1rem;
  }

  .category-content h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }

  .category-content p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .category-arrow {
    width: 30px;
    height: 30px;
    bottom: 0.75rem;
    right: 0.75rem;
  }

  .category-arrow i {
    font-size: 0.8rem;
  }
}

/* Very Small Mobile (dưới 480px) */
@media (max-width: 479.98px) {
  .hero-section {
    padding: 0.75rem 0;
  }

  .hero-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    max-width: 280px;
    margin-bottom: 1.5rem;
  }

  .categories-grid {
    gap: 0.75rem;
    padding: 0 0.5rem;
  }

  .category-image {
    height: 80px;
  }

  .category-content {
    padding: 0.5rem;
  }

  .category-content h3 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .category-content p {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
  }

  .category-arrow {
    width: 25px;
    height: 25px;
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .category-arrow i {
    font-size: 0.7rem;
  }
}

/* ===== ABOUT SECTION ENHANCED - NÂNG CẤP HOÀN TOÀN ===== */
.about-section {
  padding: 6rem 0;
  background: #fff;
  border-top: 1px solid #e9ecef;
}

.about-header {
  margin-bottom: 4rem;
}

.about-header .section-badge {
  margin-bottom: 1.5rem;
}

.about-header .section-title {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.about-header .section-subtitle {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.about-content {
  padding-right: 2rem;
}

.about-description {
  margin-bottom: 2.5rem;
}

.about-heading {
  font-size: 1.75rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  /* Transition đã xóa */
}

/* Hover effect đã xóa */

.highlight-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-icon i {
  color: #fff;
  font-size: 1.25rem;
}

.highlight-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.5rem;
}

.highlight-content p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-about {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  /* Transition đã xóa */
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hover effect đã xóa */

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-main-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  /* Transition đã xóa */
}

/* Hover effect đã xóa */

.about-brand-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  padding: 1.5rem;
  color: #fff;
  /* Transform đã xóa */
  /* Transition đã xóa */
}

/* Hover effect đã xóa */

.brand-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffd700;
}

.brand-badge i {
  font-size: 1.25rem;
}

.brand-description p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.stat-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e9ecef;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  /* Transition đã xóa */
}

/* Hover effect đã xóa */

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.stat-content {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-description {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.4;
}

.about-certificates {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #e9ecef;
}

.certificates-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.certificates-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.75rem;
}

.certificates-header p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.certificate-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #e9ecef;
  /* Transition đã xóa */
}

/* Hover effect đã xóa */

.certificate-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.certificate-icon i {
  color: #fff;
  font-size: 2rem;
}

.certificate-item h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.75rem;
}

.certificate-item p {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ===== WORK PROCESS SECTION ===== */
.work-process-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid #e9ecef;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  /* Transform đã xóa */
  width: 30px;
  height: 30px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto;
}

.step-icon i {
  font-size: 1.5rem;
  color: #fff;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.75rem;
}

.step-description {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.step-duration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
}

.process-cta {
  margin-top: 3rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 1rem 0;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-content-inner {
    max-width: 600px;
  }

  .hero-title-main {
    font-size: 2.5rem;
  }

  .hero-title-sub {
    font-size: 1.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 500px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .about-header {
    margin-bottom: 2rem;
  }

  .about-header .section-title {
    font-size: 2rem;
  }

  .about-highlights {
    gap: 1rem;
  }

  .highlight-item {
    padding: 1rem;
  }

  .about-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .about-brand-info {
    padding: 1rem;
  }

  .brand-badge {
    font-size: 0.75rem;
  }

  .brand-description p {
    font-size: 0.75rem;
  }

  .certificates-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 0.75rem 0;
  }

  .hero-content {
    padding: 0.75rem;
  }

  .hero-content-inner {
    max-width: 400px;
  }

  .hero-title-main {
    font-size: 2rem;
  }

  .hero-title-sub {
    font-size: 1rem;
  }

  .hero-subtitle {
    font-size: 0.875rem;
    max-width: 400px;
  }

  .hero-badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  .btn-hero {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .about-header .section-title {
    font-size: 1.75rem;
  }

  .about-header .section-subtitle {
    font-size: 1rem;
  }

  .about-heading {
    font-size: 1.5rem;
  }

  .about-highlights {
    gap: 0.75rem;
  }

  .highlight-item {
    padding: 0.75rem;
    flex-direction: column;
    text-align: center;
  }

  .highlight-icon {
    width: 40px;
    height: 40px;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 0.75rem;
  }

  .certificates-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .certificate-item {
    padding: 1.5rem;
  }

  .about-brand-info {
    padding: 0.75rem;
  }

  .brand-badge {
    font-size: 0.7rem;
    margin-bottom: 0.75rem;
  }

  .brand-description p {
    font-size: 0.7rem;
  }

  .process-step {
    padding: 1.5rem 1rem;
  }

  .step-icon {
    width: 50px;
    height: 50px;
  }

  .step-icon i {
    font-size: 1.25rem;
  }
}

/* ===== ANIMATIONS - ĐÃ XÓA ===== */

/* ===== NEWS/BLOG SECTION - THIẾT KẾ MỚI ===== */
.news-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.news-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e9ecef 50%, transparent 100%);
}

.news-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.news-section .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.news-section .section-badge i {
  color: #000;
  font-size: 1.125rem;
}

.news-section .section-badge span {
  color: #333;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-section .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.news-section .section-description {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #f0f0f0;
  position: relative;
}

.news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #000 0%, #333 50%, #666 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover::before {
  transform: scaleX(1);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: #e0e0e0;
}

.news-image-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
}

.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-image {
  transform: scale(1.1);
}

.news-gradient-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.news-card:hover .news-gradient-overlay {
  opacity: 1;
}

.news-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
  color: #999;
}

.news-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ccc;
}

.news-placeholder span {
  font-size: 0.875rem;
  color: #999;
  font-weight: 500;
}

.news-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.news-category {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-category i {
  color: #666;
  font-size: 0.75rem;
}

.news-date {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #999;
}

.news-date i {
  color: #ccc;
  font-size: 0.875rem;
}

.news-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: #333;
}

.news-excerpt {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-actions {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #f0f0f0;
}

.btn-news-details {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-news-details i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.btn-news-details:hover {
  background: #333;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.btn-news-details:hover i {
  transform: translateX(4px);
}

.news-section .no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
  border-radius: 16px;
  border: 2px dashed #e9ecef;
}

.news-section .no-products-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e9ecef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.news-section .no-products-icon i {
  font-size: 2rem;
  color: #999;
}

.news-section .no-products h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.news-section .no-products p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* ===== RESPONSIVE DESIGN - NEWS SECTION ===== */

/* Tablet */
@media (max-width: 1024px) {
  .news-section {
    padding: 5rem 0;
  }

  .news-section .section-title {
    font-size: 2.25rem;
  }

  .news-section .section-description {
    font-size: 1rem;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .news-image-wrap {
    height: 200px;
  }

  .news-content {
    padding: 1.5rem;
  }

  .news-title {
    font-size: 1.25rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .news-section {
    padding: 4rem 0;
  }

  .news-section .section-header {
    margin-bottom: 3rem;
  }

  .news-section .section-title {
    font-size: 2rem;
  }

  .news-section .section-description {
    font-size: 0.9375rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-image-wrap {
    height: 220px;
  }

  .news-content {
    padding: 1.5rem;
  }

  .news-title {
    font-size: 1.375rem;
  }

  .news-excerpt {
    font-size: 0.9375rem;
  }

  .news-meta {
    gap: 1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .news-section {
    padding: 3rem 0;
  }

  .news-section .section-badge {
    padding: 0.625rem 1.25rem;
  }

  .news-section .section-badge span {
    font-size: 0.75rem;
  }

  .news-section .section-title {
    font-size: 1.75rem;
  }

  .news-section .section-description {
    font-size: 0.875rem;
  }

  .news-grid {
    gap: 1.25rem;
  }

  .news-image-wrap {
    height: 180px;
  }

  .news-content {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .news-title {
    font-size: 1.25rem;
  }

  .news-excerpt {
    font-size: 0.875rem;
    -webkit-line-clamp: 2;
  }

  .news-category {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  .news-date {
    font-size: 0.8125rem;
  }

  .btn-news-details {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    width: 100%;
    justify-content: center;
  }

  .news-section .no-products {
    padding: 3rem 1.5rem;
  }

  .news-section .no-products-icon {
    width: 60px;
    height: 60px;
  }

  .news-section .no-products-icon i {
    font-size: 1.5rem;
  }

  .news-section .no-products h3 {
    font-size: 1.25rem;
  }

  .news-section .no-products p {
    font-size: 0.875rem;
  }
}
