body{
     font-family: "Open Sans", sans-serif;
     background-color: rgba(210, 167, 169, 0.12);
}

/* OWL Carousel Custom Styles */
.anasayfa-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
}

.anasayfa-slider .owl-nav button.owl-prev,
.anasayfa-slider .owl-nav button.owl-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.anasayfa-slider .owl-nav button.owl-prev {
  left: 20px;
}

.anasayfa-slider .owl-nav button.owl-next {
  right: 20px;
}

.anasayfa-slider .owl-nav button.owl-prev:hover,
.anasayfa-slider .owl-nav button.owl-next:hover {
  background: rgba(255, 255, 255, 0.8);
}

.anasayfa-slider .owl-nav button.owl-prev i,
.anasayfa-slider .owl-nav button.owl-next i {
  font-size: 24px;
  color: #333;
}

.anasayfa-slider .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

.anasayfa-slider .owl-dots .owl-dot {
  display: inline-block;
  margin: 0 5px;
}

.anasayfa-slider .owl-dots .owl-dot span {
  display: block;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.anasayfa-slider .owl-dots .owl-dot.active span,
.anasayfa-slider .owl-dots .owl-dot:hover span {
  background: #fff;
  transform: scale(1.2);
}

/* Slider Content Styles */
.slider-content {
  z-index: 10;
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.slider-content h2,
.slider-content p {
  color: white;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.slider-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.slider-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white-arrow {
  display: inline-block;
  padding: 12px 25px;
  background: white;
  color: #333;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-white-arrow:hover {
  background: #f8f8f8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.btn-white-arrow i {
  margin-left: 8px;
  font-size: 14px;
}

/* Slider Item Styles */
.slide-item {
  position: relative;
  height: 70vh;
  min-height: 500px;
}

.slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile Menu Styles */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 25px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  margin-left: 15px;
}

.hamburger-menu span {
  width: 100%;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1000;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu-close {
  font-size: 24px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-content {
  padding: 20px;
}

.mobile-menu-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-content li {
  margin-bottom: 15px;
}

.mobile-menu-content a {
  text-decoration: none;
  font-size: 18px;
  color: #333;
  display: block;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.mobile-menu-content a:hover {
  color: #666;
}

/* Menü stilleri */
.menu__nav {
  display: flex;
  list-style: none;
}

.menu__nav > li {
  position: relative;
  margin-right: 30px;
}

.menu__nav > li > a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 11px 6px;
    display: flex;
    font-size: 15px;
    align-items: center;
    font-family: "Sorts Mill Goudy", serif;
    text-transform: uppercase;
}

.menu__nav > li > a:hover {
  color: #666;
}

.menu__nav > li.menu-item-has-children > a::after {
  content: "▼";
  font-size: 12px;
  margin-left: 5px;
}

/* Alt menü stilleri */
.subnav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  min-width: 200px;
  z-index: 100;
  list-style: none;
  padding: 10px 0;
}

.menu-item-has-children:hover .subnav {
  display: block;
}

.subnav li {
  padding: 0;
}

.subnav a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-family: "Sorts Mill Goudy", serif; 
    font-size:16px;
    font-weight: 600;
}

.subnav a:hover {
  background: #f5f5f5;
}

.subnav__backBtn {
  display: none;
  padding: 10px 20px;
  background: #f5f5f5;
  font-weight: bold;
}

/* Mobile Language Selector - Select Style */
.mobile-language-selector {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  width: 100%;
}

.language-label {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  display: block;
}

.language-select {
  width: 100%;
  padding: 12px 15px;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.language-select:focus {
  outline: none;
  border-color: #333;
  box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.1);
}

.language-select:hover {
  background-color: #f0f0f0;
}

/* Responsive Styles for Header Menu */
@media (max-width: 991px) {
  /* Masaüstü menüyü gizle */
  .container-2.w-container {
    display: none !important;
  }
  
  /* Mobil menüdeki hamburger menüyü göster */
  .hamburger-menu {
    display: flex;
  }
  
  /* Mobilde sadece logoyu göster, menüyü gizle */
  .div-block-29.js-sliding-nav .div-block-27 {
    display: none;
  }
  
  /* Mobilde div-block-29.js-sliding-nav görünür olmalı */
  .div-block-29.js-sliding-nav {
    display: block !important;
  }
  
  /* Mobilde logoyu küçült */
  .div-block-29.js-sliding-nav .image-12 {
    width: 120px;
    height: auto;
  }
  
  /* Mobil menü stilleri */
  .mobile-menu-content .menu-item-has-children > a::after {
    content: "▼";
    font-size: 12px;
    margin-left: 5px;
  }
  
  .mobile-menu-content .subnav {
    position: static;
    box-shadow: none;
    background: #f5f5f5;
    margin-top: 10px;
    margin-bottom: 10px;
    display: none;
  }
  
  .mobile-menu-content .menu-item-has-children.active > .subnav {
    display: block;
  }
  
  .subnav__backBtn {
    display: block;
  }
  
  /* Mobilde dil seçiciyi gizle */
  .language-selector {
    display: none;
  }
}

@media (max-width: 767px) {
  /* Daha küçük mobil cihazlar için daha da küçült */
  .div-block-29.js-sliding-nav .image-12 {
    width: 100px;
    height: auto;
  }
  
  .hamburger-menu {
    width: 20px;
    height: 20px;
  }
  
  .hamburger-menu span {
    height: 2px;
  }
  
  .menu__nav {
    flex-direction: column;
  }
}

@media (min-width: 992px) {
  /* Masaüstü modda hamburger menüyü gizle */
  .hamburger-menu {
    display: none;
  }
  
  /* Masaüstü modda mobil menüyü gizle */
  .mobile-menu {
    display: none !important;
  }
  
  /* Masaüstü modda div-block-29.js-sliding-nav gizlenebilir */
  .div-block-29.js-sliding-nav {
    display: none;
  }
  
  /* Masaüstü modda mobil dil seçiciyi gizle */
  .mobile-language-selector {
    display: none;
  }
}

/* Responsive Styles for OWL Carousel */
/* Desktop (default) */
@media (min-width: 992px) {
  .anasayfa-slider .owl-nav button.owl-prev,
  .anasayfa-slider .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
  }
  
  .anasayfa-slider .owl-nav button.owl-prev {
    left: 20px;
  }
  
  .anasayfa-slider .owl-nav button.owl-next {
    right: 20px;
  }
  
  .anasayfa-slider .owl-nav button.owl-prev i,
  .anasayfa-slider .owl-nav button.owl-next i {
    font-size: 24px;
  }
  
  .anasayfa-slider .owl-dots {
    bottom: 20px;
  }
  
  .anasayfa-slider .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
  }
  
  .slider-content h2 {
    font-size: 2.5rem;
  }
  
  .slider-content p {
    font-size: 1.2rem;
  }
  
  .slide-item {
    height: 70vh;
    min-height: 500px;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .anasayfa-slider .owl-nav button.owl-prev,
  .anasayfa-slider .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }
  
  .anasayfa-slider .owl-nav button.owl-prev {
    left: 15px;
  }
  
  .anasayfa-slider .owl-nav button.owl-next {
    right: 15px;
  }
  
  .anasayfa-slider .owl-nav button.owl-prev i,
  .anasayfa-slider .owl-nav button.owl-next i {
    font-size: 20px;
  }
  
  .anasayfa-slider .owl-dots {
    bottom: 15px;
  }
  
  .anasayfa-slider .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
  }
  
  .slider-content h2 {
    font-size: 2rem;
  }
  
  .slider-content p {
    font-size: 1rem;
  }
  
  .btn-white-arrow {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .slide-item {
    height: 60vh;
    min-height: 400px;
  }
  
  /* Hide desktop menu and show hamburger */
  .desktop-menu {
    display: none !important;
  }
  
  .hamburger-menu {
    display: flex;
  }
}

