.product-card {
    transition: transform 0.3s ease;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.buy-options {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.navbar-brand {
    font-weight: bold;
}

footer {
    position: relative;
    bottom: 0;
    width: 100%;
}

.product-description {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.product-description ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-description li {
    margin-bottom: 8px;
    color: #444;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
} 