/* Ana renkler ve değişkenler */
:root {
  --primary-color: #2D3142;
  --secondary-color: #4F5D75;
  --accent-color: #1c652d;
  --background-color: #FFF8F3; /* Ana arka plan rengi - açık bej */
  --light-gray: #FAF3ED; /* Alternatif arka plan - sıcak gri-bej */
  --text-color: #2D3142;
  --section-bg-light: #FFF1E6; /* Bölüm arka planı - sıcak bej */
  --section-bg-dark: #F5E6DA; /* Koyu bölüm arka planı */
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 28px rgba(45, 49, 66, 0.09);
}

body {
  background-color: var(--background-color);
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  padding-top: 76px; /* Navbar yüksekliği kadar padding */
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
    @media (max-width: 768px) {
  .navbar-brand {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
  }
  .navbar-brand img {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    height: 50px !important;
  }
  .navbar-nav {
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100% !important;
  }
}

/* Hero Section */
.hero-section {
  padding-top: 100px;
  background: linear-gradient(135deg, var(--section-bg-light) 0%, var(--background-color) 100%);
}

.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 76px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  background-color: var(--background-color);
  z-index: 1;
}

.hero-content {
  padding: 4rem 0;
}

.hero-section h1 {
  font-size: 3.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: left;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
  color: var(--secondary-color);
}

.hero-buttons {
  text-align: left;
}

.hero-section .btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  background: var(--accent-color);
  border: none;
  position: relative;
  color: var(--background-color);
}

.hero-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(28, 101, 45, 0.2);
  background: #164b22; /* Daha koyu yeşil ton */
}

.hero-section .btn::after {
  display: none;
}

.hero-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 600px;
  width: 100%;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(28, 101, 45, 0.2), transparent);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

.hero-image:hover img {
  transform: translateY(-10px);
}

.hero-image:hover::before {
  opacity: 0.8;
}

/* Section Headers */
.section-header {
  margin-bottom: 4rem;
  padding: 0 15px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.section-header .lead {
  font-size: 1.1rem;
  color: var(--secondary-color);
  max-width: 800px;
  margin: 0 auto;
}

/* Kategori Bölümü */
.categories-section {
  padding: 80px 0;
  background-color: var(--section-bg-dark);
}

.categories-section .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 0;
  padding: 0 15px;
}

/* Son satırdaki kartları ortala */
@media (min-width: 992px) {
  .categories-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .categories-section .col-lg-4 {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px 20px;
  }
  
  .categories-section .row::after {
    content: '';
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
  }
}

.categories-section .col-md-6.col-lg-4 {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Öne Çıkan Ürünler */
.featured-products {
  padding: 80px 0;
  background-color: var(--section-bg-light);
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  margin-bottom: 25px;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.4;
  height: 2.8em; /* 2 satır için sabit yükseklik */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-description {
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  flex: 1;
  height: 3.6em; /* 2 satır için sabit yükseklik */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
}

.old-price {
  font-size: 1rem;
  color: var(--secondary-color);
  text-decoration: line-through;
}

.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--background-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--section-bg-dark);
}

