.storage-dropzone {
  border: 2px dashed var(--bs-border-color);
  border-radius: 1rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  background-color: var(--bs-tertiary-bg);
  transition: all 0.2s ease;
  cursor: pointer;
}

.storage-dropzone:hover {
  border-color: var(--bs-primary);
  background-color: var(--bs-primary-bg-subtle);
}

.progress-ring-circle {
  transition: stroke-dashoffset 0.35s;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.stat-card {
  transition: transform 0.2s;
}

.stat-card:hover {
  transform: translateY(-2px);
  background-color: var(--bs-tertiary-bg) !important;
}

.chart-bar {
  flex: 1;
  background-color: var(--bs-primary-bg-subtle);
  border-radius: 4px 4px 0 0;
  transition: height 0.5s ease;
  position: relative;
}

.chart-bar.active {
  background-color: var(--bs-primary);
}

.chart-bar:hover::after {
  content: attr(data-value);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  background: var(--bs-dark);
  color: white;
  padding: 2px 4px;
  border-radius: 4px;
}

.product-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1) !important;
}

.product-img {
  transition: transform 0.5s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.badge-overlay {
  z-index: 10;
}

.btn-wishlist {
  z-index: 10;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  color: var(--bs-secondary);
  transition: all 0.2s;
}

.btn-wishlist:hover {
  color: var(--bs-danger);
  transform: scale(1.1);
}

.color-swatch {
  background-color: #212529;
  width: 18px;
  height: 18px;
  cursor: pointer;
  box-shadow: 0 0 0 1px #dee2e6;
}

.color-swatch.active {
  box-shadow: 0 0 0 2px var(--bs-primary) !important;
}

.btn-social {
  transition: background-color 0.2s;
}

.btn-social:hover {
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-body-color) !important;
}

.credit-card-visual {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  aspect-ratio: 1.58 / 1;
}

.credit-card-visual::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.chip-icon {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
  border-radius: 4px;
}

.card-number {
  letter-spacing: 2px;
}

.action-icon-circle {
  width: 48px;
  height: 48px;
  transition: transform 0.2s;
}

.action-icon-circle:hover {
  transform: translateY(-3px);
}

.weather-card-header {
  background: linear-gradient(180deg, #4facfe 0%, #00f2fe 100%);
}

.weather-card-header::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(20px);
}

.weather-icon-lg {
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.forecast-item {
  min-width: 80px;
  transition: all 0.2s ease;
}

.forecast-item:hover {
  background: var(--bs-tertiary-bg);
  transform: translateY(-3px);
}

.forecast-scroll {
  scrollbar-width: none;
}

.forecast-scroll::-webkit-scrollbar {
  display: none;
}

.category-item {
  padding: 12px;
  border-radius: 12px;
  background-color: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  transition: all 0.2s;
}

.category-item:hover {
  background-color: var(--bs-tertiary-bg);
  transform: translateY(-2px);
}

.category-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

:root {
  --bs-font-family: 'Geist', sans-serif;
}

#cal .date-sticky {
  position: sticky;
  top: 0px;
  z-index: 99;
}

#cal .days-sticky {
  position: sticky;
  z-index: 10;
}

@media (min-width: 768px) {
  #cal .days-sticky {
    position: sticky;
    z-index: 10;
    top: 56px;
  }
}

#cal {
  line-height: 1.5;
}

@media (min-width: 768px) {
  #cal {
    position: relative;
    padding: 0;
    left: 4px;
    width: 100%;
  }
}

@media (min-width: 768px) {
  #cal .seven-cols .col-md-1, .seven-cols .col-sm-1, .seven-cols .col-lg-1 {
    width: 100%;
    max-width: 14.285714285714285714285714285714% !important;
    flex: none !important;
  }
}

@media (min-width: 992px) {
  #cal .seven-cols .col-md-1, .seven-cols .col-sm-1, .seven-cols .col-lg-1 {
    width: 14.285714285714285714285714285714%;
  }
}

@media (min-width: 1200px) {
  #cal .seven-cols .col-md-1, .seven-cols .col-sm-1, .seven-cols .col-lg-1 {
    width: 14.285714285714285714285714285714%;
  }
}

#cal .date-cont {
  background: #1a2347;
  height: calc(30px + 4vw);
  margin-left: -17px;
}

@media (min-width: 768px) {
  #cal .event-next:after {
    content: " ";
    display: block;
    position: absolute;
    top: 38px;
    right: -11px;
    background-color: inherit;
    z-index: 2;
    padding: 4px 8px;
    white-space: pre;
  }
}

@media (min-width: 768px) {
  #cal .event-prev:before {
    content: " ";
    display: block;
    position: absolute;
    top: 38px;
    left: -11px;
    background-color: inherit;
    z-index: 2;
    padding: 4px 8px;
    white-space: pre;
  }
}

@media (min-width: 576px) {
  #cal .date-cont {
    margin-left: -15px;
    height: 56px;
    width: 105.8%;
    outline: solid .5px #343A40;
  }
}

@media (min-width: 768px) {
  #cal .date-cont {
    width: 103.2%;
  }
}

@media (min-width: 992px) {
  #cal .date-cont {
    width: 102.3%;
  }
}

@media (min-width: 1200px) {
  #cal .date-cont {
    width: 102%;
  }
}

#cal .day-blank {
  border: solid 1px black;
  background: #ebebeb;
  margin: -1px 0 0 -1px;
  min-height: 100%;
}

#cal .date {
  font-family: 'Roboto Condensed';
  font-size: 22px;
  font-weight: 700;
  background: rgb(220,220,220);
  padding-left: 6px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  #cal .date {
    font-family: 'Roboto Condensed';
    font-size: 22px;
    font-weight: 700;
    background: rgb(220,220,220);
    padding-left: 6px;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  #cal .date {
    margin-bottom: 3px;
  }
}

#cal .day {
  border: solid 1px black;
  margin: -1px 0 0 -1px;
  min-height: 100%;
  padding: 0;
}

#cal .days p {
  font-family: 'Roboto Condensed';
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 0;
  padding: 8px 0 7px 0;
  background: rgb(88,88,88);
}

#cal .bg-events {
  background: rgb(255,255,255);
}

@media (min-width: 768px) {
  #cal .bg-events {
    min-height: 135px;
  }
}

#cal .event {
  font-family: 'Roboto Condensed';
  font-size: 16px;
  margin: 5px;
  padding: 4px 5px;
  text-align: center;
  overflow: visible;
  border-radius: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

@media (min-width: 768px) {
  #cal .event {
    font-size: 13px;
    text-align: left;
  }
}

@media (min-width: 992px) {
  #cal .event {
    letter-spacing: normal;
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  #cal .event {
    font-size: 16px;
  }
}

#cal .event-spec {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  border-radius: 5px;
  margin: 6px;
  padding: 4px;
}

#year {
  font-family: 'Roboto Condensed';
  position: relative;
  font-size: calc(8px + 3vw);
  font-weight: 700;
  width: 100%;
  white-space: nowrap;
  /*top: .3vw;*/
}

@media (min-width: 576px) {
  #year {
    font-size: 28px;
    top: 0px;
  }
}

#cal a {
  text-decoration: none;
  transition: all .3s;
}

