/* Sleeping Tiger Imports - Product Menu Styles */

/* Menu Item & Product Card Base */
.menu-item,
.product-card {
    border: none !important;
    border-radius: var(--st-radius-lg, 16px) !important;
    box-shadow: var(--st-shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.2)) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: transparent !important;
}

/* Store Product Card (Historical/Available - No Price) */
.store-product-card {
    border: none !important;
    border-radius: var(--st-radius-lg, 16px) !important;
    box-shadow: var(--st-shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.2)) !important;
    transition: all var(--st-transition-base, 0.3s ease) !important;
    background: transparent !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px !important;
    cursor: pointer;
    min-height: 120px;
}

/* Badge Custom */
.badge-custom {
    background: #ff1493 !important;
    color: #fff !important;
    border-color: #ff1493 !important;
    font-size: 0.7rem;
    padding: 0.45rem 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border: 1px solid #ff1493;
    border-radius: 20px;
    font-weight: 600;
}

/* Menu Card Base */
.menu-card,
.menu-card.glass-panel {
    border: 1px solid rgba(34, 211, 238, 0.5) !important;
    border-radius: 16px !important;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    background: rgba(15, 23, 42, 0.7) !important;
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.4) !important;
    color: #fff !important;
}

.menu-card:hover {
    border-color: rgba(34, 211, 238, 1);
    background: rgba(15, 23, 42, 0.7);
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(34, 211, 238, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.menu-card:hover .btn-add-item {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.4);
}

/* Card Header */
.menu-card-header {
    border-bottom: 1px solid rgba(34, 211, 238, 0.15);
    padding-bottom: 14px;
}

/* Add to Cart Button */
.btn-add-item {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    border: none;
    color: #0f172a;
    padding: 0;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 6px 20px rgba(34, 211, 238, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.btn-add-item:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 12px 32px rgba(34, 211, 238, 0.45);
    filter: brightness(1.08);
}

.btn-add-item:active {
    transform: scale(0.96) translateY(-1px);
    box-shadow: 0 4px 12px rgba(34, 211, 238, 0.3);
}

/* Scrollable Body */
.scrollable-body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.scrollable-body::-webkit-scrollbar {
    display: none;
}

/* Text Utilities */
.text-cyan {
    color: #22d3ee !important;
}

.price-display {
    font-family: 'Courier New', monospace;
}

.card-title {
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Store Product Card Hover */
.store-product-card:hover {
    border-color: rgba(34, 211, 238, 0.8) !important;
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(34, 211, 238, 0.25) !important;
    background: rgba(15, 23, 42, 0.6) !important;
}

/* Store Product Item (icon + name only) */
.store-product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.store-product-icon {
    font-size: 2.5rem;
    color: rgba(34, 211, 238, 0.6);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}

.store-product-card:hover .store-product-icon {
    color: #22d3ee;
    transform: scale(1.15);
}

.store-product-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.3;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.store-product-card:hover .store-product-name {
    color: #fff;
}

/* Navigation Dropdown */
.navbar-context-tabs,
[data-anchor="navbar-secondary"],
.navbar-secondary {
    z-index: 1000 !important;
}

/* Quantity Input (Small) */
.qty-input-small {
    width: 45px;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3) !important;
    color: #22d3ee;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    padding: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.qty-input-small:focus {
    background: rgba(34, 211, 238, 0.15);
    border-color: rgba(34, 211, 238, 0.6) !important;
    outline: none;
}

.qty-input-small::-webkit-outer-spin-button,
.qty-input-small::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.qty-input-small[type=number] {
    -moz-appearance: textfield;
}
