.at-grid {
    display: grid;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(180deg, rgba(255 255 255), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255));
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--color-border);
    padding: var(--spacing-md);
    border-radius: 18px;
}
.at-seller-card {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}
.at-seller-card-hero h2{
    font-size: 1.3rem;
}
@media (min-width: 768px) and (max-width: 1049px) {
    .at-grid {
        grid-template-columns: 1fr 200px;
    }
    .at-seller-card-hero .profile-hero-image{
        display: none;
    }
}
@media (min-width: 1050px) {
    .at-grid {
        grid-template-columns: 1fr 260px;
    }   
    .at-seller-card-hero .profile-hero-image{
        display: none;
    }
}

.at-sidebar,
.at-main {
    position: relative;
}

.at-grid-hero{
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: var(--spacing-lg);
}

.at-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: 10px 0px 0px 20px;
}
.at-seller-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}
.at-seller-photo-block{
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 130px;
    height: 130px;
}
.at-seller-photo-wrapper {
    width: 130px;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-border);
}

.at-seller-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.at-seller-photo-placeholder {
    width: 100%;
    height: 100%;
    background-color: #d8d8d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--text-secondary);
}

.at-seller-name {
    width: 250px;
    font-size: var(--font-size-md);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.4;
    text-shadow: 1px -1px 0px rgb(255 255 255 / 51%);
    position: absolute;
    bottom: 0px;
    left: calc(-125px + 40px);
}
.at-seller-name a{
    color: #000000;
}
.at-seller-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin: 0 auto 0 auto;
}
.btn-website, .btn-map{
    position: relative;
    display: block;
    border-radius: 7px;
    color: #2c2c2c;
    text-decoration: none;
    font-size: var(--font-size-sm);
    cursor: pointer;
}
.btn-phone, .btn-phone2{
    position: relative;
    padding: 4px 7px;
    margin-left: auto;
    margin-right: auto;
    transition: transform .2s;
}
.btn-phone button, .btn-phone2 button{
    border: none;
    margin: 0;
}
.phone-masked, .phone-masked2{
    background: linear-gradient(110deg,var(--primary-color),var(--secondary-color));
    text-align: left;
    padding: 8px 4px 8px 31px;
    color: #ffffff;
    border-radius: 7px 0px 0px 7px;
    cursor: pointer;
}
.email-msg-btn{
    width: fit-content;
    background: linear-gradient(110deg,var(--primary-color),var(--secondary-color));
    position: relative;
    display: grid;
    border: none;
    padding: 8px 34px 8px 9px;
    color: #ffffff;
    border-radius: 7px;
    cursor: pointer;
    margin: 3px auto;
}
.email-msg-btn:hover{
    background: linear-gradient(130deg, #757575, #3d3d3d);
}
.email-msg-btn::after{
    position: absolute;
    top: 6px;
    right: 10px;
    background: url('/assets/img/svg/email.svg') no-repeat 0px 0px; 
    background-size: 18px 18px;
    content:"";
    display:block;
    width: 18px;
    height: 25px;
}
.phone-masked:hover, .phone-masked2:hover{
    background: linear-gradient(130deg, #757575, #3d3d3d);
}
.phone-masked{
    padding: 8px 4px 8px 31px;
    border-radius: 7px 0px 0px 7px;
}
.phone-masked2{
    padding: 8px 15px 8px 31px;
    border-radius: 7px;
}
.btn-phone:before, .btn-phone2:before{
    position: absolute;
    background: url('/assets/img/svg/phone.svg') no-repeat 8px 7px; 
    background-size: 18px 18px;
    content:"";
    display:block;
    width: 34px;
    height: 29px;
}
.at-seller-location {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.4;
}

.at-seller-location i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.at-seller-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.btn-full-width {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: 8px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    font-family: inherit;
}

.btn-favorite {
    color: rgb(61, 61, 61);   
    background: linear-gradient(130deg, #bdbdbd, #e6e5e5);
    font-weight: 400;
}

.btn-favorite:hover {
    background: linear-gradient(110deg,var(--primary-color),var(--secondary-color));
    color: white;
}

.btn-report {
    color: rgb(61, 61, 61);   
    background: linear-gradient(130deg, #bdbdbd, #e6e5e5);
    font-weight: 400;
}

.btn-report:hover {
    background: linear-gradient(130deg, #f82626, #e62e00);
    color: rgb(255, 255, 255);
}

.at-info-box {
    background: linear-gradient(180deg, rgba(255 255 255), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255));
    padding: var(--spacing-md);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.at-info-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.at-info-label {
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.at-info-item span:not(.at-info-label) {
    font-size: var(--font-size-md);
    color: var(--text-primary);
}

.at-other-announcements {
    background: linear-gradient(180deg, rgba(255 255 255), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255));
    padding: var(--spacing-md);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--color-border);
}

.at-other-title {
    font-size: var(--font-size-md);
    font-weight: 600;
    margin: 0 0 var(--spacing-md) 0;
    color: var(--text-primary);
}

.at-other-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.at-other-list li {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--spacing-sm);
}

.at-other-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.at-other-list a {
    display: block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: var(--font-size-sm);
    line-height: 1.4;
    transition: color 0.3s ease;
}

.at-other-list a:hover {
    color: #0066cc;
    text-decoration: underline;
}

.at-main {
    background: linear-gradient(180deg, rgba(255 255 255), rgb(255 255 255 / 0%), rgb(255 255 255 / 0%), rgb(255 255 255));
    padding: var(--spacing-md);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    border: 1px solid var(--color-border);
}

.at-navigation {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.at-nav-link,
.at-nav-disabled {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: all 0.3s ease;
}

.at-nav-link {
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
}

.at-nav-link:hover {
    background: linear-gradient(130deg, #087027, #0da53b);
    transform: translateX(2px);
}

.at-nav-prev:hover {
    transform: translateX(-2px);
}

.at-nav-disabled {
    background-color: var(--bg-secondary);
    color: var(--text-secondary);
    cursor: not-allowed;
}

.at-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}
.profile-hero-image{
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.at-gallery-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.at-gallery-main {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 300px;
}

.at-gallery-main.at-no-image {
    background-color: #f0f0f0;
}

.at-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.at-main-image:hover {
    transform: scale(1.02);
}

.at-no-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    color: #999;
    font-size: 48px;
    text-align: center;
}

.at-no-image-placeholder p {
    margin: 0;
    font-size: var(--font-size-md);
    color: var(--text-secondary);
}

.at-gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: var(--spacing-sm);
}
.at-thumbnail {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    object-fit: cover;
    padding: 3px;
    border-radius: 3px;
    border: 1px solid #bbbbbb;
}

.at-thumbnail:hover {
    transform: scale(1.05);
}

.at-thumbnail.active {
    border-color: rgb(116, 116, 116);
    box-shadow: 0 0 0 2px white, 0 0 0 4px white;
}

.announcement-favorite-btn {
    position: absolute;
    top: -12px;
    right: 9px;
}

.at-details-column {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.at-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 40px 0 0;
    color: var(--text-primary);
    line-height: 1.3;
}

.at-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: 12px;
}

.at-detail-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.at-detail-label {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.at-detail-value {
    color: var(--text-primary);
    font-size: var(--font-size-md);
}

.at-category-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.at-category-link:hover {
    color: #0066cc;
    text-decoration: underline;
}

.at-price-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
}

.at-price-value {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-sm);
}

.at-price-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.at-price-unit {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.at-price-negotiable {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: #28a745;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.at-description {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.at-description h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.at-description-text {
    color: var(--text-secondary);
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}

.at-location-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background-color: var(--bg-secondary);
    border-radius: 12px;
}

.at-location-info h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin: 0;
    color: var(--text-primary);
}

