#home-slider {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.carousel,
.carousel-inner,
.carousel-item,
.carousel-item img {
  transition: all 1s ease-in-out;
  touch-action: pan-y;
  user-select: none;
}
.carousel:active {
  cursor: grabbing;
}
.carousel {
  touch-action: pan-y;
  user-select: none;
  overflow: hidden;
  cursor: grab;
}
.carousel-item {
  position: relative;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.carousel-inner {
  transition: transform 0.6s ease-in-out;
}

.carousel-inner img {
  height: 90vh;
  object-fit: cover;
  width: 100%;
  display: block;
  z-index: 0;
  filter: brightness(60%);
  pointer-events: none;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
  pointer-events: none;
}

.carousel-caption h5,
.carousel-caption h1,
.carousel-caption p {
  pointer-events: auto;
}

.carousel-caption h3 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 2px;
  padding: 5px;
  border-bottom: 2px solid #ad7555;
  text-transform: uppercase;
  color: #ad7555;
  margin-bottom: 10px;
  width: fit-content;
    margin-inline: auto;
  
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  pointer-events: none;
}

.carousel-caption p {
  font-size: 1rem;
  margin-top: 12px;
  max-width: 700px;
  margin-inline: auto;
  pointer-events: none;
}
.carousel {
  touch-action: pan-y pinch-zoom;
  user-select: none;
  overflow: hidden;
}

.about-section {
  padding: 100px 0;
  background: #fff;
}
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 40px;
}
.about-left {
  flex: 1;
  animation: fadeInLeft 1s ease-out both;
}
.about-right {
  flex: 1;
  position: relative;
  animation: fadeInUp 1s ease-out both;
}
.about-right img {
  max-width: 100%;
  border-radius: 16px;
}
.subheading {
  text-transform: uppercase;
  color: #995c3e;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
}
h2 {
  font-size: 36px;
  margin: 10px 0 20px;
  font-weight: bold;
}
.description {
  font-size: 16px;
  color: #777f91;
  line-height: 1.6;
  margin-bottom: 40px;
}
.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.stat {
  background: #f6f0ec;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.stat:hover {
  transform: translateY(-4px);
}
.number {
  font-size: 28px;
  font-weight: bold;
  color: #995c3e;
  margin-bottom: 5px;
}
.label {
  font-size: 14px;
  color: #333;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}


/* --- CARD DANH MỤC ĐẸP HƠN, ẢNH NỔI TRÊN NỀN --- */
.product-category-section {
  padding: 60px 0 0 0;
  background: #fff;
  
}
.category-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
   margin-bottom: 40px;
}
.category-col, .category-col.big {
  display: contents;
  max-height: 320px;
 
}
.category-item, .category-item.highlight {
  min-height: 320px;
}

/* Cột lớn bên trái */
.category-col.big {
  flex: 1.2;
  min-width: 340px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.category-item.highlight {
  background: linear-gradient(135deg, #e7e9d6 60%, #f5f5f5 100%);
  border-radius: 32px;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: visible;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 0;
  transition: box-shadow 0.25s, transform 0.25s;
}
.category-item.highlight:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  transform: translateY(-6px) scale(1.02);
}
.category-item.highlight img {
  position: absolute;
  left: 50%;
  top: -36px;
  width: 180px;
  height: 180px;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.10));
  background: #fff;
  border-radius: 50%;
  border: 8px solid #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.category-item.highlight .content {
  position: relative;
  z-index: 3;
  padding: 160px 32px 36px 32px;
  text-align: left;
}
.category-item.highlight h3 {
  font-size: 2rem;
  color: #6b3d1c;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.category-item.highlight p {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 18px;
}
.category-item.highlight a {
  color: #e86f00;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
  transition: color 0.2s;
}
.category-item.highlight a:hover {
  color: #b65c3d;
}

