/* MODERN ICONS AND ENHANCEMENTS */

/* Enhanced seller box with icons */
#seller .line1 .data .name:before {
  content: "\f007";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #3b49df;
  font-size: 14px;
}

#seller .line1 .data .items {
  color: #777;
  font-size: 14px;
  display: flex;
  align-items: center;
}

#seller .line1 .data .items:before {
  content: "\f1c0";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 6px;
  color: #3b49df;
  font-size: 12px;
}

#seller .line1 .data .pro {
  padding: 2px 6px;
  background: linear-gradient(45deg, #3b49df, #2f3ab2);
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  font-weight: 600;
  margin: 4px 0 -2px 0;
  display: flex;
  align-items: center;
}

#seller .line1 .data .pro:before {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 4px;
  font-size: 10px;
}

/* Enhanced phone section with icon */
#seller .line3 .phone {
  margin: 6px 0 2px 0;
  font-weight: 600;
  background: linear-gradient(45deg, rgb(59 73 223 / 10%), rgb(59 73 223 / 15%));
  padding: 2px 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

#seller .line3 .phone:before {
  content: "\f095";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 6px;
  color: #3b49df;
  font-size: 13px;
}

/* Enhanced address section with icon */
#seller .line3 .address {
  margin: 12px 0;
  font-size: 14px;
  font-family: monospace;
  line-height: 16px;
  display: flex;
  align-items: center;
}

#seller .line3 .address:before {
  content: "\f3c1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #3b49df;
  font-size: 14px;
}

/* Enhanced chat button with icon */
#seller .line-chat a.btn {
  padding: 6px 12px;
  height: auto;
  width: auto;
  font-size: 14px;
  border-radius: 6px;
  background: linear-gradient(45deg, #28a745, #20c997);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

#seller .line-chat a.btn:before {
  content: "\f075";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  font-size: 14px;
  color: #fff;
}

#seller .line-chat a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Enhanced master buttons with icons */
#item-side .master-button {
  transition: all 0.3s ease;
  position: relative;
  font-weight: 600;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #f9f9f9;
  margin: 0 0 12px 0;
  height: auto;
  padding: 12px;
  text-align: center;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

#item-side .master-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
  text-decoration: none;
  background: linear-gradient(45deg, #5a67d8, #6c5ce7);
  color: #f9f9f9;
}

#item-side .master-button i {
  position: relative;
  left: auto;
  top: auto;
  border-radius: 0;
  width: auto;
  height: auto;
  line-height: 1;
  text-indent: 0;
  border-right: none;
  background: transparent;
  margin-right: 8px;
  font-size: 16px;
}

/* Enhanced seller buttons with icons */
#item-side .seller-button {
  transition: all 0.3s ease;
  width: 100%;
  border: 2px solid #3b49df;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  margin: -8px 0 16px 0;
  font-weight: 600;
  font-size: 13px;
  color: #3b49df;
  background: linear-gradient(45deg, rgba(59, 73, 223, 0.05), rgba(59, 73, 223, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

#item-side .seller-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(59, 73, 223, 0.2);
  text-decoration: none;
  background: linear-gradient(45deg, rgba(59, 73, 223, 0.1), rgba(59, 73, 223, 0.15));
  border-color: #2f3ab2;
}

#item-side .seller-button i {
  margin-right: 8px;
  font-size: 14px;
}

/* Enhanced report button */
#item-side .report-button {
  transition: all 0.3s ease;
  width: 100%;
  border: 2px solid #e74c3c;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  margin: 0;
  font-weight: 600;
  font-size: 13px;
  color: #e74c3c;
  background: linear-gradient(45deg, rgba(231, 76, 60, 0.05), rgba(231, 76, 60, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

#item-side .report-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.2);
  text-decoration: none;
  background: linear-gradient(45deg, rgba(231, 76, 60, 0.1), rgba(231, 76, 60, 0.15));
  border-color: #c0392b;
}

#item-side .report-button i {
  margin-right: 8px;
  font-size: 14px;
}

/* Enhanced manage button */
#item-side .manage-button {
  transition: all 0.3s ease;
  width: 100%;
  border: 2px solid #f39c12;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  margin: 0 0 16px 0;
  font-weight: 600;
  font-size: 13px;
  color: #f39c12;
  background: linear-gradient(45deg, rgba(243, 156, 18, 0.05), rgba(243, 156, 18, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
}

#item-side .manage-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(243, 156, 18, 0.2);
  text-decoration: none;
  background: linear-gradient(45deg, rgba(243, 156, 18, 0.1), rgba(243, 156, 18, 0.15));
  border-color: #e67e22;
}

#item-side .manage-button i {
  margin-right: 8px;
  font-size: 14px;
}

/* Enhanced protection points */
#item-side #protection .point .icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  text-align: center;
  color: #3b49df;
  box-shadow: 0 3px 10px rgba(59, 73, 223, 0.25);
  font-size: 18px;
  padding: 11px 2px;
  margin: 2px 12px 0 0;
  border-radius: 12px;
  position: relative;
  background: linear-gradient(45deg, rgba(59, 73, 223, 0.1), rgba(59, 73, 223, 0.15));
  transition: all 0.3s ease;
}

