@font-face {
  font-family: 'MyCustomFont';
  src: url('../fonts/font.ttf') format('truetype');
}

/* გამოიყენოს ყველგან, მთელ საიტზე */
body, body * {
  font-family: 'MyCustomFont' !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
   width: 110px;
}

.main-header {
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}


.main-nav a.active{
    color: #67b100;
}

.main-nav a.active::after {
    width: 100%;
    
    transition: width 0.3s;
}



.main-nav a {
    text-decoration: none;
    color: #414141;
    font-size: 18px;
    font-weight: 500;
}

.main-nav a::after {
    content: "";
    text-align: center;
    width: 0px;
    height: 2px;
    display: block;
    color: #67b100;
    background: #67b100;
    transition: width 0.3s;
  }
  
  .main-nav a:hover::after {
    width: 100%;
    transition: width 0.3s;
  }

.btn {
    padding: 5px 15px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-size: 16px;

}

.btn.blue {
    padding-left: 50px;
    color: #414141;
}

.btn.blue:hover {
    color: #111;
}



.btn.green {
    border: 1px solid #67b100;
    color: #414141;
    transition: all 0.4s ease;
    font-weight: 500;
    display: flex;
    padding: 10px;
    align-items: center;
}

.btn.green:hover {
    background-color: #67b100;
    color: white;
}


.main-nav .btn.btn.green:hover::after {
    width: 0px;
    transition: width 0.3s;
  }



.hero-section {
    text-align: center;
    padding: 100px 20px;
    background-color: #f5f5f5;
}

.hero-section h1 {
    font-size: 48px;
    margin: 0;
    color: #111;
}

.hero-section .highlight {
    color: #262df9;
}

.subtitle {
    font-size: 20px;
    margin-top: 15px;
    color: #666;
}
.car-catalog {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}


.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.car-card {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    font-family: 'ZMFont', sans-serif; /* თუ გინდა შენი ფონტი */
    font-size: 13px;
    color: #333;
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.car-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}
.car-card h5 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111;
  line-height: 1.4;
  white-space: normal;
  word-break: break-word;
}
/* ტაბლეტებისთვის */
@media (max-width: 992px) {
  .car-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .car-card img {
    height: 160px;
  }
}

/* მობილურებისთვის */
@media (max-width: 576px) {
  .car-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .car-card {
    padding: 15px;
  }

  .car-card img {
    height: 150px;
  }

  .car-catalog {
    padding: 40px 10px;
  }

  .car-catalog .pattern-left,
  .car-catalog .pattern {
    display: none; /* ფონის სურათები მობილურზე არ გამოჩნდეს */
  }

  #load-more {
    width: 100%;
    font-size: 15px;
  }
}

#load-more {
    margin-top: 40px;
    padding: 10px 25px;
    font-size: 18px;
    background-color: #262df9;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

#load-more:hover {
    background-color: #1a1ed4;
}
.footer-left img{
    width: 140px;
    height: 120px;

}

.footer-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center; 
    
}


.footer-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 10px;
}

.footer-center {
    display: flex;
    gap: 8px;
    
    text-align: center;
}

.footer-center a {
    color: #414141;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-center a:hover {
    color: #7e6d6d;
}

.footer-right {
    text-align: right;
    font-family: 'MainFont', sans-serif;
    font-size: 18px;
}


@media (max-width: 768px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }
}

.shipping-calculator {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
  font-family: 'MyCustomFont', sans-serif;
}

.shipping-calculator h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: red;
  font-family: 'MyCustomFont', sans-serif;
}

.calc-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  font-family: 'MyCustomFont', sans-serif;
}

.calc-form select,
.calc-form button {
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: 'MyCustomFont', sans-serif;
}

.calc-form button {
  background-color: #262df9;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.calc-form button:hover {
  background-color: #1a1ed4;
}

.calc-result {
  font-size: 18px;
  color: #333;
  margin-top: 10px;
  font-family: 'MyCustomFont', sans-serif;
}
.social-icons {
    margin-top: 10px;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.social-icons img {
    width: 28px;
    height: 28px;
    transition: transform 0.2s ease;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.3));
}

