

:root {
  --top-bg: #147978;
  --top-text: #ffffff;
  --menu-bg: #ffffff;
  --menu-border: #ffffff;
  --menu-icon: #147978;
  --menu-link: #666666;
  --navbar-bg: #ffffff;
  --navbar-border: #147978;
  --project-text: #1c3c42;
  --play-button: #14b2b1;
  --social-icon: #ffffff;
  --toggler-text: #000000;
  --product-description: #147978;
  --button-text: #ffffff;
  --button-bg: #147978;
  --button-bg-hover: #02504f;
  --strong: #147978;
  --fa: #147978;
  --checkbox: #147978;
  --link: #147978;
  --dropdown: #666666;
  --video-border: #147978;
  --comment-bg: #ffffff;
  --footer-bg: #ffffff;
  --footer-text: #000000;
  --footer-link: #000000;
  --send-bg: #147978;
  --send-hover: #02504f;
  --send-text: #ffffff;
}

#top {
  background-color: var(--top-bg);
  border-bottom: 1px solid var(--top-bg);
}

#top .list-inline-item > a,
#top .list-inline-item .dropdown > a {
  color: var(--top-text);
}

#menu {
  background-color: var(--menu-bg);
  border: 1px solid var(--menu-border);
}

#menu .navbar-toggler-menu i {
  color: var(--menu-icon);
  border-color: var(--menu-icon);
}

#menu .navbar-nav > li > a {
  color: var(--menu-link);
  background-color: transparent;
}

#menu .navbar-nav > li > a:hover {
  background-color: var(--menu-hover, rgba(0, 0, 0, 0.1));
}

#navbar-menu {
  background: var(--navbar-bg);
  border-top: 3px solid var(--navbar-border);
}

.project-text {
  color: var(--project-text);
}

.video-wrapper .play-button {
  color: var(--play-button);
}

.et-social-icon a {
  color: var(--social-icon);
}

.navbar-toggler-menu {
  color: var(--toggler-text);
  background-color: transparent;
}

.product-thumb .description a {
  color: var(--product-description);
}

#button-cart,
button.btn.btn-primary,
a.btn.btn-primary {
  color: var(--button-text);
  background: var(--button-bg);
}

button.btn.btn-primary:hover,
.send-btn:hover,
.video-banner-section .play-button:hover,
#videoModal .close:hover {
  background-color: var(--button-bg-hover);
}

strong {
  color: var(--strong);
}

.fa-2x {
  color: var(--fa) !important;
}

.form-check-input:checked {
  background-color: var(--checkbox);
  border-color: var(--checkbox);
}

a,
a.nav-link {
  color: var(--link);
}

.dropdown-item {
  color: var(--dropdown);
}

.video-banner-section .video-wrapper {
  border: 6px solid var(--video-border);
}

.video-banner-section .play-button {
  background-color: var(--button-bg);
}

#videoModal .close {
  background-color: var(--button-bg);
  color: var(--button-text);
}

.comment-banner-section {
  background-color: var(--comment-bg);
}

#footer-info {
  background-color: var(--footer-bg);
  color: var(--footer-text);
}

.footer-contact i,
#footer-info a {
  color: var(--footer-link);
}

.send-btn {
  background-color: var(--send-bg);
  color: var(--send-text);
}



.volunteer-section {
  background-size: cover;
  padding: 60px 20px;
  color: #fff;
      margin: 60px 0;
}

.volunteer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.volunteer-left {
  flex: 1 1 45%;
}

.volunteer-heading {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.volunteer-subtext {
  font-size: 18px;
  line-height: 1.6;
}

.volunteer-form {
  flex: 1 1 45%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(8px);
}

.volunteer-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  gap: 20px;
}

.form-group.full {
  flex-direction: column;
}

.volunteer-form input,
.volunteer-form textarea {
  flex: 1;
  padding: 12px 15px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
}

.volunteer-form textarea {
  resize: vertical;
  min-height: 120px;
}

.send-btn {
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}