.at-location-details {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    color: var(--text-secondary);
    font-size: var(--font-size-md);
    line-height: 1.6;
}

.at-location-details i {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.at-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.at-lightbox-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    animation: lightboxZoom 0.3s;
}

@keyframes lightboxZoom {
    from { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
    to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}

.at-lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
    z-index: 10000;
    transition: 0.3s;
}

.at-lightbox-close:hover,
.at-lightbox-close:focus {
    color: #bbb;
}

.at-lightbox-prev,
.at-lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: 700;
    font-size: 30px;
    transition: 0.3s;
    user-select: none;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
}

.at-lightbox-prev {
    left: 20px;
}

.at-lightbox-next {
    right: 20px;
}

.at-lightbox-prev:hover,
.at-lightbox-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.at-lightbox-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    font-size: 16px;
}

.toast-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease-out;
    font-size: 15px;
}

.toast-notification.hiding {
    animation: slideOut 0.3s ease-out forwards;
}

.toast-notification i {
    font-size: 18px;
}

.at-languages>span, .at-languages>img{
    line-height: 21px;
}
.flag{
    width: 21px;
    height: 21px;
}
.assortment-prod-types{
    margin: 6px;
}
.assortment-prod-types div strong{
    font-size: 0.9rem
}
.assortment-prod-types div span{
    display: block;
    font-size: 0.7rem
}
.article-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    grid-column: 1 / -1;
}

