.timeseo-country-outer{
  width:100%;
  padding:24px 0 56px;
  box-sizing:border-box;
}

.timeseo-country-container{
  width:100%;
  max-width:1240px;
  margin:0 auto;
  padding:0 16px;
  box-sizing:border-box;
}

.timeseo-country-page{
  --ts-red:#d90429;
  --ts-red-hover:#b90323;
  --ts-text:#111827;
  --ts-muted:#667085;
  --ts-border:#e5e7eb;
  --ts-white:#ffffff;
}

.timeseo-country-hero,
.timeseo-country-info,
.timeseo-country-products{
  margin-top:28px;
}

.timeseo-country-hero{
  background:linear-gradient(135deg,#fff5f6 0%, #ffffff 60%, #fff7f7 100%);
  border:1px solid #f2d9de;
  border-radius:24px;
  padding:32px 28px;
  box-sizing:border-box;
}

.timeseo-country-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:8px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #f0d6dc;
  color:var(--ts-red);
  font-weight:700;
  font-size:14px;
  margin-bottom:14px;
}

.timeseo-country-title{
  margin:0 0 14px;
  font-size:clamp(30px,4vw,46px);
  line-height:1.1;
  color:var(--ts-text);
}

.timeseo-country-intro{
  margin:0;
  max-width:900px;
  color:var(--ts-muted);
  font-size:16px;
  line-height:1.8;
}

.timeseo-country-intro strong{
  color:var(--ts-text);
}

.timeseo-country-features{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.timeseo-country-features div{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  border:1px solid #eceef2;
  color:var(--ts-text);
  font-size:14px;
  font-weight:600;
  box-sizing:border-box;
}

.timeseo-country-info-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:20px;
}

.timeseo-country-info-card{
  border-radius:22px;
  padding:24px;
  border:1px solid var(--ts-border);
  box-shadow:0 12px 30px rgba(16,24,40,.04);
  box-sizing:border-box;
}

.timeseo-country-info-card h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.3;
  color:var(--ts-text);
}

.timeseo-country-info-card p{
  margin:0;
  color:var(--ts-muted);
  line-height:1.8;
  font-size:15px;
}

.timeseo-country-info-card.soft-blue{
  background:#eef6ff;
  border-color:#dbeafe;
}

.timeseo-country-info-card.soft-green{
  background:#ecfdf3;
  border-color:#d1fadf;
}

.timeseo-country-info-card.soft-peach{
  background:#fff4ed;
  border-color:#ffe4d5;
}

.timeseo-section-head{
  margin-bottom:20px;
}

.timeseo-section-head h2{
  margin:0 0 8px;
  font-size:30px;
  line-height:1.2;
  color:var(--ts-text);
}

.timeseo-section-head p{
  margin:0;
  color:var(--ts-muted);
  font-size:15px;
}

.timeseo-country-products-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.timeseo-country-product-card{
  display:flex;
  flex-direction:column;
  background:#fff;
  border:1px solid var(--ts-border);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(16,24,40,.05);
  transition:transform .25s ease, box-shadow .25s ease;
  box-sizing:border-box;
}

.timeseo-country-product-card:hover{
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(16,24,40,.08);
}

.timeseo-country-product-card > a:first-child{
  display:block;
  background:#f8fafc;
  line-height:0;
}

.timeseo-country-product-card img{
  display:block;
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
}

.timeseo-country-product-card h3{
  margin:18px 18px 10px;
  font-size:18px;
  line-height:1.45;
  color:var(--ts-text);
}

.timeseo-country-product-card h3 a{
  color:var(--ts-text);
  text-decoration:none;
}

.timeseo-country-product-card h3 a:hover{
  color:var(--ts-red);
}

.timeseo-country-product-card .price{
  margin:0 18px 16px;
  font-weight:700;
  color:var(--ts-text);
  font-size:16px;
}

.timeseo-red-btn,
.timeseo-red-btn:visited{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  margin:0 18px 18px;
  border-radius:12px;
  background:var(--ts-red);
  color:#fff !important;
  text-decoration:none;
  font-weight:700;
  transition:background .2s ease;
}

.timeseo-red-btn:hover{
  background:var(--ts-red-hover);
  color:#fff !important;
}

.timeseo-load-more-wrap{
  display:flex;
  justify-content:center;
  margin-top:26px;
}

#timeseo-load-more{
  appearance:none;
  border:none;
  min-height:48px;
  padding:12px 22px;
  border-radius:12px;
  background:var(--ts-red);
  color:#fff;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}

#timeseo-load-more:hover{
  background:var(--ts-red-hover);
  transform:translateY(-1px);
}

#timeseo-load-more:disabled{
  opacity:.6;
  cursor:not-allowed;
  transform:none;
}

@media (max-width: 1100px){
  .timeseo-country-products-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .timeseo-country-info-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .timeseo-country-outer{
    padding:18px 0 42px;
  }

  .timeseo-country-container{
    padding:0 14px;
  }

  .timeseo-country-hero{
    padding:24px 18px;
    border-radius:18px;
  }

  .timeseo-country-products-grid{
    grid-template-columns:1fr;
  }

  .timeseo-country-features{
    flex-direction:column;
    align-items:stretch;
  }

  .timeseo-country-features div{
    justify-content:flex-start;
  }
}