﻿/* =========================
   Sudare – Card Layout
   Scope: .page-sudare
   ========================= */

.page-sudare .ptg-sudare-hero{
  text-align: center;
  max-width: 980px;
  margin: 0 auto 28px;
}

.page-sudare .ptg-sudare-lead{
  font-size: 1.15rem;
  margin: 10px auto 16px;
  line-height: 1.5;
}

.page-sudare .ptg-sudare-btn{
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
}

.page-sudare .ptg-sudare-brands{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin: 26px 0;
}

.page-sudare .ptg-sudare-brands img{
  max-height: 55px;
  object-fit: contain;
}

/* Carduri */
.page-sudare .ptg-sudare-grid{
  display: grid;
  gap: 22px;
}

.page-sudare .ptg-sudare-card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
  padding: 18px;

  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
}

.page-sudare .ptg-sudare-card img{
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
}

.page-sudare .ptg-sudare-text h3{
  margin: 0 0 8px;
  font-weight: 800;
}

.page-sudare .ptg-sudare-text p{
  margin: 0 0 10px;
  line-height: 1.55;
  text-align: left;
}

/* Mobile */
@media (max-width: 768px){
  .page-sudare .ptg-sudare-card{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-sudare .ptg-sudare-card img{
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
  }

  .page-sudare .ptg-sudare-text p{
    text-align: left;
  }
}
.page-sudare .ptg-page{
  padding-top: 40px;
}
.page-sudare .ptg-page{
  padding-bottom: 40px;
}
.page-sudare .ptg-hero-band{
  position: relative;
  padding: 26px 0 18px;
  margin: 0 0 16px;
}

.page-sudare .ptg-hero-band::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background:
    radial-gradient(circle at 15% 30%, rgba(51,122,183,.18), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(51,122,183,.14), transparent 60%),
    linear-gradient(90deg, rgba(51,122,183,.10), rgba(51,122,183,.06));
  border-bottom: 1px solid rgba(0,0,0,.06);
  z-index: 0;
}

.page-sudare .ptg-hero-inner{
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-sudare .ptg-sudare-btn{
  display: inline-block;
  padding: 12px 22px;
  border-radius: 12px;
  background: #337ab7;
  border: 1px solid #2e6da4;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease;
  margin-bottom: 12px;
}

.page-sudare .ptg-sudare-btn:hover{
  background: #286090;
  border-color: #204d74;
}

.page-sudare .ptg-sudare-motto{
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  opacity: .95;
  line-height: 1.2;
}

.page-sudare .ptg-sudare-motto sup{
  font-size: .65em;
  position: relative;
  top: -0.35em;
}

@media (max-width: 640px){
  .page-sudare .ptg-sudare-motto{
    font-size: 1.15rem;
  }
}
/* Grid: 3 desktop / 2 tablet / 1 mobil */
.ptg-shopcards__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.ptg-shopcard{
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}

/* Hover: bandă albastră tehnică */
.ptg-shopcard::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #0e6ad6;
  transition: width .22s ease;
}
.ptg-shopcard:hover::after{
  width: 100%;
}

/* Zona imaginii (controlează “golul”) */
.ptg-shopcard__img{
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.ptg-shopcard__img img{
  width: 85%;
  height: auto;
  max-width: 280px;
}

/* Titlu */
.ptg-shopcard__content{
  padding: 12px 14px 16px;
  text-align: center;
}
.ptg-shopcard__title{
  margin: 0;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1.25;
}

/* Responsive */
@media (max-width: 1024px){
  .ptg-shopcards__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px){
  .ptg-shopcards__grid{
    grid-template-columns: 1fr;
  }
  .ptg-shopcard__img{
    height: 220px;
  }
  .ptg-shopcard__img img{
    max-width: 240px;
  }
}
