/*
  File: public/assets/front/css/miki.css
*/

/* --- 1. Refined "How It Works" Section (Keep this as is) --- */
.work-process-area .card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
    height: 100%;
}
.work-process-area .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}
.work-process-area .card-icon {
    font-size: 36px;
    color: #e53958;
    margin-bottom: 20px;
}
.work-process-area .card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}
.work-process-area .card-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* --- 2. Redesigned "Built for Croatian Restaurants" Section --- */
.features-area {
    background-color: #ffffff; /* Or a very light grey like #f9f9f9 */
}

.swiper-slide {
    padding-top: 50px; /* Add padding to top of slide to make space for the icon */
    padding-bottom: 30px; /* Extra space at the bottom */
}

.feature-card-v2 {
    background-color: #fff;
    border-radius: 15px;
    border: 1px solid #eee;
    padding: 20px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-card-v2 .card-icon-wrapper {
    width: 90px;
    height: 90px;
    background-color: #e53958; /* Your theme red */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0; /* Position at the top edge of the card */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* The magic trick: pull it up by 50% of its height */
    box-shadow: 0 8px 20px rgba(229, 57, 88, 0.3);
    border: 4px solid #fff;
}

.feature-card-v2 .card-icon-wrapper img {
    width: 45px; /* Control the size of the icon inside the circle */
    height: auto;
}

.feature-card-v2 .card-content {
    padding-top: 50px; /* Create space for the icon wrapper above */
}

.feature-card-v2 .card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #222;
}

.feature-card-v2 .card-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Swiper Slider Pagination Styling */
.swiper-pagination {
    position: static; /* Move pagination below the slider */
    margin-top: 20px;
}

.swiper-pagination-bullet {
    background: #ccc;
    width: 10px;
    height: 10px;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #e53958; /* Your theme red */
    transform: scale(1.2);
}