/* Save button */
.v-save-btn {
  position: relative!important;
  display: flex!important;
	max-width: 100%!important;
	width: 100%!important;
	justify-content: center!important;
	
  align-items: center!important;
  gap: 6px!important;
  padding: 10px 20px!important;
  border: 1.5px solid #d0d0d0!important;
  border-radius: 5px!important;
  background: transparent!important;
  cursor: pointer!important;
  font-size: 16px!important;
  font-weight: 500!important;
  color: #333!important;
  overflow: hidden;
  transition: border-color 0.2s, color 0.2s, background 0.2s!important;
  user-select: none!important;
}

.v-save-btn:hover {
	border-color: #0057FF!important;
	background: transparent;
	color: #0057FF!important;
}


.v-save-btn:hover .save-bn-icon {
      filter: invert(21%) 
			sepia(100%) 
			saturate(7414%)
			hue-rotate(228deg)
			brightness(101%) 
			contrast(107%)!important;
}


.v-save-btn.v-saved {
  border-color: #0057FF!important;
  background: #0057FF!important;
  color: white !important;
}

.v-save-btn.v-saved .save-bn-icon {
    filter: 
			brightness(0) invert(1)!important;
}

.v-save-btn:active {
    transform: scale(0.98);
    background-color: rgba(0, 87, 255, 0.05)!important;
}


.v-save-btn.v-loading { opacity: 0.6; pointer-events: none!important; 
}


/* Follow button */
.v-follow-btn {
  position: relative!important;
  display: inline-flex!important;
  align-items: center!important;
  gap: 6px!important;
  padding: 8px 20px!important;
  border: 1.5px solid #d0d0d0!important;
  border-radius: 100px!important;
  background: transparent!important;
  color: black !important;
  cursor: pointer!important;
  font-size: 14px!important;
  font-weight: 500!important;
  overflow: hidden!important;
  transition: background 0.2s, border-color 0.2s, color 0.2s!important;
  user-select: none!important;
}

.v-follow-btn:hover { 
	background: white !imp;
	color: #0057FF !important;
}


.v-follow-btn.v-following {
  background: #0057FF !important;
  color: white !important;
}

.v-follow-btn.v-following:hover {
  border-color: #d0d0d0;
  color: #0057FF;
}

.v-follow-btn.v-following:hover .v-follow-label::after { content: 'Unfollow'; }

.v-follow-btn.v-following .v-follow-label { display: block; }
.v-follow-btn.v-following:hover .v-follow-label { font-size: 0; }
.v-follow-btn.v-following:hover .v-follow-label::after { font-size: 14px; }
.v-follow-btn.v-loading { opacity: 0.6; pointer-events: none; }



/* Ripple */
.v-btn-ripple {
  position: absolute !important;
  width: 80px; height: 80px!important;
  border-radius: 50%!important;
  background: rgba(255,255,255,0.25)!important;
  transform: translate(-50%,-50%) scale(0)!important;
  pointer-events: none !important;
}

.v-btn-ripple.v-ripple-run {
  animation: v-ripple 0.45s ease-out forwards !important;
}

@keyframes v-ripple {
  to { transform: translate(-50%,-50%) scale(3.5) !important; opacity: 0 !important; }
}

/* Count spans */
.v-count {
  font-variant-numeric: tabular-nums !important;
  display: inline-block !important;
  min-width: 1.4em !important;
  text-align: center !important;
}


/* Collection grid */
.v-collection-tabs {
  display: flex !important;
  gap: 8px !important;
  margin-bottom: 20px !important;
  flex-wrap: wrap !important;
}

.v-ctab {
  padding: 6px 16px !important;
  border: 1px solid #ddd !important;
  border-radius: 100px !important;
  background: transparent !important;
  cursor: pointer !important;
  font-size: 13px !important;
  color: #666!important;
  transition: background 0.2s, border-color 0.2s, color 0.2s!important;
}

.v-ctab:hover,
.v-ctab-active {
  background: #0057FF !important;
  border-color: #0057FF !important;
  color: #fff !important;
}

.v-collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.v-col-item {
  border: 0px;
  border-radius: 0px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
}

.v-col-item:hover { 
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.08); 
}


.v-col-thumb-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

.v-col-thumb-wrap img { 
	width: 100%;
	height: 100%; 
	object-fit: cover; 
	transition: transform 0.3s; 
}

.v-col-item:hover .v-col-thumb-wrap img {
	transform: scale(1.04); 
}

.v-col-type-badge {
  position: absolute;
  top: 8px; left: 8px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 4px;
}

.v-col-meta {
  padding: 10px 0px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.v-col-title {
  flex: 1;
  font-size: 13px!important;
  font-weight: 500 !important;
  color: black !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.v-col-date { 
	font-size: 11px; 
	color: #999; 
	white-space: nowrap; 
}

.v-unsave-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #ccc;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  transition: color 0.2s;
  flex-shrink: 0;
}
.v-unsave-btn:hover { 
	color: #0057FF;
	background-color: transparent !important;
}

.v-col-hidden { display: none; }
.v-col-removing { opacity: 0; transform: scale(0.92); transition: opacity 0.3s, transform 0.3s; }

.v-empty-collection {
  text-align: center;
  padding: 48px 20px;
  color: #999;
  font-size: 15px;
}

/* Toast */
.v-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1a1a;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 99999;
  pointer-events: none;
  white-space: nowrap;
}
.v-toast.v-toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }
.v-toast.v-toast-err { background: #c53030; }