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

body {
  font-family: 'Montserrat', sans-serif;
  background: #efe5d5;
  color: #073b2a;
}

/* ÜST BAR */
.top-bar {
  height: 90px;
  background: linear-gradient(90deg, #2c584b, #01442f);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  border-bottom: 4px solid #c9a24e;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 16px;
  font-weight: 500;
}

.top-left a {
  color: white;
  text-decoration: none;
}

.divider {
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.3);
}

.social{
  display:flex;
  gap:18px;
  min-width:180px;
}

.social a{
  color:#d6b36a;
  text-decoration:none;
  font-size:24px;
  transition:.3s;
}

.social a:hover{
  color:white;
  transform:translateY(-3px);
}

/* LOGO VE YAZI ALANI */
.brand-area {
  height: 250px;
  background: #efe5d5;
  display: grid;
  grid-template-columns: 1fr 330px 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 60px;
  overflow: hidden;
}

.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-box img {
  width: 390px;
  display: block;
  mix-blend-mode: multiply;
}

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

.decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.decor h2 {
  font-size: 15px;
  letter-spacing: 4px;
  color: #063b2a;
  white-space: nowrap;
  font-weight: 800;
}

.decor span {
  width: 45px;
  height: 2px;
  background: #b0974b;
}

.ornament {
  margin-top: 12px;
}

.ornament img {
  width: 120px;
  mix-blend-mode: multiply;
}

.brand-text p {
  margin-top: 16px;
  color: #b88b2e;
  font-size: 16px;
  font-weight: 600;
}

.ornament {
    margin: 15px 0;
}

.ornament img {
    width: 170px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* MENÜ */
.menu {
  height: 82px;
  background: #f7f1e8;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 65px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.menu a {
  text-decoration: none;
  color: #062f22;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 30px 0;
  position: relative;
}

.menu a::after {
  content: "";
  width: 0;
  height: 4px;
  background: #c9a24e;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.3s;
}

.menu a:hover {
  color: #c9a24e;
}

.menu a:hover::after {
  width: 100%;
}

/* HAKKIMIZDA */
.about-section {
  padding: 90px 60px;
  background: #efe5d5;
}

.about-container {
  max-width: 1150px;
  margin: 0 auto;
}

.about-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 40px;
}

.about-title span {
  width: 70px;
  height: 2px;
  background: #c9a24e;
}

.about-title h1 {
  font-family: 'Playfair Display', serif;
  color: #063b2a;
  font-size: 42px;
  text-align: center;
}

.about-card {
  background: #f7f1e8;
  padding: 50px 60px;
  border-radius: 22px;
  border: 1px solid #d8c19a;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #254437;
  margin-bottom: 22px;
  font-weight: 500;
}

.about-card h3 {
  margin-top: 35px;
  font-family: 'Playfair Display', serif;
  color: #b88b2e;
  font-size: 28px;
  text-align: center;
}

.top-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.top-logo img {
  width: 152px;
  display: block;
  mix-blend-mode: normal;
}

.top-bar{
    position: relative;
}

.top-brand-text{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.top-brand-text img{
    width: 210px;
    height: auto;
    display: block;
}

.home-hero {
  min-height: 470px;
  background: #efe5d5;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding: 75px 60px;
}

.hero-image img {
  width: 430px;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  border: 2px solid #d4bc92;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.home-hero-content {
  max-width: 620px;
}

.home-hero-content span {
  color: #c9a24e;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.home-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  color: #063b2a;
  margin: 18px 0;
}

.home-hero-content p {
  font-size: 18px;
  color: #4b5c52;
  line-height: 1.8;
  font-weight: 500;
}

.hero-buttons {
  margin-top: 35px;
  display: flex;
  gap: 18px;
}

.hero-buttons a {
  text-decoration: none;
  background: #063b2a;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
}

.hero-buttons a{
  transition: all 0.3s ease;
}

.hero-buttons a:hover{
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.hero-buttons a:first-child:hover{
  background: #0b513c;
}

.hero-buttons a:nth-child(2) {
  background: transparent;
  color: #063b2a;
  border: 2px solid #c9a24e;
}

.hero-buttons a:nth-child(2):hover{
  background: #c9a24e;
  color: white;
}

/* HİKÂYEMİZ SAYFASI */

.story-page {
  background: #efe5d5;
  padding-bottom: 70px;
}

.story-banner img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
}

.story-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 55px;
}

.story-title span {
  width: 90px;
  height: 2px;
  background: #c9a24e;
}

.story-title h1 {
  font-family: 'Playfair Display', serif;
  color: #063b2a;
  font-size: 48px;
  letter-spacing: 2px;
}

.story-intro {
  max-width: 720px;
  margin: 25px auto 45px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  color: #355447;
  font-weight: 500;
}

.story-features {
  max-width: 1000px;
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.story-feature {
  text-align: center;
  padding: 25px 20px;
  border-right: 1px solid #d8c19a;
}

.story-feature:last-child {
  border-right: none;
}

.story-feature h3 {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  color: #063b2a;
  margin-bottom: 12px;
}

.story-feature p {
  color: #4b5c52;
  line-height: 1.7;
  font-weight: 500;
}

.story-content {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f7f1e8;
  border: 1px solid #d8c19a;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-text {
  padding: 55px;
}

.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #063b2a;
  margin-bottom: 20px;
}

.story-text p {
  font-size: 17px;
  line-height: 1.9;
  color: #355447;
  margin-bottom: 18px;
  font-weight: 500;
}

.story-quote {
  width: 100%;
  margin-top: 55px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #b88b2e;
  font-size: 30px;
  font-style: italic;
  display: block;
  clear: both;
}

/* ANA SAYFA ÖZELLİKLER */

.features{
  max-width:1200px;
  margin:0 auto;
  padding:20px 40px 80px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.feature-box{
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:18px;
  padding:35px 25px;
  text-align:center;
  transition:0.3s;
}

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

.feature-box h3{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  font-size:28px;
  margin-bottom:15px;
}

.feature-box p{
  color:#4b5c52;
  line-height:1.8;
  font-weight:500;
}

/* ÖNE ÇIKAN LEZZETLER */

.featured-products{
  padding: 20px 60px 90px;
}

.section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  margin-bottom:45px;
}

.section-title span{
  width:70px;
  height:2px;
  background:#c9a24e;
}

.section-title h2{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  font-size:42px;
}

.product-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.product-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.product-item{
  text-align:center;
}

.product-item img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid #d8c19a;
  transition:.3s;
}

.product-item img:hover{
  transform:scale(1.03);
}

.product-item h3{
  margin-top:18px;
  color:#063b2a;
  font-family:'Cinzel', serif;
  font-size:24px;
  letter-spacing:1px;
}

.product-item p{
  margin-top:8px;
  color:#4b5c52;
  line-height:1.6;
  font-size:13.5px;
  font-weight:500;
}

/* ANA SAYFA HİKÂYE */

.home-story{
  max-width:1200px;
  margin:0 auto;
  padding:80px 40px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.home-story-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  border-radius:20px;
  border:1px solid #d8c19a;
}

.home-story-content span{
  color:#c9a24e;
  font-weight:800;
  letter-spacing:3px;
}

.home-story-content h2{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  font-size:44px;
  margin:15px 0 20px;
}

.home-story-content p{
  color:#4b5c52;
  line-height:1.9;
  font-size:17px;
  margin-bottom:30px;
}

.home-story-content a{
  display:inline-block;
  text-decoration:none;
  background:#063b2a;
  color:white;
  padding:14px 28px;
  border-radius:30px;
  font-weight:700;
  transition:.3s;
}

.home-story-content a:hover{
  transform:translateY(-3px);
  background:#0b513c;
}

/* NEDEN BİZ */

.why-us{
  padding: 30px 40px 90px;
}

.why-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.why-item{
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:20px;
  padding:35px 25px;
  text-align:center;
  transition:.3s;
}

.why-item:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,0.06);
}

.story-mini-grid{
  margin-top:35px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.mini-card{
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:18px;
  padding:28px;
  text-align:center;
  transition:all .3s ease;
}

.mini-card:hover{
  background:#063b2a;
  transform:translateY(-8px);
  box-shadow:0 15px 30px rgba(0,0,0,0.10);
}

.mini-card:hover h3{
  color:#d6b36a;
}

.mini-card:hover p{
  color:#f5f0e8;
}

.mini-card h3{
  color:#063b2a;
  font-family:'Cinzel', serif;
  font-size:18px;
  margin-bottom:10px;
}

.mini-card p{
  font-size:14px;
  line-height:1.7;
  color:#4b5c52;
  margin-bottom:0;
}

.back-home{
  position:absolute;
  top:110px;
  left:25px;
  z-index:100;
}

.back-home a{
  display:inline-block;
  background:#f7f1e8;
  color:#063b2a;
  border:1px solid #d8c19a;
  text-decoration:none;
  padding:7px 14px;
  border-radius:20px;
  font-size:12px;
  font-weight:700;
  transition:0.3s;
}

.back-home a:hover{
  background:#063b2a;
  color:white;
}

.back-home a:hover{
  background:#c9a24e;
  color:#063b2a;
  transform:translateY(-2px);
}

.top-left a{
  color:white;
  text-decoration:none;
}

.contact-page{
  padding:80px 60px;
}

.contact-title{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  margin-bottom:50px;
}

.contact-title span{
  width:80px;
  height:2px;
  background:#c9a24e;
}

.contact-title h1{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  font-size:52px;
}

.contact-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:420px 1fr;
  gap:40px;
}

.contact-info{
  background:#f7f1e8;
  padding:40px;
  border-radius:20px;
  border:1px solid #d8c19a;
}

.contact-info h2{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  margin-bottom:30px;
}

.contact-item{
  margin-bottom:30px;
}

.contact-item h3{
  color:#b88b2e;
  margin-bottom:8px;
}

.contact-item p{
  line-height:1.8;
}

.contact-map-placeholder{
  background:#f7f1e8;
  border-radius:20px;
  overflow:hidden;
  border:1px solid #d8c19a;
}