/* Mobil görünüş */
@media (max-width: 768px) {
  .volunteer-container {
    flex-direction: column;
  }

  .form-group {
    flex-direction: column;
  }

  .volunteer-left,
  .volunteer-form {
    flex: 1 1 100%;
        width: 100%;
  }

  .volunteer-heading {
    font-size: 28px;
  }
}


#footer-info {
  padding: 40px 30px;
  font-family: "Segoe UI", sans-serif;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.footer-left,
.footer-right {
  flex: 1 1 45%;
}

.footer-logos {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-logos img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.footer-logos img:hover {
  transform: scale(1.05);
}

.footer-comment {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  max-width: 100%;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.footer-contact i {
  font-size: 18px;
}

#footer-info a {
  text-decoration: none;
  font-weight: 500;
}

#footer-info a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
  }

  .footer-left,
  .footer-right {
    flex: 1 1 100%;
  }

  .footer-logos {
    justify-content: center;
  }

  .footer-comment {
    text-align: center;
  }

  .footer-contact {
    align-items: center;
    text-align: center;
  }
}


.comment-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comment-banner-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.comment-top {
  font-style: italic;
  color: #444;
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.comment-bottom {
  font-weight: 600;
  color: #222;
}

.comment-banner-text h1 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
    color: #147978;
}

.comment-banner-section{
        margin: 30px 15px;
}

.comment-banner-subtitle {
    font-size: 16px;
    color: #555;
    font-weight: 600;
}

.quote-icon {
  margin-top: 20px;
}

.video-banner-section {
  display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    padding: 40px 20px;
    margin-bottom: 60px;
}
.video-banner-section h2 {
  font-size: 2rem;
    font-weight: 700;
    color: #147978;
    margin-bottom: 15px;
}
.video-banner-section p {
  font-size: 16px;
  color: #555;
  font-weight: 600;
  
}
.video-banner-section .text-content {
  flex: 1 1 50%;
  max-width: 50%;
}
.video-banner-section .video-wrapper {
  position: relative;
  cursor: pointer;
  width: 45%;
  max-width: 350px;
  border-radius: 10px;
  overflow: hidden;
}
.video-banner-section .video-wrapper img {
  width: 350px;
  display: block;
}
.video-banner-section .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-weight: bold;
  font-size: 18px;
  padding: 12px 30px;
  border-radius: 10px;
  z-index: 2;
  transition: background 0.3s;
}

.video-banner-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.video-banner-links li {
  margin-bottom: 5px;
}

.video-banner-links a {
  color: #229ac8;
  text-decoration: none;
}

.video-banner-links a:hover {
  text-decoration: underline;
}


/* Modal */
#videoModal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
#videoModal .modal-content {
  position: relative;
  margin: 5% auto;
  max-width: 800px;
  width: 90%;
}
#videoModal iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 10px;
}
#videoModal .close {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease;
}


/* Mobile */
@media (max-width: 768px) {
  .video-banner-section .text-content,
  .video-banner-section .video-wrapper {
    max-width: 100%;
    flex: 1 1 100%;
  }
  #videoModal iframe {
    height: 250px;
  }
}


.custom-banner-section {
  position: relative;
  overflow: hidden;
  margin: 0px 0 30px;
}

.custom-banner-title-subtitle {
    margin-top: 30px;
}

.custom-banner-wrapper {
  position: relative;
}

.custom-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.custom-banner-wave {
  display: block;
  margin-top: -1px;
}

.custom-banner-text {
    position: absolute;
    top: 0;
    left: 0;
    width: max-content; /* mətn uzunluğuna görə ölçü */
    max-width: 30%; /* çox geniş olmasın */
    min-width: 200px; /* çox dar qalmasın */
    height: auto; /* mətnə görə hündürlük */
    background-color: rgba(255, 255, 255, 0.75);
    padding: 30px;
    box-sizing: border-box;
    overflow-y: auto;
    color: #000;
    z-index: 2;
    border-radius: 0;
    white-space: normal; /* mətnin sətirdən düşməsi üçün */
}

.custom-banner-text * {
    max-width: 100%;
    display: block;
}


.custom-banner-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.custom-banner-text p {
  font-size: 16px;
  margin: 0;
  font-weight: 600;
  color: #555;
}

