* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* Header */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 0.75rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: visible;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.logo:hover {
    color: #2c7a4b;
    transform: scale(1.05);
}

.nav-buttons {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: nowrap;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #4CAF50;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-outline {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.nav-buttons .btn-outline {
    border: none;
    color: #4CAF50;
    padding: 0.75rem 1rem;
}

.btn-primary {
    background: #4CAF50;
    color: white;
    padding: 0.75rem 1.5rem;
}

.nav-buttons .btn-primary {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.btn:hover {
    color: #2c7a4b;
    transform: translateY(-2px);
}

.nav-buttons .btn:hover {
    box-shadow: none;
}

/* User Greeting */
.user-greeting {
    font-size: 0.9rem;
    color: #666;
    white-space: nowrap;
    font-weight: 500;
}

/* Banner */
.sale-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sale-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="grad"><stop offset="0%" stop-color="rgba(76,175,80,0.1)"/><stop offset="100%" stop-color="rgba(76,175,80,0)"/></radialGradient></defs><circle cx="20" cy="20" r="2" fill="url(%23grad)"/><circle cx="80" cy="40" r="3" fill="url(%23grad)"/><circle cx="40" cy="80" r="2" fill="url(%23grad)"/></svg>') repeat;
    animation: float 20s infinite linear;
}

@keyframes float {
    from {
        transform: translateX(-100px);
    }

    to {
        transform: translateX(100px);
    }
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.banner-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #4CAF50, #81C784);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.product-preview {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.preview-item {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4CAF50, #81C784);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.preview-item:nth-child(even) {
    animation-delay: 0.5s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.banner-notice {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 2rem;
}

.banner-disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Vendor Section */
.vendor-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vendor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.vendor-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.vendor-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #4CAF50, #81C784);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.vendor-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.vendor-badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-new, .badge-adult-use {
    background: #E3F2FD;
    color: #1976D2;
}

.badge-hot, .badge-medical-use {
    background: #FFF3E0;
    color: #F57C00;
}

/* Featured Product */
.featured-product {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.product-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, #FF9800, #FFC107);
    border-radius: 12px;
    flex-shrink: 0;
}

.product-details h4 {
    color: #333;
    margin-bottom: 0.5rem;
}

.product-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-description {
    color: #555;
    font-size: 0.9rem;
}

/* Sidebar */
.sidebar {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(76, 175, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.sidebar::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.sidebar-content {
    position: relative;
    z-index: 2;
}

.sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sidebar p {
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-button {
    background: white;
    color: #4CAF50;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.cta-button:hover {
    transform: scale(1.05);
}

.login-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
}

/* Search Section */
.search-section {
    margin-bottom: 3rem;
}

.search-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #4CAF50;
}

.search-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #45a049;
}