.contact-map-placeholder img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.contact-page{
  padding:70px 60px 90px;
}

.contact-map-wide{
  max-width:1200px;
  height:380px;
  margin:0 auto 35px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid #d8c19a;
}

.contact-map-wide iframe{
  width:100%;
  height:100%;
  border:0;
}

.contact-cards{
  max-width:1200px;
  margin:0 auto 35px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.contact-card{
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:18px;
  padding:28px;
  text-align:center;
  transition:.3s;
}

.contact-card:hover{
  background:#063b2a;
  transform:translateY(-6px);
}

.contact-card h3{
  color:#b88b2e;
  margin-bottom:12px;
  font-family:'Cinzel', serif;
}

.contact-card p,
.contact-card a{
  color:#063b2a;
  text-decoration:none;
  font-weight:600;
  line-height:1.6;
}

.contact-card:hover p,
.contact-card:hover a{
  color:white;
}

.hours-card{
  max-width:850px;
  margin:0 auto;
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:22px;
  padding:35px;
  transition:.3s;
}

.hours-card:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 25px rgba(0,0,0,0.07);
}

.hours-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:25px;
}

.hours-top h2{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  font-size:34px;
}

.status-badge{
  padding:8px 16px;
  border-radius:25px;
  font-size:13px;
  font-weight:800;
}

.status-open{
  background:#0b8f4d;
  color:white;
}

.status-closed{
  background:#b3261e;
  color:white;
}

.hours-card ul{
  list-style:none;
}

.hours-card li{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid #e1cfad;
  color:#355447;
  font-weight:600;
}

.hours-card li span{
  color:#063b2a;
}

.hours-card{
  max-width:850px;
  margin:40px auto 0;
}

.whatsapp-fixed{
  position:fixed;
  left:25px;
  bottom:25px;
  width:65px;
  height:65px;
  background:#25d366;
  color:white;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  font-size:34px;
  z-index:999;
  box-shadow:0 10px 25px rgba(0,0,0,0.18);
  animation:whatsappPulse 1.6s infinite;
}

@keyframes whatsappPulse{
  0%{ transform:scale(1); }
  50%{ transform:scale(1.06); }
  100%{ transform:scale(1); }
}

.trendyol-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}

.trendyol-card img{
  width:160px;
  height:auto;
  margin-bottom:12px;
}

.trendyol-card p{
  font-size:13px;
  line-height:1.5;
  text-align:center;
  color:#355447;
}

.main-info{
  font-size:18px;
  font-weight:700;
  color:#063b2a;
  margin-top:10px;
}

.sub-info{
  margin-top:12px;
  font-size:13px;
  line-height:1.6;
  color:#6a766f;
}

.why-item h3{
  font-size:38px;
  color:#c9a24e;
  margin-bottom:15px;
}

.why-item h3 i{
  transition:.3s;
}

.why-item:hover h3 i{
  transform:scale(1.15);
}

.product-item{
  position:relative;
}

.product-item{
  position:relative;
}

.product-badge{
  position:absolute;
  top:0px;
  left:0px;
  z-index:20;
  background:transparent;
  border:none;
  box-shadow:none;
  padding:0;
}

.product-badge img{
  width:55px;
  height:auto;
  display:block;
  border:none;
  box-shadow:none;
  border-radius:0;
  transition:.3s;
}

.product-item:hover .product-badge img{
  transform:rotate(-5deg) scale(1.06);
}

.products-page{
  padding:70px 60px 90px;
}

.product-controls{
  max-width:1200px;
  margin:0 auto 45px;
  text-align:center;
}

#productSearch{
  width:100%;
  max-width:520px;
  padding:15px 22px;
  border-radius:30px;
  border:1px solid #d8c19a;
  background:#f7f1e8;
  outline:none;
  font-size:15px;
  font-family:'Montserrat', sans-serif;
  color:#063b2a;
  margin-bottom:25px;
}

.category-buttons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
}

.category-buttons button{
  border:1px solid #d8c19a;
  background:#f7f1e8;
  color:#063b2a;
  padding:10px 20px;
  border-radius:25px;
  font-weight:800;
  cursor:pointer;
  transition:.3s;
}

.category-buttons button:hover,
.category-buttons button.active{
  background:#063b2a;
  color:white;
}

.products-grid{
  max-width:1400px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}

.menu-product{
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:20px;
  overflow:hidden;
  text-align:center;
  transition:.3s;
}

.menu-product:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,0.07);
}

.menu-product img{
  width:100%;
  height:190px;
  object-fit:cover;
}

.menu-product h3{
  font-family:'Cinzel', serif;
  color:#063b2a;
  font-size:20px;
  margin:18px 12px 8px;
}

.menu-product p{
  color:#4b5c52;
  font-size:13px;
  line-height:1.6;
  padding:0 18px;
  min-height:42px;
}

.menu-product strong{
  display:block;
  color:#b88b2e;
  font-size:18px;
  margin:18px 0 22px;
}