/* Các cột nhỏ bên phải */
.category-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 320px;
}
.category-item {
  display: flex;
  align-items: flex-end;
  background: linear-gradient(135deg, #fff6ec 60%, #fdf7f3 100%);
  border-radius: 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  padding: 0;
  min-height: 140px;
  position: relative;
  overflow: visible;
  transition: box-shadow 0.2s, transform 0.2s;
}
.category-item:not(.highlight):hover {
  box-shadow: 0 10px 32px rgba(0,0,0,0.13);
  transform: translateY(-4px) scale(1.01);
}
.category-item img {
  position: absolute;
  left: 32px;
  bottom: 32px;
  width: 110px;
  height: 110px;
  object-fit: contain;
  z-index: 2;
  background: #fff;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}
.category-item:hover img {
  transform: scale(1.06) rotate(-4deg);
}
.category-item .content {
  flex: 1;
  padding: 36px 32px 36px 170px;
  text-align: left;
  z-index: 3;
}
.category-item .content h3 {
  font-size: 1.5rem;
  color: #6b3d1c;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.category-item .content p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 16px;
}
.category-item .content a {
  color: #e86f00;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
  transition: color 0.2s;
}
.category-item .content a:hover {
  color: #b65c3d;
}

/* Responsive */
@media (max-width: 1100px) {
  .category-container {
    flex-direction: column;
    gap: 24px;
  }
  .category-col,
  .category-col.big {
    min-width: 0;
    width: 100%;
  }
  .category-item,
  .category-item.highlight {
    min-height: 180px;
  }
  .category-item img,
  .category-item.highlight img {
    max-width: 120px;
    width: 120px;
    height: 120px;
    left: 50%;
    bottom: unset;
    top: -32px;
    transform: translateX(-50%);
    border-width: 6px;
  }
  .category-item .content,
  .category-item.highlight .content {
    padding: 120px 18px 24px 18px;
  }
}

@media (max-width: 700px) {
  .category-container {
    padding: 0 4vw;
    gap: 16px;
  }
  .category-item,
  .category-item.highlight {
    flex-direction: column;
    align-items: flex-start;
    min-height: 120px;
    padding: 0;
  }
  .category-item img,
  .category-item.highlight img {
    width: 90px;
    height: 90px;
    left: 50%;
    top: -24px;
    bottom: unset;
    transform: translateX(-50%);
    border-width: 4px;
  }
  .category-item .content,
  .category-item.highlight .content {
    padding: 80px 12px 18px 12px;
    text-align: left;
  }
}

.flash-sale-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 30px;
  background: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  gap: 16px;
}
.flash-sale-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.flash-sale-label {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #ff9000, #ff5e00);
  border-radius: 10px;
  padding: 10px 16px;
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.15);
}
.flash-sale-label .icon {
  font-size: 20px;
  margin-right: 8px;
}
.flash-sale-label .label-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.flash-sale-label .label-text strong {
  font-size: 16px;
  font-weight: 700;
}
.flash-sale-label .label-text span {
  font-size: 13px;
}
.countdown {
  display: flex;
  align-items: center;
  gap: 6px;
}
.countdown .time {
  background: #b57b57;
  color: white;
  font-weight: bold;
  font-size: 18px;
  padding: 6px 14px;
  border-radius: 6px;
  min-width: 40px;
  text-align: center;
}
.countdown .colon {
  font-size: 24px;
  color: #5c2c1c;
  font-weight: bold;
}
.flash-sale-title {
  font-size: 22px;
  font-weight: bold;
  color: #5c2c1c;
  white-space: nowrap;
}
.flash-sale-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: auto;
}
.flash-item {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
}
.flash-item:hover {
  transform: translateY(-6px);
}
.flash-item img {
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.flash-item .discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #b57b57;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: bold;
}
.flash-item h4 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
.progress-bar {
  font-size: 12px;
  background: #eee;
  color: #333;
  border-radius: 6px;
  padding: 4px 10px;
  text-align: center;
}
.progress-bar.soldout {
  background: #eee;
  color: red;
}
.price {
  font-size: 16px;
  color: #c60000;
  font-weight: bold;
}
.price del {
  color: #999;
  margin-left: 6px;
}
.best-seller-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
.section-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.category-tabs .tab {
  border: 1px solid #b57b57;
  background: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  color: #5c2c1c;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-tabs .tab.selected,
.category-tabs .tab:hover {
  background: #b57b57;
  color: white;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.product-card {
  background: #f8f4f2;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
  border-radius: 8px;
}
.product-card .title {
  font-size: 14px;
  color: #333;
  margin-bottom: 6px;
}
.product-card .price {
  font-size: 16px;
  font-weight: bold;
  color: #c60000;
}
.product-card .price del {
  font-size: 14px;
  color: #999;
  margin-left: 6px;
}
.discount {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #b57b57;
  color: white;
  font-size: 13px;
  font-weight: bold;
  padding: 4px 8px;
  border-radius: 6px;
}



.material-section {
  background: #fff;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
}
.material-head {
  background: #c48b6d;
  color: white;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.material-contact .hotline {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 8px;
}
.contact-button {
  background: white;
  color: #5c2c1c;
  padding: 8px 8px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  margin-left: 45px;
}
.material-body {
  margin-top: 40px;
}
.material-headline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 24px;
  gap: 12px;
}
.section-sub {
  color: #995c3e;
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  border-bottom: 2px solid #995c3e;
  display: inline-block;
  padding-bottom: 2px;
}
.section-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}
.view-all-button {
  background: #b57b57;
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: background 0.3s ease;
}
.view-all-button:hover {
  background: #a06a4c;
}

.material-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 80px;
}
.material-tabs .tab {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #eee;
  color: #333;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}
.material-tabs .tab.selected {
  background: #b57b57;
  color: white;
}
.material-slider {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  background: #f6f0ec;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
}
.product-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 12px;
}
.product-card .title {
  font-size: 14px;
  color: #333;
  font-weight: bold;
  margin-bottom: 4px;
}
.product-card .price {
  font-size: 16px;
  color: #c60000;
  font-weight: bold;
}
.material-content {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.material-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 100px;
  flex-shrink: 0;
}
.material-slider {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.material-intro strong{
    font-size: 2em;
}


.process-section {
  padding: -40px 20px;
  text-align: center;
}
.process-sub {
  text-transform: uppercase;
  color: #9c6247;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: bold;
  margin-bottom: 4px;
}
.process-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.step {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.step-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border: 2px solid #b57b57;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon img {
  width: 40px;
  height: 40px;
}
.step-num {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #b57b57;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}
.step h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}
.step p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.why-choose-section {
  background: #fcf5f1;
  padding: 80px 20px;
}
.why-choose-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}
.why-choose-content {
  flex: 1;
  min-width: 300px;
}
.why-sub {
  text-transform: uppercase;
  color: #9c6247;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: bold;
  margin-bottom: 8px;
  border-bottom: 2px solid #9c6247;
  display: inline-block;
  padding-bottom: 2px;
}
.why-title {
  font-size: 30px;
  font-weight: bold;
  margin: 12px 0;
}
.why-desc {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
  border-left: 2px solid #eee;
  padding-left: 16px;
}
.why-icon {
  background: #b57b57;
  color: white;
  font-size: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(181,123,87,0.2);
}
.why-point h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}
.why-point p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.why-choose-image {
  flex: 1;
  min-width: 300px;
  position: relative;
  padding: 12px;
  border: 6px solid #b57b57;
}
.why-choose-image img {
  width: 100%;
  border: 4px solid white;
  display: block;
}


