.page-header {
    padding: 80px 0;
    background: #FF7700 !important;
    color: #FFFFFF !important; 
    text-align: center;
    position: relative;
    margin-bottom: 0;
}
.page-header h1,
.page-header h2,
.page-header p,
.page-header span,
.page-header a,
.page-header li {
    color: #FFFFFF !important;
}
.page-header-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.3); 
}
.page-header-content p {
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    opacity: 0.9;
}
.page-header .breadcrumb {
    list-style: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 10px 25px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(5px);
}
.page-header .breadcrumb li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    opacity: 0.6;
}
.page-header .breadcrumb a {
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}
.page-header .breadcrumb a:hover {
    text-decoration: underline;
    opacity: 0.8;
}
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 32px;
  color: var(--black);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 700;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
}
.section-title p {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}
.brands-section {
  padding: 50px 0;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.brand-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.brand-logo {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--white);
}
.brand-logo img {
  max-height: 80px;
  max-width: 150px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: var(--transition);
}
.brand-card:hover .brand-logo img {
  filter: grayscale(0%);
  opacity: 1;
}
.brand-info {
  padding: 25px;
  border-top: 1px solid #eee;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.brand-info h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.brand-description {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 15px;
  flex-grow: 1;
  min-height: 60px;
}
.brand-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  border-top: 1px dashed #ddd;
  padding-top: 15px;
}
.stat-item {
  text-align: center;
}
.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  font-size: 13px;
  color: var(--gray);
}
.btn-ver-productos {
  display: inline-block;
  width: 100%;
  padding: 10px;
  text-align: center;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  border: 2px solid var(--black);
  text-decoration: none;
}
.btn-ver-productos:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.featured-brands {
  padding: 50px 0;
  background: var(--light-gray);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.featured-brand {
  display: flex;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  align-items: center;
  transition: var(--transition);
}
.featured-brand:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.featured-logo {
  flex: 0 0 250px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fdfdfd;
}
.featured-logo img {
  max-width: 100%;
  max-height: 70px;
}
.featured-info {
  padding: 30px;
  position: relative;
}
.exclusive-tag {
  position: absolute;
  top: 30px;
  right: 30px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius);
}
.featured-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.featured-info p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
  .featured-brand {
    flex-direction: column;
  }
  .featured-logo {
    flex: 0 0 auto;
    width: 100%;
    height: 150px;
  }
  .exclusive-tag {
    top: 20px;
    right: 20px;
  }
}