body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f8fafc;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Noto Sans', sans-serif;
}

.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 40;
    justify-content: center;
    align-items: center;
}

.modal-backdrop.flex {
    display: flex;
}

.modal-content {
    max-height: 90vh;
    overflow-y: auto;
}

.admin-panel-view, .customer-view { 
    display: block; 
}

.hidden-view { 
    display: none !important; 
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background-color: #f9fafb;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    ring: 2px solid #0ea5e9;
    border-color: #0ea5e9;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    color: white;
    transition: all 0.3s;
    transform: scale(1);
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary { 
    background-color: #0284c7; 
}

.btn-primary:hover { 
    background-color: #0369a1; 
}

.btn-secondary { 
    background-color: #4b5563; 
}

.btn-secondary:hover { 
    background-color: #374151; 
}

.btn-danger { 
    background-color: #dc2626; 
}

.btn-danger:hover { 
    background-color: #b91c1c; 
}

.btn-success { 
    background-color: #059669; 
}

.btn-success:hover { 
    background-color: #047857; 
}

.product-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    text-align: center;
    color: #1f2937;
}

.section-subtitle {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.star-rating svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

#toast {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    background-color: #10b981;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s;
}

#toast.show {
    opacity: 1;
    transform: translateX(0);
}