/* Storefront Solid Theme */

body.meros-theme {
	background-color: #ffffff; /* white background */
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.navbar {
	--bs-navbar-brand-color: var(--bs-primary, #667eea);
	--bs-navbar-brand-hover-color: #5a6fe0;
}

.navbar .navbar-brand i { color: var(--bs-primary, #667eea); }
.navbar .nav-link { color: #334155; }
.navbar .nav-link:hover { color: var(--bs-primary, #667eea); }
.navbar .dropdown-menu { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }

/* Search */
.search-form .form-control {
	padding-left: 2.2rem;
	border-radius: 999px;
}
.search-form .search-icon {
	position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
	color: #94a3b8;
}

/* Cards */
.card { border: 1px solid #e5e7eb; box-shadow: 0 1px 2px rgba(0,0,0,0.03); }
.card.shadow-sm { box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15) !important; border-color: rgba(102, 126, 234, 0.2); }
.badge.bg-primary { background-color: var(--bs-primary, #667eea) !important; }
.btn-primary { background-color: var(--bs-primary, #667eea); border-color: var(--bs-primary, #667eea); }
.btn-primary:hover { background-color: #5a6fe0; border-color: #5a6fe0; }

/* Product Cards */
.product-card {
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    overflow: hidden;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.product-image {
    position: relative;
    overflow: hidden;
    background-color: #f8fafc;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ef4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 8px;
}

.product-actions .btn {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-title a {
    color: #1e293b;
}

.product-title a:hover {
    color: var(--bs-primary, #667eea);
}

.product-rating .stars {
    color: #fbbf24;
}

.product-rating .rating-text {
    color: #64748b;
}

.product-price .old-price {
    text-decoration: line-through;
    color: #94a3b8;
}

/* Footer */
.footer { padding: 3rem 0; }
.footer h5 { color: #0f172a; font-weight: 700; }
.footer .text-muted { color: #64748b !important; }
.footer .social-links a { color: #64748b; }
.footer .social-links a:hover { color: var(--bs-primary, #667eea); }
.footer .footer-bottom { border-top: 1px solid #e2e8f0; margin-top: 2rem; padding-top: 1rem; color: #64748b; }