.social-icons img:hover {
    transform: scale(1.1);
}

.car-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
.slider-container {
    position: relative;
    width: 100%;
    height: 360px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 40px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay-text {
    position: absolute;
    bottom: 25px;
    left: 40px;
    font-size: 28px;
    color: white;
    background: rgba(0,0,0,0.5);
    padding: 12px 25px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .slider-container {
        height: 220px;
    }

    .overlay-text {
        font-size: 18px;
        bottom: 12px;
        left: 15px;
        padding: 6px 14px;
    }



}
.slider-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 10px;
}

.slider-item {
    background: #fff;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 140px;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
    text-align: center;
}

.slider-item img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 4px;
}

.slider-item p {
    font-size: 12px;
    margin: 6px 0;
    height: 34px;
    overflow: hidden;
}

.delete-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 5px;
}

.delete-btn:hover {
    background-color: #c0392b;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #333;
  padding: 5px 0;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: red;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}
@font-face {
  font-family: 'AltFont';
  src: url('../fonts/font2.ttf') format('truetype');
}

.alt-font {
  font-family: 'AltFont', sans-serif !important;
}
button.btn.alt-font,
a.btn.alt-font {
  font-family: 'AltFont' !important;
  font-weight: normal !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background: #fff;
}

.partner-section {
    padding: 10px 20px !important;
    margin-top: 0 !important;
    margin-bottom: 10px !important;
    background: #fff !important;
    overflow: hidden !important;
}

.partner-title {
    text-align: left !important;
    font-family: 'AltFont', sans-serif !important;
    font-size: 15px !important;
    font-weight: bold !important;
    margin-bottom: 15px !important;
    margin-left: 10px !important;
    color: #000 !important;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: scrollLeft 20s linear infinite;
    flex-wrap: nowrap;
}

.logo-track img {
    width: 140px;
    height: 80px;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

/* Hover ეფექტი — desktop only */
@media (hover: hover) {
    .logo-track img:hover {
        transform: scale(1.05);
    }
}

/* 📱 Responsive წესები — ტელეფონისთვის */
@media (max-width: 768px) {
    .logo-track {
        gap: 20px;
        animation-duration: 15s; /* ცოტა სწრაფად */
    }

    .logo-track img {
        width: 100px;
        height: 60px;
        padding: 3px;
    }

    .partner-title {
        font-size: 9px !important;
        margin-left: 8px !important;
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@font-face {
  font-family: 'ZMFont';
  src: url('../fonts/font.ttf') format('truetype');
}

.footer-right {
  font-family: 'ZMFont', sans-serif;
  font-size: 13px;
  color: #444;
  line-height: 1.6;
}

.footer-right p {
  margin: 4px 0;
}

.footer-right .social-icons {
  margin-top: 10px;
}

.footer-right .social-icons img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.footer-right .social-icons img:hover {
  transform: scale(1.15);
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 100px; /* მოერგოს sticky/fixed მენიუს სიმაღლეს */
}roll-behavior: smooth;
}

.contact-container {
  max-width: 1100px;
  margin: 80px auto 60px;
  padding: 0 20px;
}

.contact-wrapper {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
}

.contact-map,
.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

.contact-form {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.contact-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.contact-form button {
  background-color: #ff6600;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #e65c00;
}

/* Footer */
.main-footer {
  max-width: 1100px;
  margin: 80px auto 30px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.footer-left img {
  max-height: 90px;
}

.footer-right {
  font-size: 14px;
  line-height: 1.8;
}

.footer-copy {
  margin-top: 20px;
  font-size: 13px;
  color: #777;
}

.social-icons img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  transition: transform 0.2s;
}

.social-icons img:hover {
  transform: scale(1.1);
}

/* Mobile */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .main-footer {
    text-align: center;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
.test-mode-banner {
  background-color: #ff4444;
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 0;
  text-align: center;
  width: 100%;
  z-index: 9999;
  position: relative;
}index: 9999;
}

