:root {
  --color-primary: #6B4423;
  --color-secondary: #8B6542;
  --color-accent: #A0826D;
  --color-light: #F5F1E8;
  --color-beige: #E8DCC4;
  --color-cream: #FAF7F0;
  --color-dark: #2C1810;
  --color-text: #4A4A4A;
  --color-success: #25D366;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-text);
  background-color: var(--color-cream);
  line-height: 1.6;
}

.text-brown {
  color: var(--color-primary) !important;
}

.bg-brown {
  background-color: var(--color-primary) !important;
}

.top-bar {
  background-color: #212529;
  color: white;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.top-bar .social-icons a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
  transition: color 0.3s;
}

.top-bar .social-icons a:hover {
  color: var(--color-accent);
}

.navbar {
  background-color: var(--color-cream);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo h2 {
  color: var(--color-primary);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
}

.logo-subtitle {
  font-size: 0.7rem;
  color: var(--color-secondary);
  letter-spacing: 3px;
  margin: 0;
  font-weight: 400;
}

.navbar-nav .nav-link {
  color: #212529;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-primary);
}

.btn-order {
  background-color: var(--color-primary) !important;
  color: white !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 25px !important;
  transition: all 0.3s;
}

.btn-order:hover {
  background-color: var(--color-secondary) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(107, 68, 35, 0.3);
}

.hero {
  background: linear-gradient(rgba(44, 24, 16, 0.6), rgba(44, 24, 16, 0.6)),
    url('/image/coffee-hero.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-custom {
  background-color: var(--color-primary);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  background-color: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(107, 68, 35, 0.3);
  color: white;
}

.section-label {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.featured-section {
  padding: 3rem 0;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.2);
}

.product-card .product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-name {
  color: #212529;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--color-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-price {
  color: var(--color-primary);
  font-size: 1.3rem;
  font-weight: 700;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.cta-section {
  background-color: var(--color-beige);
}

.cta-box {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.footer {
  background-color: #212529;
  color: var(--color-cream);
}

.footer .logo h3 {
  color: var(--color-cream);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 2px;
}

.footer .logo-subtitle {
  color: var(--color-beige);
}

.footer h5 {
  color: var(--color-cream);
  font-weight: 700;
}

.footer a {
  color: var(--color-beige);
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--color-primary) !important;
}

.footer .text-muted {
  color: var(--color-beige) !important;
}

.footer hr {
  border-color: rgba(232, 220, 196, 0.3);
}

.footer .social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: rgba(232, 220, 196, 0.2);
  margin-right: 0.5rem;
  transition: all 0.3s;
  color: var(--color-cream);
}

.footer .social-icons a:hover {
  background: var(--color-cream);
  color: var(--color-primary);
}

.page-header {
  background: linear-gradient(rgba(44, 24, 16, 0.7), rgba(44, 24, 16, 0.7)),
    url('/image/menu-hero.jpeg');
  background-size: cover;
  background-position: center;
  padding: 8rem 0 5rem;
  text-align: center;
}

.btn-filter {
  background-color: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  margin: 0.3rem;
  transition: all 0.3s;
  font-weight: 600;
}

.btn-filter:hover,
.btn-filter.active {
  background-color: var(--color-primary);
  color: white;
}

.menu-item-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
}

.menu-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.2);
}

.menu-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-item-content {
  padding: 1.5rem;
}

.menu-item-name {
  color: #212529;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.menu-item-description {
  color: var(--color-text);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.menu-item-price {
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.value-card,
.team-card {
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
}

.value-card:hover,
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.2);
}

.value-icon {
  color: var(--color-primary);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.process-step {
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto;
}

.location-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
}

.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.2);
}

.location-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.location-info {
  padding: 1.5rem;
}

.feature-box {
  padding: 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.2);
}

.contact-info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(107, 68, 35, 0.2);
}

