@charset "UTF-8";
/* Trademark Page Styles */
.trademark-page {
  padding: 20px 0;
}

.breadcrumbs_sepa {
  font-size: 20px;
}

.breadcrumb {
  gap: 10px;
  margin-top: 12px;
}

.trademark-header {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
}

.trademark-info {
  display: flex;
  align-items: center;
  gap: 30px;
}

.trademark-image {
  flex-shrink: 0;
}

.trademark-image img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  border: 2px solid #e1e1e1;
  border-radius: 8px;
  padding: 10px;
  background: white;
}

.trademark-details {
  flex: 1;
}

.trademark-name {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.trademark-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.trademark-stats {
  color: #f15928;
  font-weight: 600;
}

/* Filters Sidebar */
.filters-sidebar {
  background: white;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}

.filters-sidebar h3 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 5px;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filter-list li {
  margin-bottom: 8px;
}

.filter-list a {
  display: block;
  padding: 8px 12px;
  color: #666;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.filter-list a:hover {
  background: #f5f5f5;
  color: #f15928;
}

.filter-list a.active {
  background: #f15928;
  color: white;
}

/* Checkbox Filter Styles */
.filter-checkbox {
  display: flex;
  align-items: center;
  padding: 8px 0;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.filter-checkbox input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 18px;
  width: 18px;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: 3px;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.filter-checkbox:hover input ~ .checkmark {
  border-color: #f15928;
}

.filter-checkbox input:checked ~ .checkmark {
  background-color: #f15928;
  border-color: #f15928;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.filter-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.filter-checkbox .checkmark:after {
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Products Section */
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e1e1e1;
}

.products-count {
  color: #666;
  font-size: 0.95rem;
}

.products-sort select {
  min-width: 200px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 12px;
}

/* Products Grid */
.products-grid .row {
  margin-left: -10px;
  margin-right: -10px;
}

.product-item {
  padding: 10px;
  margin-bottom: 20px;
}

.product-card {
  background: white;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  background: #f8f9fa;
}

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

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

.sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #e74c3c;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}

.product-info {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  flex: 1;
}

.product-name a {
  color: #333;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-name a:hover {
  color: #f15928;
}

.product-category {
  margin-bottom: 10px;
}

.product-category a {
  color: #666;
  font-size: 0.9rem;
  text-decoration: none;
}

.product-category a:hover {
  color: #f15928;
}

.product-price {
  margin-bottom: 15px;
}

.original-price {
  color: #999;
  text-decoration: line-through;
  margin-right: 10px;
  font-size: 0.9rem;
}

.sale-price {
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.1rem;
}

.current-price {
  color: #f15928;
  font-weight: bold;
  font-size: 1.1rem;
}

.product-actions .btn {
  width: 100%;
  padding: 10px;
  background: #f15928;
  color: white;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
}

.product-actions .btn:hover {
  background: #d14620;
  color: white;
}

/* No Products Message */
.no-products {
  text-align: center;
  padding: 60px 20px;
}

.no-products-message h3 {
  color: #666;
  margin-bottom: 15px;
}

.no-products-message p {
  color: #999;
  margin-bottom: 20px;
}

.no-products-message .btn {
  background: #f15928;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.no-products-message .btn:hover {
  background: #d14620;
  color: white;
}

/* Pagination */
.pagination-wrapper {
  margin-top: 30px;
  text-align: center;
}

/* Loading State */
.products-container.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

.products-container.loading::after {
  content: "Đang tải...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

/* Filter Overlay for Mobile */
.filter-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.filter-overlay.active {
  display: block;
}

.filter-toggle {
  display: none;
  background: #f15928;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  cursor: pointer;
}

.filter-close {
  display: none;
  float: right;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .trademark-info {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .trademark-name {
    font-size: 2rem;
  }
  .products-header {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .products-sort select {
    width: 100%;
  }
  .product-image {
    height: 200px;
  }
  .filters-sidebar {
    margin-bottom: 30px;
  }
  .filter-toggle {
    display: block;
  }
  .filter-close {
    display: block;
  }
  .filters-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
  }
  .filters-sidebar.active {
    left: 0;
  }
}
@media (max-width: 576px) {
  .trademark-page {
    padding: 10px 0;
  }
  .trademark-header {
    padding: 20px;
  }
  .trademark-name {
    font-size: 1.8rem;
  }
  .product-image {
    height: 180px;
  }
  .filters-sidebar {
    padding: 15px;
  }
}/*# sourceMappingURL=trademark.css.map */