/* =========================================================
   Our Creations / Our Specialties
   Drop-in CSS
========================================================= */

.our-creations-carousel-section {
    position: relative;
    padding: 40px 0 95px;
   
    overflow: hidden;
}

.our-creations-carousel-section .sec-title {
    margin-bottom: 35px;
}

.our-creations-carousel-section .sec-title h2 {
    margin-bottom: 0;
}

/* =========================
   Slider layout
========================= */
.our-creations-slider {
    position: relative;
    width: 100%;
}

.our-creations-viewport {
    width: 100%;
    overflow: hidden;
}

.our-creations-track {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    will-change: transform;
    transition: transform 0.45s ease;
}

.our-creations-slide {
    box-sizing: border-box;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 8px 10px 0;
}

/* =========================
   Card
========================= */
.creation-card {
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}

.creation-photo-link {
    display: inline-block;
    text-decoration: none;
}

.creation-photo-frame {
    width: 220px;
    height: 220px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.creation-photo-shape {
    width: 190px;
    height: 190px;
    padding: 8px;
    background: #69cfc9;
    border-radius: 50%;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 0 0 4px rgba(105, 207, 201, 0.15);
}

.creation-photo-shape::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 4px solid #69cfc9;
    border-radius: 50%;
    opacity: 0.95;
    pointer-events: none;
}

.creation-photo-inner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 50%;
    background: #ffffff;
    position: relative;
}

.creation-photo-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.creation-title {
    font-size: 28px;
    line-height: 1.2em;
    color: #4b4342;
    margin-bottom: 10px;
}

.creation-title a {
    color: #4b4342;
    transition: color 0.3s ease;
}

.creation-title a:hover {
    color: #5fcac7;
}

.creation-text {
    font-size: 16px;
    line-height: 1.8em;
    color: #5f5a58;
    max-width: 240px;
    margin: 0 auto;
}

/* =========================
   Dots
========================= */
.our-creations-dots {
    display: block;
    text-align: center;
    margin-top: 28px;
    line-height: 1;
}

.our-creations-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f2a7b7;
    opacity: 0.45;
    border: 0;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.our-creations-dot.active,
.our-creations-dot:hover {
    opacity: 1;
    transform: scale(1.06);
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .our-creations-carousel-section {
        padding: 35px 0 85px;
    }

    .our-creations-slide {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .creation-photo-frame {
        width: 200px;
        height: 200px;
        margin-bottom: 16px;
    }

    .creation-photo-shape {
        width: 172px;
        height: 172px;
    }

    .creation-title {
        font-size: 24px;
    }

    .creation-text {
        font-size: 15px;
        line-height: 1.75em;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 575px) {
    .our-creations-carousel-section {
        padding: 30px 0 75px;
    }

    .our-creations-carousel-section .sec-title {
        margin-bottom: 28px;
    }

    .our-creations-slide {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .creation-card {
        max-width: 260px;
    }

    .creation-photo-frame {
        width: 190px;
        height: 190px;
        margin-bottom: 14px;
    }

    .creation-photo-shape {
        width: 160px;
        height: 160px;
        padding: 7px;
    }

    .creation-photo-shape::before {
        inset: -6px;
        border-width: 3px;
    }

    .creation-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .creation-text {
        font-size: 15px;
        line-height: 1.7em;
        max-width: 220px;
    }

    .our-creations-dots {
        margin-top: 24px;
    }

    .our-creations-dot {
        width: 12px;
        height: 12px;
    }
}