/* style.css-ის სრული კოდი */
*,
::after,
::before {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;

    /* ▼▼▼ SNIPER: START - გრძელი სიტყვების გაწყვეტის წესი ▼▼▼ */
    overflow-wrap: break-word;
    word-wrap: break-word;
    /* ▲▲▲ SNIPER: END - გრძელი სიტყვების გაწყვეტის წესი ▲▲▲ */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
}

/* --- ნავიგაცია --- */

.navbar {
    display: flex;
    align-items: center;
    padding: 16px 0;
    background: linear-gradient(90deg, #009688, #00796b);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo img {
    height: 45px;
    margin-right: 10px;
}

.nav-link {
    font-size: 16px;
    color: #e0f2f1;
    background-color: transparent;
    font-weight: 700;
    transition: .2s ease-in-out;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
}

.nav-link.active,
.nav-link:hover {
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
}

.login-button {
    padding: 10px 24px;
    background-color: #fff;
    color: #00796b;
    border-radius: 8px;
    font-size: 14px;
    border: none;
    font-weight: 700;
    transition: background-color .3s, transform .2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
    text-decoration: none;
}

.login-button:hover {
    background-color: #f1f3f4;
    transform: translateY(-1px);
    color: #00695c;
}

.mobile-menu-toggle {
    display: none;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* --- Hero სექცია --- */

.hero-section {
    padding: 80px 20px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin: 30px 0;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #202124;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* --- ღილაკები --- */

.btn {
    padding: 12px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: .3s;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary {
    background-color: #00897b;
    color: #fff;
}

.btn-primary:hover {
    background-color: #00695c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fff;
    color: #00897b;
    border-color: #00897b;
}

.btn-secondary:hover {
    background-color: #e0f2f1;
    transform: translateY(-2px);
}

/* --- ჩამოსაშლელი მენიუ (Dropdown) --- */

.dropdown {
    position: relative;
    display: inline-block;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: 0 0;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 25px;
    transition: background-color .2s ease-in-out;
}

.profile-btn:hover {
    background-color: rgba(255, 255, 255, .1);
}

.profile-btn img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00897b;
}

.profile-btn span {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.dropdown-menu {
    position: absolute;
    right: 0;
    top: 55px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    display: none;
    flex-direction: column;
    min-width: 180px;
    z-index: 999;
    overflow: hidden;
}

.dropdown-menu.show {
    display: flex;
}

.dropdown-menu a {
    padding: 12px 16px;
    text-align: left;
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background-color .2s;
}

.dropdown-menu a:hover {
    background-color: #f1f3f4;
}

.dropdown-header {
    padding: 10px 16px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px;
    color: #5f6368;
    font-weight: 700;
}

.logout-link {
    color: #dc3545 !important;
    font-weight: 700;
}

.logout-link:hover {
    background-color: #f8d7da !important;
}

/* --- Footer --- */

.footer {
    padding: 25px;
    background-color: #fff;
    color: #5f6368;
    font-size: 14px;
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

/* --- მომხმარებლის გვერდი --- */

.account-page-container {
    display: flex;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    gap: 25px;
    background-color: transparent;
    align-items: flex-start;
}

.account-sidebar {
    flex: 0 0 280px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}


/* ▼▼▼ [ახალი] Sidebar-ის სტილები თქვენი დიზაინის მიხედვით ▼▼▼ */
.profile-info-card {
    background-color: #fff;
    border: 2px solid #cce8de;
    /* მომწვანო ჩარჩო */
    border-radius: 24px;
    /* მომრგვალებული კუთხეები */
    padding: 20px 15px;
    margin-bottom: 25px;
    /* დაშორება მენიუსგან */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* რიგებს შორის დაშორება */
}

.p-card-row {
    display: flex;
    align-items: center;
}

.p-card-row.top {
    justify-content: space-between;
}

.p-card-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.p-card-identity {
    text-align: left;
    flex-grow: 1;
    padding-left: 15px;
}

.p-card-name {
    font-size: 1.6em;
    font-weight: 600;
    line-height: 1.2;
}

.p-card-id {
    font-size: 0.9em;
    color: #777;
}

.p-card-warnings {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.2em;
    font-weight: 600;
}

.p-card-row.mid {
    justify-content: center;
}

.p-card-rating {
    color: #ffc107;
    font-size: 1.2em;
}

.p-card-rating .star-empty {
    color: #e0e0e0;
}

.p-card-rating .review-count {
    color: #777;
    font-size: 0.9em;
    margin-left: 8px;
}

.p-card-row.bottom {
    justify-content: space-around;
    padding-top: 10px;
}

.p-card-points {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4em;
    font-weight: 600;
}

.p-card-points img {
    width: 30px;
    height: 30px;
}

/* ▲▲▲ ახალი სტილების დასასრული ▲▲▲ */


.account-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.account-menu a {
    padding: 12px 16px;
    text-align: left;
    display: block;
    text-decoration: none;
    background: 0 0;
    color: #333;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color .2s, color .2s;
}

.account-menu a.active {
    background-color: #00897b;
    color: #fff;
}

.account-menu a:hover:not(.active) {
    color: #000;
    background-color: #f1f3f4;
}

.account-menu a.logout-button {
    color: #dc3545;
    margin-top: 10px;
}

.account-menu a.logout-button:hover {
    background-color: #f8d7da;
}

.account-content {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.account-content .account-title {
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 25px;
    color: #202124;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

/* --- ფორმები --- */

.auth-container {
    max-width: 550px;
    margin: 60px auto;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
    padding: 40px;
    border-radius: 12px;
}

.auth-title {
    color: #202124;
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.auth-form input[type=email],
.auth-form input[type=password],
.auth-form input[type=tel],
.auth-form input[type=text],
.auth-form select,
.item-form input[type=email],
.item-form input[type=text],
.item-form select,
.password-change-form input[type=password],
.profile-form input[type=email],
.profile-form input[type=text] {
    width: 100%;
    padding: 0 15px;
    font-size: 16px;
    border-radius: 8px;
    transition: border-color .3s, box-shadow .3s;
    margin-bottom: 15px;
    height: 48px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    color: #333;
}

.auth-form textarea,
.item-form textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    transition: border-color .3s, box-shadow .3s;
    margin-bottom: 15px;
    min-height: 100px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    color: #333;
}

.auth-form input:focus,
.auth-form select:focus,
.auth-form textarea:focus,
.item-form input:focus,
.item-form select:focus,
.item-form textarea:focus,
.password-change-form input:focus,
.profile-form input:focus,
.search-input:focus,
.support-chat-form-container input[type=text]:focus,
.support-chat-form-container textarea:focus {
    border-color: #00897b;
    box-shadow: 0 0 0 3px rgba(0, 137, 123, .15);
    outline: 0;
}

.auth-form button[type=submit] {
    background-color: #00897b;
    width: 100%;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
    padding: 12px 24px;
    transition: background-color .2s;
    cursor: pointer;
}

.auth-form button[type=submit]:hover {
    background-color: #00695c;
}

.item-form input[type=file] {
    color: #333;
    width: 100%;
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 5px;
    height: 48px;
    line-height: 36px;
    font-size: 15px;
}

.item-form input[type=file]::-webkit-file-upload-button {
    background-color: #00897b;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    margin-right: 15px;
    transition: background-color .2s;
    height: 36px;
}

.item-form input[type=file]::-webkit-file-upload-button:hover {
    background-color: #00695c;
}

.auth-form label {
    display: block;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.birthdate-container {
    display: flex;
    gap: 10px;
}

.birthdate-container select {
    flex: 1;
}

.avatar-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0 25px;
}

.avatar-container input[type=radio] {
    display: none !important;
}

.avatar-container .avatar-choice {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid #e0e0e0;
    transition: border-color .2s;
}

.avatar-container .avatar-choice:hover {
    border-color: silver;
}

.avatar-container input[type=radio]:checked+.avatar-choice {
    border-color: #00897b;
}

.auth-form .forgot-password-link a,
.auth-form p a,
.contact-prompt .contact-link {
    color: #00897b !important;
    text-decoration: none;
    font-weight: 600;
}

.auth-form .forgot-password-link a:hover,
.auth-form p a:hover,
.contact-prompt .contact-link:hover {
    text-decoration: underline;
}

/* --- განცხადებების ბადე (დაბურული ფონით) --- */

.main-content-section {
    margin: 40px 0;
    padding: 0;
    background-color: transparent;
    border: none;
    text-align: left;
}

.items-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    color: #333;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .1);
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    overflow: hidden;
    background-color: #e9ecef;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.product-image-background {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    filter: blur(20px) brightness(0.95);
    transform: scale(1.1);
    z-index: 1;
}

.product-image-foreground {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .3s ease, opacity .15s ease;
}

.product-card:hover .product-image-foreground {
    transform: scale(1.05);
}

.product-image-wrapper .status-badge {
    z-index: 4;
    /* ბეიჯი ყოველთვის ზემოდან უნდა იყოს */
}

.product-card-content {
    padding: 15px;
    border-top: 1px solid #f0f0f0;
}

/* ▼▼▼ SNIPER: START - სათაურის ტექსტის გადმოსვლის პრობლემის მოგვარება ▼▼▼ */
.product-title {
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
    color: #333;
    height: 42px;
    /* ვაფიქსირებთ სიმაღლეს */
    overflow: hidden;
    /* ვმალავთ რაც არ ეტევა */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* ვზღუდავთ 2 ხაზამდე */
    -webkit-box-orient: vertical;
    padding: 0 5px;
    /* ვამატებთ მცირე დაშორებას გვერდებიდან */
}

/* ▲▲▲ SNIPER: END - ცვლილება დასრულებულია ▲▲▲ */


/* --- ზოგადი გვერდები (About, Contact) --- */

.about-us-container {
    max-width: 900px;
    margin: 60px auto;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.about-us-container h1 {
    text-align: center;
    color: #202124;
    margin-top: 0;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 700;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.story-section {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e0e0e0;
}

.story-section:last-of-type {
    border-bottom: none;
    margin-bottom: 20px;
}

.story-section.reverse {
    flex-direction: row-reverse;
}

.story-section .text-content {
    flex: 1;
}

.story-section .text-content h2 {
    color: #202124;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
}

.story-section .text-content p {
    line-height: 1.7;
    color: #555;
    font-size: 16px;
    margin-bottom: 15px;
}

.story-section .image-content {
    flex-basis: 300px;
}

.story-section .image-content img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.contact-prompt {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.page-box {
    max-width: 800px;
    margin: 60px auto;
    border: 1px solid #e0e0e0;
    padding: 40px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.page-box .page-title {
    color: #202124;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 17px;
}

.contact-item i {
    font-size: 22px;
    color: #00897b;
    width: 30px;
    text-align: center;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

/* --- ძებნა და ფილტრაცია --- */

.search-container {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.search-form {
    gap: 15px;
}

.search-input-wrapper {
    position: relative;
    flex-grow: 1;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.search-input {
    width: 100%;
    height: 48px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 0 15px 0 40px;
    font-size: 16px;
    transition: border-color .3s, box-shadow .3s;
}

.filter-btn,
.search-btn {
    height: 48px;
    padding: 0 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color .2s;
    white-space: nowrap;
}

.filter-btn {
    color: #5f6368;
    border: 1px solid #dcdcdc;
    background-color: #fff;
}

.search-btn {
    background-color: #00897b;
    color: #fff;
}

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

.dropdown-arrow {
    transition: transform .2s;
    margin-left: 5px;
}

.filter-wrapper {
    position: relative;
}

.filter-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    right: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    z-index: 100;
    min-width: 220px;
    max-height: 300px;
    overflow-y: auto;
    padding: 5px 0;
    background-color: #fff;
}

.filter-dropdown.show {
    display: block;
}

.filter-dropdown a.category-option {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

/* ▼▼▼ [დამატებული კოდი] დესკტოპის ჩამოსაშლელი მენიუს სტილები ▼▼▼ */
.filter-dropdown a.category-option-desktop {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: background-color 0.2s;
}

.filter-dropdown a.category-option-desktop:hover {
    background-color: #f1f3f4;
    cursor: pointer;
}

/* ▲▲▲ [კოდის დასასრული] ▲▲▲ */


.no-results-message {
    text-align: center;
    padding: 50px 20px;
    color: #666;
    font-size: 18px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin: 30px 0;
    background-color: #fff;
}

.section-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.section-header h2 {
    margin: 0;
    font-size: 24px;
    color: #202124;
}

.section-header .view-all-link {
    color: #00897b;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

/* --- Wishlist & Item Detail --- */

.wishlist-header {
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.wishlist-header h1 {
    margin: 0;
}

.wishlist-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wishlist-item {
    display: flex;
    gap: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    overflow: hidden;
}

.wishlist-item-images {
    flex: 0 0 150px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-content: flex-start;
}

.wishlist-item-images img {
    width: calc(50% - 2.5px);
    height: auto;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid #eee;
}

.wishlist-item-images img:first-child {
    width: 100%;
}

.wishlist-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wishlist-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.wishlist-item-header h3 {
    margin: 0;
    font-size: 1.2em;
}

.wishlist-item-category {
    background-color: #eee;
    color: #555;
    padding: 3px 8px;
    border-radius: 15px;
    font-size: .8em;
    white-space: nowrap;
}

.wishlist-item-description {
    margin-bottom: 15px;
    color: #333;
    flex-grow: 1;
}

.wishlist-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .9em;
    color: #777;
}

.wishlist-item-delete {
    color: #d9534f;
    font-weight: 700;
    text-decoration: none;
}

.wishlist-item-delete:hover {
    text-decoration: underline;
}

.button-primary {
    background-color: #007bff;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color .3s;
    text-decoration: none;
}

.button-primary:hover {
    background-color: #0056b3;
}

.item-detail-container {
    display: flex;
    gap: 40px;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.item-detail-left {
    flex: 0 0 50%;
    max-width: 50%;
}

.item-detail-right {
    flex: 1;
    /* ▼▼▼ SNIPER: START - Flexbox-ის გაწელვის პრობლემის ფიქსი ▼▼▼ */
    min-width: 0;
    /* ეს წესი ხელს უშლის სვეტის გაწელვას და layout-ის დარღვევას */
    /* ▲▲▲ SNIPER: END - Flexbox-ის გაწელვის პრობლემის ფიქსი ▲▲▲ */
}

.main-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

.main-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 3px;
    cursor: pointer;
    transition: border-color .2s;
    background-color: #f8f9fa;
    overflow: hidden;
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border-color: #00897b;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.item-detail-right h1 {
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.item-meta-info {
    display: flex;
    gap: 20px;
    font-size: .9em;
    color: #666;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.item-author-info {
    margin-bottom: 20px;
}

.item-author-info a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
}

.item-author-info a:hover {
    color: #00897b;
}

.item-specs {
    font-size: 1.1em;
    margin-bottom: 25px;
}

.item-specs p {
    margin: 5px 0;
}

.item-description h3 {
    margin-bottom: 10px;
    font-size: 1.3em;
}

.item-description p {
    line-height: 1.7;
    color: #555;
}

/* --- დამხმარე კლასები --- */

.link-danger {
    color: #dc3545;
    font-weight: 600;
    transition: color .2s;
    text-decoration: none;
}

.link-danger:hover {
    color: #c82333;
    text-decoration: none;
}

/* --- Support Chat --- */

.support-chat-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #00897b;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
    z-index: 998;
    transition: background-color .3s, transform .3s;
}

.support-chat-btn:hover {
    background-color: #00695c;
    transform: scale(1.05);
}

.support-chat-popup {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 350px;
    max-width: calc(100% - 40px);
    max-height: 70vh;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .2);
    z-index: 999;
    flex-direction: column;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}

.support-chat-popup.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.support-chat-header {
    padding: 12px 18px;
    background-color: #00897b;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-chat-header h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.support-chat-close-btn {
    background: 0 0;
    border: none;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    opacity: .8;
    transition: opacity .2s;
}

.support-chat-close-btn:hover {
    opacity: 1;
}

.support-chat-form-container {
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.support-chat-form-container label {
    margin-bottom: 3px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.support-chat-form-container input[type=text],
.support-chat-form-container textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: border-color .3s, box-shadow .3s;
}

.support-chat-form-container textarea {
    min-height: 100px;
}

.support-chat-form-container .btn {
    background-color: #00897b;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-top: 5px;
    font-weight: 700;
    border-radius: 8px;
    transition: background-color .2s;
}

.support-form-response {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
}

.support-form-response h5 {
    color: #202124;
    font-size: 18px;
}

.support-form-response p {
    color: #5f6368;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
}

/* --- Responsive Media Queries --- */

@media (max-width:1800px) {
    .items-container {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    }
}

@media (max-width:1400px) {
    .items-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width:1200px) {
    .items-container {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width:992px) {
    .items-container {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }

    .search-form {
        flex-direction: column;
        align-items: stretch
    }

    .navbar-content-wrapper {
        padding: 0 15px
    }

    .nav-left .nav-link,
    .nav-right {
        display: none
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: auto
    }
}

@media (max-width:768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px
    }

    .about-us-container,
    .auth-container,
    .hero-section,
    .page-box,
    .search-container {
        border-radius: 0;
        border-left: none;
        border-right: none;
        margin: 20px 0;
        padding-left: 15px;
        padding-right: 15px
    }

    .about-us-container,
    .auth-container,
    .page-box {
        margin: 20px 0
    }

    .about-us-container h1,
    .auth-title,
    .page-box .page-title {
        font-size: 24px
    }

    .account-page-container {
        flex-direction: column;
        padding: 0;
        gap: 15px;
        margin: 20px auto
    }

    .account-sidebar {
        width: 100%;
        padding: 20px
    }

    .account-sidebar .profile-box {
        flex-direction: column;
        text-align: center
    }

    .items-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .hero-title {
        font-size: 36px
    }

    .story-section {
        flex-direction: column !important;
        gap: 20px
    }
}

@media (max-width:480px) {

    .about-us-container,
    .page-box {
        padding: 20px 15px
    }

    .about-us-container h1,
    .auth-title,
    .page-box .page-title {
        font-size: 22px
    }

    .items-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 28px
    }

    .hero-buttons {
        flex-direction: column
    }

    .support-chat-popup {
        width: auto;
        left: 15px;
        right: 15px;
        bottom: 85px;
        max-width: none;
        max-height: 80vh
    }

    .support-chat-btn {
        right: 15px;
        bottom: 15px
    }
}

/* =================================================================
    მთავარი გვერდის მობილური ოპტიმიზაცია (დახვეწილი დიზაინი)
================================================================= */

@media (max-width: 768px) {

    /* --- საძიებო ბლოკი --- */
    .search-container {
        padding: 15px;
        margin-top: 15px;
        margin-bottom: 20px;
    }

    .search-input,
    .filter-btn,
    .search-btn {
        height: 44px;
        /* ფორმის ელემენტების სიმაღლის შემცირება */
        font-size: 14px;
        padding: 0 16px;
    }

    .search-input {
        padding-left: 35px;
    }

    .search-icon {
        left: 12px;
    }


    /* --- სექციის სათაურები --- */
    .section-header {
        padding-bottom: 8px;
        margin-bottom: 15px;
    }

    .section-header h2 {
        font-size: 18px;
        /* სათაურის ზომის შემცირება */
    }


    /* --- განცხადებების ბადე --- */
    .items-container {
        /* ვაიძულებთ, რომ მობილურზე ყოველთვის 2 სვეტი იყოს */
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        /* ვამცირებთ დაშორებას ბარათებს შორის */
    }


    /* --- განცხადების ბარათები (Product Card) --- */
    .product-card {
        border-radius: 8px;
        /* ნაკლები მომრგვალება */
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
        /* მსუბუქი ჩრდილი */
    }

    .product-card:hover {
        transform: none;
        /* ვთიშავთ hover ანიმაციას მობილურზე */
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    }

    .product-card-content {
        padding: 10px;
        /* ვამცირებთ შიდა დაშორებას */
    }

    /* ▼▼▼ SNIPER: START - სათაურის ტექსტის მობილური ვერსიის შესწორება ▼▼▼ */
    .product-title {
        font-size: 14px;
        font-weight: 500;
        padding: 5px 0;
        margin: 0;
        white-space: normal;
        min-height: 42px;
        /* სიმაღლის შენარჩუნება */
        height: 42px;
        /* ფიქსირებული სიმაღლე */
        overflow: hidden;
        /* გადმოსული ტექსტის დამალვა */
        text-align: left;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        /* ვზღუდავთ 2 ხაზამდე */
        -webkit-box-orient: vertical;
    }

    /* ▲▲▲ SNIPER: END - ცვლილება დასრულებულია ▲▲▲ */

    .product-card .actions {
        margin-top: 8px;
        gap: 6px;
    }

    .btn-action {
        padding: 6px 5px;
        font-size: 12px;
    }
}


/* =================================================================
    მთავარი გვერდი: განახლებული ძებნა და კატეგორიები
================================================================= */

/* --- განახლებული საძიებო ველი --- */
.search-container {
    border: none;
    box-shadow: none;
    background-color: transparent;
    padding: 20px 0;
    margin: 15px auto;
}

.search-form-wrapper {
    position: relative;
    width: 100%;
}

.search-form-wrapper .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 18px;
}

.search-input.refined {
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    /* სრულიად მომრგვალებული */
    height: 52px;
    padding: 0 25px 0 55px;
    /* დაშორება იკონისთვის */
    font-size: 16px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.search-input.refined:focus {
    border-color: #00897B;
    /* თქვენი ბრენდის ფერი */
    box-shadow: 0 0 0 3px rgba(0, 137, 123, 0.15);
}

/* --- კატეგორიების სექცია --- */
.categories-section {
    padding: 20px 0;
    margin-bottom: 20px;
}

.categories-section h2 {
    font-size: 24px;
    color: #202124;
    margin-bottom: 20px;
    text-align: left;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 10px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    text-decoration: none;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 120px;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    color: #00897B;
}

.category-icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: #00897B;
}

.category-card span {
    font-size: 14px;
    font-weight: 500;
}

/* მობილური ადაპტაცია */
@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 10px;
    }

    .category-card {
        padding: 15px 5px;
        min-height: 100px;
    }

    .category-icon {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .category-card span {
        font-size: 12px;
    }
}

/* =================================================================
    მთავარი გვერდი: ერთიანი საძიებო პანელი
================================================================= */

/* --- ერთიანი პანელის კონტეინერი --- */
.unified-search-form {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    /* სრულიად მომრგვალებული ფორმა */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 6px;
    margin-bottom: 30px;
}

/* --- საძიებო ველი --- */
.unified-search-form .search-input-wrapper {
    flex-grow: 1;
    /* იკავებს მაქსიმალურ თავისუფალ ადგილს */
    position: relative;
}

.unified-search-form .search-input {
    border: none;
    outline: none;
    width: 100%;
    height: 48px;
    padding: 0 20px 0 50px;
    background-color: transparent;
    font-size: 16px;
}

.unified-search-form .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

/* --- კატეგორიების ფილტრი --- */
.unified-search-form .filter-wrapper {
    position: relative;
    border-left: 1px solid #e0e0e0;
    /* გამყოფი ხაზი */
    padding-left: 10px;
    margin-left: 10px;
}

.unified-search-form .filter-btn {
    background-color: transparent;
    border: none;
    height: 48px;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.unified-search-form .filter-btn .dropdown-arrow {
    transition: transform 0.2s;
}

.unified-search-form .filter-btn.open .dropdown-arrow {
    transform: rotate(180deg);
}

.unified-search-form .filter-dropdown {
    top: 115%;
    /* პოზიციის კორექცია */
    right: auto;
    left: 0;
    width: 250px;
}


/* --- ძებნის ღილაკი --- */
.unified-search-form .search-btn {
    height: 48px;
    width: 48px;
    /* ვაკეთებთ კვადრატულს */
    border-radius: 50%;
    /* ვამრგვალებთ სრულად */
    padding: 0;
    margin-left: 6px;
    flex-shrink: 0;
    /* ხელს უშლის ღილაკის შეკუმშვას */
}

/* --- მობილური ადაპტაცია --- */
@media (max-width: 768px) {
    .unified-search-form {
        flex-direction: column;
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        gap: 12px;
        /* დაშორება ელემენტებს შორის */
    }

    .unified-search-form .search-input-wrapper,
    .unified-search-form .filter-wrapper,
    .unified-search-form .search-btn {
        width: 100%;
    }

    .unified-search-form .search-input {
        background-color: #fff;
        border: 1px solid #e0e0e0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .unified-search-form .filter-wrapper {
        margin: 0;
        padding: 0;
        border: none;
    }

    .unified-search-form .filter-btn {
        width: 100%;
        justify-content: space-between;
        background-color: #fff;
        border: 1px solid #e0e0e0;
        border-radius: 50px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        height: 52px;
    }

    .unified-search-form .search-btn {
        width: 100%;
        border-radius: 50px;
        height: 52px;
    }
}

/* =================================================================
    კატეგორიების ინტეგრაცია
================================================================= */

/* --- კატეგორიების სლაიდერი მთავარ გვერდზე --- */
.categories-section.horizontal-scroll .categories-grid {
    display: flex;
    /* ვცვლით Grid-ს Flex-ით ჰორიზონტალური განლაგებისთვის */
    overflow-x: auto;
    /* ვრთავთ ჰორიზონტალურ სქროლვას */
    padding-bottom: 15px;
    /* ვამატებთ ადგილს სქროლბარისთვის (რომელსაც დავმალავთ) */
    scroll-snap-type: x mandatory;
    /* სქროლვისას ელემენტებზე "მიწებების" ეფექტი */
}

/* ვმალავთ სქროლბარს ვიზუალურად, მაგრამ ვტოვებთ ფუნქციონალს */
.categories-grid::-webkit-scrollbar {
    display: none;
}

.categories-grid {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.horizontal-scroll .category-card {
    flex: 0 0 120px;
    /* ელემენტი აღარ იკუმშება და აქვს ფიქსირებული სიგანე */
    scroll-snap-align: start;
    /* სქროლვისას სწორდება დასაწყისში */
}

/* --- კატეგორიების ჩამოსაშლელი მენიუ ნავიგაციაში --- */
.navbar .nav-item.dropdown {
    position: relative;
}

.navbar .nav-item .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 100;
    border-radius: 8px;
    padding: 5px 0;
    margin-top: 10px;
    /* დაშორება ნავიგაციისგან */
}

.navbar .nav-item .dropdown-menu a {
    color: #333;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    font-weight: 500;
}

.navbar .nav-item .dropdown-menu a:hover {
    background-color: #f1f3f4;
}

/* ვამატებთ ანიმაციას და ვაჩენთ მენიუს hover-ზე */
.navbar .nav-item:hover .dropdown-menu {
    display: block;
}

.navbar .nav-link .fa-chevron-down {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.2s ease-in-out;
}

.navbar .nav-item:hover .nav-link .fa-chevron-down {
    transform: rotate(180deg);
}

/* =================================================================
    მთავარი გვერდი: კატეგორიების სექცია
================================================================= */

.categories-section {
    margin-bottom: 30px;
}

.categories-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    /* ეკრანის ზომის ცვლილებისას გადაიტანს ახალ ხაზზე */
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
    flex-grow: 1;
    /* იკავებს თანაბარ ადგილს */
    text-align: center;
}

.category-item:hover {
    background-color: #f0f7f6;
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e0f2f1;
    /* ღია მწვანე ფონი */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    color: #00796B;
    /* მუქი მწვანე იკონი */
}

.category-item span {
    font-size: 14px;
    font-weight: 500;
}

/* --- მობილური ადაპტაცია --- */
@media (max-width: 768px) {
    .categories-container {
        flex-wrap: nowrap;
        /* ვთიშავთ ხაზის გაწყვეტას */
        overflow-x: auto;
        /* ვრთავთ ჰორიზონტალურ სქროლვას */
        padding-bottom: 15px;
        justify-content: flex-start;
        /* ვიწყებთ მარცხნიდან */
        scroll-snap-type: x mandatory;
    }

    /* ვმალავთ სქროლბარს */
    .categories-container::-webkit-scrollbar {
        display: none;
    }

    .categories-container {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .category-item {
        flex: 0 0 90px;
        /* ფიქსირებული სიგანე, რომ არ შეიკუმშოს */
        scroll-snap-align: start;
    }

    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .category-item span {
        font-size: 12px;
    }
}

/* MODAL IMAGE ROUNDING */
.modal-item-card img {
    border-radius: 8px;
}

.lightbox-thumbnail-image {
    border-radius: 8px;
}

/* =================================================================
    ბარათის სლაიდერის სტილები
================================================================= */

.card-slider-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
    opacity: 0;
    /* დამალულია по умолчанию */
    transition: opacity 0.25s ease-in-out;
    pointer-events: none;
    /* არ რეაგირებს კლიკზე, სანამ არ გამოჩნდება */
    z-index: 3;
}

.product-card:hover .card-slider-nav {
    opacity: 1;
    /* ჩნდება ბარათზე მაუსის მიტანისას */
    pointer-events: all;
    /* აქტიური ხდება კლიკისთვის */
}

.slider-arrow {
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #333;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease, background-color 0.2s ease;
}

.slider-arrow:hover {
    background-color: #fff;
}

.slider-arrow:active {
    transform: scale(0.9);
}

/* === PAGE LOADER STYLES === */
body.page-loading {
    overflow: hidden;
    /* ხელს უშლის სქროლვას, სანამ გვერდი იტვირთება */
}

#page-loader {
    position: fixed;
    /* რჩება ერთ ადგილას სქროლვისას */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    /* თეთრი ფონი, რომელიც ფარავს ყველაფერს */
    z-index: 99999;
    /* ყველაზე მაღლა დგას, რომ სხვა ელემენტები გადაფაროს */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    /* ანიმაციური გაქრობისთვის */
}

#page-loader .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    /* სპინერის რგოლის ფერი */
    border-top-color: #0D9974;
    /* სპინერის მოძრავი ნაწილის ფერი (თქვენი საიტის ფერი) */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    /* ანიმაცია */
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* =================================================================
    SKELETON LOADER STYLES
================================================================= */

/* [SNIPER] START: ცვლილება "გაელვების" ასარიდებლად */
/* ვმალავთ მთავარ კონტენტს თავიდანვე, რათა არ გამოჩნდეს ქართული ტექსტი */
#main-content {
    visibility: hidden;
    transition: none;
    /* ვთიშავთ პოტენციურ ანიმაციებს */
}

/* [SNIPER] END: ცვლილება */

.skeleton-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.skeleton-block {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: 4px;
    margin-bottom: 10px;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.skeleton-text {
    height: 20px;
}

.skeleton-button {
    height: 40px;
    width: 120px;
}

.skeleton-w-70 {
    width: 70%;
}

.skeleton-w-50 {
    width: 50%;
    margin: 0 auto;
}

.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.skeleton-card .skeleton-image {
    width: 100%;
    aspect-ratio: 1/1;
}

.skeleton-card .skeleton-text {
    margin-top: 15px;
}


/* START: [SNIPER FIX] მობილურზე ჩატის მენიუს არასწორი გამოჩენის შესწორება */
.mobile-header-icons .icon-dropdown {
    display: none !important;
}

/* END: [SNIPER FIX] */