/* Large Mobile */
@media (min-width: 576px) and (max-width: 767px) {
  .anasayfa-slider .owl-nav button.owl-prev,
  .anasayfa-slider .owl-nav button.owl-next {
    width: 35px;
    height: 35px;
  }
  
  .anasayfa-slider .owl-nav button.owl-prev {
    left: 10px;
  }
  
  .anasayfa-slider .owl-nav button.owl-next {
    right: 10px;
  }
  
  .anasayfa-slider .owl-nav button.owl-prev i,
  .anasayfa-slider .owl-nav button.owl-next i {
    font-size: 18px;
  }
  
  .anasayfa-slider .owl-dots {
    bottom: 15px;
  }
  
  .anasayfa-slider .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
  }
  
  .slider-content {
    padding: 15px;
  }
  
  .slider-content h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .slider-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    max-width: 90%;
  }
  
  .btn-white-arrow {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  
  .slide-item {
    height: 50vh;
    min-height: 350px;
  }
  
  /* Hide desktop menu and show hamburger */
  .desktop-menu {
    display: none !important;
  }
  
  .hamburger-menu {
    display: flex;
  }
}

/* Small Mobile */
@media (max-width: 575px) {
  .anasayfa-slider .owl-nav {
    display: none;
  }
  
  .anasayfa-slider .owl-dots {
    bottom: 10px;
  }
  
  .anasayfa-slider .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
  }
  
  .slider-content {
    padding: 10px;
    text-align: center;
  }
  
  .slider-content h2 {
    font-size: 1.5rem;
    margin-bottom: 8px;
  }
  
  .slider-content p {
    font-size: 0.8rem;
    margin-bottom: 12px;
    max-width: 95%;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .btn-white-arrow {
    padding: 6px 15px;
    font-size: 0.8rem;
  }
  
  .slide-item {
    height: 40vh;
    min-height: 300px;
  }
  
  /* Hide desktop menu and show hamburger */
  .desktop-menu {
    display: none !important;
  }
  
  .hamburger-menu {
    display: flex;
  }
}

/* Slider Bottom Section */
.slider-bottom-section {
  padding: 80px 0;
  background-color: #fff;
}

.section-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.section-description {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
}

.feature-box {
  padding: 30px;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 3rem;
  color: #d2a7a9;
  margin-bottom: 20px;
}

