/*
Theme Name: Patara Child
Theme URL: https://themeforest.net/user/webredox/portfolio
Description: Child theme of Patara
Author: webRedox WordPress team
Author URI: http://webredox.net/
Template: patara
Version: 1.0
Text Domain: patara
*/ 
/*******Add Your Css Below This Line*********/

/* =========================
   LANGUAGE SWITCHER
========================= */
.dw-header-lang {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 99999;
}

.dw-header-lang ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dw-header-lang li {
  margin: 0;
  padding: 0;
}

.dw-header-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transition: all 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.dw-header-lang a:hover,
.dw-header-lang a:focus {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.24);
}

.dw-header-lang img {
  width: 20px;
  height: auto;
  display: block;
}

.dw-header-lang .current-lang a,
.dw-header-lang .lang-item-current a {
  border-color: rgba(200, 169, 126, 0.9);
  box-shadow: 0 0 0 1px rgba(200, 169, 126, 0.25) inset;
}

/* =========================
   MOBILE CONTACT BAR
========================= */
.dw-mobile-contact-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  z-index: 999999;
  overflow: hidden;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.dw-contact-item {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  color: #ffffff;
  text-align: center;
  padding: 10px 8px;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.dw-contact-item + .dw-contact-item {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.dw-contact-item:hover,
.dw-contact-item:focus,
.dw-contact-item:active {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.dw-contact-item i {
  font-size: 22px;
  line-height: 1;
  display: block;
}

.dw-contact-item img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.dw-contact-item span {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  white-space: nowrap;
}

.dw-contact-item.is-phone i {
  color: #ffffff;
}

.dw-contact-item.is-zalo span {
  color: #ffffff;
}

.dw-contact-item.is-whatsapp i {
  color: #25D366;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 767px) {
  .dw-mobile-contact-bar {
    display: grid;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  body {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  .dw-header-lang {
    top: 18px;
    right: 16px;
  }

  .dw-header-lang a {
    width: 34px;
    height: 28px;
  }

  .dw-header-lang img {
    width: 18px;
  }
}

@media (max-width: 380px) {
  .dw-mobile-contact-bar {
    left: 8px;
    right: 8px;
    border-radius: 14px;
  }

  .dw-contact-item {
    min-height: 58px;
    padding: 8px 4px;
    gap: 4px;
  }

  .dw-contact-item i,
  .dw-contact-item img {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }

  .dw-contact-item span {
    font-size: 11px;
  }

  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .dw-header-lang {
    top: 14px;
    right: 12px;
  }
}

@media (min-width: 768px) {
  .dw-mobile-contact-bar {
    display: none !important;
  }
}