.faq-section {
  background: #fff;
  padding: 80px 20px;
}
.faq-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}
.faq-left {
  flex: 1;
  min-width: 300px;
}
.faq-sub {
  text-transform: uppercase;
  color: #9c6247;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: bold;
  margin-bottom: 6px;
  border-bottom: 2px solid #9c6247;
  display: inline-block;
  padding-bottom: 2px;
}
.faq-title {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.faq-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}
.faq-button {
  margin-top: 10px;
  padding: 10px 18px;
  background: #b57b57;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}
.faq-right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  text-align: left;
  gap: 12px;
}
.faq-icon {
  background: #b57b57;
  color: white;
  font-weight: bold;
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.faq-question {
  flex: 1;
  font-size: 16px;
  font-weight: 500;
}
.faq-arrow {
  transition: transform 0.3s ease;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 14px;
  color: #666;
  padding: 0 16px 0 64px;
}
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 16px;
}




.testimonial-section {
  background: #f8f0eb;
  padding: 80px 20px;
  text-align: center;
  overflow-x: hidden;
}
.testimonial-container {
  max-width: 1200px;
  margin: auto;
}
.testimonial-sub {
  text-transform: uppercase;
  color: #9c6247;
  font-size: 14px;
  letter-spacing: 1.5px;
  font-weight: bold;
  margin-bottom: 8px;
  border-bottom: 2px solid #9c6247;
  display: inline-block;
  padding-bottom: 2px;
}
.testimonial-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}
.testimonial-list-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 20px;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
  transition: scroll-left 0.4s ease-out;
  scroll-snap-stop: always;
  will-change: scroll-position;
}
.testimonial-list-scroll.active {
  cursor: grabbing;
}
.testimonial-card {
  flex: 0 0 360px;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
  border-bottom: 4px solid #b57b57;
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.testimonial-list-scroll::-webkit-scrollbar {
  height: 8px;
}
.testimonial-list-scroll::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.stars {
  color: #b57b57;
  font-size: 18px;
  margin-bottom: 12px;
}
.review-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 16px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.reviewer div p {
  margin: 0;
  font-size: 13px;
  color: #888;
}
.quote {
  margin-left: auto;
  font-size: 36px;
  color: #b57b57;
}




.blog-section {
  padding: 80px 20px;
  text-align: center;
  max-width: 1150px;
  margin: auto;
}
.blog-section h3 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9c6247;
  margin-bottom: 8px;
  font-weight: bold;
  border-bottom: 2px solid #9c6247;
  display: inline-block;
  padding-bottom: 2px;
}
.blog-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: bold;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
.blog-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-meta {
  font-size: 14px;
  color: #666;
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-title {
  font-weight: bold;
  font-size: 16px;
  margin: 8px 0;
  line-height: 1.4;
}
.blog-desc {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
  flex: 1;
}
.blog-button {
  margin-top: 32px;
  display: inline-block;
  padding: 12px 24px;
  background: #9c6247;
  color: #fff;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.blog-button:hover {
  background: #7e5039;
}

/* CARD DANH MỤC: ẢNH LÀM NỀN ĐẦU, CHỮ NẰM TRÊN ẢNH */
.category-item,
.category-item.highlight {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  overflow: hidden;
  min-height: 320px;
  padding: 0;
  transition: box-shadow 0.25s, transform 0.25s;
}

.category-item img,
.category-item.highlight img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 28px;
  z-index: 1;
  /* Không hiệu ứng */
}

