:root {
    --primary-color: #2d3436;
    --accent-color: #0984e3;
    --success-color: #27ae60;
    --text-dark: #2d3436;
    --text-gray: #636e72;
    --bg-light: #f4f7f6;
    --white: #ffffff;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background-color: var(--bg-light);
    margin: 0;
}

/* Navbar */
.navbar {
    background: var(--primary-color);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo a { color: white; text-decoration: none; font-size: 1.4rem; font-weight: 800; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: #eee; text-decoration: none; }

/* Grid Setup */
.products-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

/* Card Design */
.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e1e8ed;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.product-image-wrapper {
    width: 100%;
    height: 230px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 15px 20px;
    flex-grow: 1;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    height: 2.8em;
    overflow: hidden;
    margin: 10px 0;
    color: var(--text-dark);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Buttons Styling */
.product-footer {
    padding: 15px 20px;
    display: flex;
    gap: 10px; /* مسافة بين الزرين */
    background: #fafafa;
}

.btn-view, .btn-add-cart {
    flex: 1; /* جعل الزرين متساويين في العرض */
    text-align: center;
    padding: 10px 5px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-view {
    background: #edf2f7;
    color: var(--primary-color);
}

.btn-view:hover {
    background: #e2e8f0;
}

.btn-add-cart {
    background: var(--accent-color);
    color: white;
}

.btn-add-cart:hover {
    background: #0773c5;
}

/* Toast Notification style */
#toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    display: none;
    z-index: 2000;
}