*{
box-sizing: border-box;
}

body {
margin: 0;
font-family: 'Poppins', sans-serif;
color: #222;
background:#f9f9f9;
}

#header {
background: #000;
color: #fff;
box-shadow: 0 2px 3px rgba(0, 0, 0, .64);
}

.header {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
align-items: center; 
justify-content: space-between;
}

.logo{
padding:15px 0;
}

.logo img {
width: 110px;
display: block;
}

/* Hamburger butonu gizli masaüstü */
#menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Menü stilleri */
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
}

.menu li a {
color: #fff;
text-decoration: none;
font-weight: 400;
padding: 10px;
}

.menu li a:hover {
color:#fff;
border-bottom:2px solid #fff
}

#slider video{
width:100%;
height:700px;
object-fit:cover;
opacity:0.4
}

#slider {
  position: relative;
  background-color: #6b3b08;
  background-image: url('https://www.transparenttextures.com/patterns/leather.png');
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.slider-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* siyah yari saydam */
  z-index: 1;
}

.slider-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding:200px 0 0 0;
  min-height:700px;
}

.slider-content h1 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 700;
}

.slider-content p {
  font-size: 18px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.slider-btn {
  background-color: #f0c14b;
  color: #000;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.slider-btn:hover {
  background-color: #d4a73d;
}


#features {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  gap: 20px;
}

.feature-box {
  background: #f5f5f5;
  padding: 25px 20px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box h3 {
  margin-bottom: 15px;
  color: #6b3b08;
  font-weight: 700;
  font-size: 22px;
}

.feature-box p {
  color: #444;
  font-size: 16px;
  line-height: 1.5;
}

.flickity-page-dots .dot {
    background: #ffffff!important;
}

.flickity-page-dots {
    bottom: -55px!important;
}

#testimonials .flickity-page-dots{
display:none!important
}

#photo-gallery {
  padding:50px 0px 50px 0px;
  text-align: center;
}

#photo-gallery h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
}

.gallery {
  margin: 0 auto;
}

.gallery-cell {
  width: 300px;
  margin-right: 10px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-cell img {
  display: block;
  width: 100%;
  height: auto;
}

#cta-section {
  background: #000;
  background-image: url('https://www.transparenttextures.com/patterns/leather.png');
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  margin: 40px auto;
  box-shadow: 0 6px 15px rgba(107, 59, 8, 0.4);
}

#cta-section h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

#cta-section p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.5;
}

.cta-button {
  background: #f0c14b;
  color: #000;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  
}

.cta-button:hover {
  background: #d4a73d;
}


#site-footer {
  background-color: #1e1e1e;
  color: #ccc;
  padding: 40px 20px 20px;
  font-size: 15px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 250px;
  min-width: 200px;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  margin-bottom: 8px;
}

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

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #f0c14b;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 30px;
  font-size: 14px;
}

#testimonials {
  padding: 20px 20px 50px 20px;
  background-color: #f8f8f8;
  text-align: center;
  
  margin:0 auto;
}

#testimonials h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.testimonial-slider .testimonial {
  background: #fff;
  padding: 20px;
  margin: 20px 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width:33%;
  min-height:200px;
}

.testimonial p {
  font-size: 16px;
  margin-bottom: 10px;
}

.testimonial span {
  font-weight: 600;
  color: #333;
}

#brands {
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

#brands h2 {
  font-size: 26px;
  margin-bottom: 25px;
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.brand-logos img {
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brand-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {

#slider video{
width:100%;
height:400px;
object-fit:cover;
opacity:0.4
}

.slider-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding:20px 0 50px 0;
  min-height:100px;
}


.testimonial-slider .testimonial {
  background: #fff;
  padding: 20px;
  margin: 20px 10px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  width:90%;
  min-height:200px;
}

  .header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .logo {
    padding: 10px 0;
  }

  .logo img {
    width: 90px;
  }

  #menu-toggle {
    display: block;
	position:absolute;
	right:15px;
	z-index:9;
	top:15px
  }

  .menu ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    background: #222;
    position: absolute;
    top: 70px; /* header yüksekligine göre ayarla */
    right: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
    z-index: 10;
  }

  .menu ul.active {
    display: flex;
  }

  .menu li a {
    font-size: 18px;
    display: block;
  }
 

  #slider {
    min-height: 250px;
   
  }

  .slider-content h1 {
    font-size: 28px;
  }

  .slider-content p {
    font-size: 16px;
    max-width: 100%;
  }

  .slider-btn {
    padding: 10px 20px;
    font-size: 16px;
  }
  
  #features {
    flex-direction: column;
    gap: 25px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
}

@media (min-width: 769px) and (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Daha küçük ekranlar için */
@media (max-width: 480px) {
  .header {
    padding: 10px 15px;
  }

  .logo img {
    width: 80px;
  }

  .menu ul {
    gap: 10px;
  }

  .menu li a {
    font-size: 14px;
  }

  .slider-content h1 {
    font-size: 24px;
  }

  .slider-content p {
    font-size: 14px;
  }

  .slider-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}




#contact {
  padding:0 20px 50px 20px;
  background-color: #f9f9f9;
  font-family: 'Poppins', sans-serif;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  margin-top:20px;
}

#contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #6b3b08;
}

.contact-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info, .contact-form {
  background: #fff;
  padding: 30px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  border-radius: 12px;
  flex: 1 1 350px;
  max-width: 450px;
}

.contact-info h3 {
  margin-bottom: 25px;
  color: #6b3b08;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.contact-info a {
  color: #6b3b08;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #444;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #6b3b08;
  outline: none;
}

.contact-form button {
  background-color: #6b3b08;
  color: #fff;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.contact-form button:hover {
  background-color: #543005;
}

/* Responsive */

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-info, .contact-form {
    max-width: 100%;
  }
}


#about-us {
  background-color: #f9f9f9;
  padding: 10px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

#about-us .container {
  max-width: 1200px;
  margin: 0 auto;
}

#about-us h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: #5a2a0c; /* Kahverengi ton */
  font-weight: 700;
}

#about-us p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

#products {
  padding: 10px 20px;
  background-color: #fafafa;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

#products h2 {
  text-align: center;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: #2c3e50;
}

#products p {
  max-width: 1200px;
  margin: 0 auto 30px auto;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  text-align: center;
}

.product-gallery {
  max-width: 1200px;
  margin: 0 auto;
  overflow:hidden
}

.product-cell {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  margin: 10px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.1);
  text-align: center;
  width:31.6%;
  float:left;
  min-height:100px;
}

.product-cell img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 6px;
  margin-bottom: 15px;
}

.product-cell h4 {
  font-weight: 600;
  font-size: 16px;
  color: #34495e;
  margin-bottom: 8px;
  min-height:50px
}

.product-cell p {
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
}

/* Responsive */

@media (max-width: 768px) {
  #products p {
    padding: 0 15px;
  }
  .product-cell img {
    max-height: 180px;
	width:200px;
	object-fit:cover
  }
  
  .product-cell {
  background: #fff;
  border-radius: 8px;
  padding: 15px;
  margin: 10px;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.1);
  text-align: center;
  width:100%
}
}


#custom-production {
  background-color: #2c3e50;
  color: #fff;
  padding: 20px 20px;
  text-align: center;
}

#custom-production h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}

#custom-production h3 {
  font-size: 1.6rem;
  color: #f39c12;
  margin-top: 40px;
  margin-bottom: 10px;
}

#custom-production p {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #ddd;
}

.production-steps,
.reasons {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 800px;
  text-align: left;
}

.production-steps li,
.reasons li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.production-steps li::before,
.reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #e67e22;
  font-size: 1.5rem;
  line-height: 1;
}

.btn-cta {
  display: inline-block;
  background-color: #e67e22;
  color: #fff;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-cta:hover {
  background-color: #d35400;
}

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-btn img {
    width: 40px;
    height: 40px;
    display: block;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.announcement-bar {
  background-color: #c0392b; /* kirmizimsi dikkat çeken bir renk */
  color: #fff;
  text-align: center;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  z-index: 999;
  position: relative;
}

.announcement-bar a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .announcement-bar {
    font-size: 14px;
    padding: 8px 10px;
  }
}