.custom-banner-logo {
  width: 200px;
  display: block;
  margin-bottom: 10px;
}

h2.custom-banner-title {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
    color: #147978;
}

p.custom-banner-subtitle {
  font-size: 16px;
  color: #555;
  padding: 0px 10px;
  font-weight: 600;
}

/* Mobil versiya - yazı altda olsun */
@media (max-width: 992px) {
  .custom-banner-text {
        position: static;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        height: auto;
        background-color: #fff;
        padding: 20px 15px;
    }

  .custom-banner-text h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .custom-banner-text p {
    font-size: 1rem;
  }
}





.tittle-banner-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #147978;
  margin-bottom: 15px;
}

.tittle-banner-section p {
  font-size: 16px;
    color: #555;
    font-weight: 600;
}

.tittle-banner-section img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tittle-banner-small {
  max-width: 350px;
  height: auto;
}


.tittle-banner-section.top_text .text-center {
  margin-bottom: 30px;
}

.tittle-banner-section.left_image .row {
  flex-direction: row;
}

.tittle-banner-section.right_image .row {
  flex-direction: row-reverse;
}

.tittle-banner {
    padding: 30px 15px;
}

@media (max-width: 768px) {
  .tittle-banner-section .row {
    flex-direction: column !important;
    text-align: center;
  }

  .tittle-banner-section h2 {
    font-size: 1.6rem;
  }

  .tittle-banner-section p {
    font-size: 1rem;
  }

  .tittle-banner-section img {
    margin-bottom: 20px;
  }
}

@media (min-width: 768px) {
    .text-md-start {
        padding: 0 50px;
    }
}



.donate-banner {
  background-color: #147978;
  color: #ffffff;
  padding: 60px 0;
  font-family: 'Segoe UI', sans-serif;
}

.banner-title {
  margin-bottom: 10px;
    font-family: 'Cabin', Helvetica, Arial, Lucida, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    color: #bd8f52 !important;
    letter-spacing: 3px;
    line-height: 1.4em;
}

.banner-subtitle {
  font-size: 1.2rem;
  color: #e0f7f4;
  margin-bottom: 20px;
}

.img-donate {
    width: 350px;
}

@media (max-width: 768px) {
  .img-donate {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}


.donate-banner .img-fluid {
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.donate-info {
  background-color: rgba(0, 0, 0, 0.25);
  padding: 30px;
  border-radius: 12px;
  color: #ffffff;
}

.donate-info p {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #dbeaf3;
}

.donate-info strong {
  display: block;
  font-weight: 600;
  margin-bottom: 3px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .banner-title,
  .banner-subtitle {
    text-align: center;
  }

  .donate-info {
    margin-top: 30px;
  }
}



.navbar {
  margin-bottom: 0 !important;
}

.container, .row, .main-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


.dropdown-item {
    border-bottom: 1px solid rgba(0, 0, 0, .03);
    padding: 10px 5%;
    display: block;
    font-size: 14px;
    -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}

#menu .dropdown-inner li {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    vertical-align: baseline;
    background: transparent;
    padding-left: 5%;
}

.navbar-toggler-menu {
        padding: 0.25rem;
    font-size: 1.015625rem;
    line-height: 1;
    border: 1px;
    border-radius: 0.25rem;
    transition: box-shadow 0.15s ease-in-out;
}

#navbar-menu
 {
    padding: 5%;
    width: 100%;
    visibility: visible;
    opacity: 1;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 2px 5px rgba(0,0,0,.1);
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    margin: 15px 0;
}


.et-social-icons li {
    display: inline-block;
}

.et-social-icon a
 {
    display: inline-block;
    font-size: 24px;
    position: relative;
    text-align: center;
    -webkit-transition: color 300ms ease 0s;
    transition: color 300ms ease 0s;
    text-decoration: none;
    height: 24px;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.project-text {
    font-family: "Segoe UI", sans-serif;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
    line-height: 1.6;
}


.et-social-icons {
    float: right;
}


@media (max-width: 992px) {
    .et-social-icons {
        float: none;
        text-align: center;
         margin: 0 0 5px;
    }
}
@media (min-width: 992px) {
    #navbar-menu {
        display: flex !important;
        flex-basis: auto;
        padding: 0;
        border-top: none;
        box-shadow: none;
        padding: 0 3%;
    }
}



.custom-topbar {
  width: 100%;
  gap: 15px;
}

@media (min-width: 768px) {
  .custom-topbar {
    width: auto;
  }
}


.img-fluid {
  width: 100px;
}

@media (min-width: 768px) {
  .img-fluid {
    width: 200px;
  }
}

#product-category {
    min-height: 400px;
    margin: 30px 15px;
}