.category-item .content,
.category-item.highlight .content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 32px 24px 24px 24px;
  background: linear-gradient(to top,rgba(0,0,0,0.55) 0%,rgba(0,0,0,0.10) 60%,rgba(0,0,0,0) 100%);
  border-radius: 0 0 28px 28px;
}

.category-item .content h3,
.category-item.highlight .content h3 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.category-item .content p,
.category-item.highlight .content p {
  font-size: 1.05rem;
  color: #f3f3f3;
  margin-bottom: 16px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.13);
}

.category-item .content a,
.category-item.highlight .content a {
  color: #ffb300;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  margin-top: 8px;
  display: inline-block;
  transition: color 0.2s;
  text-shadow: 0 1px 6px rgba(0,0,0,0.13);
}
.category-item .content a:hover,
.category-item.highlight .content a:hover {
  color: #fff;
}

/* Responsive */
@media only screen and(max-width: 900px) {
  .about-container,
  .why-choose-container,
  .faq-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 10px;
  }
  .about-section,
  .why-choose-section,
  .faq-section,
  .testimonial-section,
  .blog-section {
    padding: 40px 10px;
  }
  .category-container {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 10px;
  }
  .category-col,
  .category-col.big {
    min-width: 0;
    width: 100%;
  }
  .category-item,
  .category-item.highlight {
    min-height: 160px;
  }
  .category-item img,
  .category-item.highlight img {
    min-height: 160px;
  }
  .flash-sale-header,
  .flash-sale-products {
    padding: 0 10px;
    gap: 12px;
  }
  .flash-sale-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile: <= 600px */
