/* ===== CONTAINER ===== */

.tr-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 16px;
}

/* ===== HERO ===== */

.tr-hero{
  background:linear-gradient(90deg,#0f172a,#1f2937);
  color:#fff;
  padding:90px 20px;
  text-align:center;
}

.tr-hero h1{
  font-size:42px;
  margin-bottom:12px;
}

.tr-hero p{
  opacity:.9;
  margin-bottom:22px;
}

.tr-btn{
  display:inline-block;
  background:#16a34a;
  color:#fff;
  padding:12px 24px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
}

/* ===== CATEGORY STRIP ===== */

.tr-categories{
  margin:40px 0;
}

.tr-categories .tr-container{
  display:grid;
  grid-template-columns:repeat(8,1fr);
  gap:14px;
}

.tr-cat-item{
  background:#f3f4f6;
  border-radius:12px;
  padding:18px;
  text-align:center;
  text-decoration:none;
  color:#111;
  transition:.2s;
}

.tr-cat-item:hover{
  background:#e5e7eb;
  transform:translateY(-2px);
}

.tr-cat-item img{
  width:60px;
  height:60px;
  object-fit:contain;
  margin-bottom:8px;
}

.tr-cat-item span{
  display:block;
  font-size:14px;
  font-weight:600;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

  .tr-categories .tr-container{
    grid-template-columns:repeat(2,1fr);
  }

  .tr-hero h1{
    font-size:26px;
  }

  .tr-hero{
    padding:60px 16px;
  }

}
/* ===== TRUST BLOCKS ===== */

.tr-trust{
  background:#ffffff;
  padding:26px 0;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}

.tr-trust-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}

.tr-trust-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px;
  background:#f9fafb;
  border-radius:12px;
  transition:.2s;
}

.tr-trust-item:hover{
  background:#f1f5f9;
  transform:translateY(-2px);
}

.tr-icon{
  font-size:26px;
  background:#16a34a;
  color:#fff;
  width:44px;
  height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
}

.tr-trust-item h4{
  font-size:15px;
  margin:0;
}

.tr-trust-item p{
  font-size:13px;
  margin:2px 0 0;
  color:#666;
}

/* ===== MOBILE ===== */

@media(max-width:768px){

  .tr-trust-grid{
    grid-template-columns:1fr;
  }

}
/* ===== FLASH DEALS ===== */

.tr-deals{
  padding:40px 0;
}

.tr-section-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.tr-deals-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* Product card */

.tr-card{
  background:#fff;
  border-radius:14px;
  padding:12px;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
  transition:.2s;
}

.tr-card:hover{
  transform:translateY(-4px);
}

.tr-card-img{
  position:relative;
}

.tr-card-img img{
  width:100%;
  height:240px;
  object-fit:cover;
  border-radius:10px;
}

/* Sale badge */

.tr-sale{
  position:absolute;
  top:8px;
  left:8px;
  background:#ff3b3b;
  color:#fff;
  padding:4px 8px;
  font-size:12px;
  border-radius:6px;
}

/* Title */

.tr-title{
  font-size:14px;
  margin:10px 0 6px;
  min-height:38px;
}

/* Price */

.tr-price{
  font-weight:700;
  margin-bottom:8px;
}

/* MOBILE */

@media(max-width:768px){

  .tr-deals-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .tr-card-img img{
    height:160px;
  }

}
/* ===== RECENTLY VIEWED ===== */

.tr-recent{
  padding:40px 0;
}

.tr-recent-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* MOBILE */

@media(max-width:768px){

  .tr-recent-grid{
    grid-template-columns:repeat(2,1fr);
  }

}
/* ===== RECOMMENDED ===== */

.tr-recommended{
  padding:40px 0;
}

.tr-reco-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

/* MOBILE */

@media(max-width:768px){

  .tr-reco-grid{
    grid-template-columns:repeat(2,1fr);
  }

}
/* ===== WISHLIST BUTTON ===== */

.tr-wishlist-btn{
  position:absolute;
  top:10px;
  right:10px;
  background:#fff;
  border:none;
  border-radius:50%;
  width:38px;
  height:38px;
  font-size:18px;
  cursor:pointer;
  box-shadow:0 2px 6px rgba(0,0,0,.15);
}

.tr-wishlist-btn.active{
  color:#ef4444;
}
/* ===== TRUST SECTION ===== */

.tr-trust{
  background:#fff;
  padding:60px 20px;
}

.tr-trust .tr-container{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

/* Top banner */

.tr-trust-banner{
  margin-bottom:50px;
}

.tr-trust-banner img{
  width:100%;
  max-width:1000px;
  border-radius:8px;
  box-shadow:0 6px 25px rgba(0,0,0,0.08);
}

/* Delivery section */

.tr-delivery h2{
  font-size:28px;
  margin-bottom:25px;
}

.tr-delivery img{
  width:100%;
  max-width:900px;
}
/* ===== SEO CONTENT BLOCK ===== */

.tr-seo{
  background:#f7f8fa;
  padding:70px 20px;
  border-top:1px solid #e5e7eb;
}

.tr-seo .tr-container{
  max-width:900px;
  margin:0 auto;
  text-align:center;
}

.tr-seo h2{
  font-size:32px;
  line-height:1.3;
  margin-bottom:24px;
  color:#111827;
  font-weight:800;
}

.tr-seo p{
  font-size:17px;
  line-height:1.8;
  color:#4b5563;
  margin-bottom:18px;
}