/* ==========================================================================
   Pure Nature Products Carousel Widget
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Montserrat:wght@300;400;500;600&display=swap');

.pn-products {
    background-color: #FFFFFF;
    padding: 160px 48px;
}

.pn-products .section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.pn-products .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.pn-products .section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #D4A373;
    margin-bottom: 16px;
    font-weight: 600;
}

.pn-products .section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    color: #3B4D41;
    margin-bottom: 16px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.pn-products .section-header p {
    font-family: 'Montserrat', sans-serif;
    color: #7A857E;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Carousel */
.pn-products .products-carousel {
    position: relative;
    overflow: hidden;
}

.pn-products .products-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

/* Product Card */
.pn-products .product-card {
    flex: 0 0 calc(25% - 22.5px);
    background-color: #FFFFFF;
    overflow: hidden;
}

.pn-products .product-card:hover .product-image {
    transform: scale(1.05);
}

.pn-products .product-image-wrapper {
    overflow: hidden;
}

.pn-products .product-image-wrapper a {
    display: block;
}

.pn-products .product-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.pn-products .product-info {
    padding: 28px 0;
    text-align: center;
}

.pn-products .product-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D8A7A7;
    margin-bottom: 12px;
    display: block;
    font-weight: 500;
}

.pn-products .product-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: #3B4D41;
    margin-bottom: 8px;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.pn-products .product-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #7A857E;
    margin-bottom: 16px;
    font-weight: 300;
}

.pn-products .product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: #3B4D41;
    font-weight: 500;
}

/* Carousel Navigation Dots */
.pn-products .carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.pn-products .carousel-dot {
    width: 10px;
    height: 10px;
    background-color: #dddddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pn-products .carousel-dot.active {
    background-color: #3B4D41;
}

/* Responsive */
@media (max-width: 1024px) {
    .pn-products .product-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .pn-products {
        padding: 80px 24px;
    }

    .pn-products .product-card {
        flex: 0 0 100%;
    }

    .pn-products .section-header h2 {
        font-size: 28px;
    }
}