.feature-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.feature-description {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .slider-bottom-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .feature-box {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .slider-bottom-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .feature-icon {
    font-size: 2.5rem;
  }
  
  .feature-title {
    font-size: 1.3rem;
  }
}

/* Social Media Icons */
.social-icons {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.social-icons a:hover {
  color: #666;
  transform: translateY(-2px);
  background-color: rgba(0,0,0,0.05);
}

.social-icons i {
  font-size: 18px;
}

/* Language Selector - Flags Only */
.language-selector {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.language-selector a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 50%;
  overflow: hidden;
}

.language-selector a:hover {
  transform: translateY(-2px);
  background-color: rgba(0,0,0,0.05);
}

.language-selector img {
  width: 15px;
  height: 15px;
  object-fit: cover;
}


/* Brand Section Below Slider */
.brand-section {
  padding: 60px 0;
  text-align: center;
  background-color: #fff;
}

.brand-logo {
  max-width: 200px;
  height: auto;
}

.brand-description {
  font-family: "Open Sans", sans-serif;
    font-size: 18px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.btn-explore {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: #333;
  text-decoration: none;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  font-size:20px;
}

.btn-explore:hover {
  background-color: transparent;
  color: #333;
  transform: translateY(-3px);
}

.btn-explore::after {
 content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transform: scaleX(1);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.btn-explore:hover::after {
  transform: scaleX(0);
  transform-origin: bottom left;
}

/* Responsive Styles for Brand Section */
@media (max-width: 991px) {
  .brand-section {
    padding: 50px 0;
  }
  
  .brand-logo {
    max-width: 180px;
  }
  
  .brand-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .brand-section {
    padding: 40px 0;
  }
  
  .brand-logo {
    max-width: 150px;
  }
  
  .brand-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding: 0 15px;
  }
  
  .btn-explore {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .brand-section {
    padding: 30px 0;
  }
  
  .brand-logo {
    max-width: 130px;
  }
  
  .brand-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .btn-explore {
    padding: 8px 20px;
  }
}

/* Categories Section */
.categories-section {
  padding: 0;
 background-color: rgba(210, 167, 169, 0.12);
}

.category-item {
      margin-bottom: 25px;
}

.category-item.image-left {
  background-color: #f8f8f8;
}

.category-item.image-right {
  background-color: #fff;
}

.category-item:nth-child(even) {
  background-color: #f8f8f8;
}

.category-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
}

/* Responsive davranış için farklı ekran boyutlarında ayarlamalar */
@media (max-width: 768px) {
    .category-image {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .category-image {
        height: 300px;
    }
}

.category-title {
  font-size: 32px;
  font-weight: 500;
  color: #3a2e23;
  margin-bottom: 15px;
      font-family: "Sorts Mill Goudy", serif;
}

.category-description {
    font-family: "Open Sans", serif;
    font-size: 15px;
    color: #3a2e27;
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 0px 50px;
    font-weight: 500;
}
.btn-discover {
  display: inline-block;
  padding: 10px 5px;
  background-color: transparent;
  color: #3a2e23;
  text-decoration: none;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  font-size: 18px;
}

.btn-discover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #3a2e23;
  transition: width 0.3s ease;
}

.btn-discover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3a2e23;
}

.btn-discover:hover::before {
  width: 100%;
}

.btn-discover:hover {
  background-color: transparent;
  color: #3a2e23;
}

.btn-discover:hover::after {
  height: 2px;
}

/* Responsive Styles for Categories Section */
@media (max-width: 991px) {
  .category-item {
    padding: 50px 0;
  }
  
  .category-title {
    font-size: 1.6rem;
  }
  
  .category-description {
    font-size: 1rem;
  }
  
  .text-md-left {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .category-item {
    padding: 40px 0;
  }
  
  .category-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .category-description {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }
  
  .btn-discover {
    font-size: 16px;
  }
  
  .order-md-1,
  .order-md-2 {
    order: initial !important;
  }
}

@media (max-width: 575px) {
  .category-item {
    padding: 30px 0;
  }
  
  .category-title {
    font-size: 26px;
  }
  
  .category-description {
    font-size: 0.9rem;
    padding :0 20px;
  }
}


/* Signature Section */
.signature-section {
  padding: 80px 0;
  text-align: center;
}

.signature-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  margin: 0;
}

.signature-title br {
  display: none;
}

/* Responsive Styles for Signature Section */
@media (max-width: 991px) {
  .signature-section {
    padding: 60px 0;
  }
  
  .signature-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 767px) {
  .signature-section {
    padding: 50px 0;
  }
  
  .signature-title {
    font-size: 2rem;
  }
  
  .signature-title br {
    display: block;
  }
}

@media (max-width: 575px) {
  .signature-section {
    padding: 40px 0;
  }
  
  .signature-title {
    font-size: 1.8rem;
  }
}



/* Four Column Section */
.four-column-section {
  padding: 60px 0;
}

.four-column-item {
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: #fff;
}

.four-column-item:hover {
  transform: translateY(-10px);
}

.four-column-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

/* Responsive davranış için farklı ekran boyutlarında ayarlamalar */
@media (max-width: 768px) {
  .four-column-image {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .four-column-image {
    height: 250px;
  }
}

.banner-text-content{
    background:#fff;
    padding: 0px 10px;
    min-height: 200px;
    position:relative;
}
.banner-text-content p{
      line-height: 20px;
    margin-bottom: 3px;
}
.banner-text-content p strong {
 font-size: 20px;
  color: #3a2e23;
      position: relative;
    top: -13px;
}

.four-column-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 15px;
  margin-top: 5px;
}

.four-column-description {
  font-family: "Open Sans", serif;
  font-size: 1rem;
   color: #3a2e23;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-four-column {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
 color: #3a2e23;
  text-decoration: none;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
  position: absolute;
  font-size: 16px;
  right: 0;
    bottom: 37px;
    left: 50%;
    transform: translateX(-50%);
    width:100px;
}

.btn-four-column:hover {
  background-color: transparent;
  color: #333;
}

.btn-four-column::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3a2e23;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.btn-four-column:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Responsive Styles for Four Column Section */
@media (max-width: 991px) {
  .four-column-section {
    padding: 50px 0;
  }
  
  .four-column-item {
    padding: 25px;
  }
  
  .four-column-title {
    font-size: 1.4rem;
  }
  
  .four-column-description {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .four-column-section {
    padding: 40px 0;
  }
  
  .four-column-item {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .four-column-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .four-column-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .btn-four-column {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .four-column-section {
    padding: 30px 0;
  }
  
  .four-column-item {
    padding: 15px;
  }
  
  .four-column-title {
    font-size: 1.2rem;
  }
  
  .four-column-description {
    font-size: 0.85rem;
  }
}


/* Blog Section */
.blog-section {
  padding: 60px 0;
  background-color: #fff;
}

.blog-item {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.blog-content {
  padding: 5px 20px;
}


.blog-excerpt {
  font-family: "Open Sans", serif;
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-blog {
  display: inline-block;
  padding: 10px 25px;
  background-color: transparent;
  color: #333;
  text-decoration: none;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  font-size: 16px;
}

.btn-blog:hover {
  background-color: transparent;
  color: #333;
  transform: translateY(-3px);
}

.btn-blog::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transform: scaleX(1);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.btn-blog:hover::after {
  transform: scaleX(0);
  transform-origin: bottom left;
}

/* Responsive Styles for Blog Section */
@media (max-width: 991px) {
  .blog-section {
    padding: 50px 0;
  }
  
  .blog-content {
    padding: 15px;
  }
  
  .blog-title {
    font-size: 1.4rem;
  }
  
  .blog-excerpt {
    font-size: 0.95rem;
  }
  
  .blog-image {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding: 40px 0;
  }
  
  .blog-item {
    margin-bottom: 20px;
  }
  
  .blog-content {
    padding: 15px;
  }
  
  .blog-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
  
  .blog-excerpt {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .btn-blog {
    font-size: 14px;
  }
  
  .blog-image {
    height: 180px;
  }
}

@media (max-width: 575px) {
  .blog-section {
    padding: 30px 0;
  }
  
  .blog-content {
    padding: 10px;
  }
  
  .blog-title {
    font-size: 1.2rem;
  }
  
  .blog-excerpt {
    font-size: 0.85rem;
  }
  
  .blog-image {
    height: 150px;
  }
}


.main-footer {
  background-color: #fff;
  color: #3a2e23;
  padding: 60px 0 30px;
  margin-top: 50px;
}

.footer-column {
  margin-bottom: 30px;
}

.footer-logo{
    text-align: center;
}
.footer-logo-img {
  max-width: 180px;
  height: auto;
  margin-top:50px;
}

.footer-title {

  font-size: 1.2rem;
  font-weight:700;
  color: #3a2e23;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #3a2e23;
  text-decoration: none;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #3a2e23;
  padding-left: 5px;
  opacity: 0.8;
}

.social-icons-footer {
  display: flex;
  gap: 15px;
}

.social-icons-footer a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  color: #3a2e23;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons-footer a:hover {
  background-color: #d2a7a9;
  color: #fff;
  transform: translateY(-3px);
}

.btn-catalog {
  display: inline-block;
  padding: 10px 20px;
  background-color: #d2a7a9;
  color: #fff;
  text-decoration: none;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
  border: none;
  font-size: 0.9rem;
}


.footer-bottom {
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 30px;
}

.copyright-text,
.developed-by {
  color: #3a2e23;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  margin: 0;
}

.developed-by a {
  color: #d2a7a9;
  text-decoration: none;
  transition: all 0.3s ease;
}

.developed-by a:hover {
  color: #3a2e23;
  text-decoration: underline;
}

/* Responsive Styles for Footer */
@media (max-width: 991px) {
  .main-footer {
    padding: 50px 0 25px;
  }
  
  .footer-column {
    margin-bottom: 25px;
  }
  
  .footer-logo-img {
    max-width: 130px;
  }
  
  .footer-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .main-footer {
    padding: 40px 0 20px;
  }
  
  .footer-column {
    margin-bottom: 20px;
  }
  
  .footer-logo-img {
    max-width: 120px;
  }
  
  .footer-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .footer-links a {
    font-size: 0.85rem;
  }
  
  .social-icons-footer {
    gap: 12px;
  }
  
  .social-icons-footer a {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .btn-catalog {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  .text-md-right {
    text-align: center !important;
    margin-top: 10px;
  }
}

@media (max-width: 575px) {
  .main-footer {
    padding: 30px 0 15px;
  }
  
  .footer-column {
    margin-bottom: 20px;
  }
  
  .footer-logo-img {
    max-width: 100px;
  }
  
  .footer-title {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .footer-links a {
    font-size: 0.8rem;
  }
  
  .social-icons-footer a {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .btn-catalog {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .copyright-text,
  .developed-by {
    font-size: 0.8rem;
  }
}

.margin0{
    margin:0;
}


/* Category Page Styles */
.category-page {
  padding: 0;
}

/* Category Hero Section */
.category-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
  position: relative;
  margin-bottom: 40px;
}

.category-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.category-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.category-hero-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.category-hero-description {
  font-family: "Open Sans", serif;
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.breadcrumb {
  background-color: transparent;
    padding: 0 30px;
}

.breadcrumb-item a {
  color: #3a2e23;
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: #d2a7a9;
}

.breadcrumb-item.active {
  color: #666;
}

/* Subcategories Section */
.subcategories-section {
  margin-top: 40px;
}

.subcategory-item {
  margin-bottom: 50px;
}

.subcategory-item.image-left {
  background-color: #f9f9f9;
}

.subcategory-item.image-right {
  background-color: #fff;
}

.subcategory-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center;
}

/* Responsive davranış için farklı ekran boyutlarında ayarlamalar */
@media (max-width: 768px) {
  .subcategory-image {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .subcategory-image {
    height: 300px;
  }
}

.kategori-text-content{
    text-align: center;
}
@media screen and (min-width:992px){
    .kategori-text-content{ 
        padding:0 50px;
    }
}

.subcategory-title {
  font-size: 32px;
    font-weight: 500;
    color: #3a2e23;
    margin-bottom: 15px;
    font-family: "Sorts Mill Goudy", serif;
}

.subcategory-description {
    font-family: "Open Sans", serif;
    font-size: 15px;
    color: #3a2e27;
    margin-bottom: 20px;
    line-height: 1.6;
    padding: 0px 50px;
    font-weight: 500;
}
.categories-section .col-md-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.category-item.image-right .col-md-6.order-md-2 {
    padding-right: 0 !important;
}
.category-item.image-right .col-md-6.order-md-1 {
    padding-left: 0 !important;
}
/* Alt kategori kolon paddinglerini eşitle */
.subcategories-section .col-md-6 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Resim sağda olanlarda hizalama */
.subcategory-item.image-right .col-md-6.order-md-2 {
    padding-right: 0 !important;
}
.subcategory-item.image-right .col-md-6.order-md-1 {
    padding-left: 0 !important;
}

/* Resim solda olanlarda hizalama */
.subcategory-item.image-left .col-md-6.order-md-1 {
    padding-left: 0 !important;
}
.subcategory-item.image-left .col-md-6.order-md-2 {
    padding-right: 0 !important;
}

/* Products Section */
.products-section {
  margin-top: 40px;
  padding: 0 15px;
}

.product-item {
  transition: all 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  text-align: center;
  padding: 20px;
}

.product-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.product-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #3a2e23;
    margin-bottom: 0px;
    min-height: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-excerpt{
    font-weight:600;
}

.product-title a {
  color: #3a2e23;
  text-decoration: none;
  transition: all 0.3s ease;
}

.product-title a:hover {
  color: #d2a7a9;
}

.btn-product {
  display: inline-block;
  padding: 8px 20px;
  background-color: transparent;
  color: #3a2e23;
  text-decoration: none;
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  font-size: 0.9rem;
}

.btn-product:hover {
  background-color: transparent;
  color: #3a2e23;
  transform: translateY(-3px);
}

.btn-product::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3a2e23;
  transform: scaleX(1);
  transform-origin: bottom right;
  transition: transform 0.3s ease;
}

.btn-product:hover::after {
  transform: scaleX(0);
  transform-origin: bottom left;
}

/* Responsive Styles for Category Page */
@media (max-width: 991px) {
  .category-page {
    padding: 0;
  }
  
  .category-hero {
    padding: 80px 0;
    margin-bottom: 30px;
  }
  
  .category-hero-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .category-hero-description {
    font-size: 1.1rem;
  }
  
  .subcategory-item {
    margin-bottom: 40px;
    padding: 25px 0;
  }
  
  .subcategory-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .subcategory-description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .btn-subcategory {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
  
  .product-item {
    padding: 15px;
  }
  
  .product-image {
    height: 180px;
    margin-bottom: 12px;
  }
  
  .product-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    min-height: 50px;
  }
  
  .btn-product {
    padding: 6px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 767px) {
  .category-hero {
    padding: 60px 0;
    margin-bottom: 25px;
  }
  
  .category-hero-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .category-hero-description {
    font-size: 1rem;
  }
  
  .subcategory-item {
    margin-bottom: 30px;
    padding: 20px 0;
  }
  
  .subcategory-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
    text-align: center;
  }
  
  .subcategory-description {
    font-size: 0.9rem;
    margin-bottom: 18px;
    text-align: center;
  }
  
  .btn-subcategory {
    padding: 6px 16px;
    font-size: 17px;
    margin: 0 auto;
    display: table;
  }
  
  .product-item {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .product-image {
    height: 150px;
    margin-bottom: 10px;
  }
  
  .product-title {
    font-size: 1rem;
    margin-bottom: 10px;
    min-height: 45px;
  }
  
  .btn-product {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
  
  .text-md-left,
  .text-md-right {
    text-align: center !important;
  }
  
  .order-md-1,
  .order-md-2 {
    order: initial !important;
  }
}

@media (max-width: 575px) {
  .category-hero {
    padding: 50px 0;
    margin-bottom: 20px;
  }
  
  .category-hero-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .category-hero-description {
    font-size: 0.9rem;
  }
  
  .subcategory-item {
    margin-bottom: 25px;
    padding: 15px 0;
  }
  
  .subcategory-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .subcategory-description {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }
  
  .btn-subcategory {
    padding: 5px 12px;
    font-size: 0.75rem;
  }
  
  .product-item {
    padding: 10px;
    margin-bottom: 15px;
  }
  
  .product-image {
    height: 130px;
    margin-bottom: 8px;
  }
  
  .product-title {
    font-size: 0.95rem;
    margin-bottom: 8px;
    min-height: 40px;
  }
  
  .btn-product {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
}



/* Product Detail Page */
.product-detail-page {
  background:#fff;
}

.product-detail-page .breadcrumb {
    background-color: transparent;
    padding: 0px 20px;
    margin-top: 45px;
}

.product-detail-content {
  margin-top: 20px;
}

.product-detail-image {
  overflow: hidden;
}

.product-detail-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsive davranış için farklı ekran boyutlarında ayarlamalar */
@media (max-width: 768px) {
  .product-detail-image img {
    height: 500px;
  }
}

@media (max-width: 576px) {
  .product-detail-image img {
    height: 400px;
  }
}

.product-detail-info {
  padding: 20px;
}

.product-detail-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 20px;
  line-height: 1.3;
   margin-bottom: 5px;
}

.product-detail-excerpt {
font-family: "Open Sans", serif;
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 500;
}

.product-detail-price {
  font-size: 20px;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 30px;
}

.product-text p span {
    background:none;
    font-family: "Open Sans", serif!important;
}

.accordion-body p span {
    background:none;
    font-family: "Open Sans", serif!important;
}

.product-detail-actions{
    margin-bottom:25px;
    margin-top:15px;
}
.btn-add-to-cart {
  padding: 12px 30px;
  border:1px solid #3a2e23!important;
  color: #3a2e23;
  background:none;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-add-to-cart:hover {
  background-color: #3a2e23;
  transform: translateY(-3px);
  color: #fff;
}

/* Accordion Styles */
.product-detail-accordion {
  margin-top: 30px;
}

.accordion-item {
  border: 1px solid #fff;
  border-radius:0;
  margin-bottom: 10px;
  overflow: hidden;
  padding:0;
      border-bottom: 1px solid #dfe3e7;
}

.accordion-header {
  margin: 0;
}
.accordion-body {
    padding: 5px 0;
}

.accordion-button {
  font-size: 14px;
  font-weight: 600;
  color: #3a2e23;
  background-color: #fff!important;
  padding: 15px 0;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.accordion-button:hover {
  background-color: #f0f0f0;
}

.accordion-button:not(.collapsed) {
  color: #3a2e23;
  background-color: #f0f0f0;
  box-shadow: none;
}


/* Responsive Styles for Product Detail */
@media (max-width: 991px) {
  .product-detail-page {
    padding: 30px 0;
  }
  
  .product-detail-info {
    padding: 15px 0;
  }
  
  .product-detail-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .product-detail-excerpt {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .product-detail-price {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .btn-add-to-cart {
    padding: 10px 25px;
    font-size: 1rem;
  }
  
  .accordion-button {
    font-size: 1.1rem;
    padding: 12px 15px;
  }
  
  .accordion-body {
    padding: 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .product-detail-page {
    padding: 25px 0;
  }
  
  .product-detail-content {
    margin-top: 15px;
  }
  
  .product-detail-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  
  .product-detail-excerpt {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
  
  .product-detail-price {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .btn-add-to-cart {
    padding: 8px 20px;
    font-size: 0.95rem;
    width: 100%;
    text-align: center;
  }
  
  .product-detail-accordion {
    margin-top: 25px;
  }
  
  .accordion-button {
    font-size: 1rem;
    padding: 10px 12px;
  }
  
  .accordion-button::after {
    font-size: 1.2rem;
  }
  
  .accordion-body {
    padding: 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  .product-detail-page {
    padding: 20px 0;
  }
  
  .product-detail-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  
  .product-detail-excerpt {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .product-detail-price {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }
  
  .btn-add-to-cart {
    padding: 6px 16px;
    font-size: 0.9rem;
  }
  
  .product-detail-accordion {
    margin-top: 20px;
  }
  
  .accordion-button {
    font-size: 0.95rem;
    padding: 8px 10px;
  }
  
  .accordion-body {
    padding: 10px;
    font-size: 0.85rem;
  }
}

.accordion-button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.2s ease-in-out;
}

.accordion-button:not(.collapsed)::after {
  content: "-";
  transform: translateY(-50%);
}


/* Checkout Page */
.checkout-page {
  padding: 40px 0;
}

.checkout-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 30px;
  text-align: center;
}

.checkout-form-section {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-family: "Open Sans", serif;
  font-size: 1rem;
  color: #3a2e23;
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-family: "Open Sans", serif;
  font-size: 1rem;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #333;
  background-color: #fff;
  border-color: #d2a7a9;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(210, 167, 169, 0.25);
}

.form-check {
  margin-bottom: 20px;
}

.form-check-input {
  margin-top: 0.3rem;
}

.form-check-label {
  font-family: "Open Sans", serif;
  font-size: 0.9rem;
  color: #3a2e23;
  margin-left: 8px;
}

.form-check-label a {
  color: #d2a7a9;
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

.btn-checkout {
  padding: 12px 30px;
  background-color: #d2a7a9;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.btn-checkout:hover {
  background-color: #c09597;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  color: #fff;
}

/* Checkout Summary */
.checkout-summary {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  position: sticky;
  top: 20px;
}

.summary-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.item-info {
  flex: 1;
}

.item-name {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 5px;
}

.item-details {
  display: flex;
  justify-content: space-between;
}

.item-quantity {
  font-family: "Open Sans", serif;
  font-size: 0.9rem;
  color: #666;
}

.item-price {
  font-family: "Open Sans", serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3a2e23;
}

.summary-total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-row span:first-child {
  font-family: "Open Sans", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #3a2e23;
}

.total-price {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #3a2e23;
}

/* Responsive Styles for Checkout */
@media (max-width: 991px) {
  .checkout-page {
    padding: 30px 0;
  }
  
  .checkout-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .checkout-form-section {
    padding: 25px;
    margin-bottom: 25px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    font-size: 0.95rem;
  }
  
  .form-control {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .btn-checkout {
    padding: 10px 25px;
    font-size: 1rem;
  }
  
  .checkout-summary {
    padding: 20px;
  }
  
  .summary-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 12px;
  }
  
  .item-name {
    font-size: 0.95rem;
  }
  
  .item-details {
    font-size: 0.85rem;
  }
  
  .total-row span:first-child {
    font-size: 1.1rem;
  }
  
  .total-price {
    font-size: 1.3rem;
  }
}

@media (max-width: 767px) {
  .checkout-page {
    padding: 25px 0;
  }
  
  .checkout-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .checkout-form-section {
    padding: 20px;
    margin-bottom: 20px;
  }
  
  .checkout-summary {
    margin-top: 30px;
    position: relative;
    top: 0;
  }
  
  .summary-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  
  .item-name {
    font-size: 0.9rem;
  }
  
  .item-details {
    font-size: 0.8rem;
  }
  
  .total-row span:first-child {
    font-size: 1rem;
  }
  
  .total-price {
    font-size: 1.2rem;
  }
}

@media (max-width: 575px) {
  .checkout-page {
    padding: 20px 0;
  }
  
  .checkout-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .checkout-form-section {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-control {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  
  .form-check-label {
    font-size: 0.85rem;
  }
  
  .btn-checkout {
    padding: 8px 20px;
    font-size: 0.95rem;
  }
  
  .checkout-summary {
    padding: 15px;
  }
  
  .summary-title {
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
  
  .item-name {
    font-size: 0.85rem;
  }
  
  .item-details {
    font-size: 0.75rem;
  }
  
  .total-row span:first-child {
    font-size: 0.95rem;
  }
  
  .total-price {
    font-size: 1.1rem;
  }
}


/* About Page */
.about-page {
  padding: 20px 0;
}

.about-content {
  margin-bottom: 40px;
}

.about-image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive davranış için farklı ekran boyutlarında ayarlamalar */
@media (max-width: 768px) {
    .about-image img {
        height: 500px;
    }
}

@media (max-width: 576px) {
    .about-image img {
        height:450px;
    }
}

.about-text {
  padding: 20px;
}

.about-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-description {
  font-family: "Open Sans", serif;
  font-size: 1.1rem;
  color: #3a2e23;
  line-height: 1.6;
}

.about-detail {
  margin-bottom: 40px;
}

.about-detail-content {
  font-family: "Open Sans", serif;
  font-size: 1rem;
  color: #3a2e23;
  line-height: 1.6;
}

/* FAQ Section */
.about-faq {
  padding: 30px 0;
}

.faq-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 30px;
  text-align: center;
}

.faq-accordion .accordion-item {
  border-radius: 5px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-accordion .accordion-header {
  margin: 0;
}

.accordion-button {
  font-size: 15px;
  font-weight: 600;
  color: #3a2e23;
  padding: 6px 20px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}


.faq-accordion .accordion-button:not(.collapsed) {
  color: #3a2e23;
  background-color: #f0f0f0;
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.2s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: "-";
  transform: translateY(-50%);
}

.faq-accordion .accordion-collapse {
  border-top: 1px solid #ddd;
}

.faq-accordion .accordion-body {
  padding: 20px;
  font-family: "Open Sans", serif;
  font-size: 1rem;
  color: #3a2e23;
  line-height: 1.6;
}

/* Responsive Styles for About Page */
@media (max-width: 991px) {
  .about-page {
    padding: 30px 0;
  }
  
  .about-content {
    margin-bottom: 30px;
  }
  
  .about-text {
    padding: 15px 0;
  }
  
  .about-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .about-description {
    font-size: 1rem;
  }
  
  .about-detail {
    margin-bottom: 30px;
  }
  
  .about-faq {
    padding: 25px 0;
  }
  
  .faq-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .faq-accordion .accordion-button {
    font-size: 1.1rem;
    padding: 12px 15px;
  }
  
  .faq-accordion .accordion-body {
    padding: 15px;
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .about-page {
    padding: 25px 0;
  }
  
  .about-content {
    margin-bottom: 25px;
  }
  
  .about-title {
    font-size: 2rem;
    margin-bottom: 12px;
    text-align: center;
  }
  
  .about-description {
    font-size: 0.95rem;
    text-align: center;
  }
  
  .about-detail {
    margin-bottom: 25px;
  }
  
  .about-faq {
    padding: 20px 0;
  }
  
  .faq-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .faq-accordion .accordion-button {
    font-size: 1rem;
    padding: 10px 12px;
  }
  
  .faq-accordion .accordion-button::after {
    font-size: 1.2rem;
  }
  
  .faq-accordion .accordion-body {
    padding: 12px;
    font-size: 0.9rem;
  }
  
  .text-md-left {
    text-align: center !important;
  }
  
  .order-md-1,
  .order-md-2 {
    order: initial !important;
  }
}

@media (max-width: 575px) {
  .about-page {
    padding: 20px 0;
  }
  
  .about-content {
    margin-bottom: 20px;
  }
  
  .about-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .about-description {
    font-size: 0.9rem;
  }
  
  .about-detail {
    margin-bottom: 20px;
  }
  
  .about-faq {
    padding: 15px 0;
  }
  
  .faq-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .faq-accordion .accordion-button {
    font-size: 0.95rem;
    padding: 8px 10px;
  }
  
  .faq-accordion .accordion-button::after {
    font-size: 1.1rem;
  }
  
  .faq-accordion .accordion-body {
    padding: 10px;
    font-size: 0.85rem;
  }
}

/* Contact Page */
.contact-page {
  padding: 20px 0;
}

.contact-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 30px;
  text-align: center;
}

/* Contact Info Section */
.contact-info-section {
  padding: 30px;
  border-radius: 10px;
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: #d2a7a9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top:20px;
}

.contact-icon i {
  color: #fff;
  font-size: 1.2rem;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 5px;
}

.contact-text {
  font-family: "Open Sans", serif;
  font-size: 1rem;
  color: #3a2e23;
  line-height: 1.6;
  margin: 0;
}

.contact-text a {
  color: #3a2e23;
  text-decoration: none;
}

.contact-text a:hover {
  color: #d2a7a9;
  text-decoration: underline;
}

/* Contact Social */
.contact-social {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.contact-social .contact-label {
  margin-bottom: 15px;
}

.contact-page .social-icons {
  display: flex;
  gap: 15px;
}

.contact-page  .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #3a2e23;
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-page  .social-icons a:hover {
  background-color: #d2a7a9;
  transform: translateY(-3px);
}

.contact-page  .social-icons i {
  font-size: 1rem;
}

/* Contact Form Section */
.contact-form-section {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-family: "Open Sans", serif;
  font-size: 1rem;
  color: #3a2e23;
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  font-family: "Open Sans", serif;
  font-size: 1rem;
  color: #333;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #333;
  background-color: #fff;
  border-color: #d2a7a9;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(210, 167, 169, 0.25);
}

.btn-contact {
  padding: 12px 30px;
  background-color: #d2a7a9;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  width: 100%;
}

.btn-contact:hover {
  background-color: #c09597;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  color: #fff;
}

/* Contact Map */
.contact-map {
  margin-top: 40px;
  padding: 30px 0;
}

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

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* Responsive Styles for Contact Page */
@media (max-width: 991px) {
  .contact-page {
    padding: 30px 0;
  }
  
  .contact-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 25px;
  }
  
  .contact-item {
    margin-bottom: 20px;
  }
  
  .contact-icon {
    width: 45px;
    height: 45px;
  }
  
  .contact-icon i {
    font-size: 1.1rem;
  }
  
  .contact-label {
    font-size: 1.1rem;
  }
  
  .contact-text {
    font-size: 0.95rem;
  }
  
  .contact-social {
    margin-top: 25px;
    padding-top: 15px;
  }
  
  .social-icons a {
    width: 35px;
    height: 35px;
  }
  
  .social-icons i {
    font-size: 0.9rem;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    font-size: 0.95rem;
  }
  
  .form-control {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  
  .btn-contact {
    padding: 10px 25px;
    font-size: 1rem;
  }
  
  .contact-map {
    margin-top: 30px;
    padding: 25px 0;
  }
  
  .map-container iframe {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .contact-page {
    padding: 25px 0;
  }
  
  .contact-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .contact-item {
    margin-bottom: 15px;
  }
  
  .contact-icon {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
  
  .contact-icon i {
    font-size: 1rem;
  }
  
  .contact-label {
    font-size: 1rem;
  }
  
  .contact-text {
    font-size: 0.9rem;
  }
  
  .contact-social {
    margin-top: 20px;
    padding-top: 15px;
  }
  
  .social-icons {
    gap: 12px;
  }
  
  .social-icons a {
    width: 30px;
    height: 30px;
  }
  
  .social-icons i {
    font-size: 0.8rem;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    font-size: 0.9rem;
  }
  
  .form-control {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
  
  .btn-contact {
    padding: 8px 20px;
    font-size: 0.95rem;
  }
  
  .contact-map {
    margin-top: 25px;
    padding: 20px 0;
  }
  
  .map-container iframe {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .contact-page {
    padding: 20px 0;
  }
  
  .contact-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .contact-info-section,
  .contact-form-section {
    padding: 15px;
  }
  
  .contact-item {
    margin-bottom: 12px;
  }
  
  .contact-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }
  
  .contact-icon i {
    font-size: 0.9rem;
  }
  
  .contact-label {
    font-size: 0.95rem;
  }
  
  .contact-text {
    font-size: 0.85rem;
  }
  
  .contact-social {
    margin-top: 15px;
    padding-top: 12px;
  }
  
  .social-icons {
    gap: 10px;
  }
  
  .social-icons a {
    width: 25px;
    height: 25px;
  }
  
  .social-icons i {
    font-size: 0.7rem;
  }
  
  .form-group {
    margin-bottom: 12px;
  }
  
  .form-group label {
    font-size: 0.85rem;
  }
  
  .form-control {
    padding: 6px 8px;
    font-size: 0.85rem;
  }
  
  .btn-contact {
    padding: 6px 16px;
    font-size: 0.9rem;
  }
  
  .contact-map {
    margin-top: 20px;
    padding: 15px 0;
  }
  
  .map-container iframe {
    height: 250px;
  }
}

/* Blog Page */
.blog-page {
  padding: 20px 0;
}



.blog-subtitle {
  font-family: "Open Sans", serif;
  font-size: 1.2rem;
  color: #3a2e23;
  margin-bottom: 40px;
  text-align: center;
}

/* Blog Card */
.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  background-color: #fff;
  border: none;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.blog-image {
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  background-color: #fff;
}

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.badge.bg-blog-category {
  background-color: #d2a7a9;
  font-family: "Open Sans", serif;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 3px;
}

.blog-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #3a2e23;
  margin: 15px 0;
  text-align: left;
}

.blog-title a {
  color: #3a2e23;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: #d2a7a9;
}

.blog-excerpt {
  font-family: "Open Sans", serif;
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-blog-read {
  padding: 8px 20px;
  background-color: transparent;
  color: #d2a7a9;
  border: 1px solid #d2a7a9;
  border-radius: 5px;
  font-family: "Open Sans", serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-blog-read:hover {
  background-color: #d2a7a9;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Blog Sidebar */
.blog-sidebar {
  padding-left: 20px;
}

.sidebar-widget {
  margin-bottom: 40px;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d2a7a9;
}

/* Sidebar Search */
.btn-blog-search {
  padding: 8px 15px;
  background-color: #d2a7a9;
  color: #fff;
  border: none;
  border-radius: 0 5px 5px 0;
  font-family: "Open Sans", serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-blog-search:hover {
  background-color: #c09597;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Sidebar Post */
.sidebar-post {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.sidebar-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-post-image {
  flex-shrink: 0;
  margin-right: 15px;
}

.sidebar-post-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}

.sidebar-post-content {
  flex: 1;
}

.sidebar-post-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 8px;
  line-height: 1.4;
}

.sidebar-post-title a {
  color: #3a2e23;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-post-title a:hover {
  color: #d2a7a9;
}

.sidebar-post-meta {
  font-family: "Open Sans", serif;
  font-size: 0.8rem;
  color: #666;
}

/* Responsive Styles for Blog Page */
@media (max-width: 991px) {
  .blog-page {
    padding: 30px 0;
  }
  
  .blog-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  
  .blog-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .blog-title {
    font-size: 1.3rem;
    margin: 12px 0;
  }
  
  .blog-excerpt {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .btn-blog-read {
    padding: 6px 15px;
    font-size: 0.85rem;
  }
  
  .blog-image img {
    height: 220px;
  }
  
  .blog-sidebar {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .sidebar-widget {
    margin-bottom: 30px;
    padding: 20px;
  }
  
  .sidebar-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .sidebar-post {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  
  .sidebar-post-image img {
    width: 70px;
    height: 70px;
  }
  
  .sidebar-post-title {
    font-size: 0.95rem;
  }
  
  .btn-blog-search {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .blog-page {
    padding: 25px 0;
  }
  
  .blog-title {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .blog-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .blog-title {
    font-size: 1.2rem;
    margin: 10px 0;
  }
  
  .blog-excerpt {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  .btn-blog-read {
    padding: 5px 12px;
    font-size: 0.8rem;
  }
  
  .blog-image img {
    height: 200px;
  }
  
  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .badge.bg-blog-category {
    margin-bottom: 5px;
  }
  
  .sidebar-widget {
    margin-bottom: 25px;
    padding: 15px;
  }
  
  .sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .sidebar-post {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  
  .sidebar-post-image img {
    width: 60px;
    height: 60px;
  }
  
  .sidebar-post-title {
    font-size: 0.9rem;
  }
  
  .sidebar-post-meta {
    font-size: 0.75rem;
  }
  
  .btn-blog-search {
    padding: 5px 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 575px) {
  .blog-page {
    padding: 20px 0;
  }
  
  .blog-title {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .blog-subtitle {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .blog-title {
    font-size: 1.1rem;
    margin: 8px 0;
  }
  
  .blog-excerpt {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }
  
  .btn-blog-read {
    padding: 4px 10px;
    font-size: 0.75rem;
  }
  
  .blog-image img {
    height: 180px;
  }
  
  .sidebar-widget {
    margin-bottom: 20px;
    padding: 12px;
  }
  
  .sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .sidebar-post {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  
  .sidebar-post-image img {
    width: 50px;
    height: 50px;
  }
  
  .sidebar-post-title {
    font-size: 0.85rem;
  }
  
  .sidebar-post-meta {
    font-size: 0.7rem;
  }
  
  .btn-blog-search {
    padding: 4px 8px;
    font-size: 0.8rem;
  }
}


/* Blog Detail Page */
.blog-detail-page {
  padding: 40px 0;
}

.blog-detail-page .blog-post {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.blog-detail-page .blog-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-detail-page .blog-meta {
  font-size: 1rem;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
  color: #666;
}

.blog-detail-page .blog-meta i {
  color: #d2a7a9;
}

.blog-detail-page .blog-image {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  height:auto;
}

.blog-detail-page .blog-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Responsive davranış için farklı ekran boyutlarında ayarlamalar */
@media (max-width: 768px) {
    .blog-detail-page .blog-image img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .blog-detail-page .blog-image img {
        height: 300px;
    }
}

.blog-detail-page .blog-content {
  font-family: "Open Sans", serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
}

.blog-detail-page .blog-content p {
  margin-bottom: 20px;
}

.blog-detail-page .blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-detail-page .blog-content h2,
.blog-detail-page .blog-content h3,
.blog-detail-page .blog-content h4 {
  font-family: "Sorts Mill Goudy", serif;
  color: #3a2e23;
  margin: 25px 0 15px;
}

/* Blog Sidebar Widget */
.blog-detail-page .blog-sidebar-widget {
  background-color: #fff;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.blog-detail-page .sidebar-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d2a7a9;
}

.blog-detail-page .sidebar-post {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.blog-detail-page .sidebar-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.blog-detail-page .sidebar-post-image {
  flex-shrink: 0;
  margin-right: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.blog-detail-page .sidebar-post-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
}

.blog-detail-page .sidebar-post-content {
  flex: 1;
}

.blog-detail-page .sidebar-post-title {
  font-family: "Sorts Mill Goudy", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #3a2e23;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-detail-page .sidebar-post-title a {
  color: #3a2e23;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-detail-page .sidebar-post-title a:hover {
  color: #d2a7a9;
}

.blog-detail-page .sidebar-post-meta {
  font-family: "Open Sans", serif;
  font-size: 0.8rem;
  color: #666;
}

/* Responsive Styles for Blog Detail Page */
@media (max-width: 991px) {
  .blog-detail-page {
    padding: 30px 0;
  }
  
  .blog-detail-page .blog-post {
    padding: 25px;
    margin-bottom: 30px;
  }
  
  .blog-detail-page .blog-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .blog-detail-page .blog-meta {
    font-size: 0.95rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  
  .blog-detail-page .blog-image {
    margin-bottom: 25px;
  }
  
  .blog-detail-page .blog-content {
    font-size: 1rem;
  }
  
  .blog-detail-page .blog-content h2,
  .blog-detail-page .blog-content h3,
  .blog-detail-page .blog-content h4 {
    margin: 20px 0 12px;
  }
  
  .blog-detail-page .blog-sidebar-widget {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .blog-detail-page .sidebar-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  
  .blog-detail-page .sidebar-post {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  
  .blog-detail-page .sidebar-post-image img {
    width: 70px;
    height: 70px;
  }
  
  .blog-detail-page .sidebar-post-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 767px) {
  .blog-detail-page {
    padding: 25px 0;
  }
  
  .blog-detail-page .blog-post {
    padding: 20px;
    margin-bottom: 25px;
  }
  
  .blog-detail-page .blog-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }
  
  .blog-detail-page .blog-meta {
    font-size: 0.9rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  
  .blog-detail-page .blog-image {
    margin-bottom: 20px;
  }
  
  .blog-detail-page .blog-content {
    font-size: 0.95rem;
  }
  
  .blog-detail-page .blog-content p {
    margin-bottom: 15px;
  }
  
  .blog-detail-page .blog-content img {
    margin: 15px 0;
  }
  
  .blog-detail-page .blog-content h2,
  .blog-detail-page .blog-content h3,
  .blog-detail-page .blog-content h4 {
    margin: 18px 0 10px;
    font-size: 1.4rem;
  }
  
  .blog-detail-page .blog-sidebar-widget {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .blog-detail-page .sidebar-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .blog-detail-page .sidebar-post {
    margin-bottom: 12px;
    padding-bottom: 12px;
  }
  
  .blog-detail-page .sidebar-post-image {
    margin-right: 12px;
  }
  
  .blog-detail-page .sidebar-post-image img {
    width: 60px;
    height: 60px;
  }
  
  .blog-detail-page .sidebar-post-title {
    font-size: 0.9rem;
  }
  
  .blog-detail-page .sidebar-post-meta {
    font-size: 0.75rem;
  }
}

@media (max-width: 575px) {
  .blog-detail-page {
    padding: 20px 0;
  }
  
  .blog-detail-page .blog-post {
    padding: 15px;
    margin-bottom: 20px;
  }
  
  .blog-detail-page .blog-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .blog-detail-page .blog-meta {
    font-size: 0.85rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .blog-detail-page .blog-meta span {
    margin-bottom: 5px;
  }
  
  .blog-detail-page .blog-image {
    margin-bottom: 15px;
  }
  
  .blog-detail-page .blog-content {
    font-size: 0.9rem;
  }
  
  .blog-detail-page .blog-content p {
    margin-bottom: 12px;
  }
  
  .blog-detail-page .blog-content img {
    margin: 12px 0;
  }
  
  .blog-detail-page .blog-content h2,
  .blog-detail-page .blog-content h3,
  .blog-detail-page .blog-content h4 {
    margin: 15px 0 8px;
    font-size: 1.3rem;
  }
  
  .blog-detail-page .blog-sidebar-widget {
    padding: 12px;
    margin-bottom: 15px;
  }
  
  .blog-detail-page .sidebar-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .blog-detail-page .sidebar-post {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  
  .blog-detail-page .sidebar-post-image {
    margin-right: 10px;
  }
  
  .blog-detail-page .sidebar-post-image img {
    width: 50px;
    height: 50px;
  }
  
  .blog-detail-page .sidebar-post-title {
    font-size: 0.85rem;
  }
  
  .blog-detail-page .sidebar-post-meta {
    font-size: 0.7rem;
  }
}