@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.product-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.zoom-effect {
    transition: transform 0.5s ease;
}

.zoom-effect:hover {
    transform: scale(1.03);
}

.hero-slide {
    background-size: cover;
    background-position: center;
    transition: opacity 0.8s ease-in-out;
}

.slider-slide:not(.active) {
    opacity: 0;
    pointer-events: none;
}

.text-shadow {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-boutique {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/images/fabmenboutique-header.jpeg');
    background-size: cover;
    background-position: center;
}

.hero-about {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/assets/images/about-us-header.jpeg');
    background-size: cover;
    background-position: center;
}

.timeline-item:not(:last-child):after {
    content: '';
    position: absolute;
    left: 7px;
    top: 24px;
    height: calc(100% - 24px);
    width: 1px;
    background: #a67c52;
}

ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.collection-card {
    transition: all 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-image {
    transition: transform 0.5s ease;
}

.collection-card:hover .collection-image {
    transform: scale(1.05);
}

.font-serif {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}