/* Home Page CSS */
/* Custom CSS */
.grain-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    position: relative;
}

.grain-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23d4af37" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23d4af37" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23d4af37" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23d4af37" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23d4af37" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-in-out;
}
.grain-divider {
opacity: 0.3;
border-top: 2px dashed rgb(201, 122, 64);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom colors */
.bg-pastel { background-color: #d4af37; }
.text-pastel { color: #d4af37; }
.bg-brown { background-color: #8B4513; }
.text-brown { color: #8B4513; }
.bg-gold { background-color: #FFD700; }
.text-gold { color: #FFD700; }
.bg-beige { background-color: #F5F5DC; }
.text-beige { color: #F5F5DC; }
.bg-section { background-color: #fafafa; }
.bg-blue { background-color: rgba(59, 130, 246, 0.1); }

/* Product card hover effects */
.product-card {
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Banner transition */
.banner-slide {
    transition: opacity 0.7s ease-in-out;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide:not(.active) {
    opacity: 0;
}
.border-gold {
--tw-border-opacity: 1;
border-color: rgb(214 163 90 / var(--tw-border-opacity, 1));
}
