@import url('https://fonts.googleapis.com/css2?family=Geologica:wght@400;600;700;800;900&display=swap');

.artis-booking-wrapper, .artis-services-grid {
    font-family: 'Geologica', sans-serif;
    color: #343a40;
}

.artis-booking-wrapper {
    background: #f5f5f5;
    border: 2px solid #000;
    box-shadow: 8px 8px 0 #a4161a;
    max-width: 600px;
    margin: 24px auto;
    border-radius: 0;
}

.artis-booking-wrapper * {
    box-sizing: border-box;
}

.artis-booking-header {
    background: #343a40;
    color: #ffffff;
    padding: 16px;
    border-bottom: 2px solid #000;
}

.artis-booking-header h2 {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: #ffffff;
    text-align: center;
}

.artis-booking-body {
    padding: 24px;
}

.artis-step h3 {
    margin-top: 0;
    font-size: 18px;
    font-weight: 800;
    color: #a4161a;
    margin-bottom: 20px;
}

.artis-services-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.artis-service-card {
    background: #ffffff;
    border: 2px solid #000;
    padding: 16px;
    box-shadow: 4px 4px 0 #a4161a;
    cursor: pointer;
    transition: opacity 0.2s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.artis-service-card:hover, .artis-service-card.selected {
    opacity: 0.9;
    background: #343a40;
    color: #ffffff;
    box-shadow: 4px 4px 0 #000;
}

.artis-service-card strong {
    font-weight: 800;
    font-size: 16px;
}

.artis-service-card span {
    font-weight: 600;
}

.artis-form-row {
    margin-bottom: 20px;
}

.artis-form-row label {
    display: block;
    font-weight: 800;
    margin-bottom: 8px;
    color: #343a40;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.artis-form-row input[type="text"],
.artis-form-row input[type="date"],
.artis-form-row input[type="time"],
.artis-form-row select {
    width: 100%;
    padding: 12px;
    border: 2px solid #000;
    font-family: 'Geologica', sans-serif;
    font-size: 16px;
    background: #ffffff;
    box-shadow: 2px 2px 0 #a4161a;
    transition: none;
}

.artis-form-row input:focus,
.artis-form-row select:focus {
    outline: none;
    box-shadow: 4px 4px 0 #a4161a;
}

.artis-step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    gap: 16px;
}

.btn {
    border: 2px solid #000;
    padding: 12px 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 3px 3px 0 #000;
    font-family: 'Geologica', sans-serif;
    font-size: 14px;
    transition: opacity 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn:hover {
    opacity: 0.9;
    color: inherit;
}

.btn-primary {
    background: #a4161a;
    color: #ffffff;
}

.btn-primary:hover { color: #ffffff; }

.btn-secondary {
    background: #ffffff;
    color: #000;
}

.artis-feedback {
    padding: 12px;
    border: 2px solid #000;
    margin-top: 20px;
    font-weight: 800;
}

.artis-feedback.error {
    background: #a4161a;
    color: #ffffff;
}

.artis-feedback.success {
    background: #343a40;
    color: #ffffff;
}

/* Services Grid */
.artis-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 24px 0;
}

.artis-services-grid {
    display: grid !important;
    align-items: stretch !important;
}

.artis-service-grid-card {
    background: #f5f5f5;
    border: 2px solid #000;
    box-shadow: 8px 8px 0 #a4161a;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    box-sizing: border-box !important;
}

.artis-service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 2px solid #000;
}

.artis-service-image-placeholder {
    height: 200px;
    background: #343a40;
    border-bottom: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.artis-service-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.artis-service-content h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 900;
    color: #a4161a;
}
.artis-service-content h3 a {
    color: inherit;
    text-decoration: none;
    display: inline-block;
}
.artis-service-content h3 a:hover {
    opacity: 0.8;
}
.artis-service-image-link {
    display: block;
    text-decoration: none;
}

.artis-service-meta-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-weight: 800;
    font-size: 14px;
}

.artis-service-actions {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.artis-service-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 12px;
}

@media (max-width: 480px) {
    .artis-booking-wrapper, .artis-service-grid-card {
        box-shadow: 4px 4px 0 #a4161a;
    }
    .artis-step-actions, .artis-service-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Swiper Slider Overrides */
.artis-services-slider {
    padding-bottom: 50px; /* Space for pagination */
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}
.artis-services-slider .swiper-wrapper {
    display: flex !important;
    align-items: stretch !important;
    box-sizing: content-box;
}
.artis-services-slider .swiper-slide {
    height: auto !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
}
.artis-services-slider .swiper-slide > .artis-service-grid-card {
    height: 100% !important;
    width: 100% !important;
}
.artis-services-slider .swiper-button-next,
.artis-services-slider .swiper-button-prev {
    color: #a4161a;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.artis-services-slider .swiper-button-next::after,
.artis-services-slider .swiper-button-prev::after {
    display: none !important;
}
.artis-services-slider .swiper-button-next svg,
.artis-services-slider .swiper-button-prev svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.artis-services-slider .swiper-pagination-bullet-active {
    background: #a4161a;
}

/* Single Service Styles */
.artis-services-empty {
    border: 2px solid #000;
    padding: 20px;
    font-weight: 800;
    box-shadow: 4px 4px 0 #a4161a;
    background: #fff;
}

.artis-service-gallery-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.artis-service-gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border: 2px solid #000;
}

.artis-amenities-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.artis-amenities-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.artis-service-meta-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-weight: 800;
    font-size: 16px;
}
