body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #e0e0e0 100%);
    color: #333;
}
header {
    background: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 50px;
    margin-right: 0.5rem;
}
nav {
    display: flex;
    gap: 1rem;
}
nav a {
    text-decoration: none;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}
nav a:hover {
    background: #ff6b6b;
    color: #fff;
}
.hero {
    background: url('/static/assets/what_the_pug_bg.jpg') center/cover no-repeat;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}
.hero h1 {
    font-size: 3rem;
    margin: 0;
}
.hero p {
    font-size: 1.25rem;
}
.btn {
    background: #ff6b6b;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.category {
    padding: 2rem 0;
}

.category h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.products {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.product-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background: #f1f1f1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.product-info {
    padding: 1rem;
}

.product-card h3 {
    margin: 0.5rem 0;
}

.color-options {
    margin: 0.5rem 0;
}

.color-swatch {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 1px solid #ccc;
    margin-right: 4px;
}

.product-card select {
    display: block;
    width: 100%;
    padding: 0.25rem;
    margin-bottom: 0.5rem;
}

.qty-label {
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    text-align: left;
}

.product-card input[type="number"] {
    width: 60px;
    padding: 0.25rem;
    margin-bottom: 0.5rem;
}

.product-card button {
    background: #4caf50;
    border: none;
    color: #fff;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}

.product-card button:hover {
    background: #43a047;
}

.add-btn {
    background: #ff6b6b;
}

.add-btn:hover {
    background: #ff5252;
}
footer {
    text-align: center;
    padding: 2rem;
    background: #fff;
    margin-top: 2rem;
}

/* Cart styles */
.cart {
    padding: 2rem;
}

.cart-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.item-info h4 {
    margin: 0 0 0.25rem 0;
}

.quantity-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.qty-btn {
    background: #ddd;
    border: none;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: 4px;
}

.qty {
    min-width: 1.5rem;
    text-align: center;
    display: inline-block;
}

.remove-btn {
    background: #e53935;
    border: none;
    color: #fff;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 0.5rem;
}

.checkout {
    text-align: right;
    margin-top: 1rem;
}

.checkout-btn {
    background: #4caf50;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    text-decoration: none;
}

.checkout-btn:hover {
    background: #43a047;
}
