/* ASK Real Estate Property Listings CSS - Airbnb Style - UPDATED */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Global Variables */
:root {
    --askre-primary-color: #FF5A5F;
    --askre-primary-dark: #e54c51;
    --askre-text-color: #222222;
    --askre-secondary-text: #717171;
    --askre-light-bg: #f8f9fa;
    --askre-border-color: #e2e2e2;
    --askre-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    --askre-shadow-hover: 0 10px 20px rgba(0, 0, 0, 0.12);
    --askre-radius: 12px;
    --askre-radius-sm: 10px;
    --askre-font: 'Poppins', Arial, sans-serif;
}

/* Base Container */
.askre-property-container {
    font-family: var(--askre-font);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    color: var(--askre-text-color);
    background-color: #fff;
}

/* Search Bar */
.askre-search-container {
    background-color: #fff;
    border-radius: var(--askre-radius);
    box-shadow: var(--askre-shadow);
    padding: 25px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 1200px;
}

.askre-search-bar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.askre-search-input {
    position: relative;
    width: 100%;
}

.askre-search-input input {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid var(--askre-border-color);
    border-radius: var(--askre-radius-sm);
    font-size: 16px;
    color: var(--askre-text-color);
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.askre-search-input input:focus {
    border-color: var(--askre-primary-color);
    box-shadow: 0 1px 6px rgba(255, 90, 95, 0.2);
    outline: none;
}

.askre-search-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.askre-filter-item {
    flex: 1;
    min-width: 120px;
}

.askre-filter-item select,
.askre-filter-item input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--askre-border-color);
    border-radius: var(--askre-radius-sm);
    font-size: 14px;
    color: var(--askre-text-color);
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    padding-right: 40px;
}

.askre-filter-item select:focus,
.askre-filter-item input:focus {
    border-color: var(--askre-primary-color);
    box-shadow: 0 1px 6px rgba(255, 90, 95, 0.2);
    outline: none;
}

.askre-filter-item.price-range input {
    background-image: none;
    padding-right: 15px;
}

.askre-search-btn {
    background-color: var(--askre-primary-color);
    color: white;
    border: none;
    border-radius: var(--askre-radius-sm);
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(255, 90, 95, 0.3);
}

.askre-search-btn:hover {
    background-color: var(--askre-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 90, 95, 0.4);
}

/* Main Content Area */
.askre-main-content {
    width: 100%;
    max-width: 1200px;
}

.askre-result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
}

.askre-result-count h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: var(--askre-text-color);
}

.askre-view-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.askre-view-buttons {
    display: flex;
    border: 1px solid var(--askre-border-color);
    border-radius: var(--askre-radius-sm);
    overflow: hidden;
}

.view-btn {
    background-color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active {
    background-color: var(--askre-text-color);
    color: white;
}

/* Property Grid */
.askre-property-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
}

/* Property Card - ENHANCED */
.askre-property-card {
    background-color: #fff;
    border-radius: var(--askre-radius);
    box-shadow: var(--askre-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.askre-property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--askre-shadow-hover);
}

.askre-property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--askre-primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.askre-property-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

.askre-property-overlay {
    position: absolute;
    top: 0;
    right: 0;
    padding: 15px;
}

.askre-favorite-btn {
    background-color: rgba(255, 255, 255, 0.9);
    color: #ccc;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.askre-favorite-btn:hover,
.askre-favorite-btn.active {
    background-color: white;
    color: var(--askre-primary-color);
    transform: scale(1.1);
}

/* Property Details - ENHANCED TYPOGRAPHY */
.askre-property-details {
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 12px;
}

.askre-property-title {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--askre-text-color);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* Add this standard property */
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 47px;
}

.askre-property-location {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 0;
    font-size: 14px;
    color: var(--askre-secondary-text);
    line-height: 1.4;
}

.askre-property-location svg {
    margin-top: 2px;
    flex-shrink: 0;
    color: var(--askre-primary-color);
    width: 14px;
    height: 14px;
}

/* Property Features - IMPROVED GRID */
.askre-property-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 8px 0;
    padding: 12px 0;
    border-top: 1px solid #f0f0f0;
}

.askre-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    font-size: 12px;
    color: var(--askre-secondary-text);
}

.askre-feature svg {
    width: 16px;
    height: 16px;
    color: var(--askre-primary-color);
    margin-bottom: 2px;
}

.askre-feature-number {
    font-size: 14px;
    font-weight: 600;
    color: var(--askre-text-color);
    line-height: 1.2;
}

.askre-feature-label {
    font-size: 11px;
    font-weight: 400;
    color: var(--askre-secondary-text);
    text-transform: capitalize;
}

/* Property Price - ENHANCED */
.askre-property-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.askre-property-price .currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--askre-secondary-text);
}