.contact-form-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.form-control,
.form-select {
  border: 2px solid var(--color-beige);
  border-radius: 10px;
  padding: 0.75rem;
  transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 0.2rem rgba(107, 68, 35, 0.15);
}

.form-label {
  color: #212529;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hours-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-beige);
}

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

.hours-item .day {
  font-weight: 600;
  color: #212529;
}

.hours-item .time {
  color: var(--color-primary);
  font-weight: 600;
}

.order-form-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.product-selection {
  max-height: 600px;
  overflow-y: auto;
  padding: 1rem;
  background: var(--color-cream);
  border-radius: 10px;
}

.product-category-group {
  margin-bottom: 1.5rem;
}

.product-checkbox-item {
  background: white;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  border: 2px solid var(--color-beige);
  transition: all 0.3s;
}

.product-checkbox-item:hover {
  border-color: var(--color-primary);
}

.product-checkbox-item .form-check-input {
  margin-right: 1rem;
  cursor: pointer;
}

.product-checkbox-item label {
  cursor: pointer;
  width: 100%;
  margin-bottom: 0;
}

.quantity-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-control .input-group {
  max-width: 150px;
}

.order-summary {
  background: var(--color-light);
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid var(--color-primary);
}

.total-price {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  color: var(--color-primary);
  padding-top: 1rem;
  border-top: 2px solid var(--color-primary);
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .testimonials-section .swiper-button-prev {
    left: 0px;
  }

  .testimonials-section .swiper-button-next {
    right: 0px;
  }

  .testimonial-card {
    padding: 2rem 2.5rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .display-3,
  .display-4,
  .display-5 {
    font-size: 2rem;
  }

  .product-card .product-image img {
    height: 200px;
  }

  .cta-box {
    padding: 2rem 1rem;
  }

  .order-form-card,
  .contact-form-card {
    padding: 2rem 1rem;
  }

  .hero {
    background-attachment: local;
    min-height: 400px;
  }

  a.nav-link.btn-order {
    width: 140px;
}
}

.promo-section {
  background-color: var(--color-beige);
  padding: 5rem 0;
}

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

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

.product-card,
.menu-item-card,
.value-card,
.team-card {
  animation: fadeInUp 0.6s ease-out;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-light);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

.testimonial-initial {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  margin-right: 1rem;
}

.language-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.language-switcher a {
  display: inline-block;
  transition: all 0.3s;
  opacity: 0.7;
}

.language-switcher a:hover,
.language-switcher a.active {
  opacity: 1;
  transform: scale(1.1);
}

.language-switcher img {
  transition: all 0.3s;
}

.language-switcher a:hover img,
.language-switcher a.active img {
  border-color: var(--color-primary);
}

.order-product-card {
  background: white;
  border: 2px solid var(--color-beige);
  border-radius: 10px;
  padding: 1rem;
  transition: all 0.3s;
  cursor: pointer;
}

.order-product-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 5px 15px rgba(107, 68, 35, 0.15);
}

.order-product-card.selected {
  border-color: var(--color-primary);
  background: var(--color-light);
}

.order-product-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.order-search {
  margin-bottom: 1.5rem;
}

.order-search input {
  border-radius: 25px;
  padding: 0.75rem 1.5rem;
}

.order-category-tabs {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.order-category-tabs .btn {
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--color-primary);
  background: white;
  color: var(--color-primary);
  font-weight: 600;
  transition: all 0.3s;
}

.order-category-tabs .btn:hover,
.order-category-tabs .btn.active {
  background: var(--color-primary);
  color: white;
}

.map-container {
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Swiper arrows styling */
.testimonials-section .swiper-button-next,
.testimonials-section .swiper-button-prev {
  color: #ffc107;
  position: absolute;
  top: 50%;
  z-index: 10;
}

/* Poziciono jashtë sliderit */
.testimonials-section .swiper-button-prev {
  left: 0px;
}

.testimonials-section .swiper-button-next {
  right: 0px;
}

iframe {
  border-radius: 10px;
  width: 100%;
  height: 250px;
}