.site-footer{
  background:linear-gradient(90deg,#063b2a,#01442f);
  color:white;
  padding:65px 60px 25px;
  border-top:4px solid #c9a24e;
}

.footer-container{
  max-width:1250px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:45px;
}

.footer-brand img{
  width:190px;
  margin-bottom:18px;
}

.footer-brand p{
  color:#d6b36a;
  font-weight:700;
  line-height:1.7;
}

.footer-social{
  display:flex;
  gap:18px;
  margin-top:25px;
}

.footer-social a{
  width:42px;
  height:42px;
  border:1px solid #c9a24e;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  color:#d6b36a;
  text-decoration:none;
  font-size:20px;
  transition:.3s;
}

.footer-social a:hover{
  background:#c9a24e;
  color:#063b2a;
}

.footer-col h3{
  color:#d6b36a;
  font-family:'Cinzel', serif;
  margin-bottom:20px;
  font-size:19px;
}

.footer-col a,
.footer-col p{
  display:block;
  color:#e8f7ea;
  text-decoration:none;
  margin-bottom:13px;
  font-size:14px;
  line-height:1.6;
}

.footer-col a:hover{
  color:#d6b36a;
  padding-left:5px;
}

.footer-col i{
  color:#d6b36a;
  margin-right:8px;
}

.footer-bottom{
  max-width:1250px;
  margin:45px auto 0;
  padding-top:22px;
  border-top:1px solid rgba(201,162,78,0.45);
  text-align:center;
  color:#f7f1e8;
  font-size:14px;
}

/* KURUMSAL SATIŞ */

.corporate-page{
  padding:70px 60px 90px;
}

.corporate-hero{
  max-width:1200px;
  margin:0 auto 55px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.corporate-text span{
  color:#c9a24e;
  font-weight:800;
  letter-spacing:3px;
}

.corporate-text h2{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  font-size:46px;
  margin:16px 0;
}

.corporate-text p{
  color:#4b5c52;
  font-size:17px;
  line-height:1.8;
  margin-bottom:28px;
}

.corporate-text a{
  display:inline-block;
  background:#063b2a;
  color:white;
  text-decoration:none;
  padding:14px 28px;
  border-radius:30px;
  font-weight:800;
  transition:.3s;
}

.corporate-text a:hover{
  background:#0b513c;
  transform:translateY(-3px);
}

.corporate-image img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid #d8c19a;
}

.corporate-cards{
  max-width:1200px;
  margin:0 auto 60px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.corporate-card{
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:20px;
  padding:35px 25px;
  text-align:center;
  transition:.3s;
}

.corporate-card:hover{
  background:#063b2a;
  transform:translateY(-6px);
}

.corporate-card i{
  font-size:38px;
  color:#c9a24e;
  margin-bottom:18px;
}

.corporate-card h3{
  font-family:'Cinzel', serif;
  color:#063b2a;
  margin-bottom:12px;
}

.corporate-card p{
  color:#4b5c52;
  line-height:1.7;
  font-size:14px;
}

.corporate-card:hover h3,
.corporate-card:hover p{
  color:white;
}

.corporate-info{
  max-width:1100px;
  margin:0 auto;
  background:#f7f1e8;
  border:1px solid #d8c19a;
  display:grid;
  grid-template-columns:420px 1fr;
  border-radius:22px;
  overflow:hidden;
}

.corporate-info img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.corporate-info div:nth-child(2){
  padding:45px;
}

.corporate-info h2{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  font-size:36px;
  margin-bottom:18px;
}

.corporate-info p{
  color:#355447;
  line-height:1.8;
  font-size:16px;
  margin-bottom:16px;
}

/* MAĞAZAMIZ */

.store-page{
  padding:70px 60px 90px;
}

.store-hero{
  max-width:1200px;
  margin:0 auto 55px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.store-image img{
  width:100%;
  height:390px;
  object-fit:cover;
  border-radius:22px;
  border:1px solid #d8c19a;
}

.store-text span{
  color:#c9a24e;
  font-weight:800;
  letter-spacing:3px;
}

.store-text h2{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  font-size:44px;
  margin:16px 0;
}

.store-text p{
  color:#4b5c52;
  font-size:17px;
  line-height:1.8;
  margin-bottom:18px;
}

.store-text a{
  display:inline-block;
  margin-top:12px;
  background:#063b2a;
  color:white;
  text-decoration:none;
  padding:14px 28px;
  border-radius:30px;
  font-weight:800;
  transition:.3s;
}

.store-text a:hover{
  background:#0b513c;
  transform:translateY(-3px);
}

.store-info-grid{
  max-width:1200px;
  margin:0 auto 60px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.store-info-card{
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:20px;
  padding:35px 25px;
  text-align:center;
  transition:.3s;
}

.store-info-card:hover{
  background:#063b2a;
  transform:translateY(-6px);
}

.store-info-card i{
  color:#c9a24e;
  font-size:36px;
  margin-bottom:18px;
}

.store-info-card h3{
  color:#063b2a;
  font-family:'Cinzel', serif;
  margin-bottom:12px;
}

.store-info-card p{
  color:#4b5c52;
  line-height:1.7;
  font-size:14px;
}

.store-info-card:hover h3,
.store-info-card:hover p{
  color:white;
}

.store-gallery{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.store-gallery img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:20px;
  border:1px solid #d8c19a;
  transition:.3s;
}

.store-gallery img:hover{
  transform:scale(1.03);
}

.menu-product[data-category="icecek"] img{
  height:230px;
  object-fit:contain;
  padding:10px;
  background:white;
}

.menu-product{
    transition:0.3s;
}

.menu-product:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

/* RESPONSIVE */


.admin-page{
  min-height:100vh;
  background:#efe5d5;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px;
}

.admin-box{
  width:100%;
  max-width:450px;
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:22px;
  padding:35px;
  text-align:center;
}

.admin-box h1{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  margin-bottom:10px;
}

.admin-box p{
  color:#4b5c52;
  margin-bottom:22px;
}

.admin-box input,
.admin-box select{
  width:100%;
  padding:13px 16px;
  margin-bottom:14px;
  border-radius:12px;
  border:1px solid #d8c19a;
  outline:none;
  font-family:'Montserrat', sans-serif;
}

.admin-box button{
  width:100%;
  padding:14px;
  background:#063b2a;
  color:white;
  border:none;
  border-radius:25px;
  font-weight:800;
  cursor:pointer;
  margin-top:8px;
}

.admin-box button:hover{
  background:#0b513c;
}

.admin-box a{
  display:inline-block;
  margin-top:20px;
  color:#b88b2e;
  font-weight:800;
  text-decoration:none;
}

#adminResult{
  margin-top:18px;
  color:#063b2a;
  font-weight:700;
}

/* ANA SAYFA GÜVEN ŞERİDİ */

.trust-strip{
  max-width:1200px;
  margin:-25px auto 55px;
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:22px;
  padding:30px 35px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.trust-strip div{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:#063b2a;
  font-weight:800;
  text-align:center;
}

.trust-strip i{
  color:#c9a24e;
  font-size:18px;
}

.trust-strip div:hover i{
  transform:scale(1.15);
}

.trust-strip i{
  transition:.3s;
}

/* MÜŞTERİ YORUMLARI */

.reviews-section{
  max-width:1200px;
  margin:100px auto;
  padding:0 20px;
}

.rating-summary{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:25px;
  margin:40px 0 50px;
}

.rating-number{
  font-size:70px;
  font-weight:800;
  color:#063b2a;
}

.rating-info{
  text-align:left;
}

.stars{
  color:#c9a24e;
  font-size:28px;
  letter-spacing:4px;
}

.rating-info p{
  margin-top:8px;
  color:#6a766f;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.review-card{
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:20px;
  padding:30px;
  transition:.3s;
}

.review-card:hover{
  transform:translateY(-8px);
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

.review-stars{
  color:#c9a24e;
  font-size:20px;
  margin-bottom:15px;
}

.review-card h3{
  color:#063b2a;
  margin-bottom:12px;
}

.review-card p{
  color:#5d6b63;
  line-height:1.8;
}

/* INSTAGRAM GALERİ */

.instagram-section{
  max-width:1200px;
  margin:100px auto;
  padding:0 20px;
  text-align:center;
}

.instagram-text{
  color:#6a766f;
  margin:25px 0 40px;
}

.instagram-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.instagram-grid img{
  width:100%;
  height:260px;
  object-fit:cover;
  border-radius:18px;
  border:1px solid #d8c19a;
  transition:.3s;
}

.instagram-grid img:hover{
  transform:scale(1.03);
}

.instagram-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  margin-top:40px;

  background:#063b2a;
  color:white;

  text-decoration:none;

  padding:16px 28px;
  border-radius:50px;

  font-weight:700;
}

.instagram-btn:hover{
  background:#0b513c;
}

.instagram-btn i{
  font-size:20px;
}

.social .fa-headset{
    font-size: 22px;
}

.top-left{
  color:#f7f1e8;
  font-weight:600;
  letter-spacing:.5px;
  min-width:220px;
}

#top-message{
  transition:all .4s ease;
}

.cart-header button{
  background:#c9a24e;
  color:#063b2a;
  border:none;
  padding:10px 18px;
  border-radius:30px;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
}

.cart-header button:hover{
  transform:translateY(-2px);
}

.modal-content{
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:24px;
  padding:28px;
  width:92%;
  max-width:760px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  position:relative;
}

.modal-content img{
  width:100%;
  height:330px;
  object-fit:cover;
  border-radius:18px;
}

.modal-info{
  text-align:left;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.modal-info h2{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  font-size:34px;
  margin-bottom:14px;
}

#modalDescription{
  color:#4b5c52;
  line-height:1.8;
  font-size:15px;
  margin-bottom:18px;
}

#modalPrice{
  color:#b88b2e;
  font-weight:800;
  font-size:24px;
  margin-bottom:18px;
}

.modal-close,
.cart-close{
  position:absolute;
  top:14px;
  right:16px;
  background:#063b2a;
  color:white;
  border:none;
  width:36px;
  height:36px;
  border-radius:50%;
  font-size:24px;
  cursor:pointer;
  z-index:5;
}

#modalAddCart,
#whatsappOrder,
.add-cart-btn{
  background:#063b2a;
  color:white;
  border:none;
  border-radius:25px;
  padding:13px 22px;
  font-weight:800;
  cursor:pointer;
  margin-top:12px;
  transition:.3s;
}

#modalAddCart:hover,
#whatsappOrder:hover,
.add-cart-btn:hover{
  background:#0b513c;
  transform:translateY(-2px);
}

.add-cart-btn{
  margin-top: auto;
}

/* SEPET */

.cart-box{
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:24px;
  padding:34px;
  width:95%;
  max-width:1150px;
  min-height:620px;
  max-height:80vh;
  overflow-y:auto;
  position:relative;
}

.cart-box h2{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  font-size:42px;
  margin-bottom:26px;
  text-align:center;
}

.cart-item{
  display:grid;
  grid-template-columns:85px 1fr auto;
  gap:18px;
  align-items:center;
  border-bottom:1px solid #d8c19a;
  padding:18px 22px;
  min-height:110px;
}

.cart-item img{
  width:75px;
  height:75px;
  object-fit:cover;
  border-radius:10px;
  margin-left:20px; /* sola biraz boşluk */
}

.cart-item-info h4{
  color:#063b2a;
  font-size:16px;
  margin-bottom:6px;
}

.cart-item-info p{
  color:#b88b2e;
  font-weight:800;
}

.cart-actions{
  display:flex;
  align-items:center;
  gap:12px;
  margin-right:12px; /* sağa biraz boşluk */
}

.cart-actions button{
  border:none;
  background:#c9a24e;
  color:#063b2a;
  border-radius:50%;
  width:28px;
  height:28px;
  cursor:pointer;
  font-weight:800;
}

.cart-actions span{
  font-weight:800;
  color:#063b2a;
}

#cartTotal{
  color:#b88b2e;
  font-size:24px;
  margin-top:25px;
  text-align:right;
}

/* SEPETE EKLENDİ BİLDİRİMİ */

.cart-toast{
  position:fixed;
  left:50%;
  bottom:35px;
  transform:translateX(-50%) translateY(20px);
  background:#063b2a;
  color:white;
  padding:14px 24px;
  border-radius:30px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:10px;
  opacity:0;
  pointer-events:none;
  transition:.35s;
  z-index:10000;
}

.cart-toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.cart-toast i{
  color:#25d366;
  font-size:20px;
}

/* ÜRÜN KARTLARI HİZALAMA - SON DÜZEN */

.menu-product{
  display:flex;
  flex-direction:column;
  height:100%;
}

.menu-product h3{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.menu-product strong{
  margin-top:auto;
  margin-bottom:18px;
}

.add-cart-btn{
  width:max-content;
  margin:0 auto 18px;
  display:block;
}

/* SEPETTE KG GÖRÜNÜMÜ */

.cart-actions span{
  min-width:55px;
  text-align:center;
}

.clear-cart-btn{
  display:block;
  margin:-10px auto 22px;
  background:transparent;
  color:#b88b2e;
  border:1px solid #d8c19a;
  padding:8px 16px;
  border-radius:22px;
  font-weight:800;
  cursor:pointer;
  transition:.3s;
}

.clear-cart-btn:hover{
  background:#063b2a;
  color:white;
}

.qty-text{
  min-width:80px;
  text-align:center;
  font-weight:800;
  color:#063b2a;
  cursor:text;
}

.qty-input{
  width:80px;
  padding:6px;
  border:1px solid #d8c19a;
  border-radius:10px;
  text-align:center;
  font-weight:800;
  color:#063b2a;
}

.qty-edit-input{
  width:70px;
  padding:6px 8px;
  border:1px solid #d8c19a;
  border-radius:10px;
  text-align:center;
  font-weight:800;
  color:#063b2a;
  background:#f7f1e8;
}

.cart-toast{
  position:fixed;
  left:50%;
  bottom:35px;
  transform:translateX(-50%) translateY(20px);
  background:#063b2a;
  color:#fff;
  padding:14px 24px;
  border-radius:30px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:10px;
  opacity:0;
  transition:.35s;
  z-index:99999;
  pointer-events:none;
}

.cart-toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.cart-toast i{
  color:#25d366;
  font-size:20px;
}

.cart-item-wrapper{
  position:relative;
  overflow:hidden;
  border-radius:14px;
  margin-bottom:12px;
}

.delete-item{
  position:absolute;
  right:0;
  top:0;
  width:80px;
  height:100%;
  border:none;
  background:#d62828;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  z-index:1;
}

.cart-item{
  position:relative;
  z-index:2;
  background:#fff;
  transition:.3s;
}

.order-form{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.order-form input,
.order-form textarea{
  width:100%;
  padding:14px;
  border:1px solid #d8c19a;
  border-radius:12px;
  font-family:Montserrat,sans-serif;
  font-size:14px;
  background:#fff;
}

.order-form textarea{
  resize:none;
  min-height:90px;
}

.order-form input:focus,
.order-form textarea:focus{
  outline:none;
  border-color:#c9a24e;
}

.remove-item{
  width:40px;
  height:40px;
  border:none;
  border-radius:12px;
  background:#fff0f0;
  color:#d62828;
  cursor:pointer;
  font-size:17px;
  margin-left:10px;
  transition:.25s;
}

.remove-item:hover{
  background:#ffdada;
  transform:scale(1.07);
}

/* ===== TEMİZ SEPET / POPUP DÜZELTME ===== */

.product-modal,
.cart-drawer,
.checkout-drawer{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

.product-modal.active,
.cart-drawer.active,
.checkout-drawer.active{
  display:flex;
}

.cart-large,
.cart-box{
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:24px;
  padding:34px;
  width:95%;
  max-width:1150px;
  min-height:520px;
  max-height:82vh;
  overflow-y:auto;
  position:relative;
}

.cart-box h2{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  font-size:52px;
  margin-bottom:18px;
  text-align:center;
}

.cart-close,
.modal-close{
  position:absolute;
  top:18px;
  right:20px;
  background:#063b2a;
  color:white;
  border:none;
  width:42px;
  height:42px;
  border-radius:50%;
  font-size:24px;
  cursor:pointer;
  z-index:5;
}

.clear-cart-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin:0 auto 25px;
  background:transparent;
  color:#b88b2e;
  border:1px solid #d8c19a;
  padding:10px 18px;
  border-radius:24px;
  font-weight:800;
  cursor:pointer;
  transition:.3s;
}

.clear-cart-btn:hover{
  background:#063b2a;
  color:white;
}

.cart-item{
  display:grid;
  grid-template-columns:150px 1fr 260px 55px;
  align-items:center;
  gap:22px;
  background:#fff;
  border:1px solid #ead8b8;
  border-radius:18px;
  padding:14px 18px;
  margin-bottom:14px;
  min-height:120px;
}

.cart-item img{
  width:145px;
  height:105px;
  object-fit:cover;
  border-radius:14px;
  margin:0;
}

.cart-item-info h4{
  color:#063b2a;
  font-size:20px;
  margin-bottom:6px;
}

.cart-price{
  color:#b88b2e;
  font-size:18px;
  font-weight:800;
  margin-bottom:8px;
}

.cart-desc{
  color:#5f6b64;
  font-size:14px;
  line-height:1.5;
  font-weight:500;
}

.cart-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  background:#fffaf2;
  border:1px solid #ead8b8;
  border-radius:18px;
  padding:9px 12px;
  margin:0;
}

.cart-actions button{
  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  background:#c9a24e;
  color:#063b2a;
  font-weight:900;
  cursor:pointer;
}

.qty-text{
  min-width:75px;
  text-align:center;
  color:#063b2a;
  font-weight:900;
  cursor:text;
}

.qty-edit-input{
  width:85px;
  padding:7px 8px;
  border:1px solid #d8c19a;
  border-radius:10px;
  text-align:center;
  font-weight:800;
  color:#063b2a;
  background:#f7f1e8;
}

.remove-item{
  width:46px;
  height:46px;
  border:none;
  border-radius:14px;
  background:#ff2d2d !important;
  color:white !important;
  font-size:18px;
  cursor:pointer;
  transition:.25s;
  display:flex;
  align-items:center;
  justify-content:center;
}

.remove-item:hover{
  background:#d71919 !important;
  transform:scale(1.06);
}

.cart-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
  margin-top:25px;
  border-top:1px solid #ead8b8;
  padding-top:24px;
}

.checkout-step-btn{
  background:#063b2a;
  color:white;
  border:none;
  border-radius:28px;
  padding:16px 30px;
  font-weight:900;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  transition:.25s;
}

.checkout-step-btn:hover{
  background:#0b513c;
  transform:translateY(-2px);
}

.total-card{
  background:#fffaf2;
  border:1px solid #d8c19a;
  border-radius:18px;
  padding:18px 28px;
  min-width:310px;
}

.total-card span{
  color:#063b2a;
  font-size:22px;
  font-weight:900;
}

.total-card strong{
  color:#c29027;
  font-size:38px;
  margin-left:18px;
}

.total-card small{
  display:block;
  margin-top:6px;
  color:#6a766f;
  font-weight:700;
}

.order-form{
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.order-form input,
.order-form textarea{
  width:100%;
  padding:14px;
  border:1px solid #d8c19a;
  border-radius:12px;
  font-family:Montserrat,sans-serif;
  font-size:14px;
  background:#fff;
}

.order-form textarea{
  resize:none;
  min-height:90px;
}

.order-form input:focus,
.order-form textarea:focus{
  outline:none;
  border-color:#c9a24e;
}

.secure-order{
  margin-top:18px;
  color:#4c8b3f;
  font-weight:800;
  text-align:center;
}

.cart-toast{
  position:fixed;
  left:50%;
  bottom:35px;
  transform:translateX(-50%) translateY(20px);
  background:#063b2a;
  color:#fff;
  padding:14px 24px;
  border-radius:30px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:10px;
  opacity:0;
  transition:.35s;
  z-index:99999;
  pointer-events:none;
}

.cart-toast.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
}

.cart-toast i{
  color:#25d366;
  font-size:20px;
}


/* MOBİL */


/* ===== GERÇEK MOBİL DÜZEN DÜZELTME ===== */


/* ===== TABLET / iPAD DÜZEN DÜZELTME ===== */


/* ===== TELEFON ÜST BAR NET DÜZELTME ===== */


/* =====================================================
   BAKLAVACI FISTIKLI - KUSURSUZ RESPONSIVE FINAL
   EN ALTA YAPIŞTIR
===================================================== */

html,
body{
  max-width:100%;
  overflow-x:hidden;
}

img{
  max-width:100%;
}

/* ---------- 1200px ALTI: TABLET / iPAD ---------- */


/* ---------- 900px ALTI: KÜÇÜK TABLET ---------- */


/* ---------- 768px ALTI: TELEFON ---------- */


/* ---------- 430px ALTI: iPHONE DAR EKRAN ---------- */


/* ---------- 375px ALTI: ÇOK DAR TELEFON ---------- */


/* =====================================================
   TEMİZ RESPONSIVE VE ADMIN PANEL DÜZENİ
===================================================== */

html,
body{
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body,
header,
section,
footer,
div,
nav{
  min-width:0;
}

img,
iframe,
video{
  max-width:100%;
}

.top-logo,
.top-brand-text{
  z-index:2;
}

.top-logo img,
.top-brand-text img,
.logo-box img{
  height:auto;
}

.menu-product h3,
.product-item h3,
.mini-card h3,
.footer-col a,
.footer-col p,
.home-hero-content p{
  overflow-wrap:anywhere;
}

.admin-pro-page{
  align-items:flex-start;
  padding:55px 24px;
}

.admin-pro-shell{
  width:min(1180px, 100%);
  margin:0 auto;
}

.admin-pro-shell{
  display:none;
}

body.admin-authenticated .admin-pro-shell{
  display:block;
}

.admin-login-card{
  width:min(460px, 100%);
  background:#f7f1e8;
  border:1px solid #d8c19a;
  border-radius:24px;
  padding:34px;
  margin:0 auto;
  box-shadow:0 18px 45px rgba(0,0,0,.10);
}

.admin-login-card span{
  display:block;
  color:#b88b2e;
  font-weight:800;
  letter-spacing:3px;
  font-size:12px;
  margin-bottom:10px;
}

.admin-login-card h1{
  color:#063b2a;
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-bottom:10px;
}

.admin-login-card p{
  color:#4b5c52;
  line-height:1.7;
  margin-bottom:22px;
}

.admin-login-card label{
  display:block;
  color:#063b2a;
  font-size:13px;
  font-weight:800;
  margin:0 0 7px 4px;
}

.admin-login-card input{
  width:100%;
  padding:13px 16px;
  margin-bottom:14px;
  border-radius:12px;
  border:1px solid #d8c19a;
  outline:none;
  font-family:'Montserrat', sans-serif;
  background:white;
}

.admin-login-card input:focus{
  border-color:#c9a24e;
  box-shadow:0 0 0 3px rgba(201,162,78,.18);
}

.admin-login-card button,
#adminLogout{
  width:100%;
  padding:14px;
  background:#063b2a;
  color:white;
  border:none;
  border-radius:25px;
  font-weight:800;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
}

.admin-login-card button:hover,
#adminLogout:hover{
  background:#0b513c;
}

