/* Change "Select date(s)" button text to "Book Now" */
.wp-block-post a.button::after {
    content: "Book Now";
}

.wp-block-post a.button {
    text-indent: -9999px;
    line-height: 0;
}

.wp-block-post a.button::after {
    text-indent: 0;
    display: block;
    line-height: initial;
}

/* Make property cards look more clickable */
.wp-block-post {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 16px;
    cursor: pointer;
    border: 1px solid #e5e7eb;
}

.wp-block-post:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
}

/* Style the product image container */
.wc-block-components-product-image {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.wc-block-components-product-image img {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.wp-block-post:hover .wc-block-components-product-image img {
    transform: scale(1.05);
}

/* Style the title */
.wp-block-post-title a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.wp-block-post:hover .wp-block-post-title a {
    color: #3b82f6;
}

/* Style the price */
.wc-block-components-product-price {
    margin-bottom: 16px;
}

.woocommerce-Price-amount {
    font-weight: 700;
    color: #059669;
    font-size: 1.1em;
}

/* Style the Book Now button */
.wp-block-post a.button {
    background: #1b7665;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.wp-block-post:hover a.button {
    background: #155c52;
    transform: translateY(-1px);
}

/* Add subtle animation to the entire card */
@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-2px); }
}

.wp-block-post {
    animation: cardFloat 6s ease-in-out infinite;
}

.wp-block-post:hover {
    animation: none;
}

body > div.wp-site-blocks > header > header > div > a {
    display: none !important;
}