/* ============================================================
   DESIGNER LIST — PREMIUM REDESIGN
   ============================================================ */

/* ---------- SEARCH ---------- */
.search-wrapper {
    margin: 0 auto 64px;
    max-width: 560px;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: rgba(255,255,255,0.4);
    pointer-events: none;
}

.search-input {
    width: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 14px 24px 14px 52px;
    font-size: 15px;
    color: white;
    font-weight: 500;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: rgba(167,139,250,0.5);
}

.search-input::placeholder {
    color: rgba(255,255,255,0.35);
    font-weight: 400;
}

/* ---------- CATEGORY HEADER ---------- */
.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 0;
    border-bottom: none;
}

.category-header h2 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: white;
    white-space: nowrap;
}

.category-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0.12), transparent);
}

.category-header a {
    color: #a78bfa;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.category-header a:hover {
    color: white;
}

/* ---------- PAGE TITLE ---------- */
.dl-page-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.dl-page-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    text-align: center;
    margin-bottom: 48px;
}

/* ============================================================
   USER REQUESTED DESIGNER CARD STYLE
   ============================================================ */
.designer-grid .box {
  width: 100%;
  background: linear-gradient(145deg, rgba(255,255,255,0.07) 0%, rgba(124,58,237,0.08) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.designer-grid .box:hover {
  transform: translateY(-5px);
  border-color: rgba(167,139,250,0.4);
  box-shadow: 0 10px 25px rgba(124,58,237,0.22);
}

.box .image{
  margin: 10px 0;
  height: 100px;
  width: 100px;
  background: #7c3aed;
  padding: 3px;
  border-radius: 50%;
  flex-shrink: 0;
}
.box .image img{
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}
.box p{
  text-align: center;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  padding: 0 10px;
}
.box .name_job{
  margin: 10px 0 3px 0;
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}
.rating i{
  font-size: 14px;
  color: #f1c40f;
  margin-bottom: 5px;
}
.btns{
  margin-top: 16px;
  margin-bottom: 0px;
  display: flex;
  justify-content: center;
  width: 100%;
  gap: 8px;
  box-sizing: border-box;
}
.btns button{
  background: #7c3aed;
  flex: 1;
  padding: 8px 4px;
  outline: none;
  border: 2px solid #7c3aed;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #7c3aed;
  transition: all 0.3s linear;
  box-sizing: border-box;
  white-space: nowrap;
}
.btns button:first-child{
  background: none;
}
.btns button:last-child{
  color: #fff;
}
.btns button:first-child:hover{
  background: #7c3aed;
  color: #fff;
}
.btns button:hover{
  color: #fff;
}