#adminLoginError{
  display:none;
  margin-top:14px;
  padding:12px 14px;
  border-radius:12px;
  background:#fff0f0;
  color:#b42318;
  font-weight:800;
  text-align:center;
}

body.admin-authenticated .admin-login-card{
  display:none;
}

.admin-pro-hero{
  background:linear-gradient(135deg,#063b2a,#0b513c);
  border:1px solid #d8c19a;
  border-radius:24px;
  padding:34px;
  margin-bottom:24px;
  color:white;
  text-align:left;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.admin-pro-hero span{
  display:block;
  color:#d6b36a;
  font-weight:800;
  letter-spacing:3px;
  font-size:12px;
  margin-bottom:10px;
}

.admin-pro-hero h1{
  color:white;
  font-family:'Playfair Display', serif;
  font-size:46px;
  margin-bottom:10px;
}

.admin-pro-hero p{
  color:#f7f1e8;
  max-width:760px;
  line-height:1.8;
  margin:0;
}

#adminLogout{
  width:auto;
  margin-top:22px;
  padding:12px 18px;
  background:#c9a24e;
  color:#063b2a;
}

.admin-pro-grid{
  display:grid;
  grid-template-columns:430px 1fr;
  gap:24px;
  align-items:start;
}

.admin-form-card,
.admin-list-card{
  max-width:none;
  text-align:left;
  box-shadow:0 14px 32px rgba(0,0,0,.08);
}

.admin-box h2{
  font-family:'Playfair Display', serif;
  color:#063b2a;
  font-size:30px;
  margin-bottom:18px;
}

.admin-box label{
  display:block;
  color:#063b2a;
  font-size:13px;
  font-weight:800;
  margin:0 0 7px 4px;
}

.admin-box textarea{
  width:100%;
  min-height:92px;
  resize:vertical;
  padding:13px 16px;
  margin-bottom:14px;
  border-radius:12px;
  border:1px solid #d8c19a;
  outline:none;
  font-family:'Montserrat', sans-serif;
}

.admin-form-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.admin-form-actions button{
  flex:1;
  min-width:160px;
}

#adminReset{
  background:#f7f1e8;
  color:#063b2a;
  border:1px solid #d8c19a;
}

