/* Index Page Styles */

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1030; /* Bootstrap's navbar z-index */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Cart icon styles - custom component */
.cart-icon {
    position: relative;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation; /* Better mobile touch */
    min-width: 44px; /* Minimum touch target */
    min-height: 44px;
}

.cart-count {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #dc3545; /* Bootstrap danger color */
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 2rem 0;
    color: white;
}

.hero-section h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 0.7rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 600;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Search and Filter Section */
.search-container {
    display: flex;
    gap: 0.5rem;
}


.search-btn {
    background: white;
    border: none;
    border-radius: 0.5rem;
    width: 48px;
    color: #764ba2;
    cursor: pointer;
}


/* Product Card */
.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Category styles */
.category {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 500;
} 