
.bakery-showcase {
	padding: 90px 0;
	
}
.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: bold;
  color: #222;
  margin: 0 0 10px 0;
}

.section-header p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* --- Tabs Navigation --- */
.tabs-navigation {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 40px;
}

.tabs-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 30px;
}

.tabs-navigation a.tab-link {
  display: inline-block;
  padding: 15px 5px;
  text-decoration: none;
  font-size: 16px;
  color: #555;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px; /* Để gạch chân đè lên border của container */
  transition: color 0.3s, border-color 0.3s;
}

.tabs-navigation a.tab-link:hover {
  color: #1a1a1a;
}

.tabs-navigation a.tab-link.active {
  color: #27ae60; /* Màu xanh lá cây giống trong hình */
  border-bottom-color: #27ae60;
  font-weight: 600;
}

/* --- Product Grid --- */
.product-grid {
  display: none; /* Ẩn tất cả các lưới sản phẩm mặc định */
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.product-grid.active {
  display: grid; /* Chỉ hiển thị lưới có class active */
}

.product-item {
position:relative;
text-align: center;
}
.product-item a{
	position:absolute;top:0;left:0;width:100%;height:100%;
}
.product-image-wrapper {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 15px;
}

.product-item img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info .product-code {
  font-size: 14px;
  color: #888;
  margin: 0 0 5px 0;
}

.product-info .product-name {
  font-size: 16px;
  font-weight: 600;
  color: #222;
  margin: 0;line-height: 1.5;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .tabs-navigation ul {
    gap: 20px;
  }
  .tabs-navigation a.tab-link {
    font-size: 14px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}


/* --- FAQ Section Styles --- */
.faq-section {
    padding: 60px 0;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 40px;
}


.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden; /* Quan trọng cho hiệu ứng trượt */
}

/* Sử dụng button để tốt hơn cho accessibility */
.accordion-header {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 20px 25px;
    margin: 0; /* THÊM DÒNG NÀY */
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    font-family: inherit;
    /* Thêm outline để người dùng bàn phím biết đang chọn mục nào */
    outline-offset: -1px; 
}
.accordion-header:focus {
    outline: 2px solid #27ae60;
}
.accordion-content {
    max-height: 0; /* Mặc định ẩn nội dung */
    overflow: hidden;
    transition: max-height 0.3s ease-out; /* Hiệu ứng trượt */
    background-color: #fff;
}

.accordion-content-inner {
    padding: 25px;
}

.accordion-content p {
    margin: 0 0 15px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content a {
    color: #27ae60; /* Màu xanh lá cây cho link */
    text-decoration: none;
    font-weight: 500;
}

.accordion-content a:hover {
    text-decoration: underline;
}

/* --- Icon Mũi Tên --- */
.accordion-icon {
    width: 12px;
    height: 12px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(-45deg); /* Hướng xuống */
    transition: transform 0.3s ease-out;
    flex-shrink: 0; /* Đảm bảo icon không bị co lại */
    margin-left: 15px;
}

/* --- Trạng thái Active (Khi được mở) --- */
.accordion-item.active .accordion-header {
    color: #222;
}

.accordion-item.active .accordion-content {
    max-height: 500px; /* Chiều cao đủ lớn để chứa nội dung */
    transition: max-height 0.4s ease-in;
}

.accordion-item.active .accordion-icon {
    transform: rotate(135deg); /* Hướng lên */
}

/* --- Personality Section Styles --- */
.personality-section {
    padding: 60px 0;
    background-color: #fff;
}

.section-header-centered {
	text-align: center;
    /* max-width: 700px; */
    margin: 0 auto 40px auto;
}

.eyebrow-title {
    font-size: 12px;
    color: #888;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header-centered h2 {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin: 0 0 15px 0;
}

.section-header-centered .subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* --- Tabs Wrapper and Centered Navigation --- */
.tabs-wrapper {
    background-color: #F5F4F3;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 50px;
}

.tabs-navigation-centered ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; /* Căn giữa các tab */
    flex-wrap: wrap; /* Cho phép xuống dòng trên màn hình nhỏ */
    gap: 25px;
}
/* Tái sử dụng style .tab-link từ component đầu tiên */
.tabs-navigation-centered a.tab-link {
    display: inline-block;
    padding: 15px 5px;
    text-decoration: none;
    font-size: 15px;
    color: #555;
    border-bottom: 3px solid transparent;
    transition: color 0.3s, border-color 0.3s;
    white-space: nowrap;
}

.tabs-navigation-centered a.tab-link:hover {
    color: #1a1a1a;
}

.tabs-navigation-centered a.tab-link.active {
    color: #27ae60;
    border-bottom-color: #27ae60;
    font-weight: 600;
}


/* --- Feature Grid --- */
.feature-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-grid.active {
    display: grid;
}

.feature-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    overflow: hidden; /* Quan trọng để bo tròn góc cho ảnh */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 10; /* Giữ tỷ lệ ảnh đồng nhất */
    object-fit: cover; /* Đảm bảo ảnh lấp đầy khung mà không bị méo */
}

.feature-info {
    padding: 20px;
}

.feature-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px 0;
}

.feature-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* --- Responsive for Feature Grid --- */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .tabs-navigation-centered ul {
        gap: 15px;
    }
     .tabs-navigation-centered a.tab-link {
        font-size: 14px;
     }
}