/* ============================================================
   ABRAMA CSS - GLOBAL & LAYOUT STYLES
   ============================================================ */

:root {
    --primary: #facc15;
    --primary-hover: #ffffff;
    --bg-dark: #050a18;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* აიძულებს ბრაუზერს არ დაიზუმოს ფოკუსისას */
.ve-edit-input, 
.vo-status-select, 
input[type="text"], 
input[type="number"], 
select, 
textarea {
    font-size: 16px !important;
}


/* ძირითადი პარამეტრები */
:root {
    --primary: #facc15;
    --secondary: #1e293b;
    --bg: #050a18;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

*{
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 {
    margin: 0;
    padding: 0;
    font-family: 'b1', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg);
    color: var(--white);
    overflow-x: hidden;
}




/* === NAVBAR & NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 10, 24, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'abrama';
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* === CART BUTTON STYLE === */
.btn-cart {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(250, 204, 21, 0.1);
    border: 1px solid rgba(250, 204, 21, 0.2);
    border-radius: 14px;
    color: var(--primary) !important;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.btn-cart:hover {
    background: var(--primary);
    color: #000 !important;
    transform: translateY(-2px);
}

.cart-badge {
    background: #ff4757;
    color: white;
    font-size: 0.7rem;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    position: absolute;
    top: -5px;
    right: -5px;
    border: 2px solid var(--bg-dark);
}





.btn-login {
    background: var(--primary);
    color: black !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold !important;
    text-decoration: none !important;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary);
}

/* Sidebar (მობილურის მენიუ) */
.sidebar {
    position: fixed;
    top: 0;
    right: -100%; /* დამალულია */
    width: 280px;
    height: 100%;
    background: #0f172a;
    z-index: 2000;
    transition: var(--transition);
    padding: 30px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.sidebar.active { right: 0; }

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.close-btn { font-size: 1.5rem; cursor: pointer; color: var(--primary); }

.sidebar-links {
    list-style: none;
    padding: 0;
}

.sidebar-links li { margin-bottom: 25px; }

.sidebar-links a {
    text-decoration: none;
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'abrama';
}

.sidebar-login { color: var(--primary) !important; font-weight: bold; }

.overlay-sidebar {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 1500;
}


/* === SHOPS SECTION (HOME PAGE) === */
.shops-section {
    padding: 100px 20px 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 40px;
}

.section-title span {
    color: var(--primary);
}

.shops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.shop-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: block;
}

.shop-card:hover {
  
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.shop-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #0f172a;
}


.shop-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    transition: opacity 0.4s ease;
    z-index: 1;
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
   
    filter: brightness(0.8); 
}


.shop-card:hover .shop-image img {
    transform: scale(1.1);
    filter: brightness(1);
}

.shop-card:hover .shop-image::after {
    opacity: 0.6; 
}


.cat-badge {
    position: absolute;
    z-index: 2; 
}

.shop-details {
    padding: 25px;
    text-align: center;
}

.shop-details h3 {
    margin: 0 0 10px;
    color: white;
    font-size: 1.5rem;
}

.shop-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.view-btn {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(250, 204, 21, 0.1);
    color: var(--primary);
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.shop-card:hover .view-btn {
    background: var(--primary);
    color: #000;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 992px) {
    .nav-links { display: none; }
}

@media (max-width: 480px) {
    .section-title { font-size: 1.8rem; }
    .shops-grid { grid-template-columns: 1fr; }
}





/* === FOOTER STYLES === */
.main-footer {
    margin-top: 80px;
    padding: 40px 0 20px 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
    border-top: 1px solid rgba(250, 204, 21, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-brand {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.brand-city { color: #fff; }
.brand-deliver { color: var(--primary); }

.footer-divider {
    width: 40px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.copyright-text {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom {
    display: flex;
    justify-content: flex-end; /* კუთხეში გადატანა */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 20px;
}

.author-tag {
    color: #64748b;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.author-tag span {
    color: #cbd5e1;
    font-weight: 700;
    margin-left: 5px;
    transition: var(--transition);
}

.author-tag:hover span {
    color: var(--primary);
}

/* FOOTER MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .footer-bottom {
        justify-content: center;
    }
}



/* === HERO SECTION === */
.hero {
   height: 500px;
    display: flex;
    margin-top: 80px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(5, 10, 24, 0.7), rgba(5, 10, 24, 0.7)), url('https://test.abrama.store/deliverbg.webp') center/cover;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content h1 span {
    color: var(--primary);
    display: block;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 32px;
    background: var(--primary);
    color: #000;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    transition: var(--transition);
}

.btn-secondary {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.btn-primary:hover { transform: translateY(-3px); background: white; }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--primary); }

/* === CATEGORY FILTER === */
.category-filter {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 12px;
    margin-bottom: 40px;
    padding: 10px 0px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.category-filter::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.cat-btn {
    flex: 0 0 auto;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}

.cat-btn:hover {
    border-color: var(--primary);
    color: white;
    background: rgba(250, 204, 21, 0.05);
}

.cat-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

/* Category Badge inside Card */
.cat-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(5px);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

@media (max-width: 768px) {
    .category-filter {
        justify-content: flex-start;
    }
    .hero { height: auto; padding: 120px 20px 60px; }
}

@media (max-width: 768px) {
    /* .nav-links { display: none; } */
    .menu-toggle { display: block; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-btns { flex-direction: column; }
   
}


/* კონტეინერი ღილაკებისთვის */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px; /* დაშორება ღილაკებს შორის */
}




/* === SHOP DETAIL PAGE === */
.shop-header {
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

.shop-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(5, 10, 24, 0.85), var(--bg-dark));
    z-index: 1;
}

.shop-header h1, .shop-info-meta {
    position: relative;
    z-index: 2;
}

.shop-header h1 { 
    font-size: clamp(1.8rem, 4vw, 2.5rem); 
    margin-bottom: 10px; 
    color: var(--primary); 
    text-transform: uppercase; 
    font-weight: 800;
}

.shop-info-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.meta-item {
    color: var(--text-muted);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i { color: var(--primary); width: 16px; }

.hours-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 22px;
    border-radius: 50px;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-badge.open { border-color: rgba(250, 204, 21, 0.3); }
.hours-badge.closed { border-color: rgba(239, 68, 68, 0.3); }

.hours-badge span { font-weight: 700; letter-spacing: 1px; }
.hours-badge.open span { color: var(--primary); }
.hours-badge.closed span { color: #ef4444; }

/* === PRODUCT GRID === */
.container { max-width: 1300px; margin: 0 auto; padding: 60px 20px; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.product-card:hover { 
    border-color: var(--primary); 
   
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.product-img-box { width: 100%; height: 220px; overflow: hidden; background: #0f172a; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-card:hover .product-img { transform: scale(1.1); }

.product-info { padding: 25px; }
.product-info h3 { margin: 0; font-size: 1.2rem; color: white; font-weight: 700; }

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price { font-size: 1.4rem; color: var(--primary); font-weight: 800; }

.add-cart {
    background: var(--primary);
    color: #000;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.add-cart:hover { 
    transform: rotate(90deg) scale(1.1); 
    background: white;
}

/* Status Messages */
.closed-msg {
    grid-column: 1/-1;
    text-align: center;
    padding: 80px 20px;
    background: rgba(239, 68, 68, 0.03);
    border: 1px dashed rgba(239, 68, 68, 0.2);
    border-radius: 24px;
}





/* === REGISTRATION & LOGIN FORMS === */
.auth-wrapper {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.auth-box {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 650px;
    margin-top: 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.auth-box h2 {
    text-align: center;
    color: white;
    margin-bottom: 35px;
    font-size: 2rem;
    font-weight: 800;
}

.auth-box h2 span { color: var(--primary); }

/* Form Grid System */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full-width { grid-column: 1 / -1; }

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.auth-input {
    width: 100%;
    padding: 15px;
    background: #0f172a;
    border: 1px solid var(--border-color);
    color: white;
    border-radius: 14px;
    box-sizing: border-box;
    outline: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.auth-input:focus {
    border-color: var(--primary);
    background: #111b2e;
    box-shadow: 0 0 0 4px rgba(250, 204, 21, 0.1);
}

/* Working Hours Section */
.hours-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 18px;
    border: 1px solid var(--border-color);
}

.time-select-group {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #0f172a;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 5px 12px;
}

.time-select-group select {
    border: none;
    background: transparent;
    color: white;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

.time-separator { color: var(--primary); font-weight: 900; }

/* File Upload Area */
.file-upload-zone {
    position: relative;
    background: rgba(250, 204, 21, 0.05);
    border: 2px dashed rgba(250, 204, 21, 0.2);
    padding: 25px;
    border-radius: 18px;
    text-align: center;
    transition: var(--transition);
}

.file-upload-zone:hover {
    border-color: var(--primary);
    background: rgba(250, 204, 21, 0.08);
}

.file-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

/* Submit Button */
.btn-auth {
    width: 100%;
    padding: 18px;
    background: var(--primary);
    border: none;
    border-radius: 16px;
    font-weight: 800;
    cursor: pointer;
    color: #000;
    font-size: 1.1rem;
    margin-top: 25px;
    transition: var(--transition);
      font-family: 'b1';
}

.btn-auth:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3);
}

/* Error Message */
.error-alert {
    color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
    padding: 15px;
    border-radius: 14px;
    text-align: center;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 71, 87, 0.2);
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
    .auth-box { padding: 10px; }
}



/* === LOGIN SPECIFIC STYLES === */
.login-box {
    max-width: 450px !important; 
    margin-top: 30px;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.auth-footer a:hover {
    color: white;
}

/* SweetAlert-ის მცირე მოდიფიკაცია დიზაინთან შესაბამისობაში */
.swal2-popup {
    border-radius: 25px !important;
    border: 1px solid var(--border-color) !important;
    backdrop-filter: blur(15px);
}








/* === DELIVERY RATES PAGE === */
.prices-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.search-wrapper {
    max-width: 500px;
    margin: 0 auto 50px auto;
    position: relative;
}

.search-input-alt {
    width: 100%;
    padding: 18px 25px 18px 55px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.search-input-alt:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(250, 204, 21, 0.15);
}

.search-wrapper i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.2rem;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.price-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.loc-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.loc-box i {
    color: var(--primary);
    font-size: 1.1rem;
}

.loc-name {
    font-size: 1rem;
    font-weight: 600;
    color: #f1f5f9;
}

.rate-tag {
    background: rgba(250, 204, 21, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1.1rem;
    border: 1px solid rgba(250, 204, 21, 0.1);
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.rate-tag span {
    font-size: 0.8rem;
    opacity: 0.8;
}

#no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 25px;
    border: 1px dashed var(--border-color);
    color: var(--text-muted);
}





/* === COMPARE PAGE STYLES === */
.compare-wrapper {
    max-width: 1200px;
    margin: 100px auto 50px;
    padding: 0 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Filter Area Card */
.filter-area {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(15px);
    margin-bottom: 40px;
}

.search-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.6fr;
    gap: 20px;
    align-items: flex-end;
}

@media (max-width: 992px) {
    .search-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .search-grid { grid-template-columns: 1fr; }
}

.field-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
}

.form-input, .form-select {
    width: 100%;
    padding: 14px 15px 14px 40px;
    background: #0f172a;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: white;
      font-family: 'b1';
    outline: none;
    transition: var(--transition);
}

.form-input:focus, .form-select:focus {
    border-color: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    border: none;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-family: 'b1';
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.2);
}

/* Results Table */
.table-head {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.item-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 15px;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.item-card:hover {
    border-color: var(--primary);
    background: rgba(255,255,255,0.04);
}

.item-info {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.item-img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    background: #1e293b;
}

.item-name {
    font-size: 1rem;
    color: white;
    margin: 0;
}

.price-box {
    padding: 10px;
    border-radius: 12px;
    display: inline-block;
}

.price-box.is-best {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.price-val {
    font-weight: 800;
    font-size: 1.1rem;
}

.best-badge {
    display: block;
    font-size: 0.7rem;
    color: #22c55e;
    text-transform: uppercase;
    margin-top: 3px;
}

.no-price { color: #64748b; font-size: 0.9rem; }

/* Analysis Bar */
.item-analysis {
    padding: 0 15px;
}

.analysis-text {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.analysis-bar {
    height: 6px;
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .table-head { display: none; }
    .item-card {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .item-info { flex-direction: column; text-align: center; }
}

/* === ABOUT PAGE STYLES === */
.about-wrapper {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    margin-bottom: 70px;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); /* რესპონსიული ფონტი */
    margin-bottom: 25px;
}

.about-hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    border-radius: 35px;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: rgba(250, 204, 21, 0.1);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary);
    font-size: 2.2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
    background: var(--primary);
    color: #000;
    transform: rotate(10deg);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: white;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Stats Section */
.stats-banner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.1) 0%, rgba(0,0,0,0) 100%);
    padding: 60px;
    border-radius: 40px;
    border: 1px solid rgba(250, 204, 21, 0.1);
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 900;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .stats-banner { padding: 40px 20px; }
}



/* === 404 ERROR PAGE === */
.error-page-wrapper {
    padding: 100px 20px;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.error-card {
    background: var(--card-bg);
    padding: 60px 40px;
    border-radius: 40px;
    border: 1px solid var(--border-color);
    max-width: 550px;
    width: 100%;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
}

/* დეკორატიული განათება ბექგრაუნდზე */
.error-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.error-icon {
    font-size: 100px;
    color: var(--primary);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(250, 204, 21, 0.3));
    animation: float 3s ease-in-out infinite;
}

.error-card h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 15px;
}

.error-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--primary);
    color: #000;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 800;
    transition: var(--transition);
}

.btn-back:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}




/* Checkout ძირითადი სტილები */
.checkout-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* ორი სვეტი */
    gap: 30px;
    padding: 120px 20px 60px;
    max-width: 1250px;
    margin: 0 auto;
    align-items: start;
}

.checkout-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.card-title span {
    color: #facc15;
}

/* პროდუქტების სია */
.product-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.item-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.item-name {
    margin: 0;
    font-size: 1.1rem;
}

.item-shop {
    font-size: 0.85rem;
    color: #94a3b8;
    margin: 4px 0;
}

.price-tag {
    color: #facc15;
    font-weight: 700;
}

/* რაოდენობის და წაშლის ბლოკი */
.item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-control {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 10px;
}

.qty-btn {
    background: none;
    border: none;
    color: #facc15;
    font-size: 1.2rem;
    cursor: pointer;
    width: 25px;
}

.qty-val {
    width: 35px;
    text-align: center;
    background: none;
    border: none;
    color: white;
    font-weight: bold;
}

.remove-item {
    color: #ff4757;
    font-size: 1.1rem;
    transition: 0.3s;
}

.remove-item:hover {
    transform: scale(1.2);
}

/* ფორმის სტილები */
.input-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.custom-input {
    width: 100%;
      margin-top: 15px;
          margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: 12px;
    color: white;
    outline: none;
    transition: 0.3s;
}

.custom-input:focus {
    border-color: #facc15;
}

.submit-btn {
    width: 100%;
    background: #facc15;
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    cursor: pointer;
    font-size: 1.1rem;
}

/* ჯამი */
.summary-box {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.total-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-amount {
    color: #facc15;
    margin: 0;
}



:root {
    --v-primary: #facc15;
    --v-bg: #050a18;
    --v-card: #0f172a;
    --v-border: rgba(255, 255, 255, 0.08);
    --v-text: #94a3b8;
}

.v-prod-container {
    width: 100%;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    font-family: 'Inter', sans-serif;
}

.v-prod-card {
    width: 100%;
    max-width: 500px;
    background: var(--v-card);
    border: 1px solid var(--v-border);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    animation: vFadeIn 0.5s ease-out;
}

.v-prod-header {
    text-align: center;
    margin-bottom: 35px;
}

.v-prod-icon-box {
    width: 70px;
    height: 70px;
    background: rgba(250, 204, 21, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.v-prod-icon-box i {
    font-size: 30px;
    color: var(--v-primary);
}

.v-prod-header h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.v-prod-header p {
    color: var(--v-text);
    font-size: 0.9rem;
}

.v-prod-group {
    margin-bottom: 20px;
}

.v-prod-group label {
    display: block;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.v-prod-group label i {
    color: var(--v-primary);
    font-size: 14px;
}

.v-prod-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--v-border);
    border-radius: 14px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
    box-sizing: border-box;
}

.v-prod-input:focus {
    border-color: var(--v-primary);
    background: rgba(250, 204, 21, 0.05);
}

/* Custom File Input */
.v-prod-file-zone {
    position: relative;
    width: 100%;
}

.v-prod-file-zone input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.v-prod-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed var(--v-border);
    border-radius: 14px;
    transition: 0.3s;
    text-align: center;
}

.v-prod-file-label i {
    font-size: 24px;
    color: var(--v-text);
    margin-bottom: 10px;
}

.v-prod-file-label span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.v-prod-file-label small {
    color: #64748b;
    margin-top: 5px;
}

.v-prod-file-zone:hover .v-prod-file-label {
    border-color: var(--v-primary);
    background: rgba(250, 204, 21, 0.05);
}

.v-prod-btn {
    width: 100%;
    padding: 16px;
    background: var(--v-primary);
    color: #000;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.v-prod-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.2);
    filter: brightness(1.1);
}

.v-prod-footer {
    text-align: center;
    margin-top: 25px;
}

.v-prod-footer a {
    color: var(--v-text);
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: 0.3s;
}

.v-prod-footer a:hover {
    color: #fff;
}

@keyframes vFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* მობილური */
@media (max-width: 480px) {
    .v-prod-card {
        padding: 30px 20px;
    }
}


:root {
    --vp-yellow: #facc15;
    --vp-danger: #ef4444;
    --vp-card-bg: #0f172a;
    --vp-border: rgba(255, 255, 255, 0.08);
    --vp-text-dim: #94a3b8;
}

.vp-list-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'b1', sans-serif;
}

/* Header */
.vp-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.vp-list-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.vp-list-highlight {
    color: var(--vp-yellow);
}

.vp-list-stats {
    color: var(--vp-text-dim);
    margin-top: 5px;
    font-size: 0.95rem;
}

.vp-list-btn-add {
    background: var(--vp-yellow);
    color: #000;
    padding: 14px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.15);
}

.vp-list-btn-add:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(250, 204, 21, 0.25);
    filter: brightness(1.1);
}

/* Grid Layout */
.vp-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Card Style */
.vp-list-card {
    background: var(--vp-card-bg);
    border: 1px solid var(--vp-border);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.vp-list-card:hover {
    transform: translateY(-10px);
    border-color: rgba(250, 204, 21, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.vp-list-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vp-list-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.vp-list-card:hover .vp-list-card-img img {
    transform: scale(1.1);
}

.vp-list-price-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: var(--vp-yellow);
    padding: 8px 15px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    border: 1px solid rgba(250, 204, 21, 0.2);
}

/* Info Section */
.vp-list-card-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vp-list-card-title {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.vp-list-card-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.vp-list-btn-edit {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    border: 1px solid var(--vp-border);
}

.vp-list-btn-edit:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.vp-list-btn-delete {
    background: rgba(239, 68, 68, 0.1);
    color: var(--vp-danger);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.vp-list-btn-delete:hover {
    background: var(--vp-danger);
    color: #fff;
}

/* Empty State */
.vp-list-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 100px 20px;
    background: var(--vp-card-bg);
    border-radius: 30px;
    border: 2px dashed var(--vp-border);
}

.vp-list-empty i {
    font-size: 4rem;
    color: var(--vp-text-dim);
    margin-bottom: 20px;
}

.vp-list-empty h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.vp-list-empty p {
    color: var(--vp-text-dim);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .vp-list-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .vp-list-btn-add {
        width: 100%;
        justify-content: center;
    }
    .vp-list-grid {
        grid-template-columns: 1fr;
    }
}



:root {
    --ve-yellow: #facc15;
    --ve-bg: #0f172a;
    --ve-border: rgba(255, 255, 255, 0.08);
}

.ve-edit-container {
    width: 100%;
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.ve-edit-card {
    width: 100%;
    max-width: 500px;
    background: var(--ve-bg);
    border: 1px solid var(--ve-border);
    border-radius: 35px;
    padding: 45px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
    animation: veSlideUp 0.5s ease-out;
}

.ve-edit-header {
    text-align: center;
    margin-bottom: 35px;
}

.ve-edit-icon {
    width: 60px;
    height: 60px;
    background: rgba(250, 204, 21, 0.1);
    color: var(--ve-yellow);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}

.ve-edit-header h2 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 800;
}

.ve-edit-header h2 span { color: var(--ve-yellow); }

.ve-edit-header p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 5px;
}

.ve-edit-group {
    margin-bottom: 22px;
}

.ve-edit-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e2e8f0;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ve-edit-group label i { color: var(--ve-yellow); }

.ve-edit-input {
    width: 100%;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--ve-border);
    border-radius: 16px;
    color: #fff;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
}

.ve-edit-input:focus {
    border-color: var(--ve-yellow);
    background: rgba(250, 204, 21, 0.05);
}

/* Photo Section */
.ve-edit-photo-section {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
    border-radius: 20px;
    border: 1px solid var(--ve-border);
}

.ve-edit-preview {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--ve-yellow);
}

.ve-edit-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ve-edit-upload-box {
    position: relative;
    flex-grow: 1;
}

.ve-edit-upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.ve-edit-upload-box label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px dashed var(--ve-border);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
}

.ve-edit-upload-box:hover label {
    border-color: var(--ve-yellow);
    background: rgba(250, 204, 21, 0.05);
}

.ve-edit-btn {
    width: 100%;
    padding: 18px;
    background: var(--ve-yellow);
    color: #000;
    border: none;
    border-radius: 18px;
    font-weight: 800;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.ve-edit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(250, 204, 21, 0.25);
    filter: brightness(1.1);
}

.ve-edit-footer {
    text-align: center;
    margin-top: 25px;
}

.ve-edit-footer a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.ve-edit-footer a:hover { color: #fff; }

@keyframes veSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .ve-edit-card { padding: 30px 20px; }
    .ve-edit-photo-section { flex-direction: column; text-align: center; }
}


:root {
    --vo-yellow: #facc15;
    --vo-bg-card: #0f172a;
    --vo-border: rgba(255, 255, 255, 0.08);
    --vo-text-muted: #94a3b8;
}

.vo-orders-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

/* Header Section */
.vo-orders-header {
    margin-bottom: 35px;
}

.vo-orders-header h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 800;
    margin: 0;
}

.vo-orders-header h1 span { color: var(--vo-yellow); }

.vo-orders-count {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px 16px;
    border-radius: 12px;
    border: 1px solid var(--vo-border);
    margin-top: 10px;
    color: var(--vo-text-muted);
    font-size: 0.9rem;
}

.vo-orders-count i { color: var(--vo-yellow); }

/* Card Layout */
.vo-order-card {
    background: var(--vo-bg-card);
    border: 1px solid var(--vo-border);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vo-order-card:hover {
    border-color: rgba(250, 204, 21, 0.3);
    transform: scale(1.01);
}

.vo-order-main {
    display: flex;
    gap: 25px;
    flex: 1;
}

/* Media Section */
.vo-order-media {
    position: relative;
    width: 110px;
    height: 110px;
    flex-shrink: 0;
}

.vo-order-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    border: 2px solid var(--vo-border);
}

.vo-order-qty {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #2563eb; /* ლურჯი რაოდენობისთვის */
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    border: 3px solid var(--vo-bg-card);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* Details Section */
.vo-order-prod-name {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.vo-order-meta p {
    color: var(--vo-text-muted);
    font-size: 0.9rem;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vo-order-meta i {
    width: 16px;
    color: var(--vo-yellow);
    text-align: center;
}

.vo-order-time {
    color: #fff !important;
    font-weight: 600;
    margin-top: 8px !important;
}

.vo-order-comment {
    margin-top: 15px;
    background: rgba(250, 204, 21, 0.05);
    padding: 12px 16px;
    border-radius: 14px;
    color: #cbd5e1;
    font-size: 0.85rem;
    border-left: 3px solid var(--vo-yellow);
    line-height: 1.4;
}

/* Actions Section */
.vo-order-actions {
    text-align: right;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vo-order-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--vo-yellow);
}

.vo-status-controls {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}

.vo-status-select {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid var(--vo-border);
    padding: 10px 12px;
    border-radius: 12px;
    outline: none;
    font-size: 0.85rem;
    cursor: pointer;
}

.vo-status-btn {
    background: #fff;
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.vo-status-btn:hover {
    background: var(--vo-yellow);
    transform: rotate(10deg);
}

/* Status Badges */
.vo-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    justify-content: center;
}

.vo-dot { width: 8px; height: 8px; border-radius: 50%; }

.vo-st-new { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.vo-st-new .vo-dot { background: #60a5fa; }

.vo-st-process { background: rgba(250, 204, 21, 0.1); color: var(--vo-yellow); }
.vo-st-process .vo-dot { background: var(--vo-yellow); }

.vo-st-done { background: rgba(34, 197, 94, 0.1); color: #4ade80; }
.vo-st-done .vo-dot { background: #4ade80; }

/* Empty State */
.vo-orders-empty {
    text-align: center;
    padding: 100px 20px;
    background: var(--vo-bg-card);
    border: 2px dashed var(--vo-border);
    border-radius: 40px;
}

.vo-orders-empty i { font-size: 3rem; color: var(--vo-text-muted); margin-bottom: 20px; opacity: 0.5; }
.vo-orders-empty h3 { color: #fff; margin-bottom: 8px; }
.vo-orders-empty p { color: var(--vo-text-muted); }

/* Responsive */
@media (max-width: 900px) {
    .vo-order-card { flex-direction: column; align-items: flex-start; }
    .vo-order-actions { width: 100%; text-align: left; padding-top: 20px; border-top: 1px solid var(--vo-border); }
    .vo-status-controls { justify-content: flex-start; }
}

@media (max-width: 480px) {
    .vo-order-main { flex-direction: column; }
    .vo-order-media { width: 100%; height: 200px; }
}



/* Preloader-ის სტილი */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #050a18; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s;
}


.delivery-anim {
    font-size: 50px;
    color: #facc15; 
    animation: drive 1.5s infinite linear;
}

.loading-text {
    margin-top: 20px;
    color: #fff;
    font-family: sans-serif;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
}

/* მოძრაობის ანიმაცია */
@keyframes drive {
    0% { transform: translateX(-100px) skewX(-10deg); opacity: 0; }
    50% { transform: translateX(0px) skewX(0deg); opacity: 1; }
    100% { transform: translateX(100px) skewX(10deg); opacity: 0; }
}


.loader-hidden {
    opacity: 0;
    visibility: hidden;
}