.tttech-swiper .container .product-info > div > .flex-wrap{
  margin: 5px;
  position: absolute;
  top: 0;
  right: 0;
}

.tttech-swiper .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
}

.tttech-swiper .subtitle {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
}

.tttech-swiper .swiper {
  width: 100%;
  height: auto;
  padding: 20px 0;
  position: relative;
  overflow: visible;
}

.tttech-swiper .swiper-wrapper {
  align-items: stretch;
}

.tttech-swiper .swiper-slide {
  background: white;
  border-radius: 0px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto;
  width: 280px;
  flex-shrink: 0;
}

.tttech-swiper .swiper-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.tttech-swiper .product-card {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.tttech-swiper .product-image {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.tttech-swiper .product-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.tttech-swiper .product-image:hover img {
  transform: scale(1.05);
}

.tttech-swiper .swiper-slide:nth-child(1) .product-image {
  background: linear-gradient(135deg, #d2691e, #f4a460);
}

.tttech-swiper .swiper-slide:nth-child(2) .product-image {
  background: #e8e8e8;
}

.tttech-swiper .swiper-slide:nth-child(3) .product-image {
  background: linear-gradient(135deg, #ffb6c1, #87ceeb);
}

.tttech-swiper .swiper-slide:nth-child(4) .product-image {
  background: #2f4f4f;
}

.tttech-swiper .swiper-slide:nth-child(5) .product-image {
  background: #f0f0f0;
}

.tttech-swiper .swiper-slide:nth-child(n+6) .product-image {
  background: #f8f8f8;
}

.tttech-swiper .heart-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 2;
}

.tttech-swiper .designer-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}

.tttech-swiper .product-info {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tttech-swiper .brand-name {
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}

.tttech-swiper .product-name {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.3;
  min-height: 35px;
}

.tttech-swiper .product-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.tttech-swiper .product-name a:hover {
  color: #007bff;
}

.tttech-swiper .price {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  margin-top: auto;
}

.tttech-swiper .price.sale {
  color: #e74c3c;
}

.tttech-swiper .swiper-button-next,
.tttech-swiper .swiper-button-prev {
  background: white;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  color: #333;
  margin-top: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}

.tttech-swiper .swiper-button-next:after,
.tttech-swiper .swiper-button-prev:after {
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.tttech-swiper .swiper-button-next {
  right: 0px;
  background: white;
  color: #333;
}

.tttech-swiper .swiper-button-next:after {
  color: #333;
}

.tttech-swiper .swiper-button-prev {
  left: 0px;
}

/* Hide navigation buttons when disabled */
.tttech-swiper .swiper-button-disabled {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.tttech-swiper .wishlist {
  position: absolute;
  top: 0;
  right: 0;
  margin: 5px;
}

.tttech-swiper .swiper-slide > form {
  height: 100%;
}

/* Responsive Design với scope */
@media (max-width: 1024px) {
  .tttech-swiper .swiper-slide {
    width: 250px;
  }
}

@media (max-width: 768px) {
  .tttech-swiper .container {
    padding: 0 20px;
  }
  
  .tttech-swiper .swiper-slide {
    width: 220px;
    box-shadow: none;
  }
  
  .tttech-swiper .title {
    font-size: 28px;
  }
  
  .tttech-swiper .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
  }

  body .tttech-swiper .swiper{
    overflow: hidden;
  }
  body .tttech-swiper .swiper-button-prev{
    left: 1px;
  }
  body .tttech-swiper .swiper-button-next{
    right: 1px;
  }

  .tttech-swiper .swiper-slide > form{
    box-shadow: 0px 0px 5px 2px #ccc;
    border: 1px #eee solid;
  }
}

@media (max-width: 480px) {
  .tttech-swiper .swiper-slide {
    width: 200px;
  }
  
  .tttech-swiper .product-image {
    height: 150px;
  }
  
  .tttech-swiper .title {
    font-size: 24px;
  }
  
  .tttech-swiper .subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
