/* Studios Pages Styles */

/* Breadcrumbs */
.breadcrumbs {
    background-color: #ffffff;
    padding: 1rem 2rem;
    border-top: 1px solid var(--primary-color);
}

.breadcrumbs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.875rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: #999999;
}

.breadcrumb-item a {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-current {
    color: #333333;
    font-weight: 500;
}

/* Hero Section */
.page-hero {
    background-color: #ffffff;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.page-hero-container {
    max-width: 900px;
}

.page-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 4rem;
    font-weight: 300;
    color: #000000;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(-100vh);
    animation: fallDown 1.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.title-word-1 {
    animation-delay: 0s;
}

.title-word-2 {
    animation-delay: 0.5s;
}

.title-accent {
    color: var(--primary-color);
}

@keyframes fallDown {
    0% {
        opacity: 0;
        transform: translateY(-100vh);
    }
    60% {
        opacity: 1;
        transform: translateY(20px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-subtitle {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    color: #666666;
    letter-spacing: 0.5px;
}

/* Search Section */
.search-section {
    background-color: #ffffff;
    border-top: 1px solid var(--primary-color);
    padding: 3rem 2rem;
}

.search-container {
    max-width: 1100px;
    margin: 0 auto;
}

.search-heading {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.search-form {
    background-color: #faf9f7;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
}

.search-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.search-field {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-field-button {
    flex: 0 0 auto;
}

.search-label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: #333333;
}

.search-input,
.search-select {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.95rem;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    color: #333333;
    transition: border-color 0.2s ease;
}

.search-input:focus,
.search-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Tom Select wrapper inherits search-select class - reset conflicting styles */
.ts-wrapper.search-select {
    appearance: auto;
    background-image: none;
    padding: 0;
    border: none;
    background-color: transparent;
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    background-color: var(--primary-color);
    padding: 0.875rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background-color: #e54000;
}

/* Studios Section */
.studios-section {
    background-color: #faf9f7;
    padding: 4rem 2rem;
}

.studios-container {
    max-width: 1200px;
    margin: 0 auto;
}

.studios-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.studios-count {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    color: #333333;
    margin: 0;
}

.studios-count strong {
    color: #000000;
}

.studios-sort {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.studios-sort label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: #666666;
}

.sort-select {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    color: #333333;
}

/* Studios Grid */
.studios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Studio Card */
.studio-card {
    background-color: #ffffff;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.studio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.studio-photo {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.studio-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.studio-card:hover .studio-photo img {
    transform: scale(1.05);
}

.studio-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.375rem 0.75rem;
}

.studio-info {
    padding: 1.25rem;
}

.studio-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
    margin: 0 0 0.5rem 0;
}

.studio-location {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: #666666;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.studio-location i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.studio-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.studio-detail {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.studio-detail i {
    font-size: 0.8rem;
    color: #999999;
}

.studio-amenities {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.amenity {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #faf9f7;
    color: #666666;
    font-size: 0.85rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: #333333;
    padding: 0.75rem 1rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.pagination-btn:hover:not(.disabled) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 0.25rem;
}

.pagination-num {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: #333333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.pagination-num:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination-num.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.pagination-ellipsis {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: #666666;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* List Your Studio CTA */
.list-studio-cta {
    background-color: var(--primary-color);
    padding: 5rem 2rem;
    text-align: center;
}

.list-studio-container {
    max-width: 900px;
    margin: 0 auto;
}

.list-studio-text {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 2rem 0;
}

.list-studio-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.list-studio-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 2rem;
    transition: all 0.2s ease;
}

.list-studio-btn-outline {
    color: #ffffff;
    background-color: transparent;
    border: 2px solid #ffffff;
}

.list-studio-btn-outline:hover {
    background-color: #ffffff;
    color: var(--primary-color);
}

.list-studio-btn-solid {
    color: var(--primary-color);
    background-color: #ffffff;
    border: 2px solid #ffffff;
}

.list-studio-btn-solid:hover {
    background-color: transparent;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 1100px) {
    .studios-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .studios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 60vh;
        padding: 3rem 1.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .search-section {
        padding: 2rem 1.5rem;
    }

    .search-row {
        flex-direction: column;
    }

    .search-field {
        width: 100%;
    }

    .studios-section {
        padding: 2rem 1.5rem;
    }

    .list-studio-cta {
        padding: 3rem 1.5rem;
    }

    .list-studio-text {
        font-size: 1.25rem;
    }

    .pagination-btn span {
        display: none;
    }
}

@media (max-width: 500px) {
    .studios-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
    }
}

/* ============================================
   Additional Studio Profile Styles
   ============================================ */

/* Results Section */
.results-section {
    padding: 40px 20px;
    background: #faf9f7;
}

.results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.results-count {
    color: #666;
}

/* Studio Grid */
.studio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.studio-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.studio-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.studio-card-image {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #667eea, #764ba2);
    overflow: hidden;
}

.studio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.studio-card:hover .studio-card-image img {
    transform: scale(1.05);
}

.studio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.8);
}

.studio-price-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.studio-card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.studio-card-content .studio-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.studio-card-content .studio-location {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.studio-card-content .studio-location i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.studio-specs {
    display: flex;
    gap: 1rem;
    margin-top: 0.25rem;
}

.studio-spec {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.studio-spec i {
    color: #999;
    font-size: 0.8rem;
}

.studio-amenities {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
}

.amenity-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    color: #666;
    font-size: 0.85rem;
}

/* Old styles kept for backward compatibility */
.hiring-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #28a745;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.verified-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #007bff;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.studio-card-header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.studio-logo-small {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.studio-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}

.studio-type {
    font-size: 13px;
    color: #888;
}

.studio-tagline {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.studio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.studio-meta-item {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    gap: 4px;
}

.studio-styles {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.style-tag {
    background: #f0f0f0;
    color: #333;
    padding: 0.375rem 0.75rem;
    font-size: 0.85rem;
    font-family: 'Inter Tight', sans-serif;
    border: none;
}

.style-more {
    background: var(--primary-color);
    color: #fff;
}

.studio-view-btn {
    display: block;
    text-align: center;
    padding: 14px;
    background: #f8f9fa;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-top: 1px solid #eee;
    transition: background 0.2s;
}

.studio-view-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Responsive grid */
@media (max-width: 1100px) {
    .studio-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .studio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .studio-grid {
        grid-template-columns: 1fr;
    }
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-results i {
    font-size: 48px;
    color: #ddd;
    margin-bottom: 16px;
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-icon {
    font-size: 32px;
    color: var(--primary-color);
}

.cta-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.cta-btn {
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* Studio Profile Detail Page */
.studio-profile-section {
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
    padding-bottom: 3rem;
}

.studio-profile-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.studio-cover {
    height: 250px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    overflow: hidden;
}

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

.studio-cover-placeholder {
    width: 100%;
    height: 100%;
}

.studio-header {
    display: flex;
    gap: 24px;
    padding: 0 30px;
    margin-top: -60px;
    margin-bottom: 30px;
}

.studio-logo-wrapper {
    flex-shrink: 0;
}

.studio-logo {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.studio-logo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: 4px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.studio-header-info {
    flex: 1;
    padding-top: 70px;
}

.studio-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.studio-title-row .studio-name {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.verified-badge-large {
    background: #007bff;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hiring-badge-large {
    background: #28a745;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.studio-type-label {
    color: #888;
    font-size: 14px;
    margin-bottom: 8px;
}

.studio-tagline {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

.studio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.studio-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 14px;
}

.studio-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.studio-actions .btn-primary,
.studio-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.studio-actions .btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.studio-actions .btn-primary:hover {
    background-color: #e54000;
}

.studio-actions .btn-secondary {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.studio-actions .btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Studio Body */
.studio-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    padding: 0 30px 40px;
}

.studio-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.studio-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.studio-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.studio-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
}

.studio-description {
    line-height: 1.7;
    color: #444;
}

.studio-styles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.studio-styles .style-tag {
    padding: 6px 14px;
    font-size: 14px;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
    font-size: 14px;
}

.amenity-item i {
    color: #28a745;
}

/* Studio Gallery */
.studio-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
}

/* Sidebar Cards */
.sidebar-card {
    padding: 20px;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.contact-item:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.location-info {
    display: flex;
    gap: 10px;
    color: #666;
}

.location-info i {
    color: var(--primary-color);
    margin-top: 4px;
}

.location-info p {
    margin: 0 0 0.25rem 0;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
}

.location-info p:last-child {
    margin-bottom: 0;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.social-link:hover {
    background: #f0f0f0;
    color: var(--primary-color);
}

.quick-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-info-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.quick-info-list li:last-child {
    border-bottom: none;
}

.info-label {
    color: #888;
    font-size: 13px;
}

.info-value {
    font-weight: 600;
    font-size: 13px;
}

/* Premium Features */
.premium-icon {
    color: #ffc107;
}

.premium-locked {
    opacity: 0.6;
}

.premium-notice {
    color: #888;
    font-style: italic;
    font-size: 14px;
}

/* Forms */
.amenities-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.amenity-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: normal;
}

/* Studio Preview (My Studio page) */
.studio-preview {
    background: #fff;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.preview-cover {
    height: 150px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

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

.preview-cover-placeholder {
    width: 100%;
    height: 100%;
}

.preview-header {
    display: flex;
    gap: 20px;
    padding: 20px;
    margin-top: -40px;
}

.preview-logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.preview-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.preview-logo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #ff6b6b);
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.preview-info {
    flex: 1;
    padding-top: 45px;
}

.preview-info h2 {
    font-size: 22px;
    margin-bottom: 4px;
}

.preview-type {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 8px;
}

.preview-tagline {
    color: #666;
    font-size: 14px;
    margin-bottom: 12px;
}

.preview-meta {
    display: flex;
    gap: 16px;
    color: #888;
    font-size: 14px;
    margin-bottom: 12px;
}

.preview-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.preview-badges {
    display: flex;
    gap: 8px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.hiring {
    background: #d4edda;
    color: #155724;
}

.status-badge.verified {
    background: #cce5ff;
    color: #004085;
}

.preview-section {
    padding: 16px 20px;
    border-top: 1px solid #e9ecef;
}

.preview-section h3 {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin-bottom: 10px;
}

.preview-styles {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.preview-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.amenity-tag {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
    font-family: 'Inter Tight', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.preview-bio {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.6;
    margin: 0;
}

.preview-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preview-contact span {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.preview-contact span i {
    color: var(--primary-color);
    width: 16px;
}

.preview-location {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: #444;
    margin: 0;
}

.preview-rooms {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.preview-room-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-left: 3px solid var(--primary-color);
}

.preview-room-item .room-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.preview-room-item .room-size {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    color: #666;
}

.preview-room-item .room-rate {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Current Images Preview */
.current-images-preview {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    justify-content: center;
}

.preview-item {
    text-align: center;
}

.preview-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 8px;
}

.preview-item p {
    color: #888;
    font-size: 13px;
}

/* ============================================
   My Studio Page Styles
   ============================================ */

/* Panel Header Row */
.panel-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.panel-header-row h1 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 0.25rem 0;
}

.panel-header-row p {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.panel-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.panel-actions .btn-primary,
.panel-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.panel-actions .btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.panel-actions .btn-primary:hover {
    background-color: #e54000;
}

.panel-actions .btn-secondary {
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.panel-actions .btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Gallery Preview Section */
.gallery-preview-section {
    background: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.gallery-header h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.btn-small {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    transition: all 0.2s ease;
}

.btn-small:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.gallery-preview-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.gallery-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-empty {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.gallery-empty a {
    color: var(--primary-color);
    text-decoration: none;
}

.gallery-empty a:hover {
    text-decoration: underline;
}

.premium-upgrade-hint {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    color: #666;
    margin: 1rem 0 0 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.premium-upgrade-hint i {
    color: #ffc107;
}

/* Premium Features Status */
.premium-features-status {
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.premium-features-status h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    margin: 0 0 1rem 0;
}

.feature-status-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-status-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid #eee;
}

.feature-status-list li:last-child {
    border-bottom: none;
}

.feature-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.95rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-name i {
    color: #666;
    width: 20px;
}

.feature-status {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
}

.feature-status.active {
    background-color: #d4edda;
    color: #155724;
}

.feature-status.locked {
    background-color: #f8d7da;
    color: #721c24;
}

.feature-status.empty {
    background-color: #f0f0f0;
    color: #666;
}

.btn-upgrade {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    margin-top: 1.25rem;
    transition: all 0.2s ease;
}

.btn-upgrade:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.btn-upgrade i {
    color: #fff;
}

/* Sidebar Avatar Image */
.sidebar-avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* ============================================
   Room Formset Styles
   ============================================ */

.form-section-desc {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: -0.5rem 0 1.5rem 0;
}

.formset-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.formset-item {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    padding: 1.5rem;
    position: relative;
}

.formset-item.existing {
    border-left: 3px solid var(--primary-color);
}

.formset-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.formset-item-title {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.delete-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    color: #dc3545;
    cursor: pointer;
    padding: 0.375rem 0.75rem;
    background: #fff;
    border: 1px solid #dc3545;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.delete-checkbox:hover {
    background: #dc3545;
    color: #fff;
}

.delete-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.btn-add-room {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    background: #fff;
    padding: 0.875rem 1.25rem;
    border: 2px dashed var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
}

.btn-add-room:hover {
    background: var(--primary-color);
    color: #fff;
    border-style: solid;
}

/* ============================================
   Studio Rooms Display Styles (Public Profile)
   ============================================ */

.rooms-grid {
    display: grid;
    gap: 1rem;
}

.room-card {
    background: #f8f9fa;
    padding: 1.25rem;
    border-left: 3px solid var(--primary-color);
}

.room-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.room-name {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.room-rate {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
}

.room-description {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 0.75rem 0;
    line-height: 1.5;
}

.room-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.room-spec {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.room-spec i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.room-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.room-amenity-tag {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.75rem;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 0.25rem 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.room-amenity-tag i {
    font-size: 0.7rem;
}

/* ============================================
   Generic Button Styles
   ============================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #e54000;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: #fff;
    color: #333;
    border: 1px solid #ddd;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ============================================
   Gallery Management Page Styles
   ============================================ */

/* Upload Section */
.upload-section {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e0e0e0;
}

.upload-section h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upload-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.upload-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.upload-form .form-group label {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.upload-form .form-file,
.upload-form input[type="file"] {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
}

.upload-form .form-input,
.upload-form input[type="text"] {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    background: #fff;
    transition: border-color 0.2s ease;
}

.upload-form .form-input:focus,
.upload-form input[type="text"]:focus {
    outline: none;
    border-color: var(--primary-color);
}

.upload-form .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    background-color: var(--primary-color);
    padding: 0.875rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.upload-form .btn-primary:hover {
    background-color: #e54000;
}

/* Upload Limit Reached */
.upload-limit-reached {
    background: #fff3cd;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.upload-limit-reached i {
    font-size: 1.5rem;
    color: #856404;
}

.upload-limit-reached p {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.95rem;
    color: #856404;
    margin: 0;
}

.btn-upgrade-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-upgrade-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

/* Gallery Manage Section */
.gallery-manage-section {
    margin-bottom: 2rem;
}

.gallery-manage-section h3 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1rem 0;
}

.gallery-manage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.gallery-manage-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f0f0f0;
}

.gallery-manage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.gallery-manage-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.gallery-manage-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-caption {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    margin: 0;
    flex: 1;
}

.delete-form {
    display: inline;
}

.btn-delete {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.85rem;
    color: #fff;
    background: #dc3545;
    padding: 0.5rem 0.75rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-delete:hover {
    background: #c82333;
}

/* Gallery Empty State */
.gallery-empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: #f8f9fa;
    border: 2px dashed #ddd;
}

.gallery-empty-state i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.gallery-empty-state p {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0.25rem 0;
}

/* Gallery Tips */
.gallery-tips {
    background: #e8f4fd;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid #007bff;
}

.gallery-tips h4 {
    font-family: 'Inter Tight', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gallery-tips h4 i {
    color: #ffc107;
}

.gallery-tips ul {
    margin: 0;
    padding-left: 1.25rem;
}

.gallery-tips li {
    font-family: 'Inter Tight', sans-serif;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.gallery-tips li:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .upload-form .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-manage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .gallery-manage-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .studio-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }

    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .studio-header-info {
        padding-top: 20px;
    }

    .studio-title-row {
        justify-content: center;
    }

    .studio-meta {
        justify-content: center;
    }

    .studio-actions {
        justify-content: center;
    }

    .studio-body {
        grid-template-columns: 1fr;
        padding: 0 20px 40px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-content {
        flex-direction: column;
    }

    .preview-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .preview-info {
        padding-top: 10px;
    }
}

/* ===========================================
   Search Grid Layout
   =========================================== */

/* 2-column search grid layout */
.search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .search-grid {
        grid-template-columns: 1fr;
    }
}

.search-btn-full {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color, #ff5722);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.2s;
}

.search-btn-full:hover {
    background-color: #e64a19;
}