body {
  width: 100%;
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: #444;
}
legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}
label {
  font-size: 12px;
  font-weight: normal;
}
/* Chrome border line */
button:focus {
  outline: none !important;
}
/* container */
#container {
  width: 100%;
  min-height: 100%;
  position: absolute;
  margin-bottom: 300px;
}

#alert {
  z-index: 9999;
  position: fixed;
  top: 30%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
}
@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1140px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1320px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
#alert .alert {
  margin-bottom: 15px;
}
#alert .alert-primary {
  box-shadow: 0 0 0 5px rgb(var(--bs-primary-rgb), 0.1);
}
#alert .alert-secondary {
  box-shadow: 0 0 0 5px rgb(var(--bs-secondary-rgb), 0.1);
}
#alert .alert-success {
  box-shadow: 0 0 0 5px rgb(var(--bs-success-rgb), 0.1);
}
#alert .alert-warning {
  box-shadow: 0 0 0 5px rgb(var(--bs-warning-rgb), 0.1);
}
#alert .alert-danger {
  box-shadow: 0 0 0 5px rgb(var(--bs-danger-rgb), 0.1);
}
#alert .alert-info {
  box-shadow: 0 0 0 5px rgb(var(--bs-info-rgb), 0.1);
}
#alert .alert-light {
  box-shadow: 0 0 0 5px rgb(var(--bs-light-rgb), 0.1);
}
#alert .alert-dark {
  box-shadow: 0 0 0 5px rgb(var(--bs-dark-rgb), 0.1);
}
/* top */
#top {
  position: relative;
  padding-bottom: 5px;
  height: 32px;
}
#top ul.list-inline {
  margin-bottom: 0;
}
#top .list-inline-item > a, #top .list-inline-item .dropdown > a {
  font-size: 1.1em; 
  line-height: 32px;
  vertical-align: middle;
  padding: 10px 0px 5px 0px;
}
/* logo */
#logo {
  text-align: center;
  margin: 7px 0 7px 0;
}
#logo img {
  max-width: 200px;
}
@media (min-width: 768px) {
  #logo {
    text-align: left;
  }
}
/* search */
#search {
  margin-bottom: 10px;
}
#search .form-control-lg {
  height: 40px;
  font-size: 12px;
  line-height: 20px;
  padding: 0 10px;
}
#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 0.57rem 35px;
  text-shadow: 0 1px 0 #FFF;
}
/* cart */
#cart {
  margin-bottom: 10px;
}
#cart .img-thumbnail {
  min-width: 100px;
}
#cart .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 14px 35px;
}
#cart .dropdown-menu {
  background: #eee;
}
#cart .dropdown-menu li {
  min-width: 300px;
}
@media (max-width: 768px) {
  #cart .dropdown-menu li {
    min-width: 100%;
  }
}
/* menu */
#menu {
  background-repeat: repeat-x;
  border-radius: 4px;
  
  width: 100%;
  padding: 0 15px;
}

header {
    background: #ffffff;
    box-shadow: 0 4px 0 #ffffff, 0 6px 15px rgb(0 0 0 / 8%);
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 999;
    transition: all .2s ease;
}


  .is-scrolled header {
    box-shadow: 0 6px 15px rgb(0 0 0 / 0%);
  }
  
  footer {
    background: #ffffff;
    box-shadow: 0 4px 0 #ffffff, 0 6px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
}
#menu .navbar-nav > li > a {
    padding: 10px 15px 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, .03);
    font-weight: 700;
    font-size: 14px;
    -webkit-transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
    transition: opacity .2s ease-in-out, background-color .2s ease-in-out;
}
@media (min-width: 992px) {
    #menu .navbar-nav > li > a {
        border-bottom: none;
    }
}