.bayilik-tab{
background: linear-gradient(45deg, #f0505c, #bf1212);
}

:root{
  --bg: #0a0a0a;
  --panel: #111111;
  --border: #222;
  --accent: #ff9900;
  --accent-hover: #ffaa33;
  --text: #e5e5e5;
  --muted: #777;
  --radius: 12px;
  --shadow: 0 6px 18px rgba(0,0,0,0.6);
  font-family: 'Inter', sans-serif;
}


.giris-form {
  width:100%;
  max-width:380px;
  background: var(--panel);
  border-radius: var(--radius);
  border:1px solid var(--border);
  padding:28px;
  box-shadow: var(--shadow);
}

/* Tabs */
.gf-tabs {
  display:flex;
  gap:2px;
  margin-bottom:16px;
}
.tab-btn {
  flex:1;
  padding:10px 0;
  border:none;
  border-radius: var(--radius);
  cursor:pointer;
  font-weight:600;
  background: var(--border);
  color: var(--muted);
  transition: all .2s;
}
.tab-btn.active {
  background: var(--accent);
  color: #111;
}

/* Forms */
.tab-content { display:none; }
.tab-content.active { display:block; }

.gf-field { position:relative; margin-bottom:16px; }
.gf-field input {
  width:100%;
  padding:16px 12px 12px 12px;
  background: #0f0f0f;
  border:1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size:15px;
  outline:none;
  box-sizing:border-box;
  transition:border-color .2s, box-shadow .2s;
}
.gf-field input:focus { border-color: var(--accent); box-shadow:0 0 6px rgba(255,153,0,0.4);}
.gf-field input::placeholder { color: transparent; }

.gf-label {
  position:absolute;
  left:14px;
  top:16px;
  font-size:14px;
  color: var(--muted);
  pointer-events:none;
  transition: all .2s ease;
  background: transparent;
  padding:0 2px;
  white-space: nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.gf-field input:focus + .gf-label,
.gf-field input:not(:placeholder-shown) + .gf-label {
  top:-8px;
  font-size:12px;
  color: var(--accent);
  background: var(--panel);
}

/* Button */
.gf-btn {
  width:100%;
  padding:12px;
  border:none;
  border-radius: var(--radius);
  background: var(--accent);
  color:#111;
  font-weight:600;
  font-size:15px;
  cursor:pointer;
  transition: background .2s, transform .1s;
}
.gf-btn:hover { background: var(--accent-hover);}
.gf-btn:active { transform:translateY(1px);}

/* Helpers */
.gf-helpers { margin-top:12px; text-align:center; font-size:13px; }
.gf-link { color: var(--muted); text-decoration:none; }
.gf-link:hover { color:#fff; }

@media (max-width:420px){
  .giris-form { padding:20px; }
  .tab-btn { padding:8px 0; font-size:14px; }
  .gf-field input { padding:14px 10px; font-size:14px; }
  .gf-btn { padding:11px; font-size:14px; }
}


.gf-baslik{
text-align:center;
padding:0px 0 20px 0;
font-size:28px;
font-weight:500
}

.ds-dashboard-unique {
  display: flex;
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #e5e5e5;
  width:100%;
}

/* Sidebar */
.ds-sidebar-unique {
  width: 240px;
  background: #111;
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.5);
}
.ds-sidebar-header-unique h2 {
  color: #ff9900;
  margin: 0 0 20px 0;
}
.ds-nav-unique ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ds-nav-item-unique {
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all .2s;
}
.ds-nav-item-unique:hover, .ds-nav-item-unique.active {
  background: #222;
  color: #ff9900;
}

/* Main content */
.ds-main-unique {
  flex: 1;
  padding: 30px;
  background: #0f0f0f;
  overflow-y: auto;
}
.ds-tab-content-unique {
  display: none;
}
.ds-tab-content-unique.active {
  display: block;
}

/* Responsive */
@media (max-width: 768px){
  .ds-dashboard-unique {
    flex-direction: column;
  }
  .ds-sidebar-unique {
    width: 100%;
    display: flex;
    overflow-x: auto;
  }
  .ds-nav-unique ul {
    display: flex;
    gap: 10px;
  }
  .ds-nav-item-unique {
    white-space: nowrap;
  }
}

.ds-table-container-unique {
  overflow-x: auto;
  margin-top: 15px;
}

.ds-table-unique {
  width: 100%;
  border-collapse: collapse;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}

.ds-table-unique th, .ds-table-unique td {
  padding: 12px 15px;
  text-align: left;
  color: #e5e5e5;
}

.ds-table-unique th {
  background: #222;
  color: #ff9900;
  font-weight: 600;
}

.ds-table-unique tr:nth-child(even) {
  background: #0f0f0f;
}

.ds-table-unique tr:hover {
  background: #222;
}

.status-shipped {
  color: #00bfff; /* mavi */
  font-weight: 600;
}

.status-pending {
  color: #ffcc00; /* sari */
  font-weight: 600;
}

.status-delivered {
  color: #00ff7f; /* yesil */
  font-weight: 600;
}

/* Responsive */
@media(max-width: 600px){
  .ds-table-unique th, .ds-table-unique td {
    padding: 8px 10px;
    font-size: 14px;
  }
}


 /* Ürünler tablosu */
.ds-table-container-unique { overflow-x: auto; margin-top: 15px; }
.ds-table-products-unique {
  width: 100%;
  border-collapse: collapse;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.6);
}
.ds-table-products-unique th, .ds-table-products-unique td {
  padding: 12px 15px;
  text-align: left;
  color: #e5e5e5;
}
.ds-table-products-unique th {
  background: #222;
  color: #ff9900;
  font-weight: 600;
}
.ds-table-products-unique tr:nth-child(even) { background: #0f0f0f; }
.ds-table-products-unique tr:hover { background: #222; }

/* Ürün resimleri */
.ds-product-img-unique {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

/* Sepete ekle butonu */
.ds-btn-add-unique {
  background: #ff9900;
  border: none;
  color: #0a0a0a;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all .2s;
}
.ds-btn-add-unique:hover { background: #ffaa33; }

/* Modal */
.ds-modal-unique {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}
.ds-modal-img-unique {
  max-width: 80%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
}
.ds-modal-close-unique {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
}
.ds-modal-close-unique:hover { color: #ff9900; }

/* Responsive */
@media(max-width: 600px){
  .ds-table-products-unique th, .ds-table-products-unique td { padding: 8px 10px; font-size: 14px; }
  .ds-product-img-unique { width: 40px; height: 40px; }
  .ds-btn-add-unique { padding: 6px 10px; font-size: 13px; }
}

.ds-search-container-unique {
  margin-bottom: 15px;
}
#ds-search-input-unique {
  width: 100%;
  padding: 10px 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 16px;
  background: #222;
  color: #e5e5e5;
}
#ds-search-input-unique::placeholder {
  color: #aaa;
}
