/* Homepage Container */
.homepage-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
	        display: grid;
        grid-template-columns: 70% 1fr;
        gap: 30px;
}

/* Hero Section */
.hero-section {
    text-align: center;
padding: 90px;
    background: #f3fcfc;
}

.hero-section h1 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.hero-section p {
      width: 50%;
    margin: auto;
    padding: 50px 0;
    font-size: 22px;
    color: #1c1c1c;
}
.hero-section p strong{
	margin-right:7px;
}
.search-form {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    gap: 12px;
}

.search-form input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
}



/* Category Icons */
.category-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    text-decoration: none;
    color: #666;
    transition: transform 0.3s;
}

.category-item:hover {
    transform: translateY(-4px);
}

.category-item .icon {
    font-size: 32px;
}

.category-item .label {
    font-size: 13px;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.filter-tabs {
    display: flex;
    gap: 12px;
}


.filter-tabs .tab.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Spa Grid */

.spa-card-header {
    width: 100px;
}
.spa-card {
 padding: 0 20px;
	    display: flex;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.spa-listing-grid {
    background: #fff;
	padding-left: 1.5rem;
    padding-right: 1.5rem;
}


.spa-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.spa-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spa-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.spa-name {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 6px 0;
}

.spa-name a {
    color: #333;
    text-decoration: none;
}

.spa-website a {
    color: #1877f2;
    font-size: 13px;
    text-decoration: none;
}

.spa-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
    font-size: 16px;
}

.stars .star.filled {
    color: #ff9800;
}

.stars .star.empty {
    color: #e0e0e0;
}

.rating-text {
    font-weight: bold;
    font-size: 14px;
}

.review-count {
    font-size: 13px;
    color: #666;
}

.spa-category,
.spa-address {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

/* Pagination */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 4px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
}

.pagination .page-numbers.current {
    background: #667eea;
    color: white;
}

/* Mobile */
@media (max-width: 768px) {
    .spa-listing-grid {
        grid-template-columns: 1fr;
    }
}