.phone-hidden-btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    margin-top: 5px;
    padding: 4px 6px 4px 12px;
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.phone-hidden-btn:hover {
    background: #f0f0f0;
    border-color: #ddd;
}

.phone-hidden-btn.revealed {
    background: transparent;
    border: none;
    padding: 0;
}

.phone-hidden-btn.revealed:hover {
    background: transparent;
    color: var(--primary-color);
}

.phone-reveal-text {
    font-size: 12px;
    font-weight: 600;
    color: #111;
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
    box-shadow: 0 2px 4px rgba(255, 105, 0, 0.2);
}

.business-hero {
    position: relative;
    background-color: #111;
    padding: 40px 0;
    color: #fff;
    border-bottom: 5px solid var(--primary-color);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
}

.rating-badge .star {
    color: #ff6900;
    margin-right: 2px;
    font-size: 16px;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    background: #fff8e1;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ffecb3;
    margin-bottom: 20px;
    width: 100%;
}

.contact-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.contact-text a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: zoom-in;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.08);
}

.gallery-grid a:first-child {
    grid-column: 1 / -1;
}

.gallery-grid a:first-child img {
    height: 250px;
}

.review-box {
    background: #f9f9f9;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-closed {
    color: #dc3545;
}

.tags-wrapper a {
    display: inline-block;
    background: #f8f9fa;
    color: #333;
    padding: 6px 12px;
    border-radius: 4px;
    margin: 0 8px 8px 0;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #ddd;
}

.tags-wrapper a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.navigate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s ease;
}

.navigate-btn:hover {
    background: var(--primary-color);
    color: #111;
}

@media (max-width: 768px) {
    .business-layout {
        flex-direction: column;
    }

    .business-sidebar {
        width: 100% !important;
    }
}

.random-listings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .random-listings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .random-listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .random-listings-grid {
        grid-template-columns: 1fr;
    }
}

.biz-opt-1 {
    background: #fafafa;
}

.biz-opt-2 {
    background: #111319;
}

.biz-opt-3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.biz-opt-4 {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.biz-opt-5 {
    margin-right: 5px;
    stroke: white;
    stroke-width: 3;
}

.biz-opt-6 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 60px;
}

.biz-opt-7 {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 0px;
    margin-top: 25px;
}

.biz-opt-8 {
    color: #fff;
}

.biz-opt-9 {
    color: #666;
}

.biz-opt-10 {
    margin-right: 8px;
    margin-top: -2px;
    display: inline-flex;
    align-items: center;
}

.biz-opt-11 {
    color: #fff;
    margin-right: 5px;
}

.biz-opt-12 {
    color: #aaa;
    font-size: 14px;
}

.biz-opt-13 {
    padding: 40px 0;
}

.biz-opt-14 {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.biz-opt-15 {
    flex: 1;
    min-width: 0;
}

.biz-opt-16 {
    margin-right: 10px;
    color: #28a745;
}

.biz-opt-17 {
    margin: 0 10px;
    color: #d4bc72;
}

.biz-opt-18 {
    color: #856404;
    font-weight: 400;
    font-size: 13px;
}

.biz-opt-19 {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    margin-bottom: 30px;
    background: #fff;
}

.biz-opt-20 {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.biz-opt-21 {
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #eaeaea;
}

.biz-opt-22 {
    margin-right: 8px;
}

.biz-opt-23 {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}

.biz-opt-24 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    color: #111;
    display: block;
}

.biz-opt-24::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.biz-opt-25 {
    padding-left: 20px;
    color: #444;
    line-height: 1.6;
}

.biz-opt-26 {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.biz-opt-27 {
    font-size: 16px;
    margin: 0 0 4px 0;
}

.biz-opt-28 {
    color: #ff6900;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
}

.biz-opt-29 {
    color: #ccc;
}

.biz-opt-30 {
    font-size: 12px;
    color: #888;
}

.biz-opt-31 {
    color: #555;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
}

.biz-opt-32 {
    width: 320px;
    flex-shrink: 0;
}

.biz-opt-33 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    color: #111;
    display: block;
    border-bottom: none;
}

.biz-opt-33::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.biz-opt-34 {
    display: block;
    color: #777;
    font-size: 12px;
    text-transform: uppercase;
}

.biz-opt-35 {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.biz-opt-36 {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    margin-bottom: 25px;
}

.biz-opt-37 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    color: #111;
    display: block;
}

.biz-opt-37::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.biz-opt-38 {
    font-weight: 500;
}

.biz-opt-39 {
    background: #fff;
    padding: 50px 0;
    border-top: 1px solid #eaeaea;
}

.biz-opt-40 {
    font-size: 24px;
    margin-bottom: 25px;
}

.biz-opt-41 {
    margin-right: 4px;
}

.biz-opt-42 {
    padding: 15px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-top: none;
    border-radius: 0 0 12px 12px;
}

.biz-opt-43 {
    font-size: 16px;
    margin: 0 0 5px 0;
    color: #111;
}

.biz-opt-44 {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.biz-opt-45 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -1px;
}

.biz-opt-46 {
    color: var(--primary-color);
}

.biz-opt-47 {
    color: #111;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.biz-opt-48 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 1px solid #eaeaea;
}

.biz-opt-49 {
    font-size: 14px;
    overflow-wrap: break-word;
}

/* Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 60px;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

@media (max-width: 768px) {

    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
}

/* Claim Business Card Styles */
.claim-business-card {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.claim-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.claim-icon-wrapper {
    background: rgba(255, 105, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.claim-text h3 {
    margin: 0 0 8px 0 !important;
    font-size: 18px !important;
    color: #fff !important;
    border-bottom: none !important;
}

.claim-text p {
    margin: 0 0 15px 0 !important;
    font-size: 13px !important;
    color: #ccc !important;
    line-height: 1.4 !important;
}

.claim-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.claim-btn:hover {
    background: #ff8533 !important;
    transform: translateY(-2px);
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }
}