:root{
  --yellow: #f8c81d;
  --dark: #1b1a15;
  --card-radius: 12px;
}

body{
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #1b1a15;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

.brand-band {
  width: 100%;
  overflow: hidden;
}

.brand-band .header-full-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cat-nav {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25); 
  position: relative;
}

.cat-nav .nav-link {
  color:var(--dark);
  font-weight: 600;
  padding: 18px 18px;
  text-transform: uppercase;
  transition: color 0.2s ease, border-color 0.2s ease;
  border-bottom: 3px solid transparent;
}

.cat-nav .nav-link:hover {
  color: var(--yellow);
}

.cat-nav .nav-link.active {
  color: var(--yellow);
  border-bottom: 3px solid var(--yellow); 
  border-radius: 0;
}

.cat-nav .nav {
  flex-wrap: nowrap;
  overflow-x: auto;
}

.cat-nav .nav-link {
  flex: 1;
  text-align: center;
  white-space: nowrap;
  font-size: 1rem;
}

@media (max-width: 576px) {
  .cat-nav .nav-link {
    font-size: 1.0rem;
    padding: 10px 10px;
  }
}

.section-title{
  color:var(--yellow);
  font-weight:700;
  margin:32px 0 18px;
  font-size:1.5rem;
}

.product-card {
  border-radius: var(--card-radius);
  overflow: hidden;
  border: 2px solid rgba(246,196,25,0.75);
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .15s ease, box-shadow .15s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.product-card .img-wrap{
  padding:10px;
  flex-shrink: 0;
}

.product-card img{
  display:block;
  width:100%;
  height:190px;
  object-fit:cover;
  border-radius:8px;
  background:#eee;
}

.product-card .card-body{
  padding:14px 16px 18px;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-grow: 1;
}

.product-card .text-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  white-space: normal; 
  overflow-wrap: break-word; 
}

.product-title{
  font-weight:700;
  margin-bottom:6px;
  font-size:1rem;
}

.product-desc{
  color:#666;
  font-size:0.95rem;
  margin-bottom:10px;
}

.product-price{
  font-weight:700;
  font-size:1.05rem;
  margin-top: auto;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.15);
  background: var(--yellow); 
  border-color: var(--yellow);
}

.brand-band .logo-img {
  max-width: 240px; 
  height: auto;
  border-radius: 8px;
}

@media (max-width:575.98px){
  .product-card img{
    height:160px;
  }
  /*.brand-band{padding:24px 12px;}*/
  .brand-band{padding:0px;}
  .brand-band .brand-title{font-size:1.2rem;}
}