/* Barrio Hoy - Application Styles */

/* ===== DUO Theme Overrides ===== */
/* Card border-radius: 10px (DUO default is 30px) */
.card-style,
.card-overlay {
    border-radius: 10px !important;
}

/* Toast container */
.toast-container {
    z-index: 9999;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
}

/* Cart badge */
#cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    font-size: 0.65rem;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
}

/* Rating stars interactive */
.star-rating-input .star {
    cursor: pointer;
    font-size: 1.5rem;
    transition: transform 0.1s;
}
.star-rating-input .star:hover {
    transform: scale(1.2);
}

/* Product card hover */
.product-card {
    transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.1);
    transform: translateY(-2px);
}

/* Store card */
.store-card {
    transition: box-shadow 0.2s;
}
.store-card:hover {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.08);
}

/* Star widget */
.star-widget .bi-star-fill,
.star-widget .bi-star-half {
    color: #ffc107;
}
.star-widget .bi-star {
    color: #dee2e6;
}

/* Notification bell */
.notification-bell {
    position: relative;
    cursor: pointer;
}
.notification-bell .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.6rem;
    min-width: 16px;
    height: 16px;
    line-height: 16px;
    padding: 0 4px;
}

/* Review stars */
.review-stars .bi-star-fill {
    color: #ffc107;
}

/* Membership plan cards */
.plan-card {
    transition: transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,.12);
}
.plan-card.featured {
    border: 2px solid #0d6efd;
}

/* Stores page: push cards below floating header bar on mobile */
@media (max-width: 767px) {
  .header-card { margin-top: 85px !important; }
  .stores-grid { margin-top: 0; }
}