#item-side #protection .point:hover .icon {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(59, 73, 223, 0.35);
}

/* Enhanced item details with icons */
#item-main .basic .labels > span {
  font-size: 12px;
  font-weight: bold;
  padding: 6px 12px;
  line-height: 14px;
  white-space: nowrap;
  margin: 0 8px 8px 0;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

#item-main .basic .labels > span.premium {
  background: linear-gradient(45deg, #f39c12, #e67e22);
  color: #fff;
}

#item-main .basic .labels > span.expired,
#item-main .basic .labels > span.sold {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: #fff;
}

#item-main .basic .labels > span:not(.premium):not(.expired):not(.sold) {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #fff;
}

#item-main .basic .labels > span:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Enhanced favorite button */
#item-main .basic .favorite {
  top: 10px;
  right: 10px;
  transition: all 0.3s ease;
}

#item-main .basic .favorite i {
  font-weight: bold;
  font-size: 20px;
  color: #e74c3c;
  transition: all 0.3s ease;
}

#item-main .basic .favorite:hover {
  transform: scale(1.2) rotate(15deg);
}

#item-main .basic .favorite:hover i {
  color: #c0392b;
}

/* Enhanced price display */
#item-main .basic .price {
  font-size: 22px;
  font-weight: bold;
  line-height: 24px;
  position: relative;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding: 8px 16px;
  border-radius: 10px;
  display: inline-block;
  margin: 8px 0;
}

/* Enhanced title */
#item-main .basic h1 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  padding-right: 60px;
  color: #2c3e50;
  position: relative;
  margin-bottom: 15px;
}

#item-main .basic h1:before {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 18px;
}

/* Enhanced details section */
#item-main .details {
  font-size: 14px;
  margin-bottom: 15px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

#item-main .details span {
  position: relative;
  padding-left: 28px;
  margin-left: 10px;
  color: #34495e;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

/* Category icon - folder */
#item-main .details span:first-child:before {
  content: "\f07b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #f39c12;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  text-align: center;
}

/* Views icon - eye */
#item-main .details span:nth-child(2):before {
  content: "\f06e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #3498db;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  text-align: center;
}

/* ID icon - fingerprint */
#item-main .details span:nth-child(3):before {
  content: "\f577";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #9b59b6;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  text-align: center;
}

#item-main .details span:first-child {
  margin-left: 0;
  padding-left: 28px;
}

#item-main .details span:first-child:before {
  display: block;
}

/* Modern hover effects */
#item-main .details span:hover {
  color: #2c3e50;
  transform: translateX(2px);
}

#item-main .details span:hover:before {
  transform: translateY(-50%) scale(1.1);
  color: #2c3e50;
}

/* Enhanced date */
#item-main .basic .date {
  font-size: 13px;
  color: #7f8c8d;
  padding: 8px 12px 8px 35px;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.05));
  border-radius: 8px;
  border-right: 3px solid #3498db;
  display: flex;
  align-items: center;
  position: relative;
}

#item-main .basic .date:before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 10px;
  color: #3498db;
  font-size: 14px;
  top: 50%;
  transform: translateY(-50%);
}

/* Enhanced price */
#item-main .basic .price {
  font-size: 22px;
  font-weight: bold;
  line-height: 24px;
  position: relative;
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  padding: 8px 16px 8px 35px;
  border-radius: 10px;
  display: inline-block;
  margin: 8px 0;
}

#item-main .basic .price:before {
  content: "\f3d1";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 10px;
  color: #667eea;
  font-size: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* Enhanced title */
#item-main .basic h1 {
  font-size: 26px;
  line-height: 30px;
  font-weight: 700;
  padding-right: 60px;
  color: #2c3e50;
  position: relative;
  margin-bottom: 15px;
  padding-left: 35px;
}

#item-main .basic h1:before {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #f39c12;
  font-size: 18px;
}

/* Enhanced labels */
#item-main .basic .labels > span {
  font-size: 12px;
  font-weight: bold;
  padding: 6px 12px 6px 30px;
  line-height: 14px;
  white-space: nowrap;
  margin: 0 8px 8px 0;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  position: relative;
}

/* Premium label with crown */
#item-main .basic .labels > span.premium {
  background: linear-gradient(45deg, #f39c12, #e67e22);
  color: #fff;
}

#item-main .basic .labels > span.premium:before {
  content: "\f521";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 8px;
  color: #fff;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* Sold label with sold icon */
#item-main .basic .labels > span.sold {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: #fff;
}

#item-main .basic .labels > span.sold:before {
  content: "\f02d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 8px;
  color: #fff;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* Expired label with clock */
#item-main .basic .labels > span.expired {
  background: linear-gradient(45deg, #95a5a6, #7f8c8d);
  color: #fff;
}

#item-main .basic .labels > span.expired:before {
  content: "\f017";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 8px;
  color: #fff;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* Other labels with tag */
#item-main .basic .labels > span:not(.premium):not(.expired):not(.sold) {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: #fff;
}

