body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #1a202c;
}

.text-gold-accent {
    color: #d4af37;
}

.bg-gold-accent {
    background-color: #d4af37;
}
.bg-white-accent {
    background-color: #ffffff;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-item {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.view-button, .add-to-cart-button {
    display: inline-block;
    background-color: #004A99; /* brand-blue */
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-align: center;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.view-button:hover, .add-to-cart-button:hover {
    background-color: #003366; /* Darker blue */
}

.add-to-cart-button {
    background-color: #d4af37;
    color: #fff;
    width: 100%;
}

.add-to-cart-button:hover {
    background-color: #c09b2d;
}

/* Preview Page */
.preview-container {
    max-width: 1200px;
    margin: auto;
}

.sub-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.sub-image-item {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.5rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.sub-image-item:hover {
    border-color: #d4af37;
}
