footer {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 0;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta1-button {
    padding: 0.75rem 1.5rem;
    background: white;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cta1-button:hover {
    background: #f9fafb;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.chat-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-right: 18px;
    min-width: 48px;
    justify-content: center;
}

.chat-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #dc2626;
    color: #ffffff;
    border-radius: 999px;
    font-size: 11px;
    line-height: 1;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

@media (max-width: 640px) {
    .button-container {
        flex-direction: column;
    }

    .cta1-button {
        width: 100%;
        text-align: center;
    }
}
.seller-profile-container {
    max-width: 935px;
    margin: 0 auto;
    padding: 30px 20px;
}

/* Profile Card - Instagram-inspired header */
.seller-profile-card {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 40px 0;
    margin-bottom: 44px;
    border-bottom: 1px solid #dbdbdb;
}

.seller-avatar {
    flex-shrink: 0;
}

.seller-avatar img,
.seller-avatar ion-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #dbdbdb;
}

.seller-avatar ion-icon {
    font-size: 150px;
    color: #8e8e8e;
}

.seller-details {
    flex: 1;
}

.seller-details h2 {
    font-size: 28px;
    font-weight: 300;
    margin: 0 0 20px 0;
    color: #262626;
}

.seller-details p {
    font-size: 16px;
    line-height: 1.5;
    color: #262626;
    margin: 0;
}

.seller-listings h3 {
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.seller-listings .image-gallery {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
    padding: 0 16px 12px;
    overflow: visible;
}

.seller-listings .image-card2 {
    display: flex;
    flex-direction: column;
    width: 240px;
    height: auto;
    border-radius: 22px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
    transition: transform 0.3s ease-in-out;
}

.seller-listings .image-card2:hover {
    transform: scale(1.03);
}

.seller-listings .image-card2 a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.seller-listings .image-card2 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.seller-listings .image-card2 .text-container {
    background-color: #ffffff;
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
}

.seller-listings .image-card2 .image-text {
    color: black;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 5px;
}

.seller-listings .image-card2 .image-text2 {
    color: #666666;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0px;
    margin-left: 5px;
}

.seller-listings .image-card2 .image-text3 {
    color: #666666;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
    margin-top: 0px;
    margin-left: 5px;
}
