/* ==========================================================================
   1. RESET & VARIABLES (SIFIRLAMA VƏ DƏYİŞƏNLƏR)
   ========================================================================== */
:root {
    --primary-orange: #ff3d00;
    --gold-color: #ffca28;
    --dark-bg: #1f2937;
    --light-bg: #f4f4f4;
    --card-bg: #e6e6e6;
    --input-bg: #f0f2f5;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --text-main: #333333;
    --text-light: #6b7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

body {
    background-color: var(--light-bg);
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* --- DÜZƏLİŞ BURADADIR: Yalnız Remix Icon-lara təsir etsin --- */
i[class^="ri-"] {
    font-weight: normal !important;
    -webkit-text-stroke: 0;
}

/* FontAwesome ikonlarına toxunmuruq, onlar özləri tənzimlənir */

.container {
    max-width: 1275px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==========================================================================
   2. HEADER & NAVIGATION (HEADER VƏ MENYU)
   ========================================================================== */
.top-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left a {
    margin-right: 20px;
    color: var(--text-light);
    font-weight: 500;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-small {
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    border: none;
}

.btn-orange {
    background: linear-gradient(135deg, #ff6a00 0%, #ff0000 100%);
    color: white;
}

.btn-dark {
    background: var(--dark-bg);
    color: white;
}

.main-header {
    background: var(--white);
    padding: 25px 0;
    transition: 0.3s;
    position: relative;
    z-index: 1001;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.desktop-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
    display: flex;
    align-items: center;
}

.search-box {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    background: #f9f9f9;
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-cart-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 24px;
    margin-right: 10px;
    transition: 0.3s;
}

.header-cart-box:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-orange);
    color: white;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
}

.balance-box {
    border: 1px dashed var(--primary-orange);
    padding: 10px 20px;
    border-radius: 6px;
    color: var(--primary-orange);
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: #fff5f2;
    white-space: nowrap;
}

.btn-orders {
    background: var(--dark-bg);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    white-space: nowrap;
}

.navbar {
    background: var(--white);
    border-bottom: 1px solid #eee;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.nav-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.cat-dropdown-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin-right: 30px;
    z-index: 1002;
}

.cat-btn {
    background: linear-gradient(135deg, #ff6a00 0%, #ff0000 100%);
    color: white;
    height: 50px;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.dropdown-menu {
    position: absolute;
    top: 58px;
    left: 0;
    width: 200px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    max-height: 400px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.cat-dropdown-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    width: 100%;
    border-bottom: 1px solid #f9f9f9;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
    width: 100%;
    transition: 0.2s;
}

.dropdown-menu li a:hover {
    background: #fff5f2;
    color: var(--primary-orange);
    padding-left: 25px;
}

.dropdown-menu li a i {
    width: 20px;
    text-align: center;
    color: #999;
}

.dropdown-menu li a:hover i {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    gap: 30px;
    height: 100%;
    align-items: center;
}

.nav-links li a {
    font-weight: 600;
    font-size: 15px;
    color: #444;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
}

.nav-links li a:hover {
    color: #ff3d00;
    border-bottom: 2px solid #ff3d00;
}

.mobile-elements,
.mobile-bottom-nav,
.menu-overlay,
.mobile-sidebar {
    display: none;
}

/* ==========================================================================
   3. HERO SLIDER
   ========================================================================== */
.hero-grid {
    display: grid;
    grid-template-columns: 923px 298px;
    gap: 20px;
    height: 333px;
    margin-bottom: 30px;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 5px;
    cursor: grab;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.slider-wrapper:active {
    cursor: grabbing;
}

.slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    will-change: transform;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    pointer-events: none;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 5px;
    opacity: 1;
}

.side-banners {
    display: flex;
    flex-direction: column;
    gap: 13px;
    height: 100%;
}

.side-img-container {
    width: 100%;
    height: 160px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.side-img-container img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.4s ease;
}

.side-img-container:hover img {
    transform: scale(1.08);
}

/* ==========================================================================
   4. KATEQORIYALAR & MƏHSULLAR (INDEX SƏHİFƏSİ)
   ========================================================================== */
.content-section {
    flex-grow: 1;
}

.cat-bar {
    background: linear-gradient(135deg, #ff6a00 0%, #ff0000 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cat-title {
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.view-all {
    font-size: 13px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 600;
}

.cat-content {
    background: var(--light-bg);
    padding: 25px;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.game-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 10px;
    height: 100px;
    padding: 15px;
    transition: all 0.4s;
    overflow: hidden;
    border: 1px solid transparent;
}

.game-card:hover {
    background: linear-gradient(227deg, #ffffff 0%, #a74519 100%);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 61, 0, 0.3);
    z-index: 2;
}

.game-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* --- POPULYAR MƏHSUL TABLARI --- */
.prod-tabs {
    display: flex;
    background: #ff6600;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    margin-top: 30px;
}

.p-tab {
    flex: 1;
    padding: 15px 10px;
    background: transparent;
    border: none;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.p-tab:last-child {
    border-right: none;
}

.p-tab:hover {
    background: rgba(255, 255, 255, 0.1);
}

.p-tab.active {
    background: #e65100;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1);
}

.prod-content {
    display: none;
    background: #ffffff;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    margin-bottom: 30px;
    animation: fadeIn 0.4s;
}

.prod-content.active-content {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.prod-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    transition: 0.3s;
    cursor: pointer;
}

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

.prod-img {
    width: 100%;
    aspect-ratio: 2/3;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.prod-title {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
    line-height: 1.4;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Məhsul Qiyməti və Sifariş Düyməsi */
.prod-prices {
    position: relative;
    height: 35px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 5px;
}

.price-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease-in-out;
    position: absolute;
    left: 0;
}

.price-current {
    color: #ffca28;
    font-weight: 800;
    font-size: 15px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 12px;
}

.order-text {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #ff3d00;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    border-radius: 6px;
}

.order-text i {
    font-size: 16px;
}

.prod-card:hover .price-box {
    left: -100%;
    opacity: 0;
}

.prod-card:hover .order-text {
    left: 0;
}

/* ==========================================================================
   5. FOOTER & MODALLAR
   ========================================================================== */
.features-section {
    padding: 40px 0;
    margin-top: 20px;
    background-color: #fcfcfc;
    border-top: 1px solid #eee;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-item {
    background-color: var(--light-bg);
    padding: 30px 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon-box {
    width: 65px;
    height: 65px;
    border: 2px solid #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.feature-icon-box i {
    font-size: 27px;
    color: #ff6a00;
    transition: transform 0.5s ease;
}

.feature-item:hover .feature-icon-box i {
    transform: rotate(360deg);
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #ff6a00;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

footer {
    background: var(--white);
    margin-top: 0px;
    padding-top: 50px;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-orange);
    padding-left: 15px;
    font-weight: 700;
    color: var(--text-main);
}

.footer-links a {
    color: #555;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #888;
}

.socials i {
    font-size: 18px;
    margin-left: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.socials i:hover {
    color: var(--primary-orange);
    transform: rotate(360deg);
}

/* CHAT WIDGET */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff6a00 0%, #ff0000 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(255, 61, 0, 0.4);
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chat-widget:hover {
    transform: scale(1.15);
}

.chat-popup {
    display: none;
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 320px;
    background: #f0f2f5;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 9998;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cp-header {
    background: linear-gradient(90deg, #ff6a00, #ff0000);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.cp-icon {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cp-body {
    padding: 20px;
}

.cp-msg {
    background: #e4e6eb;
    padding: 12px 15px;
    border-radius: 12px 12px 12px 0;
    margin-bottom: 10px;
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    position: relative;
    margin-left: 10px;
}

.cp-msg::before {
    content: '\f18a';
    font-family: "Font Awesome 6 Free";
    position: absolute;
    left: -25px;
    top: 0;
    color: #ccc;
    font-size: 16px;
}

.cp-actions {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
}

.btn-whatsapp:hover {
    background: #20bd5a;
}

/* MODALLAR */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    position: relative;
    animation: fadeIn 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #888;
    line-height: 1;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid transparent;
    background-color: var(--input-bg);
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: 0.3s;
    display: block;
}

.form-group input:focus {
    background-color: #fff;
    border-color: var(--primary-orange);
    outline: none;
}

.btn-full {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-submit {
    background: var(--primary-orange);
    color: white;
}

.btn-submit:hover {
    opacity: 0.9;
}

.btn-google {
    background: white;
    border: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: #555;
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.modal-footer a {
    color: var(--primary-orange);
    font-weight: 600;
    cursor: pointer;
}

/* ==========================================================================
   6. ƏLAQƏ SƏHİFƏSİ (AYRI KARTLAR & ANIMASIYA)
   ========================================================================== */
.contact-full-header {
    width: 100%;
    background: linear-gradient(90deg, #ff6a00 0%, #ff3d00 100%);
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.cf-card {
    background: #e9e9e9;
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.3s;
}

.cf-card:hover {
    transform: translateY(-5px);
    background: #e0e0e0;
}

.cf-icon-box {
    width: 75px;
    height: 75px;
    border: 1px solid #ff6a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    background: transparent;
    font-size: 32px;
    color: #ff6a00;
    transition: 0.5s ease;
}

.cf-card:hover .cf-icon-box {
    transform: rotate(360deg);
    background: #ff6a00;
    color: white;
}

.cf-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.cf-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contact-section-head {
    width: 100%;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.contact-section-head h2 {
    font-size: 26px;
    font-weight: 800;
    color: #222;
    margin: 0;
}

.contact-full-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.cf-form-side form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cf-input-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cf-input {
    width: 100%;
    background: #e9e9e9;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 15px 20px;
    font-size: 14px;
    color: #555;
    outline: none;
    transition: 0.3s;
}

.cf-input:focus {
    background: #fff;
    border-color: #ff6a00;
}

.cf-textarea {
    height: 180px;
    resize: none;
}

.cf-btn-container {
    display: flex;
    justify-content: flex-end;
}

.cf-btn-send {
    background: #32c943;
    color: white;
    padding: 14px 50px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.cf-btn-send:hover {
    background: #28a735;
    transform: translateY(-2px);
}

.cf-map-side {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: 8px;
    overflow: hidden;
    background: #e9e9e9;
}

/* ==========================================================================
   7. YARDIM SƏHİFƏSİ (FAQ)
   ========================================================================== */
.help-page-header {
    width: 100%;
    background: linear-gradient(90deg, #ff6a00 0%, #ff3d00 100%);
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 0;
}

.help-wrapper {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 0 0 10px 10px;
    min-height: 400px;
}

.help-main-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.help-main-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #ff9900;
    border-radius: 2px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    transition: 0.3s;
}

.faq-question:hover span {
    color: #ff6a00;
}

.faq-num {
    width: 30px;
    height: 30px;
    background: #555;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    margin-right: 15px;
    flex-shrink: 0;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex: 1;
}

.faq-arrow {
    color: #777;
    transition: 0.3s;
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
    color: #ff6a00;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding-left: 45px;
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.faq-answer p {
    margin-bottom: 10px;
}

.faq-answer .note {
    font-size: 13px;
    color: #777;
    font-style: italic;
    margin-top: 10px;
}

/* ==========================================================================
   8. STREAMER SƏHİFƏSİ (REAL 3D GLASS EFFECT)
   ========================================================================== */
.streamer-page-header {
    width: 100%;
    background: linear-gradient(90deg, #ff6a00 0%, #ff3d00 100%);
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 20px;
}

.streamer-tools {
    margin-bottom: 40px;
}

.s-search-box {
    position: relative;
    margin-bottom: 20px;
}

.s-search-box input {
    width: 100%;
    padding: 15px 20px 15px 45px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #f9f9f9;
    outline: none;
    transition: 0.3s;
}

.s-search-box input:focus {
    background: white;
    border-color: #ff6a00;
    box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.1);
}

.s-search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.alpha-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.alpha-btn {
    padding: 8px 12px;
    border: 1px solid #eee;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 600;
    color: #555;
}

.alpha-btn.active,
.alpha-btn:hover {
    background: #ff6a00;
    color: white;
    border-color: #ff6a00;
}

.streamer-grid-wrapper {
    position: relative;
    padding: 20px 0;
}

.bg-decoration-1 {
    position: absolute;
    top: 10%;
    left: -50px;
    width: 300px;
    height: 300px;
    background: #ff6a00;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.bg-decoration-2 {
    position: absolute;
    bottom: 10%;
    right: -50px;
    width: 300px;
    height: 300px;
    background: #ff3d00;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.streamer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.s-glass-card {
    position: relative;
    display: block;
    text-decoration: none;
    height: 100%;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out, background 0.3s, border 0.3s, box-shadow 0.3s;
    padding: 40px 20px;
    text-align: center;
}

.s-glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 106, 0, 0.2), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.s-content {
    transform: translateZ(40px);
    transition: 0.3s;
}

.s-avatar-box {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.s-avatar-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.s-glass-card:hover .s-avatar-box img {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.3);
}

.status-indicator {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.status-indicator.online {
    background: #28a745;
    box-shadow: 0 0 10px #28a745;
}

.status-indicator.offline {
    background: #dc3545;
}

.s-text-box h3 {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    margin-bottom: 5px;
    transition: 0.3s;
}

.s-text-box p {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    transition: 0.3s;
}

.s-glass-card:hover .s-text-box h3 {
    color: #ff3d00;
}

.s-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 18px;
    color: #ccc;
    transition: 0.3s;
}

.s-glass-card:hover .s-socials {
    color: #333;
}

.s-socials i:hover {
    color: #ff6a00;
    transform: scale(1.2);
}

/* ==========================================================================
   9. ÇƏKİLİŞLƏR SƏHİFƏSİ (SLIDER, MODAL & VALUE)
   ========================================================================== */
.draw-page-header {
    width: 100%;
    background: linear-gradient(90deg, #ff6a00 0%, #ff3d00 100%);
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 30px;
}

.draw-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.draw-tab {
    padding: 12px 30px;
    background: white;
    border: 1px solid #eee;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.draw-tab:hover {
    color: #ff6a00;
}

.draw-tab.active {
    background: #ff6a00;
    color: white;
    border-color: #ff6a00;
}

.draw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.draw-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.draw-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 106, 0, 0.15);
    border-color: #ffe0b2;
}

.draw-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #28a745;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 3px 8px rgba(40, 167, 69, 0.3);
}

.draw-status.ended {
    background: #666;
    box-shadow: none;
}

.draw-value-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: #333;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 5;
    border: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.draw-value-badge strong {
    color: #ff6a00;
}

.draw-img-box {
    width: 100%;
    height: 200px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.draw-img-box img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    transition: 0.4s;
}

.draw-card:hover .draw-img-box img {
    transform: scale(1.1) rotate(5deg);
}

.draw-slider-wrapper {
    width: 100%;
    height: 200px;
    position: relative;
    background: #fdfdfd;
    overflow: hidden;
}

.draw-slides-track {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease;
}

.draw-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.draw-slide img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.slide-tag {
    margin-top: 10px;
    font-size: 11px;
    background: #eee;
    padding: 2px 8px;
    border-radius: 4px;
    color: #555;
}

.ds-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 4;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: 0.3s;
}

.draw-card:hover .ds-btn {
    opacity: 1;
}

.ds-btn:hover {
    background: #ff6a00;
    color: white;
}

.ds-btn.prev {
    left: 10px;
}

.ds-btn.next {
    right: 10px;
}

.draw-content {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.draw-content h3 {
    font-size: 16px;
    font-weight: 800;
    color: #333;
    margin-bottom: 8px;
}

.draw-desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

.draw-progress-area {
    margin-bottom: 15px;
    text-align: left;
}

.dp-text {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #666;
    margin-bottom: 5px;
}

.dp-bar {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
}

.dp-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6a00, #ff9900);
    border-radius: 10px;
}

.draw-timer {
    font-size: 13px;
    color: #555;
    background: #f9f9f9;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px dashed #ddd;
}

.draw-timer i {
    color: #ff6a00;
    margin-right: 5px;
}

.draw-btn-group {
    margin-top: auto;
    display: flex;
    gap: 10px;
}

.btn-detail {
    flex: 1;
    padding: 10px;
    background: #f0f0f0;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-detail:hover {
    background: #e0e0e0;
    color: #000;
}

.btn-join {
    flex: 1.5;
    padding: 10px;
    background: #333;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-join:hover {
    background: #ff6a00;
    box-shadow: 0 5px 15px rgba(255, 106, 0, 0.3);
}

.btn-join.full-width {
    width: 100%;
    margin-top: 15px;
    padding: 15px;
    font-size: 16px;
}

.btn-join.disabled {
    background: #ddd;
    color: #999;
    cursor: not-allowed;
    box-shadow: none;
}

.draw-img-box.grayscale img {
    filter: grayscale(100%);
    opacity: 0.6;
}

/* MODAL */
.draw-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.draw-modal-content {
    background: white;
    width: 90%;
    max-width: 450px;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s;
}

.close-draw-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: 0.2s;
}

.close-draw-modal:hover {
    color: #333;
}

.dm-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.dm-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #333;
    margin: 0;
}

.dm-creator-box {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dm-label {
    font-size: 13px;
    color: #777;
    font-weight: 600;
}

.dm-creator-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dm-creator-info img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ff6a00;
}

.dm-creator-info span {
    font-weight: 700;
    color: #333;
    font-size: 14px;
}

.dm-users-box {
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.dm-users-header {
    background: #eee;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

.dm-user-list {
    max-height: 200px;
    overflow-y: auto;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dm-user-list::-webkit-scrollbar {
    width: 5px;
}

.dm-user-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 5px;
}

.dm-user-list li {
    padding: 12px 15px;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dm-user-list li:last-child {
    border-bottom: none;
}

.dm-user-list li i {
    color: #ccc;
    font-size: 12px;
}

/* ==========================================================================
   10. MOBIL UYĞUNLAŞMA (RESPONSIVE)
   ========================================================================== */
@media (max-width: 992px) {

    .top-bar,
    .navbar,
    .header-actions,
    .desktop-logo {
        display: none !important;
    }

    .mobile-elements,
    .mobile-bottom-nav {
        display: flex !important;
    }

    .main-header {
        padding: 10px 0px;
        background: #f3f4f6;
        position: sticky;
        top: 0;
        z-index: 1001;
    }

    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-top-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .mobile-left-group {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .mobile-burger {
        font-size: 26px;
        color: #333;
        cursor: pointer;
    }

    .mobile-logo-text {
        font-size: 22px;
        font-weight: 800;
        color: var(--text-main);
    }

    .mobile-logo-text span {
        color: var(--primary-orange);
    }

    .mobile-login-btn {
        width: 40px;
        height: 40px;
        background: #e5e7eb;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
    }

    .search-box {
        width: 100%;
    }

    .search-box input {
        background: #e5e7eb;
        border: none;
        padding: 12px 15px;
    }

    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        backdrop-filter: blur(5px);
    }

    .menu-overlay.active {
        display: block;
    }

    .mobile-sidebar {
        display: flex;
        position: fixed;
        left: -100%;
        top: 0;
        height: 100vh;
        width: 280px;
        background: #f5f5f5;
        flex-direction: column;
        padding: 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
        transition: 0.3s ease;
        z-index: 9999;
    }

    .mobile-sidebar.active {
        left: 0;
    }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 20px;
        background: transparent;
        border-bottom: 1px solid #ddd;
    }

    .sidebar-logo {
        font-size: 20px;
        font-weight: 800;
        color: var(--text-main);
    }

    .sidebar-logo span {
        color: var(--primary-orange);
    }

    .close-sidebar {
        font-size: 20px;
        color: #666;
        cursor: pointer;
    }

    .sidebar-links {
        width: 100%;
        padding-top: 10px;
    }

    .sidebar-links li {
        width: 100%;
        padding: 0 20px;
        margin-bottom: 5px;
    }

    .sidebar-links li a {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 15px;
        color: #555;
        padding: 12px 0;
        font-weight: 500;
    }

    .sidebar-links li a i {
        font-size: 18px;
        width: 25px;
        color: #777;
    }

    .sidebar-links li a.active-link {
        color: var(--primary-orange);
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        height: auto;
        gap: 15px;
        margin-bottom: 25px;
    }

    .slider-wrapper {
        height: 137px;
        width: 100%;
        min-height: 137px;
    }

    .slide img {
        object-fit: fill !important;
    }

    .side-banners {
        display: flex;
        flex-direction: row;
        gap: 10px;
        height: 113px;
        width: 100%;
    }

    .side-img-container {
        height: 100%;
        width: 50%;
    }

    .side-img-container img {
        object-fit: fill !important;
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .game-card {
        height: 80px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        padding: 0 10px;
    }

    .feature-item {
        padding: 15px 10px;
        min-height: 160px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col h4 {
        border-left: none;
        border-bottom: 3px solid var(--primary-orange);
        display: inline-block;
        padding-bottom: 5px;
        padding-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    body {
        padding-bottom: 80px;
    }

    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
        padding: 8px 0;
        justify-content: space-between;
        align-items: center;
        z-index: 9997;
        padding-left: 15px;
        padding-right: 15px;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 10px;
        color: #999;
        gap: 4px;
        text-align: center;
        width: 20%;
    }

    .mobile-nav-item i {
        font-size: 18px;
    }

    .mobile-nav-item.active {
        color: var(--primary-orange);
    }

    .mobile-nav-item.center-btn {
        position: relative;
        top: -20px;
    }

    .center-icon-circle {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #ff6a00 0%, #ff3d00 100%);
        border-radius: 50%;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        box-shadow: 0 4px 10px rgba(255, 188, 5, 0.4);
        border: 4px solid #fff;
    }

    /* Page Specific Mobile Fixes */
    .prod-tabs {
        overflow-x: auto;
        white-space: nowrap;
    }

    .p-tab {
        min-width: 140px;
    }

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

    .contact-cards-row {
        grid-template-columns: 1fr;
    }

    .contact-full-grid {
        grid-template-columns: 1fr;
    }

    .cf-input-group {
        grid-template-columns: 1fr;
    }

    .cf-map-side {
        min-height: 300px;
    }

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

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

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

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



/* =========================================
   21. HAQQIMIZDA SƏHİFƏSİ (SADƏ - ŞƏKİLDƏKİ KİMİ)
   ========================================= */

/* Narıncı Başlıq Zolağı */
.simple-about-header {
    width: 100%;
    background: linear-gradient(90deg, #ff6a00 0%, #ff3d00 100%);
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 20px;
    /* Başlıqla mətn arası məsafə */
}

/* Boz Mətn Qutusu */
.simple-about-content {
    background: #e6e6e6;
    /* Şəkildəki boz rəng */
    padding: 30px;
    border-radius: 6px;
    color: #333;
    font-size: 14px;
    line-height: 1.8;
    /* Sətirlər arası məsafə rahat oxunsun */
    font-weight: 500;
    text-align: justify;
    /* Mətni hər iki tərəfdən düzlə */
}

/* "Itemsatis.az" yazısı üçün narıncı rəng */
.orange-text {
    color: #ff9900;
    /* Şəkildəki sarımtıl-narıncı rəng */
    font-weight: 700;
}

/* Mobil Uyğunluq */
@media (max-width: 992px) {
    .simple-about-content {
        padding: 20px;
        font-size: 13px;
    }
}



/* =========================================
   22. XƏBƏRLƏR SƏHİFƏSİ
   ========================================= */

/* Başlıq */
.news-page-header {
    width: 100%;
    background: linear-gradient(90deg, #ff6a00 0%, #ff3d00 100%);
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 30px;
}

/* --- HERO NEWS (Böyük Kart) --- */
.news-hero-card {
    display: flex;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: 0.3s;
}

.news-hero-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.nh-img-box {
    flex: 1.5;
    /* Şəkil daha böyük olsun */
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.nh-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.news-hero-card:hover .nh-img-box img {
    transform: scale(1.05);
}

.nh-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    font-weight: 800;
    color: #333;
    line-height: 1.2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nh-date span:first-child {
    font-size: 22px;
    color: #ff6a00;
}

.nh-date span:last-child {
    font-size: 12px;
}

.nh-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-tag {
    display: inline-block;
    background: #ff6a00;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 15px;
}

.nh-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.nh-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #333;
    color: white;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    width: fit-content;
    transition: 0.3s;
}

.btn-read-more:hover {
    background: #ff6a00;
    gap: 15px;
    /* Ox sağa sürüşsün */
}

/* --- XƏBƏR GRID --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #ffe0b2;
}

.nc-img-box {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.nc-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.news-card:hover .nc-img-box img {
    transform: scale(1.1);
}

.nc-date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ff6a00;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
}

.nc-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nc-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.nc-meta i {
    color: #ff6a00;
    margin-right: 4px;
}

.nc-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    transition: 0.3s;
}

.news-card:hover .nc-content h3 {
    color: #ff6a00;
}

.nc-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex: 1;
    /* Mətni doldurur */
}

.nc-link {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-decoration: underline;
    transition: 0.3s;
}

.nc-link:hover {
    color: #ff6a00;
}

/* --- Pagination --- */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.np-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: #555;
    font-weight: 600;
    transition: 0.3s;
}

.np-btn:hover,
.np-btn.active {
    background: #ff6a00;
    color: white;
    border-color: #ff6a00;
}

/* Mobil Uyğunluq */
@media (max-width: 992px) {
    .news-hero-card {
        flex-direction: column;
    }

    .nh-img-box {
        min-height: 200px;
    }

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

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



/* =========================================
   23. ALT KATEQORİYA - HIGH PERFORMANCE (DONMADAN)
   ========================================= */

/* 1. Başlıq Zolağı */
.sc-page-header {
    width: 100%;
    background: linear-gradient(90deg, #ff6a00 0%, #ff3d00 100%);
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    margin-bottom: 25px;
}

/* 2. Grid Sistemi */
.sc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

/* 3. Kart Dizaynı (Optimallaşdırılmış) */
.sc-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 8px;
    overflow: hidden;
    background: transparent;
    border: 1px solid transparent;

    /* PERFORMANCE KODLARI */
    transform: translateZ(0);
    /* GPU-nu işə salır */
    will-change: transform;
    /* Brauzerə xəbər verir ki, bu hərəkət edəcək */
    backface-visibility: hidden;
    /* Titrəməni ləğv edir */

    /* Yalnız lazım olanları animasia et (all yox) */
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

/* --- HOVER EFFEKTLƏRİ --- */
.sc-card:hover {
    transform: scale(1.05);
    /* Sürətli böyümə */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
    border-color: #ff6a00;
}

/* Şəkil Qutusu */
.sc-img-box {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
}

.sc-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Şəklin yaxınlaşması üçün ayrıca sürətli keçid */
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sc-card:hover .sc-img-box img {
    transform: scale(1.1);
}

/* 4. Başlıq Hissəsi */
.sc-title {
    background: #e6e6e6;
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 15px 10px;
    /* Yalnız fon və rəngi dəyiş */
    transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover olanda NARINCI olsun */
.sc-card:hover .sc-title {
    background: #ff6a00;
    color: white;
}

/* MOBİL UYĞUNLAŞMA */
@media (max-width: 992px) {
    .sc-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
}

@media (max-width: 500px) {
    .sc-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .sc-img-box {
        height: 100px;
    }

    .sc-title {
        font-size: 12px;
        padding: 10px 5px;
    }
}




/* =========================================
   25. YENİ CANLI DƏSTƏK (ŞƏKİLDƏKİ DİZAYN)
   ========================================= */

/* 1. Yuvarlaq Düymə (Sağ alt künc) */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ff6a00 0%, #ff3d00 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(255, 61, 0, 0.4);
    z-index: 10000;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s;
}

.chat-widget:hover {
    transform: scale(1.1);
}

/* 2. Chat Pəncərəsi (Popup) */
.chat-popup {
    display: none;
    /* JS ilə class əlavə edib açacağıq */
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 340px;
    /* Şəkildəki kimi geniş */
    background: #f0f2f5;
    /* Açıq boz fon */
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    overflow: hidden;
    animation: slideUp 0.3s ease;
    font-family: sans-serif;
}

.chat-popup.active {
    display: block;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 3. Başlıq (Header) - Tünd Boz */
.cp-header {
    background: #565e6c;
    /* Şəkildəki tünd boz rəng */
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.cp-head-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cp-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ff6a00;
    font-size: 20px;
}

.cp-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #ccc;
    /* Oflayn rəngi */
    border: 2px solid #565e6c;
    border-radius: 50%;
}

.cp-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.cp-info span {
    font-size: 12px;
    opacity: 0.8;
}

.cp-close-icon {
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.2s;
}

.cp-close-icon:hover {
    opacity: 1;
}

/* 4. Gövdə (Body) */
.cp-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cp-date-label {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

/* Mesaj Sətirləri (Gülümsəyən üz + Mesaj) */
.cp-message-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.cp-msg-icon {
    font-size: 20px;
    color: #999;
    /* Gülümsəyən üz rəngi */
    margin-top: 5px;
}

.cp-bubble {
    background: white;
    padding: 12px 15px;
    border-radius: 0 12px 12px 12px;
    /* Sol künc iti qalsın */
    font-size: 14px;
    color: #333;
    line-height: 1.4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

/* 5. Alt Hissə (Düymələr) */
.cp-footer-actions {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* WhatsApp Düyməsi (Yaşıl) */
.btn-whatsapp-full {
    background: #25d366;
    color: white;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.2s;
    text-decoration: none;
}

.btn-whatsapp-full:hover {
    background: #1ebc57;
}

/* Sosial Düymələr (Yan-yana boz) */
.cp-social-row {
    display: flex;
    gap: 10px;
}

.btn-social-gray {
    flex: 1;
    background: #e4e6eb;
    /* Açıq boz fon */
    color: #555;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: 0.2s;
    text-decoration: none;
}

.btn-social-gray:hover {
    background: #d0d2d6;
}

.btn-social-gray i {
    font-size: 16px;
}

/* Mobil Uyğunlaşma */
@media (max-width: 500px) {
    .chat-widget {
        bottom: 80px;
        /* Menyunun üstündə */
        right: 20px;
    }

    .chat-popup {
        bottom: 150px;
        right: 20px;
        width: 300px;
        /* Mobildə biraz dar olsun */
    }
}











































/* =========================================
   30. ELAN BAZARI - FINAL DÜZƏLİŞLƏR
   ========================================= */

body {
    background-color: #f4f6f8;
}

/* LAYOUT FIXED (SÜRÜŞMƏNİN QARŞISINI ALAN KOD) */
.market-container {
    max-width: 1250px;
    width: 100%;
    margin: 30px auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 280px 1fr;
    /* Sidebar sabit, sağ tərəf qalan yer */
    gap: 25px;
    align-items: start;
    /* Bu kod Sidebar-ı yuxarıda saxlayır! */
    min-height: 600px;
}

/* HERO SECTION */
.market-hero-wrapper {
    background: white;
    border-bottom: 1px solid #ddd;
    padding: 25px 0;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text h1 {
    font-size: 26px;
    color: #333;
    margin: 5px 0;
}

.orange-text {
    color: #ff6a00;
}

.hero-badge {
    background: #eee;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #555;
}

.hero-text p {
    color: #777;
    margin: 0;
    font-size: 14px;
}

/* HERO ACTIONS & BUTTONS */
.hero-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.btn-create-ad {
    background: #ff6a00;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.btn-create-ad:hover {
    background: #e65100;
    transform: translateY(-2px);
}

.hero-help-btns {
    display: flex;
    gap: 10px;
}

.hero-help-btns button {
    background: white;
    border: 1px solid #ccc;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    color: #555;
}

.hero-help-btns button:hover {
    border-color: #ff6a00;
    color: #ff6a00;
}

/* SIDEBAR */
.market-sidebar {
    background: white;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #e0e0e0;
    width: 100%;
    position: sticky;
    top: 20px;
}

.sidebar-header {
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #ff6a00;
    display: inline-block;
    padding-bottom: 5px;
}

.filter-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #f9f9f9;
    margin-bottom: 15px;
    outline: none;
}

.cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: #555;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.2s;
}

.cat-item:hover,
.cat-item.active {
    background: #fff3e0;
    color: #ff6a00;
}

.cat-item img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
}

.price-row {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.price-row input {
    width: 50%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.filter-label {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 5px;
}

.btn-filter-action {
    width: 100%;
    padding: 10px;
    background: #333;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

/* CONTENT AREA */
.market-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.section-title {
    font-size: 18px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vip-color {
    color: #9c27b0;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

/* Əgər elan yoxdursa gizlət (Layout qorunması üçün) */
.ads-grid:empty {
    display: none;
}

/* --- KART DİZAYNI --- */
.item-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    position: relative;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #ff6a00;
}

.vip-border {
    border: 1px solid #e1bee7;
}

.card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    flex-grow: 1;
}

.card-img-area {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

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

/* --- VITRIN ETIKETI (DÜZƏLDİLMİŞ 3D LENT) --- */
.vitrin-badge {
    position: absolute;
    top: 12px;
    left: -5px;
    z-index: 5;
}

.vitrin-badge span {
    background: #9b59b6;
    /* Bənövşəyi */
    color: white;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    display: block;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Qatlanma Üçbucağı */
.vitrin-badge::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    border-top: 5px solid #6c3483;
    border-left: 5px solid transparent;
}

/* OYUN LOGOSU */
.game-logo {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 34px;
    height: 34px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.game-logo img {
    width: 22px;
}

/* QİYMƏT */
.price-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #5c6bc0;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.card-info {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
}

.card-title {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    line-height: 1.4;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* SATICI FOOTER (REAL ŞƏKİLLİ) */
.seller-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #f9f9f9;
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

.seller-strip:hover {
    background: #eee;
}

.seller-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Dairəvi Satıcı Şəkli */
.seller-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #ddd;
}

.seller-txt {
    display: flex;
    flex-direction: column;
}

.s-label {
    font-size: 9px;
    color: #999;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.s-name {
    font-size: 12px;
    color: #333;
    font-weight: 700;
}

.seller-strip i {
    font-size: 12px;
    color: #ccc;
}

#noResult {
    width: 100%;
    text-align: center;
    padding: 40px;
    color: #888;
    background: white;
    border-radius: 10px;
    border: 1px dashed #ddd;
    margin-top: 20px;
}

/* MODAL STYLES */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.modal-close {
    background: #333;
    color: white;
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

/* MOBİL */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hero-action {
        align-items: center;
    }

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

    .market-sidebar {
        position: static;
        margin-bottom: 25px;
    }

    .ads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 500px) {
    .ads-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px;
    }

    .card-img-area {
        height: 110px;
    }

    .vitrin-badge span {
        font-size: 9px;
        padding: 3px 8px;
    }

    .price-badge {
        font-size: 12px;
        padding: 2px 6px;
    }

    .card-title {
        font-size: 11px;
        height: 32px;
    }

    .seller-pic {
        width: 24px;
        height: 24px;
    }

    .s-name {
        font-size: 11px;
    }

    .s-label {
        font-size: 8px;
    }
}








/* =========================================
   31. YENİLƏNMİŞ SATICI PROFİLİ
   ========================================= */

/* --- HEADER & BANNER --- */
.profile-header-wrapper {
    background: white;
    border-bottom: 1px solid #ddd;
    margin-bottom: 25px;
}

/* Banner Şəkli (Img tag üçün) */
.store-banner {
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #333;
    /* Şəkil yüklənməsə boz olsun */
}

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

.store-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 15px 0;
    position: relative;
}

/* Sol Tərəf (Avatar + Ad) */
.store-left {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.store-avatar {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 4px solid white;
    background: white;
    position: relative;
    margin-top: -50px;
    /* Bannerin üstünə çıxır */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    overflow: hidden;
}

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

.status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    z-index: 3;
}

.status-dot.online {
    background: #2ecc71;
}

.store-details {
    padding-bottom: 5px;
}

.store-name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.store-name-row h1 {
    font-size: 22px;
    font-weight: 800;
    color: #333;
    margin: 0;
}

.badge-verify {
    background: #20bf6b;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.store-stats {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-badge.blue {
    background: #e3f2fd;
    color: #1565c0;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

/* Sağ Tərəf (Söhbət Düyməsi) */
.store-right {
    padding-bottom: 10px;
}

.btn-chat-big {
    background: #ff6a00;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(255, 106, 0, 0.2);
}

.btn-chat-big:hover {
    background: #e65100;
    transform: translateY(-2px);
}

.store-divider {
    height: 1px;
    background: #eee;
    width: 100%;
    margin-top: 10px;
}

/* MOBİL UYĞUNLAŞMA */
@media (max-width: 768px) {
    .store-banner {
        height: 120px;
    }

    .store-avatar {
        width: 80px;
        height: 80px;
        margin-top: -40px;
    }

    .store-info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .store-right {
        width: 100%;
    }

    .btn-chat-big {
        width: 100%;
        justify-content: center;
    }
}