.askre-property-price .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--askre-text-color);
    line-height: 1.2;
}

.askre-property-price .period {
    font-size: 13px;
    color: var(--askre-secondary-text);
    font-weight: 400;
    margin-left: auto;
}

/* List View Fix - ENHANCED */
.askre-property-grid.list-view {
    grid-template-columns: 1fr;
    gap: 20px;
}

.askre-property-grid.list-view .askre-property-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: 220px;
}

.askre-property-grid.list-view .askre-property-image {
    width: 350px;
    height: 220px;
    flex-shrink: 0;
}

.askre-property-grid.list-view .askre-property-details {
    flex-grow: 1;
    padding: 20px;
    justify-content: space-between;
}

.askre-property-grid.list-view .askre-property-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 10px 0;
    padding: 10px 0;
}

.askre-property-grid.list-view .askre-property-title {
    font-size: 20px;
    min-height: auto;
}

.askre-property-grid.list-view .askre-property-price .price {
    font-size: 24px;
}

/* No Properties Message */
.no-properties-found {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 20px;
    background-color: var(--askre-light-bg);
    border-radius: var(--askre-radius);
    color: #666;
    width: 100%;
}

/* Property Modal */
.askre-property-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    animation: askre-fadeIn 0.3s ease;
}

.askre-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    border-radius: 15px;
    width: 90%;
    max-width: 1000px;
    max-height: 90vh;
    overflow-y: auto;
    animation: askre-slideIn 0.4s ease;
}

.askre-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid #f0f0f0;
}

.askre-modal-title {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

.askre-close-modal {
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
}

.askre-close-modal:hover {
    color: var(--askre-primary-color);
}

.askre-modal-body {
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.askre-property-images {
    flex: 1;
    min-width: 300px;
}

.askre-main-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--askre-radius);
}

.askre-modal-body .askre-property-details {
    flex: 1;
    min-width: 300px;
    padding: 0;
    gap: 20px;
}

.askre-price-section {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.askre-modal-body .askre-property-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--askre-primary-color);
    margin: 0;
    padding: 0;
    border: none;
}

.askre-price-period {
    font-size: 16px;
    color: #999;
}

.askre-property-info {
    margin-bottom: 25px;
    width: 100%;
}

.askre-info-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    width: 100%;
}

.askre-info-label {
    font-weight: 500;
    color: #333;
}

.askre-info-value {
    color: #666;
}

.askre-property-description {
    margin-bottom: 25px;
}

.askre-property-description h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
}

.askre-property-description p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.askre-contact-section {
    display: flex;
    gap: 15px;
    width: 100%;
}

.askre-contact-btn, .askre-schedule-btn {
    flex: 1;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border-radius: var(--askre-radius-sm);
    transition: all 0.3s ease;
}

.askre-contact-btn {
    background-color: var(--askre-primary-color);
    color: white;
    border: none;
    box-shadow: 0 2px 5px rgba(255, 90, 95, 0.3);
}

.askre-contact-btn:hover {
    background-color: var(--askre-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 90, 95, 0.4);
}

.askre-schedule-btn {
    background-color: var(--askre-light-bg);
    color: #333;
    border: 1px solid var(--askre-border-color);
}

.askre-schedule-btn:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

/* Preview Page Specific Styles */
.askre-preview-container {
    font-family: var(--askre-font);
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    color: var(--askre-text-color);
    background-color: #fff;
}

.askre-error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #f5c6cb;
    border-radius: var(--askre-radius);
    font-family: var(--askre-font);
    text-align: center;
    font-size: 16px;
}

.askre-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 30px 0 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.askre-preview-title-section {
    flex: 1;
    min-width: 300px;
}

.askre-preview-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--askre-text-color);
    margin: 0 0 10px;
    line-height: 1.3;
}

.askre-preview-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
    color: var(--askre-secondary-text);
    font-size: 16px;
}

.askre-preview-location svg {
    width: 18px;
    height: 18px;
    fill: var(--askre-primary-color);
}

.askre-preview-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.askre-preview-status {
    background-color: var(--askre-primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.askre-preview-id {
    color: var(--askre-secondary-text);
}

.askre-preview-price-section {
    text-align: right;
}

.askre-preview-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--askre-primary-color);
    margin-bottom: 5px;
}

.askre-preview-price-period {
    font-size: 14px;
    color: var(--askre-secondary-text);
}

.askre-preview-gallery {
    margin-bottom: 30px;
    border-radius: var(--askre-radius);
    overflow: hidden;
    box-shadow: var(--askre-shadow);
}

.askre-preview-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.askre-preview-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.askre-preview-main-image:hover img {
    transform: scale(1.05);
}

.askre-preview-thumbnails {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    height: 120px;
    margin-top: 2px;
}

