
body { background-color: #f8f9fa; }
h2 {
    text-align: center;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.avatar-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.nickname-display {
    font-weight: bold;
    margin-top: 5px;
    font-size: 14px;
}
.shop-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}
.owl-card {
    position: relative;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 10px;
    padding: 15px;
    text-align: center;
    width: 160px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.owl-card img {
    width: 130px;
    height: 130px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}
.owl-card button {
    background-color: #F9D3D3; 
    color: #333;
    border: none;
    padding: 6px 12px;
    border-radius: 50px; 
    cursor: pointer;
    font-size: 0.85rem;
}
.owl-card button:hover {
    background-color: #800080; 
    color: #fff;
}
.badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff6600;
    color: #fff;
    padding: 2px 6px;
    font-size: 0.7rem;
    border-radius: 4px;
}
.badge.limited { background: #007bff; }
.badge.restricted { background: #333; }
.badge.free { background: #28a745; } 
.badge.custom { background: #EDF2FA; color: #888888;} 
.message {
    text-align: center;
    font-weight: bold;
    color: #d9534f;
    margin-bottom: 20px;
}
.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    position: fixed;
    z-index: 9999;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 14px;
}
.toast.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 3s;
}
@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}
@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}
@media (max-width: 600px) {
  .owl-card {
    width: 45%;   
    margin: 2%;   
  }
}
.breadcrumb-nav {margin-top: 0px;margin-bottom: 10px;margin-left:-0px;}
.category-container {
    text-align: center;
    margin-bottom: 20px;
}
.category-pill {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 50px;
    padding: 6px 14px;
    margin: 5px;
    color: #000;
    cursor: pointer;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
    border: none;
    opacity: 1; 
}
.category-pill:hover {
    transform: scale(1.05);
}
.category-pill .count {
    background: #fff;
    color: #000;
    border-radius: 50%;
    padding: 2px 8px;
    margin-left: 8px;
    font-size: 0.8rem;
    font-weight: bold;
}
.category-pill.active {
    background: #fff !important;
    color: #000 !important;
    font-weight: bold;
}
.category-pill.active .count {
    background: #000;
    color: #fff;
}
.category-list {
    display: none;
    margin-top: 10px;
}
.category-list.show {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
  flex-wrap: wrap;
  gap: 0.2rem; 
} 
}
.pagination li {
    margin: 0 4px;
}
.pagination .page-link {
    display: block;
    padding: 6px 12px;
    border-radius: 20px; 
    background-color: #ffffff;
    color: #878787;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
    border: none;
}
.pagination .page-link:hover {
    background-color: #fff;
}
.pagination .active .page-link {
    background-color: #ff6600;
    color: #fff;
    font-weight: bold;
}
@keyframes wiggleRotate {
  0%   { rotate: 0deg; }
  15%  { rotate: -10deg; }
  30%  { rotate: 10deg; }
  45%  { rotate: -10deg; }
  60%  { rotate: 10deg; }
  75%  { rotate: -5deg; }
  100% { rotate: 0deg; }
}
.card-owl {
  rotate: 0deg;
  transform: scaleX(1);
}
.wiggle-once {
  animation: wiggleRotate 0.6s ease;
}