.article-tag {
    display: grid;
    grid-template-columns: 19px auto;
    text-decoration: none;
    margin-right: 5px;
    transition: all 0.3s ease-in-out;
}
.article-tag .tag_el2{
    background: linear-gradient(135deg, rgb(192, 68, 45) 0%, rgb(192, 68, 45) 30%, rgb(245, 158, 11)  100%);
    color: white;
    height: 32px;
    line-height: 31px;
    font-size: 0.9em;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
    padding: 0 8px 0px 2px;
    z-index: 10;
}
.article-tag .tag_el1{
    position: relative;

}
.article-tag .tag_el1::before {
    content: '';
    position: absolute;
    left: 9px;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 23px;
    background-color: #ffffff;
    box-shadow: 0 0 1px rgba(65, 65, 65, 0.7);
    z-index: 11;
}
.article-tag .tag_el1::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    width: 30px;
    height: 30px;
    border-radius: 13px 3px 13px 3px;
    background: linear-gradient(15deg, rgb(192, 68, 45)  0%, rgb(192, 68, 45) 100%);
    transform: translateY(-50%) rotate(45deg);
    z-index: 9;
}


@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

.profile-header {
    background: #fff;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
    border: 1px solid #e1e1e1;
}

.profile-header-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.profile-header-content h1 {
    font-size: 1.8rem;
    margin: 0;
}

.profile-type-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
}

.profile-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.profile-meta-item {
    display: flex;
    gap: var(--spacing-sm);
    color: #222222;
    font-size: 0.95rem;
}
.profile-meta-item a{
     color: var(--color-primary);  
     text-decoration: none; 
}
.profile-meta-item i {
    color: var(--color-primary);
    width: 18px;
    font-size: 18px;
    text-align: center;
}

.profile-section {
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}
.profile-section h2 {
    margin-top: 0;
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
}

.profile-description {
    line-height: 1.8;
    color: var(--text-secondary);
}

.profile-assortment-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.assortment-card {
    border: 1px solid #dddddd;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255 255 255), rgb(255 255 255 / 50%), rgb(255 255 255 / 0%), rgb(255 255 255));
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
}

.assortment-card-image {
    grid-column: 1;
    grid-row: 1;
    width: 100px;
    height: 100px;
    overflow: hidden;
    flex-shrink: 0;
}

.assortment-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.assortment-header {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.assortment-category {
    margin: 0 0 var(--spacing-xs) 0;
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--text-primary);
}

.assortment-description {
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    line-height: 1.4;
}

.assortment-images {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100px;
    background: var(--bg-secondary);
}

.assortment-main-image {
    width: 100%;
    height: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    cursor: pointer;
}

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

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

.assortment-thumbnail-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.assortment-no-image {
    width: 100%;
    height: 100px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.assortment-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 28px;
}