.testimonial-card {
  background: var(--background-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(165, 142, 130, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(165, 142, 130, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(165, 142, 130, 0.15);
  background: linear-gradient(to bottom right, var(--background-color), var(--section-bg-light));
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 60px;
  color: var(--accent-color);
  opacity: 0.1;
  font-family: Georgia, serif;
  transition: all 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 0.15;
  transform: scale(1.2);
  color: var(--accent-color);
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.rating {
  color: var(--accent-color);
  margin-bottom: 15px;
  display: flex;
  gap: 5px;
}

.rating i {
  color: var(--accent-color);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(28, 101, 45, 0.1);
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-color);
  box-shadow: 0 3px 10px rgba(28, 101, 45, 0.1);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  color: var(--text-color);
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 1.1rem;
}

.author-info span {
  color: var(--accent-color);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Video Container in Testimonials */
.video-container {
  background: var(--background-color);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(165, 142, 130, 0.1);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.video-container:hover {
  box-shadow: 0 15px 30px rgba(165, 142, 130, 0.15);
}

/* Video Konteyner Düzenlemeleri */
.video-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background: #000;
  width: 100%;
  max-width: 360px; /* Reels genişliği için ideal */
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  cursor: pointer;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  z-index: 3;
  transition: opacity 0.3s ease;
}

.play-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
}

.mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  z-index: 3;
  transition: opacity 0.3s ease;
}

.mute-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
}

.video-wrapper.playing .video-overlay,
.video-wrapper.playing .play-btn {
  opacity: 0;
  pointer-events: none;
}

.video-wrapper:hover .video-overlay,
.video-wrapper:hover .play-btn,
.video-wrapper:hover .mute-btn {
  opacity: 1;
}

@media (max-width: 768px) {
  .video-container {
    max-width: 320px; /* Mobilde biraz daha küçük */
  }
  
  .play-btn {
    width: 50px;
    height: 50px;
  }
  
  .mute-btn {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 576px) {
  .video-container {
    max-width: 280px; /* Daha küçük ekranlarda daha da küçük */
  }
}

/* Inspiration Quote */
.inspiration-quote-section {
  padding: 60px 0;
  background-color: var(--section-bg-dark);
}

.inspiration-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.inspiration-quote i {
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.inspiration-quote p {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.inspiration-quote .blockquote-footer {
  font-size: 1rem;
  color: var(--secondary-color);
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 80px;
  }
  
  .hero-content {
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .hero-section .lead {
    text-align: center;
  }

  .hero-buttons {
    text-align: center;
  }
  
  .hero-image {
    height: 500px;
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .categories-section,
  .featured-products,
  .testimonials-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero-image {
    height: 400px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .product-image {
    padding-top: 66.67%; /* 3:2 aspect ratio for mobile */
  }
  
  .product-title {
    font-size: 1.1rem;
  }
  
  .product-description {
    font-size: 0.85rem;
  }
  
  .price {
    font-size: 1.1rem;
  }
  
  .old-price {
    font-size: 0.9rem;
  }
  
  .inspiration-quote p {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .hero-image {
    height: 350px;
  }
  
  .hero-section {
    text-align: center;
  }
  
  .categories-section .row {
    grid-template-columns: 1fr;
  }
}

/* Buton Stilleri */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-primary:hover {
  background-color: darken(var(--accent-color), 10%);
  border-color: darken(var(--accent-color), 10%);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--background-color);
  transform: translateY(-2px);
}

/* Kart Stilleri */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(28, 101, 45, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: var(--background-color);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(28, 101, 45, 0.15);
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: 2px solid var(--primary-color);
  opacity: 0;
  transition: all 0.4s ease;
}

.card:hover::after {
  opacity: 0.3;
}

/* Kategori Kartları */
.category-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-img {
  position: relative;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(45, 49, 66, 0.2), rgba(45, 49, 66, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover .category-overlay {
  transform: translateY(0);
  opacity: 1;
}

.category-overlay h3 {
  color: var(--background-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.category-overlay p {
  color: var(--background-color);
  margin-bottom: 15px;
  font-size: 1rem;
  opacity: 0.9;
}

/* Form Stilleri */
.form-control {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(28, 101, 45, 0.25);
}

/* Animasyonlar */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
  animation: fadeIn 0.8s ease forwards;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/*-------------------------*/


.anasayfacon{
    position: relative;
    float:left
}

.anasayfacon .hoveranasayfa{
    position: absolute;
      left: 0;
      top: 0;
      display: none;
}

.anasayfacon:hover .hoveranasayfa{
    display: block;
}

/*-------------------------*/
.cksatanlarcon{
    position: relative;
    float:left
}

.cksatanlarcon .hovercksatanlar{
    position: absolute;
      left: 0;
      top: 0;
      display: none;
}

.cksatanlarcon:hover .hovercksatanlar{
    display: block;
}

/*-------------------------*/
.satisnoktasicon{
    position: relative;
    float:left
}

.satisnoktasicon .hoversatisnoktasi{
    position: absolute;
      left: 0;
      top: 0;
      display: none;
}

.satisnoktasicon:hover .hoversatisnoktasi{
    display: block;
}

/*-------------------------*/
.hakkındacon{
    position: relative;
    float:left
}

.hakkındacon .hoverhakkinda{
    position: absolute;
      left: 0;
      top: 0;
      display: none;
}

.hakkındacon:hover .hoverhakkinda{
    display: block;
}

/*-------------------------*/
.iletisimcon{
    position: relative;
    float:left
}

.iletisimcon .hoveriletisim{
    position: absolute;
      left: 0;
      top: 0;
      display: none;
}

.iletisimcon:hover .hoveriletisim{
    display: block;
}
/*-------------------------*/


.menu{
    position: relative;
    float:left;
    margin-left: 20px;
    align-items: center;
}

/* Utility Classes */
.text-muted {
  color: var(--secondary-color) !important;
}

/* Slider Navigation Buttons */
.slider-nav {
  margin-top: 2rem;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  margin: 0 0.5rem;
}

.nav-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  transform: translateY(-3px);
}

.nav-btn:active {
  transform: translateY(-1px);
}

.nav-btn i {
  transition: var(--transition);
}

.nav-btn:hover i {
  transform: scale(1.2);
}

.prev-btn:hover i {
  transform: translateX(-2px) scale(1.2);
}

.next-btn:hover i {
  transform: translateX(2px) scale(1.2);
}

/* About Hero Section */
.about-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--section-bg-light) 0%, var(--background-color) 100%);
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.about-hero h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-hero .lead {
  color: var(--secondary-color);
}

/* Store Locations */
.store-card {
  height: 100%;
  background: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(28, 101, 45, 0.15);
}

.store-image {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
}

.store-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.store-info {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.store-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.store-address,
.store-contact,
.store-hours {
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

.store-contact a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.store-contact a:hover {
  color: var(--primary-color);
}

/* Admin Link Styles */
.admin-link {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  color: var(--accent-color) !important;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.admin-link:hover {
  background-color: var(--accent-color);
  color: white !important;
  transform: translateY(-2px);
}

.admin-link i {
  font-size: 1rem;
}

@media (max-width: 991px) {
  .admin-link {
    margin: 10px auto;
  }
}
.shorts-video {
  width: 350px;
  height: 570px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: block;
}

.shorts-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Ana renkler ve değişkenler */
:root {
  --primary-color: #2D3142;
  --secondary-color: #4F5D75;
  --accent-color: #1c652d;
  --background-color: #FFF8F3; /* Ana arka plan rengi - açık bej */
  --light-gray: #FAF3ED; /* Alternatif arka plan - sıcak gri-bej */
  --text-color: #2D3142;
  --section-bg-light: #FFF1E6; /* Bölüm arka planı - sıcak bej */
  --section-bg-dark: #F5E6DA; /* Koyu bölüm arka planı */
  --border-radius: 12px;
  --transition: all 0.3s ease;
  --box-shadow: 0 4px 28px rgba(45, 49, 66, 0.09);
}

body {
  background-color: var(--background-color);
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  padding-top: 76px; /* Navbar yüksekliği kadar padding */
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}
    @media (max-width: 768px) {
  .navbar-brand {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 !important;
  }
  .navbar-brand img {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    height: 50px !important;
  }
  .navbar-nav {
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100% !important;
  }
}

/* Hero Section */
.hero-section {
  padding-top: 100px;
  background: linear-gradient(135deg, var(--section-bg-light) 0%, var(--background-color) 100%);
}

.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 76px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  background-color: var(--background-color);
  z-index: 1;
}

.hero-content {
  padding: 4rem 0;
}

.hero-section h1 {
  font-size: 3.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: left;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  text-align: left;
  color: var(--secondary-color);
}

.hero-buttons {
  text-align: left;
}

.hero-section .btn {
  display: inline-block;
  padding: 15px 35px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  background: var(--accent-color);
  border: none;
  position: relative;
  color: var(--background-color);
}

.hero-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(28, 101, 45, 0.2);
  background: #164b22; /* Daha koyu yeşil ton */
}

.hero-section .btn::after {
  display: none;
}

.hero-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 600px;
  width: 100%;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(28, 101, 45, 0.2), transparent);
  z-index: 1;
  transition: opacity 0.3s ease;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

.hero-image:hover img {
  transform: translateY(-10px);
}

.hero-image:hover::before {
  opacity: 0.8;
}

/* Section Headers */
.section-header {
  margin-bottom: 4rem;
  padding: 0 15px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.section-header .lead {
  font-size: 1.1rem;
  color: var(--secondary-color);
  max-width: 800px;
  margin: 0 auto;
}

/* Kategori Bölümü */
.categories-section {
  padding: 80px 0;
  background-color: var(--section-bg-dark);
}

.categories-section .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 0;
  padding: 0 15px;
}

/* Son satırdaki kartları ortala */
@media (min-width: 992px) {
  .categories-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  
  .categories-section .col-lg-4 {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px 20px;
  }
  
  .categories-section .row::after {
    content: '';
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
  }
}

.categories-section .col-md-6.col-lg-4 {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* Öne Çıkan Ürünler */
.featured-products {
  padding: 80px 0;
  background-color: var(--section-bg-light);
}

.product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--background-color);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  margin-bottom: 25px;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
}

.product-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.4;
  height: 2.8em; /* 2 satır için sabit yükseklik */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-description {
  font-size: 0.9rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  flex: 1;
  height: 3.6em; /* 2 satır için sabit yükseklik */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
}

.old-price {
  font-size: 1rem;
  color: var(--secondary-color);
  text-decoration: line-through;
}

.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--accent-color);
  color: var(--background-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--section-bg-dark);
}

.testimonial-card {
  background: var(--background-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(165, 142, 130, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(165, 142, 130, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(165, 142, 130, 0.15);
  background: linear-gradient(to bottom right, var(--background-color), var(--section-bg-light));
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 60px;
  color: var(--accent-color);
  opacity: 0.1;
  font-family: Georgia, serif;
  transition: all 0.4s ease;
}

.testimonial-card:hover::before {
  opacity: 0.15;
  transform: scale(1.2);
  color: var(--accent-color);
}

.testimonial-content {
  position: relative;
  z-index: 1;
}

.rating {
  color: var(--accent-color);
  margin-bottom: 15px;
  display: flex;
  gap: 5px;
}

.rating i {
  color: var(--accent-color);
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid rgba(28, 101, 45, 0.1);
}

.author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-color);
  box-shadow: 0 3px 10px rgba(28, 101, 45, 0.1);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  color: var(--text-color);
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 1.1rem;
}

.author-info span {
  color: var(--accent-color);
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Video Container in Testimonials */
.video-container {
  background: var(--background-color);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(165, 142, 130, 0.1);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.video-container:hover {
  box-shadow: 0 15px 30px rgba(165, 142, 130, 0.15);
}

/* Video Konteyner Düzenlemeleri */
.video-container {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  background: #000;
  width: 100%;
  max-width: 360px; /* Reels genişliği için ideal */
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  cursor: pointer;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  z-index: 3;
  transition: opacity 0.3s ease;
}

.play-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
}

.mute-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255,255,255,0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  z-index: 3;
  transition: opacity 0.3s ease;
}

.mute-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
}

.video-wrapper.playing .video-overlay,
.video-wrapper.playing .play-btn {
  opacity: 0;
  pointer-events: none;
}

.video-wrapper:hover .video-overlay,
.video-wrapper:hover .play-btn,
.video-wrapper:hover .mute-btn {
  opacity: 1;
}

@media (max-width: 768px) {
  .video-container {
    max-width: 320px; /* Mobilde biraz daha küçük */
  }
  
  .play-btn {
    width: 50px;
    height: 50px;
  }
  
  .mute-btn {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 576px) {
  .video-container {
    max-width: 280px; /* Daha küçük ekranlarda daha da küçük */
  }
}

/* Inspiration Quote */
.inspiration-quote-section {
  padding: 60px 0;
  background-color: var(--section-bg-dark);
}

.inspiration-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.inspiration-quote i {
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.inspiration-quote p {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.inspiration-quote .blockquote-footer {
  font-size: 1rem;
  color: var(--secondary-color);
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
  .hero-section {
    padding-top: 80px;
  }
  
  .hero-content {
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
    text-align: center;
  }
  
  .hero-section .lead {
    text-align: center;
  }

  .hero-buttons {
    text-align: center;
  }
  
  .hero-image {
    height: 500px;
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .categories-section,
  .featured-products,
  .testimonials-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero-image {
    height: 400px;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .product-image {
    padding-top: 66.67%; /* 3:2 aspect ratio for mobile */
  }
  
  .product-title {
    font-size: 1.1rem;
  }
  
  .product-description {
    font-size: 0.85rem;
  }
  
  .price {
    font-size: 1.1rem;
  }
  
  .old-price {
    font-size: 0.9rem;
  }
  
  .inspiration-quote p {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .hero-image {
    height: 350px;
  }
  
  .hero-section {
    text-align: center;
  }
  
  .categories-section .row {
    grid-template-columns: 1fr;
  }
}

/* Buton Stilleri */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-primary:hover {
  background-color: darken(var(--accent-color), 10%);
  border-color: darken(var(--accent-color), 10%);
  transform: translateY(-2px);
}

.btn-outline-primary {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--background-color);
  transform: translateY(-2px);
}

/* Kart Stilleri */
.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(28, 101, 45, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: var(--background-color);
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(28, 101, 45, 0.15);
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  border: 2px solid var(--primary-color);
  opacity: 0;
  transition: all 0.4s ease;
}

.card:hover::after {
  opacity: 0.3;
}

/* Kategori Kartları */
.category-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-img {
  position: relative;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(45, 49, 66, 0.2), rgba(45, 49, 66, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.category-card:hover .category-overlay {
  transform: translateY(0);
  opacity: 1;
}

.category-overlay h3 {
  color: var(--background-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: 600;
}

.category-overlay p {
  color: var(--background-color);
  margin-bottom: 15px;
  font-size: 1rem;
  opacity: 0.9;
}

/* Form Stilleri */
.form-control {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(28, 101, 45, 0.25);
}

/* Animasyonlar */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
  animation: fadeIn 0.8s ease forwards;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/*-------------------------*/


.anasayfacon{
    position: relative;
    float:left
}

.anasayfacon .hoveranasayfa{
    position: absolute;
      left: 0;
      top: 0;
      display: none;
}

.anasayfacon:hover .hoveranasayfa{
    display: block;
}

/*-------------------------*/
.cksatanlarcon{
    position: relative;
    float:left
}

.cksatanlarcon .hovercksatanlar{
    position: absolute;
      left: 0;
      top: 0;
      display: none;
}

.cksatanlarcon:hover .hovercksatanlar{
    display: block;
}

/*-------------------------*/
.satisnoktasicon{
    position: relative;
    float:left
}

.satisnoktasicon .hoversatisnoktasi{
    position: absolute;
      left: 0;
      top: 0;
      display: none;
}

.satisnoktasicon:hover .hoversatisnoktasi{
    display: block;
}

/*-------------------------*/
.hakkındacon{
    position: relative;
    float:left
}

.hakkındacon .hoverhakkinda{
    position: absolute;
      left: 0;
      top: 0;
      display: none;
}

.hakkındacon:hover .hoverhakkinda{
    display: block;
}

/*-------------------------*/
.iletisimcon{
    position: relative;
    float:left
}

.iletisimcon .hoveriletisim{
    position: absolute;
      left: 0;
      top: 0;
      display: none;
}

.iletisimcon:hover .hoveriletisim{
    display: block;
}
/*-------------------------*/


.menu{
    position: relative;
    float:left;
    margin-left: 20px;
    align-items: center;
}

/* Utility Classes */
.text-muted {
  color: var(--secondary-color) !important;
}

/* Slider Navigation Buttons */
.slider-nav {
  margin-top: 2rem;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  margin: 0 0.5rem;
}

.nav-btn:hover {
  background: var(--accent-color);
  color: var(--background-color);
  transform: translateY(-3px);
}

.nav-btn:active {
  transform: translateY(-1px);
}

.nav-btn i {
  transition: var(--transition);
}

.nav-btn:hover i {
  transform: scale(1.2);
}

.prev-btn:hover i {
  transform: translateX(-2px) scale(1.2);
}

.next-btn:hover i {
  transform: translateX(2px) scale(1.2);
}

/* About Hero Section */
.about-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--section-bg-light) 0%, var(--background-color) 100%);
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.about-hero h1 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-hero .lead {
  color: var(--secondary-color);
}

/* Store Locations */
.store-card {
  height: 100%;
  background: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(28, 101, 45, 0.15);
}

.store-image {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
}

.store-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.store-info {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.store-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.store-address,
.store-contact,
.store-hours {
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

.store-contact a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

.store-contact a:hover {
  color: var(--primary-color);
}

/* Admin Link Styles */
.admin-link {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  color: var(--accent-color) !important;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.admin-link:hover {
  background-color: var(--accent-color);
  color: white !important;
  transform: translateY(-2px);
}

.admin-link i {
  font-size: 1rem;
}

@media (max-width: 991px) {
  .admin-link {
    margin: 10px auto;
  }
}

/* === Admin Paneli Ürün Yönetimi Stilleri === */
.admin-products-container {
  background: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 32px 24px;
  margin-top: 40px;
}

.admin-products-container h2, .admin-products-container h4 {
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.admin-products-table {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(45,49,66,0.07);
  overflow: hidden;
}

.admin-products-table th, .admin-products-table td {
  vertical-align: middle !important;
  text-align: center;
}

.admin-products-table th {
  background: var(--section-bg-light);
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
}

.admin-products-table tr {
  transition: background 0.2s;
}

.admin-products-table tr:hover {
  background: var(--section-bg-dark);
}

.admin-products-table img.product-img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(45,49,66,0.08);
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.admin-products-form {
  background: var(--section-bg-light);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(45,49,66,0.06);
  padding: 24px 18px;
  margin-bottom: 32px;
}

.admin-products-form label {
  color: var(--primary-color);
  font-weight: 500;
}

.admin-products-form .form-control, .admin-products-form .form-control-file {
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 16px;
}

.admin-products-form button[type="submit"] {
  background: var(--accent-color);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 32px;
  transition: background 0.2s, transform 0.2s;
}

.admin-products-form button[type="submit"]:hover {
  background: #164b22;
  transform: translateY(-2px);
}

.admin-products-table .btn-warning, .admin-products-table .btn-danger {
  border-radius: 50px;
  padding: 4px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.admin-products-table .btn-warning:hover {
  background: #ffb300;
  color: white;
}

.admin-products-table .btn-danger:hover {
  background: #c62828;
  color: white;
}

@media (max-width: 768px) {
  .admin-products-container {
    padding: 12px 4px;
  }
  .admin-products-form {
    padding: 10px 4px;
  }
}
@media (max-width: 768px) {
  .category-card,
  .product-card,
  .product-title,
  .product-desc,
  .btn,
  .slider-nav,
  .hero-content,
  .hero-buttons {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .navbar-brand img {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
  .product-body {
    align-items: center !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .product-desc ul {
    align-items: center !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .category-img img {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
}
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
   /* Mobilde de yatay kalsın */
}

/* === Admin Paneli Ürün Yönetimi Stilleri === */
.admin-products-container {
  background: var(--background-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 32px 24px;
  margin-top: 40px;
}

.admin-products-container h2, .admin-products-container h4 {
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.admin-products-table {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(45,49,66,0.07);
  overflow: hidden;
}

.admin-products-table th, .admin-products-table td {
  vertical-align: middle !important;
  text-align: center;
}

.admin-products-table th {
  background: var(--section-bg-light);
  color: var(--primary-color);
  font-weight: 600;
  border-bottom: 2px solid var(--accent-color);
}

.admin-products-table tr {
  transition: background 0.2s;
}

.admin-products-table tr:hover {
  background: var(--section-bg-dark);
}

.admin-products-table img.product-img {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(45,49,66,0.08);
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}

.admin-products-form {
  background: var(--section-bg-light);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(45,49,66,0.06);
  padding: 24px 18px;
  margin-bottom: 32px;
}

.admin-products-form label {
  color: var(--primary-color);
  font-weight: 500;
}

.admin-products-form .form-control, .admin-products-form .form-control-file {
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 16px;
}

.admin-products-form button[type="submit"] {
  background: var(--accent-color);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 32px;
  transition: background 0.2s, transform 0.2s;
}

.admin-products-form button[type="submit"]:hover {
  background: #164b22;
  transform: translateY(-2px);
}

.admin-products-table .btn-warning, .admin-products-table .btn-danger {
  border-radius: 50px;
  padding: 4px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.admin-products-table .btn-warning:hover {
  background: #ffb300;
  color: white;
}

.admin-products-table .btn-danger:hover {
  background: #c62828;
  color: white;
}

@media (max-width: 768px) {
  .admin-products-container {
    padding: 12px 4px;
  }
  .admin-products-form {
    padding: 10px 4px;
  }
}
@media (max-width: 768px) {
  .category-card,
  .product-card,
  .product-title,
  .product-desc,
  .btn,
  .hero-content,
  .hero-buttons {
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .navbar-brand img {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
  .product-body {
    align-items: center !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .product-desc ul {
    align-items: center !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .category-img img {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
  }
}
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: row !important; /* Mobilde de yatay kalsın */
}
@media (max-width: 768px) {
  .shorts-video {
    width: 270px !important;
    height: 480px !important;
  }

  .shorts-video iframe {
    width: 100% !important;
    height: 100% !important;
  }
}