#item-main .basic .labels > span:not(.premium):not(.expired):not(.sold):before {
  content: "\f02b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 8px;
  color: #fff;
  font-size: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* Enhanced favorite button */
#item-main .basic .favorite {
  top: 10px;
  right: 10px;
  transition: all 0.3s ease;
}

#item-main .basic .favorite i {
  font-weight: bold;
  font-size: 20px;
  color: #e74c3c;
  transition: all 0.3s ease;
}

#item-main .basic .favorite:hover {
  transform: scale(1.2) rotate(15deg);
}

#item-main .basic .favorite:hover i {
  color: #c0392b;
}

/* MOBILE ENHANCEMENTS */

/* Mobile price overlay on images */
@media screen and (max-width: 768px) {
  #item-image .mobile-price {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
  }
  
  #item-image .mobile-price:before {
    content: "\f3d1";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 6px;
    font-size: 12px;
  }
  
  #item-image .mobile-price:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
  }
}

/* Mobile category badge */
@media screen and (max-width: 768px) {
  #item-image .mobile-category {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: #fff;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    backdrop-filter: blur(10px);
  }
  
  #item-image .mobile-category:before {
    content: "\f07b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 4px;
    font-size: 10px;
  }
  
  #item-image .mobile-category:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.4);
  }
}

/* Mobile views badge */
@media screen and (max-width: 768px) {
  #item-image .mobile-views {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: #fff;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    backdrop-filter: blur(10px);
  }
  
  #item-image .mobile-views:before {
    content: "\f06e";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 4px;
    font-size: 10px;
  }
  
  #item-image .mobile-views:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
  }
}

/* Mobile ID badge */
@media screen and (max-width: 768px) {
  #item-image .mobile-id {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(45deg, #9b59b6, #8e44ad);
    color: #fff;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.3);
    backdrop-filter: blur(10px);
  }
  
  #item-image .mobile-id:before {
    content: "\f577";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 4px;
    font-size: 10px;
  }
  
  #item-image .mobile-id:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(155, 89, 182, 0.4);
  }
}

/* Mobile premium badge */
@media screen and (max-width: 768px) {
  #item-image .mobile-premium {
    position: absolute;
    top: 55px;
    right: 10px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: #fff;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
    backdrop-filter: blur(10px);
  }
  
  #item-image .mobile-premium:before {
    content: "\f521";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 4px;
    font-size: 10px;
  }
  
  #item-image .mobile-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(243, 156, 18, 0.4);
  }
}

/* Mobile favorite button */
@media screen and (max-width: 768px) {
  #item-image .mobile-favorite {
    position: absolute;
    top: 55px;
    left: 10px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
  }
  
  #item-image .mobile-favorite:before {
    content: "\f004";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
  }
  
  #item-image .mobile-favorite:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.4);
  }
  
  #item-image .mobile-favorite.active:before {
    content: "\f004";
    color: #fff;
  }
}

/* Mobile seller info badge */
@media screen and (max-width: 768px) {
  #item-image .mobile-seller {
    position: absolute;
    bottom: 55px;
    left: 10px;
    background: linear-gradient(45deg, #27ae60, #229954);
    color: #fff;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
    backdrop-filter: blur(10px);
  }
  
  #item-image .mobile-seller:before {
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 4px;
    font-size: 10px;
  }
  
  #item-image .mobile-seller:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(39, 174, 96, 0.4);
  }
}

/* Enhanced date */
#item-main .basic .date {
  font-size: 13px;
  color: #7f8c8d;
  padding: 8px 12px;
  background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(52, 152, 219, 0.05));
  border-radius: 8px;
  border-right: 3px solid #3498db;
  display: flex;
  align-items: center;
}

#item-main .basic .date:before {
  content: "\f073";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 8px;
  color: #3498db;
  font-size: 12px;
}

/* AI Glow Halo Effect Around Image Container */
.swiper-container {
  position: relative;
  overflow: visible !important;
}

/* Add glow only for premium items */
body.premium-item .swiper-container::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #3b49df, #667eea, #764ba2, #f39c12, #e67e22);
  background-size: 300% 300%;
  border-radius: 18px;
  z-index: -1;
  animation: haloGlow 5s ease-in-out infinite;
  opacity: 1;
}

body.premium-item .swiper-container::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, rgba(59, 73, 223, 0.7), transparent);
  border-radius: 17px;
  z-index: -1;
  animation: none;
  opacity: 0.8;
}

@keyframes haloGlow {
  0%, 100% {
    background-position: 0% 50%;
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes haloRotate {
  0% {
    transform: rotate(0deg);
    opacity: 0;
  }
  25% {
    opacity: 0.6;
  }
  50% {
    transform: rotate(180deg);
    opacity: 0.3;
  }
  75% {
    opacity: 0.6;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0;
  }
}

/* Premium Badge Overlay on Ad Image */
#item-image .premium {
  position: absolute;
  top: 80px;
  right: 10px;
  background: linear-gradient(45deg, #f39c12, #e67e22);
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 12px;
  z-index: 3;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

#item-image .premium:before {
  content: "\f521";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 6px;
  font-size: 12px;
}

#item-image .premium:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(243, 156, 18, 0.4);
}