.profile-assortment-availability {
    grid-column: 1 / -1;
    grid-row: 2;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.availability-header {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.availability-header i {
    color: var(--primary-color);
}

.profile-availability-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.profile-availability-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.profile-timeline-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profile-availability-qty {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.profile-timeline-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 2px;
    width: 100%;
    align-items: flex-end;
}
@media screen and (max-width: 767px) {
    .at-seller-additional-info{
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-items: start;
        align-items: center;
        grid-column: 1 / -1;
    }
    .at-grid {
        grid-template-columns: 1fr;
    }
    .at-grid .at-main{
        grid-row: 2;
    }
    .at-grid .at-sidebar{
        grid-row: 1;
    } 
    .at-sidebar{
        padding: 10px 0px 0px 0px;
    }
    .at-seller-card {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
        align-items: center;
        margin-bottom: 10px;
    }
    .at-seller-card > :nth-child(3) {
        grid-column: 1 / -1;
    }
    .profile-timeline-bar {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }
    .at-seller-card .at-seller-card-hero h2{
        position: absolute;
        bottom: -40px;
        font-size: 1.1rem
    }
    .at-seller-card.profile-card .at-seller-card-hero,
    .at-seller-card.profile-card .at-seller-contact {
        grid-column: 1 / -1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .at-main .profile-hero-image{
        display: none;
    }
    .at-main .at-gallery-thumbnails{
        display: none;
    }
    .at-seller-photo-block{
        margin-left: auto;
        margin-right: auto;
        width: 130px;
        height: 130px;
    }
    .at-seller-photo-block-abs{
        position: absolute;
        bottom: -40px;
    }
    .at-gallery-main {
        aspect-ratio: initial;
    }
    .at-seller-contact{
        margin-top: 25px;
    }
}
    

.profile-timeline-month {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}
.profile-availability-qty b{
    background: linear-gradient(90deg, #e0e0e0, #dadada);
    border-radius: 7px;
    padding: 2px 4px;
    font-weight: 400;
}
.ptm-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #585858;
    font-weight: 400;
    line-height: 1;
    order: 2;
    margin-top: 4px;
}

.ptm-bar {
    width: 100%;
    height: 9px;
    border-radius: 999px;
    background: #f3f4f6;
    box-shadow: inset 0 0 0 1px rgba(209, 213, 219, 0.9);
    overflow: hidden;
    transition: all 0.18s ease;
    order: 1;
}

.ptm-bar.full {
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    box-shadow: inset 0 0 0 1px rgba(165, 196, 255, 0.9);
}

.ptm-bar.left-half {
    box-shadow: inset 0 0 0 1px rgba(165, 196, 255, 0.9);
    background: linear-gradient(
        90deg,
        #2563eb 0%,
        #38bdf8 50%,
        #f3f4f6 52%,
        #f3f4f6 100%
    );
}

.ptm-bar.right-half {
    box-shadow: inset 0 0 0 1px rgba(165, 196, 255, 0.9);
    background: linear-gradient(
        90deg,
        #f3f4f6 0%,
        #f3f4f6 48%,
        #2563eb 52%,
        #38bdf8 100%
    );
}

.map-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.map-modal.active {
    display: flex;
}

.map-modal-content {
    position: relative;
    width: 95%;
    height: 95%;
    max-width: 1200px;
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.map-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    font-size: 32px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.2s;
    padding: 0;
    line-height: 1;
}

.map-modal-close:hover {
    background: #f0f0f0;
}

#map-container {
    width: 100%;
    height: 100%;
}

.at-seller-status, .at-seller-status2 {
    position: absolute;
    top: 2px;
    right: -49px;
    display: grid;
    grid-template-columns: 8px 1fr;
    align-items: center;
    gap: 2px;
    padding: 0px 4px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}
.at-seller-status2{
    top: 23px;
    right: -51px;  
}
.at-seller-status.at-online {
    background-color: #03883a;
    color: white;
}

.at-seller-status.at-online .at-status-dot {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
}

.at-seller-status.at-offline, .at-seller-status2.at-offline {
    background-color: #9ca3af;
    color: white;
}

.at-seller-status.at-offline .at-status-dot, .at-seller-status2.at-offline .at-status-dot {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    display: inline-block;
}
#desc-more-btn{
    color: #000000;
    text-decoration: none;
}