.seller-page{
  min-height: 100vh;
  padding: 100px 20px;
}

/* HERO */

.seller-hero {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/*.hero-content i {
  font-size: 15px;
  padding:4px;
  background: linear-gradient(90deg, #1fd2ff, #ff56e6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color:transparent;
}*/

.seller-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.seller-desc {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 15px;
}



/* ACTIONS */

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(90deg, #ff1f32, #dd244f);
  padding: 10px 18px;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.btn-primary:hover, .btn-secondary:hover {
  transform:translateY(-2px);
  text-decoration: none;
}

.btn-secondary {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  border-radius: 8px;
  color: white;
  transition: all .3s ease-in-out;
  cursor: pointer;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}

.hero-actions a:active, .hero-actions button:active {
  transform: scale(.98);
}

.hero-actions a:focus, .hero-actions button:focus {
  outline: none;
  border:none;
}
/* PRODUCTS GRID */

.seller-products {
  max-width: 1200px;
  margin: auto;
  padding: 20px;

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: 20px;
}



/* PRODUCT CARD */

 .product-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(2px);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: .25s;
  position: relative;

  /* Layout: keep actions at bottom */
  display: flex;
  flex-direction: column;
  height: 100%;
 }

 .product-card:hover {
   transform: translateY(-2px);
   border-color: rgba(255, 59, 59, 0.5);
 }

 .product-card a {
   color: #fff;
   text-decoration: none;

   /* Allow the link/content to grow and push actions down */
   display: flex;
   flex-direction: column;
   flex: 1;
 }

 .product-card a:hover {
   text-decoration: none;
 }

 /* Keep titles from making cards uneven; clamp to 2 lines */
 .product-title {
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
   overflow: hidden;
 }

 /* Make card-actions stay glued to the bottom */
 .card-actions {
   margin-top: auto;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 10px;
 }

 .card-action-icons {
   display: flex;
   align-items: center;
   gap: 10px;
 }

  .btn-view {
    flex: 1;
    background: rgba(255,255,255,0.03);
  backdrop-filter: blur(2px);
   border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 30px;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease-in-out;
  }

  .btn-view:hover {  
    background: linear-gradient(90deg,#ff1f32,#dd244f);
    border: 1px solid transparent;
    color: #fff;
  }

  .btn-view:focus {
    outline: none;
  }

  .btn-view:active {
    transform: scale(0.98);
  }

 .card-action-icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 36px;
   height: 36px;
   border-radius: 12px;
   background: rgba(255,255,255,0.03);
   backdrop-filter: blur(2px);
   border: 1px solid rgba(255,255,255,0.1);
   color: #ccc;
   transition: background 0.25s ease, transform 0.25s ease;
 }

 .card-action-icon:hover {
   background: rgba(255, 255, 255, 0.15);
   transform: translateY(-1px);
 }

 .product-card img {
   width: 100%;
   border-radius: 10px;
   margin-bottom: 15px;
 }

 .product-title {
   font-size: 18px;
   margin-bottom: 6px;
 }

 .product-price {
   color: #ff3b3b;
   font-weight: 600;
 }

 .tag {
   display: inline-block;
   background: #222;
   padding: 4px 8px;
   border-radius: 6px;
   font-size: 12px;
   margin: 3px;
   color: #aaa;
 }

 /* HOT BADGE */

 .pin-badge {
   position: absolute;
   top: 10px;
   left: 10px;
   background: linear-gradient(90deg, #ff0000, #ff4d12);
   color: white;
   padding: 4px 8px;
   border-radius: 8px;
   font-size: 11px;
   font-weight: 600;
 }

 /* CARD FOOTER */

 .card-actions {
   margin-top: 12px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   transform: translateY(2px);
 }

 .favorite {
   cursor: pointer;
   font-size: 18px;
 }

 .favorite.bi.bi-heart-fill {  
  background: linear-gradient(90deg, #ff1f32, #dd244f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent
}


/* EMPTY */

.no-products {
  text-align: center;
  color: #888;
}