/* Shared modern style for EN category collection pages */
body {
  background: #f5f6f8;
  color: #1f2937;
  font-family: "Segoe UI", Arial, sans-serif;
}

.t1 {
  max-width: 1200px;
  margin: 24px auto 10px;
  padding: 0 20px;
}

.t1 p {
  margin: 0;
  display: inline-block;
  background: linear-gradient(135deg, #1a2340 0%, #2c3e6b 60%, #1e4d8c 100%);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.box,
.box1,
.box2,
.box3 {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 20px;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.box a,
.box1 a,
.box2 a,
.box3 a {
  text-decoration: none;
  color: inherit;
}

.innerbox,
.innerbox1,
.innerbox2,
.innerbox3 {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.innerbox:hover,
.innerbox1:hover,
.innerbox2:hover,
.innerbox3:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.innerbox img,
.innerbox1 img,
.innerbox2 img,
.innerbox3 img {
  width: 100%;
  height: 155px;
  object-fit: contain;
  background: #fafafa;
  padding: 8px;
}

.innerbox p,
.innerbox1 p,
.innerbox2 p,
.innerbox3 p {
  margin: 0;
  padding: 10px 12px 12px;
  font-size: 13.5px;
  line-height: 1.4;
  font-weight: 600;
  color: #1a2340;
  border-top: 1px solid #f0f0f0;
}

@media (max-width: 1100px) {
  .box,
  .box1,
  .box2,
  .box3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .box,
  .box1,
  .box2,
  .box3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 640px) {
  .t1 {
    margin-top: 14px;
    padding: 0 12px;
  }

  .t1 p {
    font-size: 15px;
    padding: 10px 14px;
  }

  .box,
  .box1,
  .box2,
  .box3 {
    padding: 0 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
}