.search-results {
    color: #666;
    font-size: 0.9rem;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.product-image-container {
    height: 250px;
    /* background: linear-gradient(45deg, #E91E63, #F06292); */
    position: relative;
    overflow: hidden;
}

/* .product-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
} */

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.product-meta-info {
    color: #666;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #2c2c54;
    color: white;
    padding: 3rem 2rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-icon:hover {
    background: #4CAF50;
}

.footer-legal {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {

    .nav-buttons {
        width: 100%;
        justify-content: center;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1.2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .featured-product {
        flex-direction: column;
    }

    .product-image {
        width: 100%;
        height: 150px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .search-container {
        flex-direction: column;
    }

    .preview-item {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .sale-banner {
        padding: 2rem 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .vendor-header {
        flex-direction: column;
        text-align: center;
    }
}

.loading-spinner {
  display: none;
  margin: 20px auto;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #333;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 520px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    color: #999;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: #333;
    font-size: 1.75rem;
    text-align: center;
}

/* Auth Form Styles */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #333;
    font-size: 0.95rem;
}

.form-group input {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-link:hover {
    color: #45a049;
}

.btn-full {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
}

.form-divider {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
        width: 95%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

/* ====================================================================
   Shopping Cart Styles
   ==================================================================== */

/* Cart Button */
.btn-cart {
    background: transparent;
    border: none;
    color: #4CAF50;
    padding: 0.75rem 1.5rem;
    margin-right: 1rem;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    position: relative;
    overflow: visible !important;
    text-decoration: none;
}

#cartButton {
    overflow: visible !important;
}

.btn-cart:hover {
    color: #2c7a4b;
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
    border: 2px solid white;
}

/* User Greeting */
.user-greeting {
    color: #333;
    font-weight: 500;
    margin-right: 1rem;
    font-size: 0.95rem;
}

/* Add to Cart Button */
.btn-add-to-cart {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Larger Modal for Cart */
.modal-large {
    max-width: 900px;
    width: 90%;
}

/* Cart Items */
#cartItems {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    position: relative;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: #333;
}

.cart-item-brand {
    margin: 0;
    font-size: 0.85rem;
    color: #666;
}

.cart-item-price {
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c7a4b;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.qty-btn:hover {
    background: #f0f0f0;
    border-color: #2c7a4b;
}

.cart-item-quantity input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.25rem;
    font-size: 0.9rem;
}

.cart-item-total {
    font-weight: 600;
    font-size: 1rem;
    color: #2c7a4b;
    min-width: 80px;
    text-align: right;
}

.cart-item-remove {
    width: 30px;
    height: 30px;
    border: none;
    background: #ff6b6b;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}

.cart-item-remove:hover {
    background: #ff5252;
    transform: scale(1.1);
}

/* Cart Summary */
.cart-summary {
    border-top: 2px solid #eee;
    padding-top: 1rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.cart-summary-row.cart-total {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c7a4b;
    border-top: 1px solid #eee;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .modal-large {
        width: 95%;
    }

    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 0.75rem;
    }

    .cart-item-quantity {
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .cart-item-total {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 0.5rem;
    }

    .cart-item-remove {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .cart-item-image {
        width: 60px;
        height: 60px;
    }
}

/* ====================================================================
   Alert/Toast Notification System
   ==================================================================== */

/* Alert Container */
.alert-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    pointer-events: none;
}

/* Alert Box */
.alert {
    background: white;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    min-width: 300px;
    pointer-events: auto;
    animation: slideInRight 0.3s ease, fadeOut 0.3s ease 4.7s;
    border-left: 4px solid #4CAF50;
    position: relative;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

/* Alert Icon */
.alert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

/* Alert Content */
.alert-content {
    flex: 1;
}

.alert-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
    color: #333;
}

.alert-message {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Alert Close Button */
.alert-close {
    background: none;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    line-height: 1;
}

.alert-close:hover {
    background: #f0f0f0;
    color: #333;
}

/* Alert Types */
.alert-success {
    border-left-color: #4CAF50;
}

.alert-success .alert-icon {
    color: #4CAF50;
}

.alert-error {
    border-left-color: #f44336;
}

.alert-error .alert-icon {
    color: #f44336;
}

.alert-warning {
    border-left-color: #ff9800;
}

.alert-warning .alert-icon {
    color: #ff9800;
}

.alert-info {
    border-left-color: #2196F3;
}

.alert-info .alert-icon {
    color: #2196F3;
}

/* Responsive Alerts */
@media (max-width: 768px) {
    .alert-container {
        top: 70px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .alert {
        min-width: auto;
        width: 100%;
    }
}

/* Mobile Responsive Header */
@media (max-width: 768px) {
    .header {
        padding: 0.5rem 0;
    }

    .header-container {
        padding: 0 0.75rem;
        max-width: 100%;
        margin: 0;
    }

    .logo {
        font-size: 1.25rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-buttons {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: left;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 0;
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 100;
    }

    .nav-buttons.active {
        left: 0;
    }

    .nav-buttons a,
    .nav-buttons button {
        display: flex;
        align-items: center;
        padding: 1.2rem 1.5rem !important;
        width: 100%;
        text-align: left;
        border: none;
        background: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.2s ease;
        color: #333;
        font-size: 1rem;
        font-weight: 500;
    }

    .nav-buttons a:active,
    .nav-buttons button:active {
        background-color: #f0f0f0;
    }

    .nav-buttons a:hover,
    .nav-buttons button:hover {
        background-color: #f5f5f5;
        color: #4CAF50;
        padding-left: 2rem !important;
    }

    .nav-buttons .btn-primary {
        background: #4CAF50;
        color: white;
        border-bottom: none;
        margin: 1rem 1.5rem 0 1.5rem;
        width: calc(100% - 3rem);
        border-radius: 6px;
        padding: 1rem 1.5rem !important;
    }

    .nav-buttons .btn-primary:hover {
        background: #2c7a4b;
        padding-left: 1.5rem !important;
    }

    .user-greeting {
        display: block;
        padding: 1.5rem 1.5rem 1rem 1.5rem;
        border-bottom: 2px solid #f0f0f0;
        color: #4CAF50;
        font-size: 0.95rem;
        font-weight: 600;
        background-color: #fafafa;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .nav-buttons .btn-cart {
        position: relative;
    }

    .cart-badge {
        position: absolute;
        top: 0.5rem;
        right: 1.5rem;
        background: #dc3545;
        color: white;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
        font-weight: bold;
    }
}