.askre-preview-thumbnail,
.askre-preview-thumbnail-more {
    height: 120px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.askre-preview-thumbnail img,
.askre-preview-thumbnail-more img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.askre-preview-thumbnail:hover img,
.askre-preview-thumbnail-more:hover img {
    transform: scale(1.1);
}

.askre-preview-more-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 14px;
    z-index: 1;
}

.askre-preview-content {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.askre-preview-main {
    flex: 2;
    min-width: 300px;
}

.askre-preview-sidebar {
    flex: 1;
    min-width: 300px;
}

.askre-preview-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.askre-preview-section:last-child {
    border-bottom: none;
}

.askre-preview-section-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--askre-text-color);
    margin: 0 0 20px;
    position: relative;
    padding-bottom: 10px;
}

.askre-preview-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--askre-primary-color);
    border-radius: 2px;
}

.askre-preview-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 20px;
}

.askre-preview-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.askre-preview-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--askre-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.askre-preview-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--askre-primary-color);
}

.askre-preview-feature-content {
    display: flex;
    flex-direction: column;
}

.askre-preview-feature-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--askre-text-color);
}

.askre-preview-feature-label {
    font-size: 14px;
    color: var(--askre-secondary-text);
}

.askre-preview-description {
    color: #555555;
    line-height: 1.7;
    font-size: 16px;
}

.askre-preview-amenities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.askre-preview-amenity {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555555;
    font-size: 14px;
}

.askre-preview-amenity svg {
    fill: var(--askre-primary-color);
    flex-shrink: 0;
}

.askre-preview-contact-card {
    background-color: #fff;
    border-radius: var(--askre-radius);
    box-shadow: var(--askre-shadow);
    padding: 25px;
    margin-bottom: 30px;
}

.askre-preview-share-card {
    background-color: #fff;
    border-radius: var(--askre-radius);
    box-shadow: var(--askre-shadow);
    padding: 25px;
}

.askre-preview-similar {
    margin: 40px 0;
}

.askre-preview-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.askre-preview-similar-card {
    background-color: #fff;
    border-radius: var(--askre-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.askre-preview-similar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--askre-shadow-hover);
}

.askre-preview-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--askre-light-bg);
    color: var(--askre-text-color);
    padding: 12px 25px;
    border-radius: var(--askre-radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes askre-fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes askre-slideIn {
    from { 
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to { 
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Error Message */
.error-message {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #f5c6cb;
    border-radius: var(--askre-radius);
    font-family: var(--askre-font);
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .askre-property-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .askre-preview-similar-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .askre-property-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .askre-property-grid.list-view .askre-property-image {
        width: 280px;
        min-height: 200px;
    }
    
    .askre-preview-main-image {
        height: 400px;
    }
    
    .askre-preview-features {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .askre-search-filters {
        flex-direction: column;
    }
    
    .askre-filter-item {
        width: 100%;
    }
    
    .askre-property-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .askre-property-grid.list-view .askre-property-card {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }
    
    .askre-property-grid.list-view .askre-property-image {
        width: 100%;
        height: 220px;
    }
    
    .askre-property-grid.list-view .askre-property-details {
        max-width: 100%;
    }
    
    .askre-result-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .askre-contact-section {
        flex-direction: column;
    }
    
    .askre-property-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .askre-feature {
        font-size: 11px;
    }
    
    .askre-feature-number {
        font-size: 13px;
    }
    
    .askre-feature-label {
        font-size: 10px;
    }
    
    .askre-preview-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .askre-preview-price-section {
        text-align: left;
    }
    
    .askre-preview-main-image {
        height: 350px;
    }
    
    .askre-preview-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        height: 100px;
    }
    
    .askre-preview-thumbnail,
    .askre-preview-thumbnail-more {
        height: 100px;
    }
    
    .askre-preview-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .askre-preview-amenities {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    .askre-property-grid {
        grid-template-columns: 1fr;
    }
    
    .askre-property-container {
        padding: 15px;
    }
    
    .askre-search-container {
        padding: 20px;
    }
    
    .askre-property-image {
        height: 180px;
    }
    
    .askre-property-details {
        padding: 15px;
        gap: 10px;
    }
    
    .askre-property-title {
        font-size: 16px;
        min-height: 42px;
    }
    
    .askre-property-price .price {
        font-size: 18px;
    }
    
    .askre-property-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .askre-preview-similar-grid {
        grid-template-columns: 1fr;
    }
    
    .askre-preview-main-image {
        height: 250px;
    }
    
    .askre-preview-thumbnails {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .askre-preview-contact-buttons {
        flex-direction: column;
    }
    
    .askre-preview-title {
        font-size: 24px;
    }
    
    .askre-preview-price {
        font-size: 24px;
    }
}