#adminProductList{
  display:grid;
  gap:12px;
}

.admin-product-row{
  display:grid;
  grid-template-columns:76px 1fr auto;
  gap:14px;
  align-items:center;
  background:#fff;
  border:1px solid #ead8b8;
  border-radius:16px;
  padding:12px;
}

.admin-product-row img{
  width:76px;
  height:66px;
  object-fit:cover;
  border-radius:12px;
  background:#efe5d5;
}

.admin-product-row h3{
  color:#063b2a;
  font-size:17px;
  margin-bottom:4px;
}

.admin-product-row p{
  margin:0;
  color:#b88b2e;
  font-weight:800;
}

.admin-row-actions{
  display:flex;
  gap:8px;
}

.admin-row-actions button{
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:#063b2a;
  color:white;
  cursor:pointer;
  margin:0;
}

.admin-row-actions button:last-child{
  background:#d62828;
}

@media (max-width:1200px){
  .top-bar{
    height:86px;
    padding:0 36px;
    display:grid;
    grid-template-columns:210px 1fr 210px;
    align-items:center;
  }

  .social{
    grid-column:1;
    justify-self:start;
    min-width:0;
  }

  .top-logo,
  .top-brand-text{
    grid-column:2;
    position:static;
    transform:none;
    justify-self:center;
  }

  .top-logo img,
  .top-brand-text img{
    width:170px;
  }

  .cart-header{
    grid-column:3;
    justify-self:end;
  }

  .brand-area{
    grid-template-columns:1fr 300px 1fr;
    height:auto;
    padding:34px 36px;
  }

  .logo-box img{
    width:300px;
  }

  .menu{
    gap:34px;
  }

  .products-grid{
    grid-template-columns:repeat(4,1fr);
  }
}

@media (max-width:992px){
  .brand-area,
  .home-hero,
  .home-story,
  .corporate-hero,
  .store-hero,
  .story-content,
  .corporate-info{
    display:flex;
    flex-direction:column;
    height:auto;
    text-align:center;
  }

  .home-hero{
    padding:48px 28px;
    gap:32px;
  }

  .hero-image img,
  .home-story-image img,
  .corporate-image img,
  .store-image img{
    width:100%;
    max-width:560px;
    height:300px;
  }

  .features,
  .trust-strip,
  .product-grid,
  .products-grid,
  .why-grid,
  .reviews-grid,
  .instagram-grid,
  .footer-container,
  .story-features,
  .story-mini-grid,
  .corporate-cards,
  .store-info-grid,
  .store-gallery,
  .contact-cards{
    grid-template-columns:repeat(2,1fr);
  }

  .admin-pro-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .top-bar{
    height:78px;
    padding:0 14px;
    grid-template-columns:92px 1fr 92px;
    overflow:hidden;
  }

  .social{
    gap:8px;
  }

  .social a{
    font-size:16px;
  }

  .top-logo img,
  .top-brand-text img{
    width:132px;
  }

  .cart-header button{
    padding:6px 8px;
    font-size:10px;
    gap:4px;
    white-space:nowrap;
  }

  .cart-header button i{
    font-size:10px;
  }

  .cart-header button span{
    font-size:10px;
  }

  .brand-area{
    display:flex;
    flex-direction:column;
    gap:20px;
    padding:30px 18px;
  }

  .decor h2{
    white-space:normal;
    font-size:12px;
    line-height:1.5;
    letter-spacing:2.5px;
  }

  .decor span{
    width:34px;
    flex-shrink:0;
  }

  .logo-box img{
    width:240px;
  }

  .menu{
    height:auto;
    padding:16px 12px;
    flex-wrap:wrap;
    gap:13px 20px;
  }

  .menu a{
    font-size:12px;
    padding:6px 0;
  }

  .back-home{
    position:static;
    margin:15px 18px 0;
  }

  .home-hero{
    padding:42px 20px;
  }

  .home-hero-content h1,
  .home-story-content h2,
  .corporate-text h2,
  .store-text h2,
  .contact-title h1,
  .story-title h1{
    font-size:34px;
  }

  .hero-image img,
  .home-story-image img,
  .corporate-image img,
  .store-image img{
    height:235px;
    border-radius:18px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .hero-buttons a{
    width:100%;
    max-width:280px;
    text-align:center;
  }

  .features,
  .trust-strip,
  .product-grid,
  .products-grid,
  .why-grid,
  .reviews-grid,
  .instagram-grid,
  .footer-container,
  .story-features,
  .story-mini-grid,
  .corporate-cards,
  .store-info-grid,
  .store-gallery,
  .contact-cards{
    grid-template-columns:1fr;
  }

  .featured-products,
  .reviews-section,
  .instagram-section,
  .why-us,
  .products-page,
  .contact-page,
  .corporate-page,
  .store-page{
    padding-left:20px;
    padding-right:20px;
  }

  .product-controls{
    align-items:stretch;
  }

  #productSearch{
    width:100%;
  }

  .category-buttons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
  }

  .category-buttons button{
    width:100%;
    white-space:normal;
    line-height:1.35;
    padding:10px 12px;
  }

  .menu-product,
  .product-item,
  .mini-card{
    width:100%;
    max-width:100%;
  }

  .modal-content{
    grid-template-columns:1fr;
    max-height:88vh;
    overflow:auto;
  }

  .modal-content img{
    height:220px;
  }

  .cart-box,
  .cart-large{
    width:94%;
    max-width:94%;
    min-height:auto;
    max-height:86vh;
    padding:22px 16px;
  }

  .cart-box h2{
    font-size:36px;
  }

  .cart-item{
    grid-template-columns:82px 1fr;
    gap:12px;
    padding:14px;
  }

  .cart-item img{
    width:82px;
    height:72px;
  }

  .cart-actions,
  .remove-item{
    grid-column:1 / 3;
    width:100%;
  }

  .cart-bottom{
    flex-direction:column;
    align-items:stretch;
  }

  .checkout-step-btn,
  .total-card{
    width:100%;
  }

  .footer-container{
    text-align:center;
  }

  .footer-social{
    justify-content:center;
  }

  .admin-pro-page{
    padding:32px 16px;
  }

  .admin-pro-hero,
  .admin-box{
    padding:24px 18px;
    border-radius:18px;
  }

  .admin-pro-hero h1{
    font-size:36px;
  }

  .admin-product-row{
    grid-template-columns:64px 1fr;
  }

  .admin-row-actions{
    grid-column:1 / 3;
    justify-content:flex-end;
  }
}

@media (max-width:430px){
  .top-bar{
    grid-template-columns:82px 1fr 82px;
    height:74px;
    padding:0 10px;
  }

  .social{
    gap:6px;
  }

  .social a{
    font-size:14px;
  }

  .top-logo img,
  .top-brand-text img{
    width:116px;
  }

  .cart-header button{
    padding:5px 6px;
    font-size:9px;
  }

  .brand-area{
    padding:28px 14px;
  }

  .logo-box img{
    width:220px;
  }

  .category-buttons{
    grid-template-columns:1fr;
  }

  .home-hero-content h1{
    font-size:31px;
  }
}

@media (max-width:375px){
  .top-bar{
    grid-template-columns:70px 1fr 72px;
    padding-left:8px;
    padding-right:8px;
  }

  .top-logo img,
  .top-brand-text img{
    width:104px;
  }

  .cart-header button i{
    display:none;
  }
}

/* MOBIL HAMBURGER MENU - MASAUSTUNE DOKUNMAZ */
.mobile-menu-toggle,
.mobile-menu-backdrop {
  display: none !important;
}

