:root {
  --body-font: "Inter", sans-serif;
  --font-w-bold: 700;
  --bg-gray: 232, 232, 232;
  --color-white: 255, 255, 255;
  --color-black: 35, 35, 35;
  --color-brown: 141, 116, 71;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  color: rgb(var(--color-black));
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: rgb(var(--color-dark-gray), 1);
  font-family: var(--body-font);
  font-weight: 500;
}

h1 {
  font-size: 2rem;
  line-height: 1.2rem;
}

h2 {
  font-size: 1.5rem;
  line-height: 2.2rem;
}

h3 {
  font-size: 1.17rem;
  line-height: 1.2rem;
}

h4 {
  font-size: 1rem;
  line-height: 1.2rem;
}

p {
  font-size: 1rem;
  line-height: 1.6rem;
}

hr {
  border: 0px;
  border-top: 1px double rgba(var(--color-black), 0.1);
}

ul {
  list-style: none;
  list-style-position: inside;
}

a {
  text-decoration: none;
  color: rgb(var(--color-orange));
}

img {
  max-width: 100%;
  height: auto;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.container {
  width: 95%;
  max-width: 1300px;
  margin: auto;
}

.row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.col-1 {
  grid-column: span 1;
}

.col-2 {
  grid-column: span 2;
}

.col-3 {
  grid-column: span 3;
}

.col-4 {
  grid-column: span 4;
}

.col-5 {
  grid-column: span 5;
}

.col-6 {
  grid-column: span 6;
}

.col-7 {
  grid-column: span 7;
}

.col-8 {
  grid-column: span 8;
}

.col-9 {
  grid-column: span 9;
}

.col-10 {
  grid-column: span 10;
}

.col-11 {
  grid-column: span 11;
}

.col-12 {
  grid-column: span 12;
}

.ai-center {
  align-items: center;
}

.jc-center {
  justify-content: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.d-none {
  display: none;
}

.d-flex {
  display: flex !important;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-20 {
  margin-right: 20px;
}

.ml-5 {
  margin-left: 5px;
}

.ptb-50 {
  padding: 50px 0px;
}

.b-bottom {
  border-bottom: 1px solid rgba(var(--color-black), 0.1);
}

.w-100 {
  width: 100% !important;
}

.page-title {
  font-weight: var(--font-w-bold);
}

.page-title-2 {
  font-size: 1.3rem;
}

.txt-center {
  text-align: center;
}

.br{
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.btn {
  width: fit-content;
  padding: 13px 30px;
  font-size: 0.9rem;
  font-family: var(--body-font);
  border: 1px solid rgb(var(--color-black));
  background-color: rgb(var(--color-black));
  color: rgb(var(--color-white));
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  display: block;
}

.btn-brown {
  width: fit-content;
  padding: 13px 30px;
  font-size: 0.9rem;
  font-family: var(--body-font);
  border: 1px solid rgb(var(--color-brown));
  background-color: rgb(var(--color-brown));
  color: rgb(var(--color-white));
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  display: block;
}

.btn-bordered {
  width: fit-content;
  padding: 13px 30px;
  font-size: 0.9rem;
  font-family: var(--body-font);
  border: 1px solid rgb(var(--color-white));
  background-color: transparent;
  color: rgb(var(--color-white));
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  transition: 300ms;
  display: block;
}

.btn-bordered:hover {
  background-color: #B18B5E;
  border-color: #B18B5E;
}

.btn.hover:hover {
  background-color: rgba(var(--color-brown), 1);
  border-color: rgb(var(--color-brown));
}

.btn.bordered {
  background-color: transparent;
  color: rgb(var(--color-black));
}

.btn.black.bordered:hover {
  background-color: rgb(var(--color-black));
  color: rgb(var(--color-white));
}

.btn.white {
  background-color: rgb(var(--color-white));
  border-color: rgb(var(--color-white));
  color: rgb(var(--color-black));
}

.btn.white:hover {
  background-color: rgb(var(--color-brown));
  border-color: rgb(var(--color-brown));
}

.header-menu-btn>*,
.btn>* {
  pointer-events: none;
}

.btn>.loading {
  display: none;
}

.btn.htmx-request .btn-content {
  display: none;
}

.btn.htmx-request .loading {
  display: block;
}

.box {
  background-color: rgba(var(--color-black), 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 20px;
  display: block;
}

.header-menu-btn {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: rgb(var(--color-black));
}

.header {
  width: 100%;
  background-color: rgb(var(--color-white));
  padding: 8px 0px;
  border-bottom: 1px solid rgba(var(--color-black), 0.1);
  display: block;
}

.header .container {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.header .header-logo {
  width: 180px;
  display: block;
}

.header .header-logo img {
  width: 100%;
  display: block;
}

.header .header-menu {
  display: flex;
}

.header .header-menu>li {
  margin-right: 20px;
  position: relative;
}

.header .header-menu li:last-child {
  margin-right: 0px;
}

.header .header-menu li a {
  height: 60px;
  color: rgb(var(--color-black));
  align-items: center;
  display: flex;
}

.header .header-menu li a:hover {
  color: rgb(var(--color-brown));
}

.header .header-menu li:hover .submenu {
  width: max-content;
  top: 60px;
  height: auto;
  opacity: 1;
}

.header .header-menu .submenu {
  top: 0px;
  height: 0;
  background-color: rgb(var(--color-white));
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  position: absolute;
  z-index: 999;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%);
  opacity: 0;
  transition: 200ms;
}

.header .header-menu .submenu li {
  border-bottom: 1px solid rgba(var(--color-black), 0.1);
}

.header .header-menu .submenu li a {
  width: 100%;
  height: 40px;
  padding: 10px 20px;
  display: block;
}

.content {
  width: 100%;
  min-height: calc(100vh - 322px);
  display: block;
}

.full-gray {
  width: 100%;
  background-color: rgb(var(--bg-gray));
  display: block;
}

.hompage-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hompage-slider-item {
  width: 100%;
  position: relative;
  display: block;
}

.hompage-slider-image {
  width: 100%;
  display: block;
}

.hompage-slider-desc {
  width: 100%;
  top: 30%;
  transform: translateY(-50%);
  position: absolute;
  display: block;
}

.hompage-slider-desc .container {
  flex-direction: column;
  display: flex;
}

.hompage-slider-desc .title-two,
.hompage-slider-desc .desc {
  width: 45%;
  display: block;
}

.hompage-slider-desc .title-one {
  width: fit-content;
  font-size: 1rem;
  margin-bottom: 10px;
  padding: 5px 15px;
  font-weight: var(--font-w-bold);
  color: rgb(255, 255, 255);
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.2);
}

.hompage-slider-desc .title-two {
  font-size: 3.5rem;
  color: rgba(255, 255, 255);
  font-weight: var(--font-w-bold);
}

.hompage-slider-desc .desc {
  font-size: 1rem;
  margin-top: 15px;
  color: rgba(255, 255, 255);
}

.homepage-slider-pagination {
  width: fit-content !important;
  height: auto;
  top: 50% !important;
  transform: translateY(-50%);
  right: 20px !important;
  left: auto !important;
  bottom: auto !important;
  flex-direction: column;
  position: absolute;
  z-index: 999;
  display: flex;
}

.homepage-slider-pagination .swiper-pagination-bullet {
  width: 30px;
  height: 30px;
  border: 2px solid rgb(var(--color-white));
  color: rgb(var(--color-white));
  background-color: transparent;
  margin-bottom: 10px !important;
  align-items: center;
  justify-content: center;
  display: flex;
}

.homepage-slider-pagination .swiper-pagination-bullet-active {
  margin-bottom: 60px !important;
  position: relative;
  flex-direction: column;
  display: flex;
}

.homepage-slider-pagination .swiper-pagination-bullet-active::after {
  content: '';
  width: 1px;
  height: 40px;
  background-color: rgb(var(--color-white));
  top: 40px;
  position: absolute;
  display: block;
}

.hompage-news-slider {
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  position: relative;
}

.home-about-widget {
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.home-about-widget li {
  width: 100%;
  border-right: 1px dashed rgba(var(--color-black), 0.3);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  display: flex;
}

.home-about-widget li .icon {
  width: 60px;
  height: 60px;
  font-size: 1.2rem;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  background-color: rgba(var(--color-black), 0.1);
  justify-content: center;
  align-items: center;
  display: flex;
}

.home-about-widget li span {
  width: 100%;
  text-align: center;
  margin-top: 5px;
  font-size: 0.9rem;
  font-weight: var(--font-w-bold);
}

.home-about-widget li:last-child {
  border: none;
}

.news-list-item {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.news-list-item::before {
  content: '';
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(var(--color-black), 0.9) 0%, rgba(var(--color-black), 0.82) 52%, rgba(var(--color-black), 0.5) 100%);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

.news-list-item .news-image {
  width: 100%;
  height: 400px;
  object-position: center;
  object-fit: cover;
  display: block;
}

.news-list-item .news-title {
  width: 90%;
  left: 50%;
  color: rgb(var(--color-white));
  font-size: 1.1rem;
  text-align: center;
  transform: translateX(-50%);
  position: absolute;
  bottom: 85px;
  z-index: 9;
}

.news-list-item .btn {
  padding: 10px 30px;
  width: max-content !important;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}

.page-top-title {
  width: 100%;
  height: 180px;
  background-image: url('../images/header-bg.webp');
  background-position: center;
  background-size: cover;
  align-items: center;
  flex-direction: column;
  position: relative;
  justify-content: center;
  display: flex;
}

.page-top-title::before {
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(var(--color-black), 0.85);
  z-index: 9;
  position: absolute;
}

.page-top-title>h1 {
  color: rgb(var(--color-white));
  font-size: 2rem;
  z-index: 99;
  text-transform: uppercase;
  position: relative;
}

.page-top-title>.title-sub-desc {
  margin-top: 5px;
  color: rgb(var(--color-white));
  font-size: 0.9rem;
  z-index: 99;
  position: relative;
}

.page-top-title > img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  position: absolute;
  display: block;
}

.teklif-al-page-title {
  width: 100%;
  padding: 80px 0px;
  background-image: url('../images/teklif-al-title-bg.webp');
  background-position: center;
  background-size: cover;
}

.servis-talebi-page-title {
  width: 100%;
  padding: 80px 0px;
  background-image: url('../images/servis-talebi-title-bg.webp');
  background-position: center;
  background-size: cover;
}

.page-content {
  padding: 50px 0px;
}

.page-content p {
  font-size: 0.9rem;
  line-height: 1.5rem;
}

.page-content h2 {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: var(--font-w-bold);
}

.page-content ul {
  font-size: 0.9rem;
  list-style: inside;
}

.page-content ul li {
  margin-bottom: 7px;
}

.page-content ol {
  font-size: 0.9rem;
  list-style: auto;
  list-style-position: inside;
}

.page-content ol li {
  margin-bottom: 7px;
}

.sidebar-container {
  width: 100%;
  display: block;
}

.sidebar-container .title {
  width: 100%;
  font-size: 0.9rem;
  font-weight: var(--font-w-bold);
  display: block;
}

.sidebar-container .sidebar-menu {
  width: 100%;
  margin-top: 10px;
  flex-direction: column;
  display: flex;
}

.sidebar-container .sidebar-menu li {
  width: 100%;
  margin-bottom: 5px;
  display: block;
}

.sidebar-container .sidebar-menu li a {
  width: 100%;
  background-color: rgba(var(--color-black), 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 0.9rem;
  padding: 8px 10px;
  display: block;
}

.sidebar-container .sidebar-menu li a:hover {
  background: linear-gradient(90deg, #B59B5F 0%, #B59B5F 24.42%, #897044 64.92%, #C4AB68 100%);
  color: rgb(var(--color-white));
}

.product-list-item {
  width: 100%;
  background-color: rgba(var(--color-black), 0.1);
  padding: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  display: flex;
}

.product-list-item:hover .product-image {
  transform: scale(1.2);
}

.product-list-item .product-image {
  width: 100%;
  transition: 200ms;
  display: block;
}

.product-list-item>.title {
  width: 100%;
  text-align: center;
  font-size: 1rem;
  font-weight: var(--font-w-bold);
  margin-top: 10px;
  display: block;
}

.product-list-item .product-features {
  width: 100%;
  padding: 10px 0px;
  border-top: 1px dotted rgb(var(--color-black), 0.5);
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.product-list-item .product-features li {
  align-items: center;
  padding: 10px;
  border-right: 1px dotted rgb(var(--color-black), 0.5);
  flex-direction: column;
  display: flex;
}

.product-list-item .product-features li:last-child {
  border: none;
}

.product-list-item .product-features li .title {
  font-weight: var(--font-w-bold);
  font-size: 0.7rem;
}

.product-list-item .product-features li .desc {
  font-size: 0.8rem;
}

.form-group {
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 10px 15px 15px 15px;
  background-color: rgb(var(--color-white));
  border: 1px solid rgb(var(--color-black), 0.4);
  display: block;
}

.form-group .form-label {
  width: 100%;
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
}

.form-group .form-input {
  width: 100%;
  font-family: var(--body-font);
  border: none;
  outline: none;
  font-size: 1rem;
  color: rgba(var(--color-black), 0.9);
  padding: 5px 0px;
  /* border: 1px solid rgb(var(--color-black), 0.4); */
  display: block;
}

.form-group .form-textarea {
  width: 100%;
  max-width: 100%;
  font-family: var(--body-font);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  outline: none;
  font-size: 1rem;
  color: rgba(var(--color-black), 0.9);
  padding: 5px 0px;
  border: none;
  display: block;
}

.information-form-input{
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  display: flex;
}

.footer {
  width: 100%;
  background-color: rgb(var(--color-black));
  display: block;
}

.footer .footer-inner {
  padding: 35px 0px;
}

.footer .footer-inner .footer-item {
  border-right: 1px dashed rgba(var(--color-white), 0.3);
  width: 100%;
  padding: 0px 20px;
  align-items: center;
  flex-direction: column;
  display: flex;
}

.footer .footer-inner .footer-item:first-child {
  padding: 0px;
  padding-right: 20px;
}

.footer .footer-inner .footer-item:last-child {
  padding: 0px;
  padding-left: 20px;
  border: none;
  justify-content: center;
  flex-direction: column;
  display: flex;
}

.footer .footer-menu {
  width: 100%;
  flex-direction: column;
  display: flex;
}

.footer .footer-menu li {
  width: 100%;
  color: rgb(var(--color-white));
  margin-bottom: 15px;
  justify-content: center;
  display: flex;
}

.footer .footer-menu li a {
  color: rgba(var(--color-white), 0.5);
}

.footer .footer-menu li a:hover {
  color: rgb(var(--color-white));
}

.footer .footer-logo {
  width: 150px;
}

.footer .footer-desc {
  color: rgba(var(--color-white), 0.5);
  font-size: 0.9rem;
  text-align: center;
}

.footer .footer-title {
  width: 100%;
  color: rgb(var(--color-white));
  text-align: center;
  display: block;
}

.footer .social-list {
  width: 100%;
  margin-top: 15px;
  justify-content: center;
  display: flex;
}

.footer .social-list li {
  margin-right: 10px;
}

.footer .social-list li:last-child {
  margin: 0px;
}

.footer .social-list li a {
  width: 35px;
  height: 35px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  color: rgb(var(--color-white));
  background-color: rgba(var(--color-white), 0.3);
  align-items: center;
  justify-content: center;
  display: flex;
}

.footer .social-list li a:hover {
  background-color: rgb(var(--color-white));
  color: rgb(var(--color-black));
}

.footer .footer-bottom {
  border-top: 1px dashed rgba(var(--color-white), 0.3);
  padding: 15px 0px;
  display: block;
}

.footer .footer-bottom .container {
  color: rgb(var(--color-white), 0.5);
  font-size: 0.8rem;
  justify-content: center;
  display: flex;
}

.product-category-btn {
  width: fit-content;
  padding: 7px 15px;
  font-size: 0.9rem;
  background-color: rgba(var(--color-black), 0.1);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  display: block;
}

.product-category-btn:hover {
  background-color: rgba(var(--color-black), 1);
  color: rgb(var(--color-white));
}

.product-slider {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.product-slider-item {
  background-color: rgba(var(--color-black), 0.1);
  padding: 10px;
}

.product-slider-item img {
  width: 100%;
  display: block;
}

.product-slider-thumb-item {
  height: 100px;
  background-color: rgba(var(--color-black), 0.1);
  padding: 5px;
  cursor: pointer;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  align-items: center;
  justify-content: center;
  display: flex;
}

.product-slider-thumb-item img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.product-slider-nav-button {
  outline: none;
}

.product-slider-nav-button::after {
  font-size: 1.5rem;
  color: rgb(var(--color-black));
}

.product-detail-title {
  width: 100%;
  font-weight: var(--font-w-bold);
}

.product-detail-table {
  width: 100%;
  margin-bottom: 10px;
}

.product-detail-table tr td {
  padding-top: 10px;
  padding-bottom: 5px;
  border-bottom: 1px dotted rgba(var(--color-black), 0.5);
}

.product-detail-table tr td:nth-child(2) {
  text-align: right;
}

.product-detail-table .title {
  font-weight: var(--font-w-bold);
}

.contact-page-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-info-list {
  margin-top: 5px;
  flex-direction: column;
  display: flex;
}

.contact-info-list li {
  margin-bottom: 15px;
  align-items: center;
  display: flex;
}

.contact-info-list li .icon {
  width: 50px;
  height: 50px;
  background-color: rgba(var(--color-black), 0.1);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-info-list li>div {
  margin-left: 10px;
  flex-direction: column;
  display: flex;
}

.contact-info-list li>div .title {
  font-weight: var(--font-w-bold);
}

.btn-whatsapp {
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 50%;
  position: fixed;
  right: 30px;
  bottom: 30px;
  box-shadow: #34ba47 0px 7px 29px 0px;
  z-index: 999999999999;
  background-color: #34ba47;
  color: rgb(var(--color-white));
  justify-content: center;
  align-items: center;
  display: flex;
}

.btn-whatsapp .icon {
  font-size: 2rem;
}

.alert-box {
  width: 100%;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  border: 1px solid #000;
  padding: 10px;
  display: block;
}

.alert-box .title {
  width: 100%;
  font-weight: 500;
  font-size: 0.9rem;
  display: block;
}

.alert-box .message {
  width: 100%;
  margin-top: 5px;
  font-size: 0.85rem;
  display: block;
}

.alert-box.error {
  background-color: #FEBFBF;
  color: #EA1F1F;
  border-color: #EA1F1F;
}

.alert-box.success {
  background-color: #CCF5D5;
  color: #40A626;
  border-color: #40A626;
}
.activity-list-item {
    height: 350px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    display: block;
    background: #000; /* Optional: ensure background color behind image if needed */
}

/* Overlay styling */
.activity-list-item::before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    position: absolute;
    z-index: 1; /* Ensure overlay is above the image but below the inner content */
    pointer-events: none; /* Allow clicks to pass through the overlay */
    transition: opacity 0.3s ease; /* Optional: smooth transition for overlay opacity */
}

/* Border styling */
.activity-list-item::after {
    content: '';
    left: 25px;
    right: 25px;
    top: 25px;
    bottom: 25px;
    border: 1px solid #fff;
    border-radius: 3px;
    position: absolute;
    z-index: 2; /* Ensure border is above the overlay and image */
    pointer-events: none; /* Ensure it doesn't block interactions */
}

/* Image styling and zoom effect */
.activity-list-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease; /* Smooth transition for zoom effect */
    display: block; /* Ensure image takes up full space */
/* 	filter: blur(4px);  */
}

/* Zoom effect on hover */
.activity-list-item:hover img {
    transform: scale(1.1); /* Zoom in effect */
}

/* Inner content styling */
.activity-list-item-inner {
    top: 50%;
    transform: translateY(-50%);
    left: 50px;
    position: absolute;
    flex-direction: column;
    display: flex;
    z-index: 3; /* Ensure inner content is above the overlay and border */
    color: white; /* Text color */
    padding: 10px; /* Add padding for better readability */
}

/* Button styling within inner content */
.activity-list-item .btn-bordered {
    display: inline-block;
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

/* Button hover effect */
.activity-list-item:hover .btn-bordered {
  background-color: #B18B5E;
  border-color: #B18B5E;
}


.activity-list-item-inner .company {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 5px;
}

.activity-list-item-inner .title {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 15px;

}

.footer-teklif-al {
  width: 100%;
  padding: 40px 0px;
  background-image: url(../images/teklif-al-bg.webp);
  background-position: center;
  background-size: cover;
  display: block;
}

.footer-teklif-al .col {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: flex;
}

.footer-teklif-al .title {
  width: 100%;
  color: rgb(var(--color-white), 0.9);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 5px;
  display: block;
}

.footer-teklif-al p {
  width: 100%;
  color: rgb(var(--color-white), 0.9);
  font-size: 1rem;
  line-height: 1.2rem;
  display: block;
}

.catalog-container{
  width: 100%;
  gap: 30px;
  padding: 20px;
  font-size: 1.1rem;
  border-radius: 15px;
  background-color:rgb(var(--color-black));
  color: rgba(var(--color-white), 0.7);
  margin-top: 80px;
  display: flex;
}

.catalog-container .title{
  width: 100%;
  font-size: 1.2rem;
  font-weight: var(--font-w-bold);
  color: rgb(var(--color-white));
  display: block;
}

.book-3d {
  --book-thickness: 26px;
  --cover-color: #4D9077;
	perspective: 400px;
  max-width: 160px;
  margin: 0 auto;
  margin-top: -70px;
}

.book-3d__inner {
	position: relative;
	transform-style: preserve-3d;
  transform: rotateY(-25deg);
  border-radius: 20px;
}

/* Book Pages */
.book-3d__inner::before {
  position: absolute;
  content: ' ';
  left: 100%;
  top: 1%;
  width: calc( var(--book-thickness) * 2 );
  height: 98%;
  transform: translate(-55%,0) rotateY( 90deg );
  background: linear-gradient( 90deg , #fff 0%, hsl(0, 0%, 94%) 5%, #fff 10%, hsl(0, 0%, 94%) 15%, #fff 20%, hsl(0, 0%, 94%) 25%, #fff 30%, hsl(0, 0%, 94%) 35%, #fff 40%, hsl(0, 0%, 94%) 45%, #fff 50%, hsl(0, 0%, 94%) 55%, #fff 60%, hsl(0, 0%, 94%) 65%, #fff 70%, hsl(0, 0%, 94%) 75%, #fff 80%, hsl(0, 0%, 94%) 85%, #fff 90%, hsl(0, 0%, 94%) 95%, #fff 100% );
}

/* Rear Cover */
.book-3d__inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1%;
  width: 100%;
  height: 100%;
  transform: translateZ( calc( var(--book-thickness) * -1 ) );
  background-color: rgb(var(--color-brown));
  border-radius: 0 2px 2px 0;
  box-shadow: -10px 0 50px 10px rgba(0,0,0, 0.3);
}

.book-3d__cover {
  display:block;
  width:100%;
  height: auto;
  border-radius: 0px 2px 2px 0px;
  transform: translateZ( var(--book-thickness) );
  box-shadow: 5px 5px 20px rgba(0,0,0, 0.1);
}

.referans-item{
  width: fit-content;
  border: 1px solid rgba(var(--color-black), 0.1);
  border-radius: 5px;
  padding: 20px;
  display: block;
}

.referans-item img{
  height: 60px;
  object-fit: cover;
}

.hompage-referans-slider{
  width: 100%;
  overflow: hidden;
  margin-top: 20px;
  display: flex;
}

.hompage-referans-slider .swiper-slide{
  width: fit-content !important;
}

.referans-container{
  flex-wrap: wrap;
  gap: 20px;
  display: flex;
}

.referans-page-itme{
  max-width: 33%;
  border: 1px solid rgba(var(--color-black), 0.1);
  border-radius: 5px;
  padding: 20px;
  cursor: pointer;
  display: block;
}

.referans-page-itme img{
  filter: grayscale(1);
  transition: 200ms;
}

.referans-page-itme:hover img{
  filter: grayscale(0);
}

@media (max-width: 1199.98px) {}

@media (max-width: 1024px) {
  .hompage-slider-desc {
    top: 20%;
  }

  .hompage-slider-desc .title-one {
    font-size: 1.7rem;
    font-weight: var(--font-w-bold);
  }

  .hompage-slider-desc .title-two {
    font-size: 2.5rem;
    font-weight: var(--font-w-bold);
  }

  .hompage-slider-desc .desc {
    font-size: 1rem;
    margin-top: 10px;
  }

  .news-list-item .news-image {
    height: 320px;
  }
}

@media (max-width: 897px) {
  .hompage-slider-desc {
    top: 10%;
  }
}

@media (max-width: 991.98px) {
  .col-md-1 {
    grid-column: span 1;
  }

  .col-md-2 {
    grid-column: span 2;
  }

  .col-md-3 {
    grid-column: span 3;
  }

  .col-md-4 {
    grid-column: span 4;
  }

  .col-md-5 {
    grid-column: span 5;
  }

  .col-md-6 {
    grid-column: span 6;
  }

  .col-md-7 {
    grid-column: span 7;
  }

  .col-md-8 {
    grid-column: span 8;
  }

  .col-md-9 {
    grid-column: span 9;
  }

  .col-md-10 {
    grid-column: span 10;
  }

  .col-md-11 {
    grid-column: span 11;
  }

  .col-md-12 {
    grid-column: span 12;
  }
}

@media (max-width: 769px) {
  .col-sd-1 {
    grid-column: span 1;
  }

  .col-sd-2 {
    grid-column: span 2;
  }

  .col-sd-3 {
    grid-column: span 3;
  }

  .col-sd-4 {
    grid-column: span 4;
  }

  .col-sd-5 {
    grid-column: span 5;
  }

  .col-sd-6 {
    grid-column: span 6;
  }

  .col-sd-7 {
    grid-column: span 7;
  }

  .col-sd-8 {
    grid-column: span 8;
  }

  .col-sd-9 {
    grid-column: span 9;
  }

  .col-sd-10 {
    grid-column: span 10;
  }

  .col-sd-11 {
    grid-column: span 11;
  }

  .col-sd-12 {
    grid-column: span 12;
  }

  .mt-sd-10 {
    margin-top: 10px;
  }

  .mt-sd-20 {
    margin-top: 20px;
  }

  .ptb-50 {
    padding: 50px 0px;
  }

  .d-sd-flex {
    display: flex;
  }

  .jc-sd-center {
    justify-content: center;
  }

  .d-sd-grid {
    display: grid !important;
  }

  .d-sd-none {
    display: none !important;
  }

  .hompage-slider-item::before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
/*     background-color: rgba(var(--color-black), 0.7); */
    position: absolute;
    display: block;
  }

  .hompage-slider-desc .title-two,
  .hompage-slider-desc .desc {
    width: 90%;
    color: rgb(var(--color-white));
    display: block;
  }

  .hompage-slider-desc {
    top: 20%;
  }

  .hompage-slider-desc .btn {
    background-color: rgb(var(--color-white));
    color: rgb(var(--color-black));
    border-color: rgb(var(--color-white));
  }

  .hompage-slider-desc .btn.bordered {
    background-color: transparent;
    color: rgb(var(--color-white));
  }

  .hompage-slider-image {
    width: 100%;
    height: 330px;
    display: block;
    object-fit: cover;
    object-position: right;
  }

  .footer-inner .footer-item:first-child {
    border-right: none;
    padding: 0px !important;
    padding-bottom: 20px !important;
    margin-bottom: 20px;
    border-bottom: 1px dashed rgba(var(--color-white), 0.3);
    align-items: center;
    flex-direction: column;
    display: flex;
  }

  .footer-inner .footer-item:first-child .footer-desc {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .header-menu {
    background-color: rgb(var(--color-white));
    width: 100%;
    top: 0;
    bottom: 0;
    left: -100%;
    flex-direction: column;
    z-index: 9999;
    padding: 20px;
    transition: 200ms;
    overflow: hidden;
    overflow-y: auto;
    position: fixed;
  }

  .header-menu.active {
    left: 0px;
  }

  .header-menu li {
    width: 100%;
    margin-bottom: 5px;
    display: block;
  }

  .header .header-menu li:hover .submenu {
    width: 100%;
    top: 0;
    height: auto;
  }

  .header .header-menu .submenu {
    height: 0;
    width: 100%;
    margin-top: 5px;
    background-color: rgb(var(--color-white));
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    box-shadow: none;
    overflow: hidden;
    transition: 200ms;
    position: relative;
    opacity: 1;
    align-items: end;
    flex-direction: column;
    display: flex;
  }

  .header .header-menu .submenu li {
    width: 96%;
    border-bottom: none
  }

  .header .header-menu .submenu li a {
    width: 100%;
    padding: 10px 20px;
    display: block;
  }

  .header-menu li a {
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid rgba(var(--color-black), 0.1);
    display: block;
  }

  .header-menu>li:first-child {
    width: 100%;
    margin-bottom: 20px;
    border: none;
    padding: 0px;
    position: relative;
    display: block;
  }

  .header-menu>li:first-child span {
    font-weight: var(--font-w-bold);
  }

  .header-menu>li:first-child .header-menu-btn {
    top: 0;
    right: 0;
    position: absolute;
  }

  .header-menu>li:last-child {
    border-top: 1px dotted rgba(var(--color-black), 0.1);
    margin-top: 20px;
  }

  .header-menu>li:last-child .menu-content {
    margin-top: 20px;
  }

  .header-menu>li:last-child .menu-content>a {
    text-align: center;
  }

  .header-menu>li:last-child .menu-content .social-list {
    margin-top: 10px;
    justify-content: center;
    flex-wrap: wrap;
    display: flex;
  }

  .header-menu>li:last-child .menu-content .social-list li {
    width: fit-content;
    margin-right: 10px;
  }

  .header-menu>li:last-child .menu-content .social-list li a {
    width: 40px !important;
    height: 40px;
    align-items: center;
    justify-content: center;
    display: flex;
    width: fit-content;
  }

  .d-asd-block {
    display: block;
  }

  .d-asd-none {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .col-esd-1 {
    grid-column: span 1;
  }

  .col-esd-2 {
    grid-column: span 2;
  }

  .col-esd-3 {
    grid-column: span 3;
  }

  .col-esd-4 {
    grid-column: span 4;
  }

  .col-esd-5 {
    grid-column: span 5;
  }

  .col-esd-6 {
    grid-column: span 6;
  }

  .col-esd-7 {
    grid-column: span 7;
  }

  .col-esd-8 {
    grid-column: span 8;
  }

  .col-esd-9 {
    grid-column: span 9;
  }

  .col-esd-10 {
    grid-column: span 10;
  }

  .col-esd-11 {
    grid-column: span 11;
  }

  .col-esd-12 {
    grid-column: span 12;
  }

  .d-esd-none {
    display: none !important;
  }

  .hompage-slider-image {
    height: 400px;
  }

  .hompage-slider-desc .title-two,
  .hompage-slider-desc .desc {
    width: 100%;
    display: block;
  }

  .hompage-slider-desc .title-one {
    font-size: 1.5rem;
    font-weight: var(--font-w-bold);
  }

  .hompage-slider-desc .title-two {
    font-size: 1.8rem;
    font-weight: var(--font-w-bold);
  }

  .hompage-slider-desc .desc {
    font-size: 0.9rem;
    margin-top: 15px;
  }

  .hompage-slider-item::before {
    background-color: rgba(var(--color-black), 0.2);
  }

  .homepage-slider-pagination {
    width: 100% !important;
    height: auto;
    top: auto !important;
    transform: none;
    right: auto !important;
    left: auto !important;
    bottom: 20px !important;
    flex-direction: row;
    justify-content: center;
    position: absolute;
    z-index: 999;
    display: flex;
  }

  .homepage-slider-pagination .swiper-pagination-bullet-active {
    margin-bottom: 0px !important;
    margin-right: 60px !important;
    position: relative;
    flex-direction: row;
    display: flex;
  }

  .homepage-slider-pagination .swiper-pagination-bullet-active::after {
    content: '';
    width: 40px;
    height: 1px;
    background-color: rgb(var(--color-white));
    top: auto;
    left: 40px;
    position: absolute;
    display: block;
  }

  .footer-item {
    border-right: none !important;
  }

  .footer .footer-item:last-child {
    border-top: 1px dashed rgba(var(--color-white), 0.3) !important;
    margin-top: 10px;
    padding-top: 20px !important;
  }
}

@media (max-width: 425px) {
  .product-slider-thumb-item {
    height: 60px;
  }
}

@media (max-width: 320px) {
  .product-slider-thumb-item {
    height: 50px;
  }
}

/* Masaüstü ve Genel Grid Ayarı */
.thermoplastics-grid {
  display: grid;
  grid-template-columns: 1fr; /* Her iki tarafta da tek sütun düzeni */
  gap: 35px;
  margin-bottom: 60px;
}

/* Görsel Alanı - Masaüstü ve Mobilde Üstte Sabit */
.image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  width: 100%;
  height: 380px; /* Geniş ekranlarda şık durması için ideal yükseklik */
}

.responsive-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Görselin bozulmadan kırpılmasını sağlar */
  display: block;
}

/* Ürün Kartları Listesi */
.products-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- MOBİL UYUMLULUK DÜZENLEMELERİ --- */
@media (max-width: 992px) {
  /* Artık order kuralına gerek kalmadı, fiziksel olarak en üstte */
  .image-wrapper {
    height: 250px; /* Mobil ekranlarda dikey kaplama alanı optimize edildi */
  }
  
  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .section-header h1 {
    font-size: 2rem;
  }
  
  .product-card {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }
}

/* Alçak Yoğunluklu Polietilen (AYPE) Sayfası Mobil Başlık Düzenlemesi */
@media (max-width: 768px) {
  h1.entry-title, 
  .elementor-heading-title,
  h1 {
    font-size: 1.8rem !important;    /* Mobilde harf boyutunu dengeler */
    line-height: 1.4 !important;     /* Satırların üst üste binmesini engeller (İdeal boşluk) */
    letter-spacing: 0.5px !important; /* Harfler arası hafif nefes alma alanı */
    word-break: break-word !important;/* Uzun kelimelerin ekrandan taşmasını önler */
  }
}