@media only screen and (max-width: 600px) {
  .about-section {
    padding: 18px 2vw;
  }
  .about-container {
    flex-direction: column;
    gap: 10px;
    padding: 0 2vw;
    align-items: stretch;
  }
  .about-left {
    margin-bottom: 0;
  }
  h2 {
    font-size: 1.3rem;
    margin: 8px 0 12px;
  }
  .description {
    font-size: 0.98rem;
    margin-bottom: 18px;
  }
  .about-right img {
    border-radius: 8px;
    margin-top: 0;
    margin-bottom: 10px;
    max-width: 100%;
    height: auto;
  }
  .stats {
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat {
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.98rem;
  }
  .number {
    font-size: 1.1rem;
    margin-bottom: 2px;
  }
  .label {
    font-size: 0.95rem;
  }
}

/* Đẹp hơn cho danh mục sản phẩm trên mobile */
@media only screen and (max-width: 600px) {
  .category-container {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 0 2vw;
  }
  .category-item,
  .category-item.highlight {
    min-height: 120px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    margin-bottom: 0;
    overflow: hidden;
  }
  .category-item img,
  .category-item.highlight img {
    min-height: 120px;
    border-radius: 14px;
    filter: brightness(0.82) contrast(1.08);
  }
  .category-item .content,
  .category-item.highlight .content {
    padding: 18px 10px 14px 10px;
    border-radius: 0 0 14px 14px;
    background: linear-gradient(to top,rgba(0,0,0,0.48) 0%,rgba(0,0,0,0.10) 60%,rgba(0,0,0,0) 100%);
  }
  .category-item .content h3,
  .category-item.highlight .content h3 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.2px;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
  }
  .category-item .content p,
  .category-item.highlight .content p {
    font-size: 0.97rem;
    color: #f3f3f3;
    margin-bottom: 8px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.13);
  }
  .category-item .content a,
  .category-item.highlight .content a {
    font-size: 0.98rem;
    color: #ffb300;
    font-weight: 700;
    margin-top: 2px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.13);
    padding: 0;
  }
}

/* Đẹp hơn cho tablet */
@media only screen and (min-width: 601px) and (max-width: 900px) {
  .category-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 18px;
    padding: 0 3vw;
  }
  .category-item,
  .category-item.highlight {
    min-height: 160px;
    border-radius: 18px;
  }
  .category-item img,
  .category-item.highlight img {
    min-height: 160px;
    border-radius: 18px;
    filter: brightness(0.88) contrast(1.05);
  }
  .category-item .content,
  .category-item.highlight .content {
    padding: 24px 14px 18px 14px;
    border-radius: 0 0 18px 18px;
  }
  .category-item .content h3,
  .category-item.highlight .content h3 {
    font-size: 1.18rem;
  }
}

.category-item .content h3,
.category-item.highlight .content h3,
.category-item .content p,
.category-item.highlight .content p,
.category-item .content a,
.category-item.highlight .content a {
  text-shadow:
    0 2px 8px rgba(0,0,0,0.28),
    0 1px 0 rgba(0,0,0,0.18),
    0 0px 2px rgba(0,0,0,0.18);
}