/* ==========================================================================
   1. ზოგადი პარამეტრები (Variables & Reset)
   ========================================================================== */
:root {
    --primary: #00605E;
--primary-gradient: linear-gradient(to right, #00605E, #008986);
    --dark: #1e293b;
    --light: #f8fafc;
    --white: #ffffff;
    --text-main: #1f2937;
    --text-muted: #94a3b8;
    --border-color: #f1f5f9;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 2px 15px rgba(0,0,0,0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ფონტების იმპორტი */
@font-face {
    font-family: 'b1';
    src: url('../fonts/font-2.otf');
}

@font-face {
    font-family: 'abrama';
    src: url('../fonts/dafont.ttf');
}

body {
    font-family: 'Fira GO', 'b1', sans-serif;
    background-color: var(--light);
    color: var(--text-main);
    line-height: 1.6;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
}

/* ==========================================================================
   2. მთავარი ნავბარი (Main Navbar)
   ========================================================================== */
.main-navbar {
    background: var(--white);
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #00605E;
}

.nav-wrapper {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ლოგო და ბურგერ ღილაკი */
.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.burger-btn {
    font-size: 25px;
    cursor: pointer;
    color: var(--dark);
    transition: var(--transition);
}

.burger-btn:hover {
    color: var(--primary);
}

.logo {
    text-decoration: none;
        align-items: center;
    display: flex;
    font-weight: 800;
    color: var(--dark);
}

.logo span {
    color: var(--primary);
}

/* ცენტრალური ლინკები (Desktop) */
.nav-center {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-center a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    font-family: 'abrama';
}

.nav-center a:hover {
    color: var(--primary);
}

/* მარჯვენა მხარე - კონტაქტის ღილაკი */
.btn-call {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
    transition: var(--transition);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

/* ==========================================================================
   3. გვერდითა მენიუ (Side Menu & Overlay)
   ========================================================================== */
.side-menu {
    position: fixed;
    left: -320px;
    top: 0;
    width: 300px;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    transition: var(--transition);
    padding: 30px 20px;
    box-shadow: 5px 0 20px rgba(0,0,0,0.1);
    overflow-y: auto; 
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.side-menu.active {
    left: 0;
}

/* გვერდითა მენიუს ჰეადერი */
.side-menu-header {
    background: var(--primary-gradient);
    margin: -30px -20px 20px -20px;
    padding: 22px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-side {
    background: rgba(255, 255, 255, 0.2);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    color: white;
}

/* ძირითადი გვერდების ლინკები მენიუში */
.side-main-links {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.side-main-links li a {
    text-decoration: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 15px;
    font-weight: 600;
    font-size: 17px;
    border-radius: 10px;
    transition: var(--transition);
}

.side-main-links li a i {
    color: var(--primary);
    width: 20px;
}

.side-main-links li a:hover {
    background: var(--light);
}

/* კატეგორიების სექცია მენიუში */
.side-divider {
    display: flex;
    justify-content: center;
    padding: 10px 15px;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 15px;
}

.side-nav-links {
    list-style: none;
    padding: 0;
}

.side-nav-links a {
    text-decoration: none;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    border-radius: 12px;
    transition: var(--transition);
    margin-bottom: 5px;
}

.side-nav-links a:hover {
    background: rgba(39, 174, 96, 0.08);
    color: var(--primary);
}

/* კატეგორიის ფოტოების სტილი */
.side-cat-img {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #eee;
    transition: var(--transition);
}

.side-cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-nav-links a:hover .side-cat-img {
    border-color: var(--primary);
    transform: scale(1.1);
}

/* ბუნდოვანი ფონი მენიუს დროს */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.nav-overlay.active {
    display: block;
}

/* ==========================================================================
   4. კონტენტის სექციები (Categories Grid)
   ========================================================================== */



   .cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.cat-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.cat-item:hover {
    transform: translateY(-5px);
}

.cat-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}

.cat-item:hover img {
  
    transform: scale(1.1); 
}

.cat-item h3 {
    padding: 15px;

}

a{
text-decoration: none;
color: #141414;
}


/* ==========================================================================
   5. ფუტერი (Footer)
   ========================================================================== */
footer {
    text-align: center;
    padding: 40px 0;
    background: var(--dark);
    color: var(--white);
    margin-top: 50px;
}

/* ==========================================================================
   7. About Page Styles
   ========================================================================== */

/* Hero Section */
.about-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.6), #009688), url(/aboutbg.svg);
    background-size: cover;
    background-position: center;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.about-hero h1 {
    font-family: 'abrama', sans-serif;
    font-size: 48px;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* Story Section */
.about-story {
    padding: 80px 20px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-img {
    position: relative;
}

.story-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
}

.experience-badge span {
    font-size: 32px;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.experience-badge p {
    font-size: 14px;
    margin: 0;
}

.sub-title {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.story-text h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-text p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 17px;
}

.story-features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
}

.feature-item i {
    color: var(--primary);
    font-size: 20px;
}

/* Stats Section */
.stats-section {
    background: var(--dark);
    padding: 80px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-box h3 {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 16px;
    opacity: 0.8;
}

/* ==========================================================================
   8. Contact Page Styles
   ========================================================================== */

.page-title {
    background: var(--dark);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-title h1 {
    font-family: 'abrama', sans-serif;
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-content {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* საკონტაქტო ბარათები */
.info-card {
    background: var(--white);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.info-card:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(39, 174, 96, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
}

.info-text h3 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-text p, .info-text a {
    color: #64748b;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.info-text a:hover {
    color: var(--primary);
}

/* სოციალური ქსელები */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

/* რუკის სექცია */
.contact-map {
    height: 500px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}




/* ==========================================================================
   5. ფუტერი (Footer - Updated Style)
   ========================================================================== */
.main-footer {
    background: #1a1a1a; 
    color: var(--white);
    padding-top: 40px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-bottom: 40px;
    align-items: center;
}


.logo.white {
    color: #fff;
    font-size: 28px;
}


.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-icon {
    background: var(--primary); 
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 18px;
    color: white;
}

.footer-info {
    display: flex;
    flex-direction: column;
}

.footer-info .label {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.footer-info .text {
    font-size: 14px;
    color: #b1b1b1;
    margin-top: 2px;
}

/* ქვედა ზოლი */
.footer-bottom {
    background: #111; /* უფრო მუქი ზოლი ბოლოში */
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888;
}

.creator {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.creator:hover {
    color: #2ecc71;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.3);
}




/* ==========================================================================
   Hero Slider Styles
   ========================================================================== */
.hero-slider {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.mainSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.1); /* მცირე Zoom ეფექტისთვის */
    transition: transform 6s ease;
}

/* აქტიური სლაიდის დროს სურათი ნელა მოძრაობს (Ken Burns ეფექტი) */
.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom, 
        rgba(0,0,0,0.3) 0%, 
        rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin-top: 80px;
}

.top-tag {
    display: inline-block;
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease forwards;
}

.slide-content h1 {
    font-family: 'abrama', sans-serif;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.slide-content p {
    font-size: 20px;
    margin-bottom: 35px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.6s forwards;
}

/* ღილაკები სლაიდერში */
.slide-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease 0.9s forwards;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid white;
    transition: var(--transition);
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
}

/* ანიმაცია */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper-ის ნავიგაციის ფერები */
.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

.swiper-button-next, .swiper-button-prev {
    color: white !important;
    transform: scale(0.7);
}




/* ==========================================================================
   Preloader Styles - Luxury Glassmorphism Version
   ========================================================================== */
#preloader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85); 
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

.loader-content {
    text-align: center;
    width: 100%;
    max-width: 250px; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-img-container {
    margin-bottom: 30px;
    animation: logoFadePulse 2.5s infinite ease-in-out;
}

.loader-logo-img {
    width: 180px; 
    height: auto;
    display: block;
}


.loader-bar {
    width: 100%;
    height: 2px; 
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.bar-progress {
    width: 0;
    height: 100%;
    background: #000; 
    animation: loadBar 3s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.loader-text {
    color: #555;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 4px; 
    font-weight: 500;
    margin: 0;
    opacity: 0.8;
}

/* ანიმაციები */

/* პროგრესის შევსება */
@keyframes loadBar {
    0% { width: 0; opacity: 0.5; }
    30% { width: 40%; }
    70% { width: 85%; }
    100% { width: 100%; opacity: 1; }
}

/* ლოგოს "სუნთქვის" ეფექტი */
@keyframes logoFadePulse {
    0%, 100% { 
        transform: scale(0.98);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.02);
        opacity: 1;
    }
}

/* დასრულების ეფექტი */
#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

/* პატარა მობილურებისთვის */
@media (max-width: 480px) {
    .loader-logo-img {
        width: 140px;
    }
    .loader-content {
        max-width: 200px;
    }
}

/* ==========================================================================
   Language Selector Styling
   ========================================================================== */

.langcallbg{
display: flex;
}
   .lang-selector {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.08); 
    padding: 6px 12px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn img {
    width: 35px;   
    height: 24px;
    object-fit: cover;
    border-radius: 5px; 
    border: 2px solid transparent;
    filter: grayscale(80%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* აქტიური დროშის სტილი */
.lang-btn.active img {
    filter: grayscale(0%);
    opacity: 1;
    border-color: var(--primary); /* შენი საიტის მთავარი ფერი */
  
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.4);
}

/* ჰოვერ ეფექტი */
.lang-btn:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}

/* გამყოფი ხაზი */
.lang-selector .divider {
    width: 1px;
    height: 15px;
    background: rgba(255, 255, 255, 0.2);
}



/* მობილურისთვის მორგება */
@media (max-width: 768px) {
    .lang-selector {
        margin: 0 10px;
        padding: 4px 10px;
    }
    
    .lang-selector a {
        font-size: 12px;
    }
}





.category-header {
    text-align: center;
    margin: 40px 0;
}

.category-header h1 {
        color: var(--primary);
    font-size: 36px;
    font-family: 'abrama', sans-serif !important;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}



.product-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #2c3e50;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    font-size: 20px;
    color: #00605E;
}

.btn-order {
    background: #27ae60;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.btn-order:hover {
    background: #219150;
}

.no-items {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 0;
    color: #95a5a6;
    font-size: 18px;
}

.cat-item-link {
    text-decoration: none;
    color: inherit;
}









/* გალერეის სექცია */
.gallery-section {
    padding: 10px 0;
    background: #fdfdfd;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 0 0px;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-hover {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(184, 134, 11, 0.4); /* კარაველას ოქროსფერი ტონი */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    color: white;
    font-size: 30px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-hover {
    opacity: 1;
}

/* Lightbox სტილი */
.lightbox {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 5px;
    animation: zoom 0.3s;
}

@keyframes zoom {
    from {transform: scale(0.7)} 
    to {transform: scale(1)}
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* მობილური */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gallery-item {
        height: 180px;
    }
}



/* ==========================================================================
   Custom Modern Scrollbar (No Borders)
   ========================================================================== */





/* კალკულატორის კონტეინერები */
.calculator-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.calculator-section {
    padding: 60px 10px;
}

/* საძიებო სისტემა */
.search-box-container {
    position: relative;
    margin-bottom: 40px;
}

.calc-input {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    font-family: 'b1';
}

.search-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

/* ძიების შედეგის სტრიქონი */
.result-row {
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    transition: 0.2s;
}

.result-row:hover {
    background: #f8fafc;
}

.result-img {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
}

/* არჩეული პროდუქტების ცხრილი */
.selected-items-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.empty-message {
    padding: 60px;
    text-align: center;
    color: #94a3b8;
}

.empty-message i {
    font-size: 50px;
    margin-bottom: 15px;
    opacity: 0.3;
    display: block;
}

.calc-table {
    width: 100%;
    border-collapse: collapse;
}

.calc-table thead tr {
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.calc-table th, .calc-table td {
    padding: 15px;
}

.calc-img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    object-fit: cover;
    margin-right: 10px;
    vertical-align: middle;
}

/* რაოდენობის მართვა */
.qty-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-qty {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-qty:hover {
    background: #000;
    color: #fff;
}

.qty-number {
    font-weight: bold;
    width: 20px;
    display: inline-block;
}

/* წაშლის ღილაკი */
.btn-del {
    color: #ef4444;
    border: none;
    background: #fee2e2;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-del:hover {
    background: #ef4444;
    color: #fff;
}

/* ჯამური ბლოკი */
.grand-total-container {
    margin-top: 30px;
    padding: 30px;
    background: #111;
    color: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 18px;
    opacity: 0.8;
}

#grandTotal {
    font-size: 32px;
    font-weight: 700;
    color: #3b82f6;
}

/* ტექსტის გასწორებები */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.fw-bold { font-weight: bold; }











::-webkit-scrollbar {
    width: 8px;
    border-radius: 0px; 
    background-color: #0f172a; 
}


::-webkit-scrollbar-thumb {
    background: var(--primary-gradient); 
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #008986, #16a085); 
}


::-webkit-scrollbar-track {
    background: transparent; 
}


* {
    scrollbar-width: thin;
    scrollbar-color: #00605E transparent;
}