/** Shopify CDN: Minification failed

Line 39:16 Unexpected "{"
Line 39:25 Expected ":"
Line 39:32 Unexpected "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:page-brand (INDEX:51) */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --text-black: #000000;
  --bg-white: #ffffff;
  --tizzil-red: #5e0b0b;
}
.filter-item:first-child {
  font-weight: 600;
}

.no-brands-message {
padding-bottom: 40px;
  text-align: center;
  width: 100%;
  margin: 2rem 0 0;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-black);
}
.no-brands-message .no-brands-letter {
  font-weight: 700;
  color: var(--tizzil-red);
}

#tizzil-brands-{{ section.id }} {
  background-color: var(--bg-white);
  color: var(--text-black);
  padding: 2rem;
  max-width: 1440px;
  margin: 0 auto;
  font-family: 'Outfit', sans-serif;
}

.brands-header {
  text-align: center;
  margin: 2rem 0 4rem;
}

.page-title {
  font-size: 6rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
}

.alphabet-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 1.25rem;
  color: #000000;
}
.alphabet-filter .filter-item {
color: #000000;
font-size: 15px;
}

.filter-item {
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
}

.filter-item:hover {
  color: var(--tizzil-red);
}

.filter-item.active {
  text-decoration: underline;
  font-weight: 600;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 50px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom:20px;
}

.brand-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.brand-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.brand-card:hover .brand-image {
  transform: scale(1.05);
}

.brand-name {
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  font-size: 2.9rem;
}

.brand-desc {
  font-size: 0.8rem;
  line-height: 1.2;
  margin-bottom: 0.6rem;
}

.brand-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  background-color: #5e0106;
  border-radius: 4px;
  margin-top: auto;
  text-decoration: none;
  transition: 0.3s;
}

.brand-cta-btn:hover {
  background-color: #7a0d0d;
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .brands-grid { grid-template-columns: repeat(3,1fr); }
  .page-title { font-size: 4rem; }
  .alphabet-filter { gap: 1.5rem; font-size: 1rem; }
}

@media (max-width: 768px) {
  .brands-grid { grid-template-columns: repeat(2,1fr); gap: 1rem; row-gap: 30px; }
  .page-title { font-size: 3rem; }
  .alphabet-filter { gap: 1rem; font-size: 0.9rem; }
  .page-subtitle { font-size: 0.9rem; margin-bottom: 1.5rem; }
}


/* Make arrow icons smaller on mobile */
@media (max-width: 768px) {
  .arrow-nav-icon {
    width: 30px !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .arrow-nav-icon {
    width: 30px !important;
    height: auto !important;
  }
}
/* END_SECTION:page-brand */