/* ===== BASE STYLES ===== */
:root {
    --primary: #2c3e50;
    --secondary: #e67e22;
    --accent: #3498db;
    --success: #27ae60;
    --danger: #e74c3c;
    --warning: #f39c12;
    --light: #f9f9f9;
    --dark: #2c3e50;
    --text: #333;
    --text-light: #777;
    --border: #e0e0e0;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    color: var(--primary);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--secondary);
    color: white;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
    background: var(--accent);
    color: white;
}

.btn-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: var(--primary);
    color: white;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: white;
}

.logo-icon {
    color: var(--secondary);
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
}

nav a:hover {
    color: var(--secondary);
}

.nav-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-actions i {
    font-size: 1.2rem;
    cursor: pointer;
}

.nav-actions i:hover {
    color: var(--secondary);
}

.cart-icon {
    position: relative;
}

.cart-count {
    background-color: var(--secondary);
    color: white;
    font-size: 0.8rem;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* ===== MAIN CONTENT LAYOUT ===== */
.main-content {
    display: flex;
    margin-top: 2rem;
    gap: 2rem;
}

.categories-sidebar {
    width: 20%;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 1.5rem;
    height: fit-content;
}

.categories-sidebar h3 {
    color: var(--primary);
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.8rem;
    margin-bottom: 1.5rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.category-list li:hover {
    color: var(--secondary);
    padding-left: 10px;
}

.category-list li.active {
    color: var(--secondary);
    font-weight: 600;
    background-color: rgba(230, 126, 34, 0.1);
    padding-left: 15px;
    border-radius: 5px;
}

.category-list i {
    color: var(--accent);
    width: 20px;
}

.category-list .loading-categories {
    color: var(--text-light);
    font-style: italic;
}

/* ===== PRODUCTS ===== */
.shopping-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: var(--primary);
    font-size: 2rem;
}

.view-all {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all:hover {
    gap: 10px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.product-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 40px;
}

.product-price {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.add-to-cart {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart:hover {
    background-color: var(--secondary);
}

.loading-products, .no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.loading-products i, .no-products i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--border);
}


/* ===== CART PAGE ===== */
.cart-container {
    padding: 2rem 0;
}

.cart-items {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 2fr 1fr 1fr 50px;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details h3 {
    margin-bottom: 0.5rem;
}

.cart-item-category {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cart-item-price .price {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.1rem;
}

.cart-item-price .stock {
    font-size: 0.9rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.3rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-input {
    width: 60px;
    padding: 8px;
    text-align: center;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-weight: 600;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 2px solid var(--border);
    background: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.qty-btn:hover {
    background: var(--light);
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cart-item-total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.btn-remove {
    background: transparent;
    border: none;
    color: var(--danger);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
}

.btn-remove:hover {
    background: rgba(231, 76, 60, 0.1);
}

.cart-summary {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    border-bottom: none;
    padding-top: 1.5rem;
}

.free-shipping {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 12px;
    border-radius: 6px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart i {
    color: var(--border);
    margin-bottom: 1.5rem;
    font-size: 4rem;
}

.btn-continue-shopping {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    margin-top: 1.5rem;
    font-weight: 600;
}

.btn-continue-shopping:hover {
    background: #2980b9;
    color: white;
}

.cart-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* ===== CHECKOUT PAGE ===== */
.checkout-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    padding: 2rem 0;
}

.checkout-form-section {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.checkout-summary {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
    align-self: start;
    position: sticky;
    top: 100px;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--secondary);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method:hover {
    border-color: var(--accent);
    background: rgba(52, 152, 219, 0.05);
}

.payment-method input[type="radio"] {
    margin: 0;
}

.payment-method label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.payment-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.order-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.order-item-details {
    flex: 1;
}

.order-item-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.order-item-total {
    font-weight: 700;
    color: var(--secondary);
    flex-shrink: 0;
}

.secure-checkout {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    margin-top: 1.5rem;
}

.secure-checkout p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    color: var(--text-light);
}

/* Add these styles */
.empty-cart {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
    background: #f8f9fa;
    border-radius: 8px;
}

.item-unit-price {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

/* Make the amount display more prominent */
.payment-amount-display .amount {
    color: var(--secondary);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Add a warning if amount is 0 */
.amount.zero {
    color: #e74c3c !important;
    animation: warning-pulse 1s infinite;
}

@keyframes warning-pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--primary);
    color: white;
    margin-top: 0rem;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #ddd;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--secondary);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    background-color: var(--secondary);
    color: white;
    border: none;
    padding: 0 1.2rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none !important; }
.loading { opacity: 0.6; pointer-events: none; }

/* ===== AUTH PAGES ===== */
.auth-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.auth-box {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h2 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.auth-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 45%;
    height: 1px;
    background: var(--border);
}

.auth-divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 45%;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    background: white;
    padding: 0 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn-auth {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.btn-google {
    background: white;
    color: var(--text);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #ccc;
}

.error-message {
    background: #fee;
    color: var(--danger);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--danger);
    display: none;
}

.success-message {
    background: #dfe;
    color: var(--success);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--success);
    display: none;
}

.password-container {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .main-content {
        flex-direction: column;
    }
    
    .categories-sidebar,
    .content-area {
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .checkout-summary {
        position: static;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
        gap: 1rem;
    }
    
    .cart-item-image {
        grid-row: 1 / 2;
    }
    
    .cart-item-details {
        grid-row: 1 / 2;
    }
    
    .cart-item-quantity {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .cart-item-total {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        text-align: right;
    }
    
    .btn-remove {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        justify-self: end;
    }
    
    .promo-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        text-align: center;
    }
    
    .cart-item-image {
        justify-self: center;
    }
    
    .cart-item-quantity {
        justify-content: center;
    }
    
    .cart-item-total,
    .btn-remove {
        justify-self: center;
    }
    
    .hero-section {
        height: 300px;
    }
    
    .verse-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .auth-box {
        padding: 1.5rem;
    }
    
    .birthday-products {
        grid-template-columns: 1fr;
    }
}

/* ===== USER DROPDOWN MENU ===== */
.user-menu {
    position: relative;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    min-width: 200px;
    z-index: 1001;
    display: none;
    margin-top: 10px;
    overflow: hidden;
}

.user-dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-dropdown-header {
    padding: 15px;
    background: var(--primary);
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.user-dropdown-header h4 {
    margin: 0;
    font-size: 1rem;
    color: white;
}

.user-dropdown-header p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    opacity: 0.8;
}

.user-dropdown-menu {
    padding: 10px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--secondary);
    border-left-color: var(--secondary);
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--accent);
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.dropdown-admin-section {
    background: rgba(52, 152, 219, 0.1);
    border-left: 3px solid var(--accent);
}

.dropdown-admin-section .dropdown-item i {
    color: var(--secondary);
}

.dropdown-logout {
    border-top: 1px solid var(--border);
    margin-top: 5px;
    padding-top: 5px;
}

.dropdown-logout .dropdown-item {
    color: var(--danger);
}

.dropdown-logout .dropdown-item i {
    color: var(--danger);
}

.dropdown-loading {
    padding: 20px;
    text-align: center;
    color: var(--text-light);
}

/* Error states */
.error {
    color: #e74c3c;
}

.error-loading {
    text-align: center;
    padding: 20px;
    color: #e74c3c;
}

.no-categories,
.no-products {
    text-align: center;
    padding: 20px;
    color: #7f8c8d;
}

.loading-categories,
.loading-products,
.loading-popular {
    text-align: center;
    padding: 20px;
    color: #3498db;
}

.logo img {
    height: 50px;
    width: 50px; /* Make it square to maintain circle shape */
    object-fit: contain;
    background: blue; /* Remove any background */
    border-radius: 50%; /* Make it circular */
    padding: 2px; /* Optional: add some padding */
}

/* WISHLIST STYLES */
/* Wishlist button styles */
.product-image {
    position: relative;
    width: 100%;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background: #f8f9fa;
    transform: scale(1.1);
}

.wishlist-btn i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.wishlist-btn:not(.active) i {
    color: #666;
}

.wishlist-btn.active i {
    color: #e74c3c;
}

.wishlist-btn:hover i {
    color: #e74c3c;
}

/* Product card adjustments */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}