@media (max-width: 768px) {
  .top-bar {
    height: 74px;
    padding: 0 16px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible;
  }

  .social {
    display: none !important;
  }

  .top-logo,
  .top-brand-text {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .top-logo img,
  .top-brand-text img {
    width: 128px !important;
  }

  .cart-header {
    display: flex;
    align-items: center;
    z-index: 1002;
  }

  .cart-header button {
    width: 42px;
    height: 42px;
    padding: 0 !important;
    border-radius: 50%;
    justify-content: center;
  }

  .cart-header button span {
    display: none !important;
  }

  .cart-header button i {
    font-size: 15px !important;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #c9a24e;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1003;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: #063b2a;
    border-radius: 20px;
    display: block;
  }

  .menu {
    position: fixed !important;
    top: 0;
    right: 0;
    width: min(330px, 84vw);
    height: 100vh;
    background: #064b35 !important;
    padding: 92px 28px 28px !important;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0 !important;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1001;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.25);
  }

  .menu.is-open {
    transform: translateX(0);
  }

  .menu a {
    color: #fff !important;
    padding: 17px 0 !important;
    border-bottom: 1px solid rgba(201, 162, 78, 0.32);
    font-size: 15px !important;
    text-align: left !important;
    white-space: nowrap;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1000;
  }

  .mobile-menu-backdrop.is-active {
    display: block !important;
  }

  body.menu-drawer-open {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .cart-header button,
  .mobile-menu-toggle {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .cart-header button i {
    color: #fff !important;
    font-size: 20px !important;
  }

  .mobile-menu-toggle span {
    background: #fff !important;
    height: 3px;
  }
}

@media (max-width: 768px) {
  /* Ana sayfada müşteri yorumlarını mobilde gizle */
  .reviews-section {
    display: none !important;
  }

  /* Ana sayfadaki hikaye fotoğrafını mobilde büyüt */
  .home-story-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .home-story-image img {
    width: min(88vw, 380px) !important;
    height: 330px !important;
    object-fit: cover;
    border-radius: 20px;
  }
}

@media (max-width: 430px) {
  .home-story-image img {
    width: min(90vw, 360px) !important;
    height: 310px !important;
  }
}

@media (max-width: 768px) {
  .why-us .section-title {
    width: 100%;
    justify-content: center !important;
    text-align: center !important;
    gap: 14px;
  }

  .why-us .section-title h2 {
    text-align: center !important;
    line-height: 1.25;
    max-width: 270px;
    margin: 0 auto;
  }

  .why-us .section-title span {
    width: 44px;
    flex: 0 0 44px;
  }
}

@media (max-width: 430px) {
  .why-us .section-title h2 {
    font-size: 34px !important;
    max-width: 250px;
  }

  .why-us .section-title span {
    width: 36px;
    flex-basis: 36px;
  }
}

@media (max-width: 768px) {
  .featured-products .section-title {
    width: 100%;
    justify-content: center !important;
    text-align: center !important;
    gap: 14px;
  }

  .featured-products .section-title h2 {
    text-align: center !important;
    line-height: 1.25;
    max-width: 290px;
    margin: 0 auto;
  }

  .featured-products .section-title span {
    width: 44px;
    flex: 0 0 44px;
  }
}

@media (max-width: 430px) {
  .featured-products .section-title h2 {
    font-size: 34px !important;
    max-width: 260px;
  }

  .featured-products .section-title span {
    width: 36px;
    flex-basis: 36px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet ust bar */
  .top-bar {
    height: 82px;
    padding: 0 28px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: visible;
  }

  .social {
    display: none !important;
  }

  .top-logo,
  .top-brand-text {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .top-logo img,
  .top-brand-text img {
    width: 150px !important;
  }

  /* Tablet sepet ve hamburger ikonlari */
  .cart-header button,
  .mobile-menu-toggle {
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
  }

  .cart-header button {
    width: 46px;
    height: 46px;
    padding: 0 !important;
    justify-content: center;
  }

  .cart-header button span {
    display: none !important;
  }

  .cart-header button i {
    color: #fff !important;
    font-size: 25px !important;
  }

  .mobile-menu-toggle {
    width: 46px;
    height: 46px;
    border: none;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1003;
  }

  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff !important;
    border-radius: 20px;
    display: block;
  }

  /* Tablet hamburger acilir menu */
  .menu {
    position: fixed !important;
    top: 0;
    right: 0;
    width: min(360px, 72vw);
    height: 100vh;
    background: #064b35 !important;
    padding: 98px 32px 32px !important;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0 !important;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1001;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.25);
  }

  .menu.is-open {
    transform: translateX(0);
  }

  .menu a {
    color: #fff !important;
    padding: 18px 0 !important;
    border-bottom: 1px solid rgba(201, 162, 78, 0.32);
    font-size: 16px !important;
    text-align: left !important;
    white-space: nowrap;
  }

  .mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.48);
    z-index: 1000;
  }

  .mobile-menu-backdrop.is-active {
    display: block !important;
  }

  body.menu-drawer-open {
    overflow: hidden;
  }

  /* Tablet ana sayfa duzenlemeleri */
  .reviews-section {
    display: none !important;
  }

  .home-story-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .home-story-image img {
    width: min(70vw, 520px) !important;
    height: 380px !important;
    object-fit: cover;
    border-radius: 22px;
  }

  .featured-products .section-title,
  .why-us .section-title {
    width: 100%;
    justify-content: center !important;
    text-align: center !important;
    gap: 16px;
  }

  .featured-products .section-title h2,
  .why-us .section-title h2 {
    text-align: center !important;
    line-height: 1.2;
    max-width: 520px;
    margin: 0 auto;
  }

  .featured-products .section-title span,
  .why-us .section-title span {
    width: 54px;
    flex: 0 0 54px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brand-area {
    display: grid !important;
    grid-template-columns: 1fr 240px 1fr !important;
    align-items: center !important;
    gap: 18px !important;
    height: auto !important;
    padding: 28px 34px !important;
    text-align: center;
  }

  .brand-text {
    width: 100%;
  }

  .decor {
    gap: 10px !important;
  }

  .decor h2 {
    font-size: 12px !important;
    letter-spacing: 3px !important;
    line-height: 1.35 !important;
    white-space: nowrap !important;
  }

  .decor span {
    width: 36px !important;
    flex: 0 0 36px !important;
  }

  .ornament {
    margin: 10px 0 !important;
  }

  .ornament img {
    width: 90px !important;
  }

  .brand-text p {
    margin-top: 10px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
  }

  .logo-box img {
    width: 235px !important;
  }
}

@media (min-width: 769px) and (max-width: 860px) {
  .brand-area {
    grid-template-columns: 1fr 210px 1fr !important;
    gap: 12px !important;
    padding: 24px 24px !important;
  }

  .decor h2 {
    font-size: 11px !important;
    letter-spacing: 2.4px !important;
  }

  .decor span {
    width: 28px !important;
    flex-basis: 28px !important;
  }

  .brand-text p {
    font-size: 13px !important;
  }

  .logo-box img {
    width: 210px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brand-area {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 270px minmax(0, 1fr) !important;
    align-items: start !important;
    gap: 22px !important;
    height: auto !important;
    padding: 30px 34px 24px !important;
    text-align: center;
  }

  .brand-area .logo-box {
    align-self: start;
  }

  .brand-area .logo-box img {
    width: 270px !important;
  }

  .brand-area .brand-text {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 18px;
    min-width: 0;
  }

  .brand-area .brand-text p {
    order: 1;
    margin: 0 0 9px !important;
    color: #b88b2e !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 700;
    max-width: 220px;
  }

  .brand-area .ornament {
    order: 2;
    margin: 0 0 10px !important;
  }

  .brand-area .ornament img {
    width: 82px !important;
  }

  .brand-area .decor {
    order: 3;
    width: 100%;
    gap: 8px !important;
  }

  .brand-area .decor h2 {
    font-size: 13px !important;
    letter-spacing: 2.1px !important;
    line-height: 1.28 !important;
    white-space: normal !important;
    max-width: 210px;
    text-align: center;
  }

  .brand-area .decor span {
    width: 26px !important;
    flex: 0 0 26px !important;
  }
}

@media (min-width: 769px) and (max-width: 860px) {
  .brand-area {
    grid-template-columns: minmax(0, 1fr) 245px minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 28px 20px 22px !important;
  }

  .brand-area .logo-box img {
    width: 245px !important;
  }

  .brand-area .brand-text p {
    font-size: 13px !important;
    max-width: 190px;
  }

  .brand-area .decor h2 {
    font-size: 12px !important;
    letter-spacing: 1.6px !important;
    max-width: 180px;
  }

  .brand-area .decor span {
    width: 20px !important;
    flex-basis: 20px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .home-hero-content {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-buttons {
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
  }

  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding: 18px 24px 64px !important;
  }

  .feature-box {
    padding: 28px 16px !important;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .feature-box h3 {
    font-size: 24px !important;
    margin-bottom: 12px !important;
  }

  .feature-box p {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features {
    align-items: stretch !important;
  }

  .feature-box {
    min-height: 190px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding-top: 34px !important;
  }

  .feature-box h3 {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px !important;
    line-height: 1.15 !important;
  }

  .feature-box p {
    margin: 0 !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brand-area {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 300px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    column-gap: 24px !important;
    row-gap: 14px !important;
    align-items: center !important;
    height: auto !important;
    padding: 28px 34px 24px !important;
    text-align: center;
  }

  .brand-area > .brand-text {
    display: contents !important;
  }

  .brand-area > .brand-text:first-child p {
    grid-column: 1;
    grid-row: 1;
  }

  .brand-area .logo-box {
    grid-column: 2;
    grid-row: 1;
  }

  .brand-area > .brand-text:last-child p {
    grid-column: 3;
    grid-row: 1;
  }

  .brand-area > .brand-text:first-child .decor {
    grid-column: 1;
    grid-row: 2;
  }

  .brand-area > .brand-text:first-child .ornament {
    grid-column: 2;
    grid-row: 2;
  }

  .brand-area > .brand-text:last-child .decor {
    grid-column: 3;
    grid-row: 2;
  }

  .brand-area > .brand-text:last-child .ornament {
    display: none !important;
  }

  .brand-area .logo-box img {
    width: 292px !important;
  }

  .brand-area .brand-text p {
    margin: 0 !important;
    color: #b88b2e !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 800 !important;
  }

  .brand-area .ornament {
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
  }

  .brand-area .ornament img {
    width: 96px !important;
  }

  .brand-area .decor {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100%;
  }

  .brand-area .decor h2 {
    font-size: 15px !important;
    letter-spacing: 2px !important;
    line-height: 1.25 !important;
    white-space: normal !important;
    max-width: 210px;
    text-align: center;
  }

  .brand-area .decor span {
    width: 28px !important;
    flex: 0 0 28px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brand-area .decor h2 {
    white-space: nowrap !important;
    max-width: none !important;
    font-size: 13px !important;
    letter-spacing: 1.8px !important;
  }

  .brand-area > .brand-text:first-child .ornament img {
    width: 125px !important;
  }

  .brand-area > .brand-text:first-child .ornament {
    transform: translateY(-2px);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brand-area {
    overflow: hidden !important;
  }

  .brand-area .decor h2 {
    white-space: normal !important;
    max-width: 190px !important;
    font-size: 14px !important;
    letter-spacing: 1.7px !important;
    line-height: 1.18 !important;
    text-align: center !important;
  }

  .brand-area .decor span {
    width: 22px !important;
    flex: 0 0 22px !important;
  }

  .brand-area > .brand-text:first-child .ornament img {
    width: 150px !important;
  }

  .brand-area > .brand-text:first-child .ornament {
    transform: translateY(-2px);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brand-area .decor h2 {
    max-width: 230px !important;
    font-size: 13px !important;
    letter-spacing: 1.35px !important;
    line-height: 1.18 !important;
    white-space: normal !important;
  }

  .brand-area .decor span {
    width: 18px !important;
    flex: 0 0 18px !important;
  }

  .brand-area > .brand-text:first-child .ornament img {
    width: 180px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brand-area > .brand-text:first-child .decor h2 {
    max-width: 260px !important;
    font-size: 12.5px !important;
    letter-spacing: 1px !important;
    line-height: 1.15 !important;
  }

  .brand-area > .brand-text:first-child .decor span {
    width: 14px !important;
    flex: 0 0 14px !important;
  }

  .brand-area > .brand-text:last-child .decor h2 {
    max-width: 230px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .brand-area > .brand-text:first-child .ornament img {
    width: 210px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Mağazamız: adres / telefon / çalışma saatleri */
  .store-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .store-info-card {
    padding: 24px 14px !important;
    min-height: 190px;
  }

  .store-info-card i {
    font-size: 26px !important;
  }

  .store-info-card h3 {
    font-size: 22px !important;
  }

  .store-info-card p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* Mağazamız: resimler 3'lü */
  .store-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .store-gallery img {
    height: 190px !important;
    object-fit: cover;
  }

  /* İletişim: telefon / adres / yetkili kartlarını sıkıştır */
  .contact-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .contact-card {
    padding: 24px 14px !important;
    min-height: 185px;
  }

  .contact-card h3 {
    font-size: 20px !important;
  }

  .contact-card p,
  .contact-card a {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* İletişim: çalışma saatleri daha kompakt */
  .hours-card {
    padding: 28px 24px !important;
  }

  .hours-top h2 {
    font-size: 34px !important;
  }

  .hours-card li {
    font-size: 14px !important;
    padding: 12px 0 !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .story-features,
  .story-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    max-width: calc(100% - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .story-feature,
  .mini-card {
    padding: 24px 14px !important;
    min-height: 150px;
  }

  .story-feature h3,
  .mini-card h4 {
    font-size: 21px !important;
    line-height: 1.2 !important;
  }

  .story-feature p,
  .mini-card p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Kurumsal: Özel Günler / Firma Siparişleri / Özenli Paketleme 3'lü */
  .corporate-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    max-width: calc(100% - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .corporate-card {
    padding: 28px 14px !important;
    min-height: 205px;
  }

  .corporate-card i {
    font-size: 32px !important;
  }

  .corporate-card h3 {
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  .corporate-card p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* İletişim: 2 yukarıda, 2 aşağıda */
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .contact-card {
    min-height: 190px !important;
  }

  .contact-card.trendyol-card {
    min-height: 190px !important;
  }
}

/* TUM TABLET VE IPADLER ICIN SON DUZEN */
@media (min-width: 700px) and (max-width: 1366px) and (pointer: coarse),
       (min-width: 769px) and (max-width: 1180px) {

  /* Kurumsal: 3 kart yan yana */
  .corporate-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    max-width: calc(100% - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .corporate-card {
    padding: 28px 14px !important;
    min-height: 205px !important;
  }

  .corporate-card h3 {
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  .corporate-card p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* İletişim: 2 üstte, 2 altta */
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .contact-card,
  .contact-card.trendyol-card {
    min-height: 190px !important;
    padding: 24px 16px !important;
  }

  .contact-card h3 {
    font-size: 20px !important;
  }

  .contact-card p,
  .contact-card a {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .trendyol-card img {
    max-width: 150px !important;
    height: auto !important;
  }
}

/* ANA SAYFA LOGO ALANI - TUM TABLET / IPAD */
@media (min-width: 700px) and (max-width: 1366px) and (pointer: coarse),
       (min-width: 769px) and (max-width: 1180px) {

  .brand-area {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 270px minmax(0, 1fr) !important;
    grid-template-rows: auto auto !important;
    column-gap: 18px !important;
    row-gap: 12px !important;
    align-items: center !important;
    height: auto !important;
    padding: 30px 22px 26px !important;
    overflow: hidden !important;
    text-align: center !important;
  }

  .brand-area > .brand-text {
    display: contents !important;
  }

  /* Ust satir: sari yazi - logo - sari yazi */
  .brand-area > .brand-text:first-child p {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .brand-area .logo-box {
    grid-column: 2 !important;
    grid-row: 1 !important;
  }

  .brand-area > .brand-text:last-child p {
    grid-column: 3 !important;
    grid-row: 1 !important;
  }

  .brand-area .logo-box img {
    width: 265px !important;
  }

  .brand-area .brand-text p {
    margin: 0 !important;
    color: #b88b2e !important;
    font-size: 15px !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
  }

  /* Alt satir: yesil yazi - buyuk sekil - yesil yazi */
  .brand-area > .brand-text:first-child .decor {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .brand-area > .brand-text:first-child .ornament {
    grid-column: 2 !important;
    grid-row: 2 !important;
  }

  .brand-area > .brand-text:last-child .decor {
    grid-column: 3 !important;
    grid-row: 2 !important;
  }

  .brand-area > .brand-text:last-child .ornament {
    display: none !important;
  }

  .brand-area .ornament {
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
  }

  .brand-area .ornament img {
    width: 225px !important;
  }

  .brand-area .decor {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
  }

  .brand-area .decor h2 {
    white-space: normal !important;
    max-width: 205px !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    line-height: 1.15 !important;
    text-align: center !important;
  }

  .brand-area .decor span {
    width: 14px !important;
    flex: 0 0 14px !important;
  }
}

/* IPAD MINI + TUM TABLETLER ANA SAYFA DUZENI */
@media (min-width: 700px) and (max-width: 1180px) {
  /* Öne Çıkan Lezzetlerimiz tek satır */
  .featured-products .section-title h2 {
    white-space: nowrap !important;
    max-width: none !important;
    font-size: 36px !important;
  }

  .featured-products .section-title {
    gap: 14px !important;
  }

  .featured-products .section-title span {
    width: 48px !important;
    flex: 0 0 48px !important;
  }

  /* Baklava / Şöbiyet / Soğuk Baklava / Dürüm 2+2 */
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }

  .product-item img {
    height: 220px !important;
    object-fit: cover !important;
  }

  .product-item h3 {
    font-size: 23px !important;
  }

  .product-item p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* Usta Üretim / Seçkin Malzeme / Taptaze Lezzet 3 yan yana */
  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .feature-box {
    padding: 28px 14px !important;
    min-height: 180px !important;
  }

  .feature-box h3 {
    font-size: 23px !important;
  }

  .feature-box p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  /* Neden Baklavacı Fıstıklı tek satır */
  .why-us .section-title h2 {
    white-space: nowrap !important;
    max-width: none !important;
    font-size: 34px !important;
  }

  .why-us .section-title {
    gap: 14px !important;
  }

  .why-us .section-title span {
    width: 42px !important;
    flex: 0 0 42px !important;
  }

  /* Neden kartları 2+2 */
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px !important;
  }

  .why-item {
    padding: 28px 18px !important;
  }

  /* Instagram kareleri 2'li, toplam 3 satır */
  .instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  .instagram-grid img {
    height: 230px !important;
    object-fit: cover !important;
  }
}

@media (min-width: 900px) and (max-width: 1180px) {
  .brand-area {
    align-items: center !important;
  }

  .brand-area .logo-box {
    align-self: center !important;
    justify-self: center !important;
  }

  .brand-area > .brand-text:first-child p,
  .brand-area > .brand-text:last-child p {
    align-self: center !important;
    justify-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 42px !important;
    margin-top: 0 !important;
    transform: translateY(0) !important;
    text-align: center !important;
  }
}

/* NEST HUB MAX / BUYUK TABLET YATAY DUZEN */
@media (min-width: 1180px) and (max-width: 1366px) {
  /* Gerçek Gaziantep Baklavası tek satır */
  .brand-area > .brand-text:first-child .decor h2 {
    white-space: nowrap !important;
    max-width: none !important;
    font-size: 13px !important;
    letter-spacing: 1.2px !important;
  }

  .brand-area > .brand-text:first-child .decor span {
    width: 34px !important;
    flex: 0 0 34px !important;
  }

  /* İletişim kartları 4 yan yana */
  .contact-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    max-width: 1120px !important;
    gap: 16px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .contact-card,
  .contact-card.trendyol-card {
    min-height: 190px !important;
    padding: 24px 14px !important;
  }

  .contact-card h3 {
    font-size: 18px !important;
  }

  .contact-card p,
  .contact-card a {
    font-size: 12.5px !important;
    line-height: 1.5 !important;
  }

  .trendyol-card img {
    max-width: 125px !important;
    height: auto !important;
  }
}

/* Nest Hub / yatay tablet: iletisim kartlari 4 yan yana */
@media (min-width: 1000px) and (max-width: 1179px) and (max-height: 800px) {
  .contact-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    max-width: 1120px !important;
    gap: 14px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .contact-card,
  .contact-card.trendyol-card {
    min-height: 170px !important;
    padding: 20px 12px !important;
  }

  .contact-card h3 {
    font-size: 17px !important;
    line-height: 1.15 !important;
  }

  .contact-card p,
  .contact-card a {
    font-size: 12px !important;
    line-height: 1.45 !important;
  }

  .trendyol-card img {
    max-width: 105px !important;
    height: auto !important;
  }
}

.category-toggle {
  display: none;
}

/* Sadece telefon */
@media (max-width: 600px) {
  .category-panel {
    width: 100%;
  }

  .category-toggle {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d8c19a;
  border-radius: 22px;
  background: transparent;
  color: #063b2a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  cursor: pointer;
}

  .category-toggle span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .category-toggle small {
  font-size: 11px;
  color: #8a7a5a;
  font-weight: 700;
}

  .category-toggle i {
    transition: 0.25s;
  }

  .category-panel .category-buttons {
    display: none !important;
    margin-top: 12px;
  }

  .category-panel.open .category-buttons {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px;
  }

  .category-panel.open .category-toggle i {
    transform: rotate(180deg);
  }
}

@media (max-width: 600px) {
  .category-toggle {
    width: auto;
    min-width: 150px;
    min-height: 38px;
    padding: 0 13px;
    border-radius: 20px;
    font-size: 13px;
    justify-content: flex-start;
    gap: 10px;
  }

  .category-toggle small {
    font-size: 10px;
  }

  .category-toggle i {
    font-size: 11px;
  }

  .category-panel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .category-panel.open .category-buttons {
    width: 100%;
  }
}

@media (max-width: 600px) {
  /* Hikayemiz sayfasındaki üçlü alanın arasına çizgi */
  .story-features {
    gap: 0 !important;
  }

  .story-feature {
    border-right: none !important;
    border-bottom: 1px solid rgba(201, 162, 78, 0.45) !important;
    padding: 34px 18px !important;
  }

  .story-feature:last-child {
    border-bottom: none !important;
  }

  /* Kurumsal Satış başlığını ortala */
  .corporate-page .contact-title {
    width: 100%;
    justify-content: center !important;
    text-align: center !important;
    gap: 16px !important;
  }

  .corporate-page .contact-title h1 {
    text-align: center !important;
    margin: 0 auto !important;
    line-height: 1.15 !important;
    max-width: 260px;
  }

  .corporate-page .contact-title span {
    width: 58px !important;
    flex: 0 0 58px !important;
  }
}

/* TELEFON: ana sayfa ust marka alani */
@media (max-width: 600px) {
  .brand-area {
    gap: 14px !important;
    padding: 24px 14px 28px !important;
  }

  .brand-area .decor {
    gap: 8px !important;
  }

  .brand-area .decor h2 {
    font-size: 11px !important;
    letter-spacing: 2.2px !important;
    line-height: 1.25 !important;
  }

  .brand-area .decor span {
    width: 28px !important;
    flex: 0 0 28px !important;
  }

  .brand-area .ornament {
    margin: 4px 0 !important;
  }

  .brand-area .ornament img {
    width: 82px !important;
  }

  .brand-area .brand-text p {
    margin-top: 8px !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
  }

  .brand-area .logo-box img {
    width: 255px !important;
  }
}

@media (max-width: 390px) {
  .brand-area .decor h2 {
    font-size: 10px !important;
    letter-spacing: 1.8px !important;
  }

  .brand-area .logo-box img {
    width: 235px !important;
  }
}

.admin-forgot-password {
  display: inline-block;
  margin-top: 14px;
  color: #06452f;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.admin-forgot-password:hover {
  color: #c9a24e;
}

/* SABIT UST MENU */
header {
  position: sticky;
  top: 0;
  z-index: 2000;
}

/* TELEFON IKONU SADECE TELEFONDA */
.mobile-phone-link {
  display: none;
}

/* WHATSAPP SIPARIS BUTONU */
.whatsapp-fixed {
  position: fixed;
  right: 28px;
  bottom: 28px;
  left: auto !important;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  text-decoration: none;
  z-index: 3000;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

/* SADECE TELEFONLAR */
@media (max-width: 600px) {
  .cart-header {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .mobile-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    width: 32px;
    height: 32px;
  }

  .cart-header button {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .cart-header button i {
    color: #ffffff !important;
    font-size: 20px !important;
  }

  .whatsapp-fixed {
    width: 48px;
    height: 48px;
    right: 16px;
    bottom: 16px;
    font-size: 25px;
  }
}

/* UST MENU HER SAYFADA SABIT KALSIN */
header {
  position: sticky !important;
  top: 0 !important;
  z-index: 5000 !important;
}

/* TELEFON IKONU NORMALDE GIZLI */
.mobile-phone-link {
  display: none;
}

/* HAMBURGER OLAN CIHAZLAR YATAYDA DA HAMBURGER KALSIN */
/* Nest Hub Max 1280x800 bu araliga bilerek dahil degil */
@media (max-width: 1024px),
       (min-width: 1025px) and (max-width: 1368px) and (min-height: 810px) and (max-height: 1100px) {

  .top-bar {
    height: 78px !important;
    padding: 0 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    overflow: visible !important;
  }

  .social {
    display: none !important;
  }

  .top-logo,
  .top-brand-text {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 1 !important;
  }

  .top-logo img,
  .top-brand-text img {
    width: 145px !important;
  }

  .cart-header {
    display: flex !important;
    align-items: center !important;
    gap: 13px !important;
    z-index: 5100 !important;
  }

  .mobile-phone-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    color: #ffffff !important;
    text-decoration: none !important;
  }

  .mobile-phone-link i {
    color: #ffffff !important;
    font-size: 19px !important;
  }

  .cart-header button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .cart-header button span {
    display: none !important;
  }

  .cart-header button i {
    display: inline-flex !important;
    color: #ffffff !important;
    font-size: 22px !important;
  }

  .mobile-menu-toggle {
    display: flex !important;
    width: 42px !important;
    height: 42px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    z-index: 5100 !important;
  }

  .mobile-menu-toggle span {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background: #ffffff !important;
    border-radius: 20px !important;
  }

  .menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: min(360px, 84vw) !important;
    height: 100vh !important;
    background: #064b35 !important;
    padding: 95px 30px 30px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    transform: translateX(100%) !important;
    transition: transform 0.28s ease !important;
    z-index: 5050 !important;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.25) !important;
  }

  .menu.is-open {
    transform: translateX(0) !important;
  }

  .menu a {
    color: #ffffff !important;
    padding: 17px 0 !important;
    border-bottom: 1px solid rgba(201, 162, 78, 0.32) !important;
    font-size: 15px !important;
    text-align: left !important;
    white-space: nowrap !important;
  }
}

/* KUCUK TELEFONLARDA SEPET KAYBOLMASIN */
@media (max-width: 430px) {
  .top-bar {
    padding: 0 18px !important;
  }

  .top-logo img,
  .top-brand-text img {
    width: 128px !important;
  }

  .cart-header {
    gap: 10px !important;
  }

  .mobile-phone-link,
  .cart-header button {
    width: 30px !important;
    height: 30px !important;
  }

  .mobile-phone-link i {
    font-size: 17px !important;
  }

  .cart-header button i {
    display: inline-flex !important;
    font-size: 20px !important;
  }
}

/* SADECE NORMAL NEST HUB'TA WHATSAPP BUTONU BIRAZ KUCUK OLSUN */
@media (min-width: 1000px) and (max-width: 1050px) and (min-height: 560px) and (max-height: 650px) {
  .whatsapp-fixed {
    width: 52px !important;
    height: 52px !important;
    right: 22px !important;
    bottom: 22px !important;
    font-size: 27px !important;
  }
}

/* UST YESIL BAR BUTUN CIHAZLARDA SABIT KALSIN */
header {
  position: static !important;
}

body {
  padding-top: 90px !important;
}

.top-bar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
}

/* 1200 ALTI CIHAZLAR */
@media (max-width: 1200px) {
  body {
    padding-top: 86px !important;
  }

  .top-bar {
    height: 86px !important;
  }
}

/* HAMBURGER MENU OLAN CIHAZLAR */
@media (max-width: 1024px),
       (min-width: 1025px) and (max-width: 1368px) and (min-height: 810px) and (max-height: 1100px) {
  body {
    padding-top: 78px !important;
  }

  .top-bar {
    height: 78px !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 99999 !important;
  }

  .cart-header {
    z-index: 100000 !important;
  }

  .mobile-menu-toggle {
    z-index: 100000 !important;
  }
}

/* TELEFONLAR */
@media (max-width: 600px) {
  body {
    padding-top: 74px !important;
  }

  .top-bar {
    height: 74px !important;
  }
}

/* IPAD PRO UST BAR BIR TIK BUYUK */
@media (min-width: 1000px) and (max-width: 1050px) and (min-height: 1300px) and (max-height: 1400px) {
  body {
    padding-top: 92px !important;
  }

  .top-bar {
    height: 92px !important;
    padding: 0 38px !important;
  }

  .top-logo img,
  .top-brand-text img {
    width: 170px !important;
  }

  .cart-header {
    gap: 16px !important;
  }

  .mobile-phone-link,
  .cart-header button,
  .mobile-menu-toggle {
    width: 44px !important;
    height: 44px !important;
  }

  .mobile-phone-link i {
    font-size: 22px !important;
  }

  .cart-header button i {
    font-size: 25px !important;
  }

  .mobile-menu-toggle span {
    width: 28px !important;
    height: 3px !important;
  }
}

/* TELEFON YATAY MODDA WHATSAPP BUTONU ORTA BOY OLSUN */
@media (max-width: 950px) and (max-height: 500px) {
  .whatsapp-fixed {
    width: 52px !important;
    height: 52px !important;
    right: 20px !important;
    bottom: 20px !important;
    font-size: 27px !important;
  }
}

/* DAHA KUCUK YATAY TELEFONLAR */
@media (max-width: 740px) and (max-height: 430px) {
  .whatsapp-fixed {
    width: 48px !important;
    height: 48px !important;
    right: 18px !important;
    bottom: 18px !important;
    font-size: 25px !important;
  }
}

/* Lezzetlerimiz kategori butonları ile ürünler arasına boşluk */
.category-tabs,
.category-buttons,
.product-categories,
.filter-buttons {
  margin-bottom: 36px !important;
}

/* Ürün kartları kategorilere yapışmasın */
.products-grid,
.product-grid,
#productsGrid,
#productList {
  margin-top: 28px !important;
}

/* Telefonda boşluk biraz daha dengeli olsun */
@media (max-width: 768px) {
  .category-tabs,
  .category-buttons,
  .product-categories,
  .filter-buttons {
    margin-bottom: 28px !important;
  }

  .products-grid,
  .product-grid,
  #productsGrid,
  #productList {
    margin-top: 22px !important;
  }
}