.elementor-3772 .elementor-element.elementor-element-3077632{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-be8f757 *//* Color Variables */
:root {
  --tz-black: #1a1a1a;
  --tz-black-light: #2a2a2a;
  --tz-copper: #B87333;
  --tz-copper-light: #d18d50;
  --tz-white: #ffffff;
  --tz-gray: #666666;
  --tz-gray-light: #888888;
}

/* LAYOUT */
.tz-shop-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
  padding: 20px;
}

/* PRODUCTS CONTAINER */
.tz-product-container {
  width: 100%;
}

/* PRODUCTS GRID - 4 columns on desktop */
.tz-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* CARD */
.tz-product-card {
  background: var(--tz-black-light);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tz-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.15);
  border-color: var(--tz-copper);
}

/* PRODUCT IMAGE */
.tz-product-image {
  display: block;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1/1;
}

.tz-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tz-product-card:hover .tz-product-image img {
  transform: scale(1.05);
}

/* TITLE */
.tz-product-title {
  color: var(--tz-white);
  font-size: 14px;
  margin: 8px 0;
  line-height: 1.3;
  flex-grow: 1;
}

/* PRICE */
.tz-product-price {
  display: block;
  margin-bottom: 16px;
  font-size: 15px;
  font-weight: 600;
}

.tz-product-price del {
  color: var(--tz-gray);
  opacity: 0.8;
  margin-right: 6px;
}

.tz-product-price ins {
  color: var(--tz-white);
  text-decoration: none;
  font-weight: 700;
}

/* ACTIONS */
.tz-product-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: auto;
}

.tz-view-btn {
  border: 1px solid var(--tz-copper);
  color: var(--tz-copper);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  flex: 1;
}

.tz-view-btn:hover {
  background: var(--tz-copper);
  color: var(--tz-white);
}

.tz-cart-btn {
  background: var(--tz-copper);
  color: var(--tz-white);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  flex: 1;
}

.tz-cart-btn:hover {
  background: var(--tz-copper-light);
}

/* FILTER SIDEBAR */
.tz-filter-sidebar {
  background: var(--tz-black-light);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #333;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.tz-filter-title {
  color: var(--tz-white);
  font-size: 20px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid #333;
}

.tz-filter-section {
  margin-bottom: 28px;
}

.tz-filter-section h5 {
  color: var(--tz-white);
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* PRICE RANGE */
.tz-price-range {
  position: relative;
  height: 40px;
  margin: 20px 0;
}

.tz-price-slider {
  position: absolute;
  width: 100%;
  height: 4px;
  background: #333;
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
}

.tz-price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tz-copper);
  cursor: pointer;
  border: 2px solid var(--tz-white);
}

.tz-price-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tz-copper);
  cursor: pointer;
  border: 2px solid var(--tz-white);
}

.tz-price-values {
  display: flex;
  justify-content: space-between;
  color: var(--tz-gray-light);
  font-size: 14px;
}

.tz-price-values span {
  color: var(--tz-white);
}

/* CATEGORY FILTERS */
.tz-category-filters {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
}

.tz-category-filters::-webkit-scrollbar {
  width: 4px;
}

.tz-category-filters::-webkit-scrollbar-thumb {
  background: var(--tz-copper);
  border-radius: 4px;
}

.tz-checkbox-label {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
  color: var(--tz-white);
  font-size: 14px;
}

.tz-checkbox-label input {
  display: none;
}

.tz-checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid var(--tz-gray);
  border-radius: 4px;
  margin-right: 10px;
  position: relative;
  transition: all 0.3s ease;
}

.tz-checkbox-label input:checked + .tz-checkbox-custom {
  background: var(--tz-copper);
  border-color: var(--tz-copper);
}

.tz-checkbox-label input:checked + .tz-checkbox-custom::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 6px;
  height: 10px;
  border: solid var(--tz-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.tz-checkbox-text {
  flex: 1;
}

/* FILTER BUTTONS */
.tz-filter-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.tz-filter-apply {
  background: var(--tz-copper);
  color: var(--tz-white);
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tz-filter-apply:hover {
  background: var(--tz-copper-light);
}

.tz-filter-clear {
  background: transparent;
  color: var(--tz-gray-light);
  border: 1px solid #333;
  padding: 12px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  transition: all 0.3s ease;
}

.tz-filter-clear:hover {
  color: var(--tz-white);
  border-color: var(--tz-gray);
}

/* PAGINATION */
.tz-pagination {
  margin-top: 40px;
  text-align: center;
}

.tz-pagination .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  background: var(--tz-black-light);
  color: var(--tz-white);
  text-decoration: none;
  border-radius: 6px;
  border: 1px solid #333;
  transition: all 0.3s ease;
}

.tz-pagination .page-numbers.current,
.tz-pagination .page-numbers:hover {
  background: var(--tz-copper);
  border-color: var(--tz-copper);
  color: var(--tz-white);
}

/* RESPONSIVE DESIGN */

/* Large tablets and small desktops */
@media (max-width: 1200px) {
  .tz-product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .tz-shop-layout {
    gap: 30px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .tz-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .tz-shop-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .tz-filter-sidebar {
    position: static;
  }
}

/* Mobile devices */
@media (max-width: 768px) {
  .tz-product-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .tz-shop-layout {
    padding: 16px;
  }
  
  .tz-filter-sidebar {
    padding: 20px;
  }
  
  .tz-product-actions {
    flex-direction: column;
  }
  
  .tz-view-btn,
  .tz-cart-btn {
    width: 100%;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .tz-product-card {
    padding: 12px;
  }
  
  .tz-filter-section h5 {
    font-size: 15px;
  }
  
  .tz-pagination .page-numbers {
    padding: 6px 12px;
    margin: 0 2px;
    font-size: 14px;
  }
}/* End custom CSS */