#menu .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-color:transparent;
}
@media (min-width: 992px) {
   #menu .dropdown-menu {
       border-color:#dee2e6;
       border-top: 3px solid #13b2b1;
    }
}
#menu .dropdown-inner {
  display: flex;
  flex-direction: column;
}
#menu .dropdown-inner ul {
  width: 100%;
  min-width: 200px;
  padding-left: 10px;
}
@media (min-width: 960px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
  #menu .dropdown-inner {
    flex-direction: row;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-2 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -600px;
  }
}
#category {
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #fff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
#menu .navbar-toggler-menu i {
  font-size: 24px;
}
/* default boostrap changes */
div.required .col-form-label:before, div.required .form-label:before {
  content: "* ";
  color: #F00;
  font-weight: bold;
}
.form-switch-lg {
  font-size: 20px;
  min-height: 30px;
  line-height: 30px;
}
.nav-tabs {
  margin-bottom: 15px;
}
.form-check .form-check-input {
  margin-top: 0.25rem;
}
@media (min-width: 768px) {
  .col-form-label {
    text-align: right;
  }
}

/* breadcrumb */
.breadcrumb {
  margin: 0 0 20px 0;
  padding: 8px 0;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  background-color: var(--bs-tertiary-bg);
}
.breadcrumb i {
  font-size: 15px;
}
.breadcrumb > li.breadcrumb-item {
  text-shadow: 0 1px 0 #FFF;
  padding: 0 20px;
  position: relative;
  white-space: nowrap;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
}
.breadcrumb > li.breadcrumb-item:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: -5px;
  width: 29px;
  height: 29px;
  border-right: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  transform: rotate(-45deg);
}
.breadcrumb > li.breadcrumb-item + li:before {
  content: "";
  padding: 0;
}
.product-thumb {
  border: 1px solid #ddd;
  position: relative;
  height: 100%;
}
.product-thumb .image {
  text-align: center;
}
.product-thumb .image a:hover {
  opacity: 0.8;
}
.product-thumb .description {
  padding: 15px;
}
.product-thumb .description h4 {
  font-weight: bold;
}
.product-thumb .button {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
}
.product-thumb .button button {
  width: 33.33%;
  border: none;
  border-top: 1px solid var(--bs-border-color);
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-gray-600);
  line-height: 38px;
  text-align: center;
}
.product-thumb .button button:hover {
  color: var(--bs-gray-600);
  background-color: #ddd;
  text-decoration: none;
  cursor: pointer;
}
.product-thumb .button button + button {
  border-left: 1px solid var(--bs-border-color);
}
@media (min-width: 960px) {
  .product-list .product-thumb {
    display: flex;
  }
  .product-list .product-thumb .image {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .product-list .product-thumb .content {
    flex-direction: column;
    flex: 75%;
    position: relative;
  }
  .product-list .product-thumb .button {
    border-left: 1px solid #ddd;
    width: calc(100% -  15px);
    margin-left: 15px;
  }
}
.rating .fa-stack {
  width: 20px;
}
.rating .fa-star {
  color: #999;
  font-size: 15px;
}
.rating .fa-star {
  color: #FC0;
  font-size: 15px;
}
.rating .fa-star + .fa-star {
  color: #E69500;
}
/* product list */
.price {
  color: #444;
}
.price-new {
  font-weight: 600;
}
.price-old {
  color: #dc512c;
  text-decoration: line-through;
}
.price-tax {
  color: #999;
  font-size: 12px;
  display: block;
}
/* blog */
.blog-thumb {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}
.blog-thumb h4 {
  font-weight: bold;
}
.blog-thumb .image {
  text-align: center;
  margin-bottom: 15px;
}
.blog-thumb .image a:hover {
  opacity: 0.8;
}
.blog-thumb .description {
  padding: 15px;
}
/* Theme Custom CSS */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}
#cookie div {
  font-size: 16px;
  color: #FFFFFF;
}
