:root{
  --black:#2c1810;
  --black-soft:#3d2415;
  --red:#c4956a;
  --red-bright:#d4a76a;
  --cream:#faf3eb;
  --grey-light:#f5ede4;
  --grey-mid:#a08070;
  --line:#4a3224;
  --gold:#d4a76a;
}
*{margin:0;padding:0;box-sizing:border-box;}
[x-cloak]{display:none!important;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  background:var(--cream);
  color:var(--black);
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%;}
a{text-decoration:none;color:inherit;}
ul{list-style:none;}
button{font-family:inherit;cursor:pointer;border:none;background:none;}
.wrap{max-width:1440px;margin:0 auto;padding:0 40px;}

/* TOP UTILITY BAR */
.topbar{
  background:var(--black);
  color:#e8ddd0;
  font-size:12px;
  letter-spacing:.04em;
}
.topbar .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:38px;
}
.topbar-left{display:flex;gap:28px;}
.topbar-left span{display:flex;align-items:center;gap:6px;font-weight:600;}
.topbar-right{display:flex;align-items:center;gap:24px;}
.topbar-right span{display:flex;align-items:center;gap:6px;}
.topbar svg{width:13px;height:13px;flex-shrink:0;}

/* HEADER */
header.main{
  background:var(--black);
  border-bottom:1px solid var(--line);
}
.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:22px 0;
}
.logo{
  display:flex;
  align-items:center;
  gap:14px;
}
.logo-img{
  height:56px;
  width:auto;
  display:block;
  border-radius:50%;
}
.logo-link{display:flex;align-items:center;gap:14px;text-decoration:none;}
.logo-text{display:flex;flex-direction:column;}
.logo-text .name{
  font-family:'Bebas Neue',sans-serif;
  font-size:26px;
  letter-spacing:.03em;
  color:#fff;
  line-height:1;
}
.logo-text .tag{
  font-size:10px;
  letter-spacing:.12em;
  color:var(--grey-mid);
  margin-top:3px;
}
.search-bar{
  flex:1;
  max-width:560px;
  display:flex;
  background:#3d2415;
  border:1px solid #4a3224;
  border-radius:6px;
  overflow:hidden;
}
.search-bar input{
  flex:1;
  background:none;
  border:none;
  outline:none;
  color:#fff;
  font-size:14px;
  padding:14px 20px;
}
.search-bar input::placeholder{color:#8b7a6a;}
.search-bar button{
  background:var(--red);
  color:#fff;
  width:54px;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.search-bar button:hover{background:var(--red-bright);}
.search-bar svg{width:16px;height:16px;}
.header-actions{
  display:flex;
  gap:32px;
}
.header-actions a{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  font-size:10px;
  letter-spacing:.08em;
  color:#e8ddd0;
  font-weight:700;
  position:relative;
  transition:color .2s;
}
.header-actions a:hover{color:#fff;}
.header-actions svg{width:20px;height:20px;stroke:#e8ddd0;transition:stroke .2s;}
.header-actions a:hover svg{stroke:#fff;}
.cart-badge{
  position:absolute;
  top:-6px;right:-10px;
  background:var(--red);
  color:#fff;
  font-size:10px;
  font-weight:800;
  width:17px;height:17px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}

/* NAV */
nav.subnav{
  background:#f5ede4;
  border-bottom:1px solid #e0d5c8;
}
.nav-list{
  display:flex;
  gap:20px;
  align-items:center;
  height:54px;
  white-space:nowrap;
}
.nav-list li a{
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  color:#3d2415;
  display:flex;
  align-items:center;
  gap:5px;
  position:relative;
  padding:4px 0;
}
.nav-list li a.active{color:var(--red);}
.nav-list li a.active::after{
  content:'';
  position:absolute;
  left:0;bottom:-18px;
  width:100%;height:2px;
  background:var(--red);
}
.nav-list li a:hover{color:var(--red);}
.nav-list svg{width:11px;height:11px;}

/* HAMBURGER (mobile) */
.hamburger{
  display:none;
  background:none;border:none;
  color:#fff;cursor:pointer;
  padding:4px;margin-left:8px;
}
.hamburger svg{width:22px;height:22px;display:block;}

/* MOBILE MENU OVERLAY — fixed fullscreen */
.mobile-menu{
  position:fixed;
  top:0; left:0; right:0; bottom:0;
  z-index:999;
  background:rgba(0,0,0,0.5);
  border-bottom:none;
  opacity:0;
  visibility:hidden;
  transition:opacity .3s ease, visibility .3s ease;
}
.mobile-menu.open{
  opacity:1;
  visibility:visible;
}
.mobile-menu-inner{
  background:var(--black-soft);
  max-height:100vh;
  overflow-y:auto;
  padding:16px 40px 24px;
  max-width:1440px;
  margin:0 auto;
  transform:translateY(-100%);
  transition:transform .3s ease;
}
.mobile-menu.open .mobile-menu-inner{
  transform:translateY(0);
}
.mobile-search{
  display:flex;
  background:#3d2415;
  border:1px solid #4a3224;
  border-radius:6px;
  overflow:hidden;
  margin-bottom:20px;
}
.mobile-search input{
  flex:1;
  background:none;border:none;outline:none;
  color:#fff;font-size:14px;
  padding:14px 16px;
}
.mobile-search button{
  background:var(--red);
  color:#fff;width:48px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.mobile-search svg{width:16px;height:16px;}
.mobile-nav-list{
  display:flex;flex-direction:column;
  gap:2px;
}
.mobile-nav-list a{
  display:block;
  padding:14px 0;
  font-size:15px;font-weight:700;
  letter-spacing:.06em;
  color:#e8ddd0;
  border-bottom:1px solid #4a3224;
  transition:color .2s;
}
.mobile-nav-list a:hover{color:var(--red);}

/* HERO */
.hero{
  position:relative;
  background:var(--black);
  min-height:70vh;
  max-height:720px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
/* Hero Swiper slider — height/min-height moved to basci-theme.css for responsive control */
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  /* min-height:70vh; */
  /* max-height:720px; */
  /* height:auto; */
}
.hero-swiper .swiper-slide {
  position:relative;
  display:flex;
  align-items:center;
  background:var(--black);
}
.hero-slide-bg {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}
.hero-slide-bg.is-mobile{display:none;}

/* Video slide */
.hero-slide-video{position:absolute;inset:0;overflow:hidden;z-index:0;}
.hero-slide-video iframe,
.hero-slide-video video{width:100%;height:100%;object-fit:cover;border:0;}
.hero-slide-video iframe{pointer-events:none;}

.hero-swiper .wrap { z-index:2; position:relative; width:100%; }
.hero-swiper .swiper-pagination-bullet {
  width:7px;height:7px;
  background:rgba(255,255,255,0.25);
  opacity:1;
}
.hero-swiper .swiper-pagination-bullet-active { background:var(--red); }
@media(max-width:768px){
  .hero { min-height:55vh; max-height:500px; } /* hero-swiper sizing in basci-theme.css */
  /* Mobil resim varsa desktop resmi gizle */
  .hero-slide-bg.is-mobile{display:block;}
  .hero-slide-bg.is-mobile ~ .hero-slide-bg{display:none;}
  /* Video slide'da tüm bg'leri gizle (JS ile slide değişince video dursun) */
  .swiper-slide:not(.swiper-slide-active) .hero-slide-video iframe{display:none;}
}
.hero-bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(ellipse 900px 600px at 20% 50%, rgba(168,32,31,0.12), transparent 60%),
    linear-gradient(115deg, #2c1810 0%, #2c1810 45%, #3d2415 70%, #4a3224 100%);
}
.hero-bg::after{
  content:'';
  position:absolute;
  inset:0;
  background-image:
    repeating-linear-gradient(100deg, rgba(255,255,255,0.015) 0px, transparent 2px, transparent 90px);
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:620px;
  padding:56px 0;
}
.eyebrow{
  color:var(--red-bright);
  font-size:12px;
  font-weight:800;
  letter-spacing:.18em;
  margin-bottom:22px;
}
.hero h1{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(48px,7vw,76px);
  line-height:.98;
  color:#fff;
  letter-spacing:.01em;
}
.hero-sub{
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(28px,4vw,42px);
  line-height:1.1;
  color:#fff;
  letter-spacing:.015em;
  margin-top:12px;
}
.hero-desc{
  color:#c8b8a8;
  font-size:15px;
  line-height:1.7;
  margin-top:22px;
  max-width:480px;
}
.hero-ctas{
  display:flex;
  gap:14px;
  margin-top:38px;
}
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:17px 30px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.05em;
  border-radius:4px;
  transition:transform .2s, background .2s, color .2s;
}
.btn-primary{
  background:var(--red);
  color:#fff;
}
.btn-primary:hover{background:var(--red-bright);transform:translateY(-2px);}
.btn-secondary{
  background:#fff;
  color:var(--black);
}
.btn-secondary:hover{background:#e0d5c8;transform:translateY(-2px);}
.btn svg{width:14px;height:14px;}

.hero-dots{
  position:absolute;
  bottom:32px;left:50%;
  transform:translateX(-50%);
  display:flex;gap:8px;
  z-index:3;
}
.hero-dots span{
  width:7px;height:7px;
  border-radius:50%;
  background:rgba(255,255,255,0.25);
}
.hero-dots span.active{background:var(--red);}

.hero-visual{display:none;}

/* STAT STRIP */
.stats{
  background:var(--black-soft);
  border-top:1px solid var(--line);
}
.stats-row{
  display:flex;
  justify-content:space-between;
  padding:38px 0;
}
.stat-item{
  display:flex;
  align-items:center;
  gap:14px;
}
.stat-icon{
  width:48px;height:48px;
  border-radius:50%;
  background:rgba(168,32,31,0.12);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.stat-icon svg{width:20px;height:20px;stroke:var(--red-bright);}
.stat-num{
  font-family:'Bebas Neue',sans-serif;
  font-size:24px;
  color:#fff;
  line-height:1;
}
.stat-label{
  font-size:10px;
  letter-spacing:.07em;
  color:#a09080;
  font-weight:700;
  margin-top:4px;
}

/* SECTION HEADERS */
.section{padding:90px 0;}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:48px;
}
.eyebrow-dark{
  color:var(--red);
  font-size:12px;
  font-weight:800;
  letter-spacing:.16em;
  margin-bottom:10px;
}
.section-head h2{
  font-family:'Bebas Neue',sans-serif;
  font-size:42px;
  letter-spacing:.01em;
}
.view-all{
  font-size:13px;
  font-weight:800;
  letter-spacing:.05em;
  color:var(--black);
  border-bottom:2px solid var(--red);
  padding-bottom:6px;
}
.section-head.center{
  flex-direction:column;
  align-items:center;
  text-align:center;
}

/* CATEGORY GRID */
.cat-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:20px;
}
.cat-card{
  position:relative;
  aspect-ratio:3/4.3;
  border-radius:6px;
  overflow:hidden;
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:flex-end;
  padding:22px 18px;
  color:#fff;
  transition:transform .35s;
}
.cat-card:hover{transform:translateY(-6px);}
.cat-card::before{
  content:'';
  position:absolute;inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}
.cat-card .cat-label{position:relative;z-index:1;}
.cat-card .cat-label .t{
  font-weight:800;
  font-size:16px;
}
.cat-card .cat-label .s{
  font-size:10px;
  letter-spacing:.06em;
  color:#e8ddd0;
  margin-top:3px;
}
.cat-card.dark{
  background:var(--black);
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  gap:10px;
}
.cat-card.dark .big-num{
  font-family:'Bebas Neue',sans-serif;
  font-size:38px;
  color:var(--red-bright);
}
.cat-card.dark .big-title{
  font-weight:800;font-size:17px;color:#fff;
}
.cat-card.dark .quote{
  font-family:'Playfair Display',serif;
  font-style:italic;
  color:#c8b8a8;
  font-size:13px;
}
.cat-card.dark .btn{margin-top:8px;padding:11px 20px;font-size:11px;}

.meat-1{background-image:linear-gradient(rgba(40,25,15,0.1),rgba(40,25,15,0.1)), radial-gradient(circle at 50% 30%, #d4a76a, #8b6914 75%);}
.meat-2{background-image:linear-gradient(rgba(40,25,15,0.1),rgba(40,25,15,0.1)), radial-gradient(circle at 50% 30%, #e8c38a, #a07830 75%);}
.meat-3{background-image:linear-gradient(rgba(40,25,15,0.1),rgba(40,25,15,0.1)), radial-gradient(circle at 50% 30%, #c4956a, #7a5530 75%);}
.meat-4{background-image:linear-gradient(rgba(40,25,15,0.1),rgba(40,25,15,0.1)), radial-gradient(circle at 50% 30%, #dbb88a, #8b6940 75%);}
.meat-5{background-image:linear-gradient(rgba(40,25,15,0.1),rgba(40,25,15,0.1)), radial-gradient(circle at 50% 30%, #e8cfa0, #a08050 75%);}

/* PRODUCT GRID */
.prod-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:20px;
}
.prod-card{
  background:#fff;
  border:1px solid #e0d5c8;
  border-radius:8px;
  overflow:hidden;
  transition:box-shadow .25s, transform .25s;
}
.prod-card:hover{box-shadow:0 18px 40px rgba(0,0,0,0.09);transform:translateY(-4px);}
.prod-img{
  position:relative;
  aspect-ratio:1/0.85;
  background-size:cover;
  background-position:center;
}
.prod-tag{
  position:absolute;
  top:14px;left:0;
  background:var(--red);
  color:#fff;
  font-size:10px;
  font-weight:800;
  letter-spacing:.06em;
  padding:6px 14px;
}
.prod-body{padding:20px 20px 22px;}
.prod-body h3{font-size:16px;font-weight:700;margin-bottom:5px;}
.prod-body p{font-size:12.5px;color:var(--grey-mid);margin-bottom:14px;}
.prod-foot{display:flex;align-items:center;justify-content:space-between;}
.price{font-size:18px;font-weight:800;color:var(--red);}
.price .old{
  font-size:13px;
  font-weight:500;
  color:#c8b8a8;
  text-decoration:line-through;
  margin-left:8px;
}
.add-btn{
  width:38px;height:38px;
  border-radius:50%;
  background:var(--black);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
  transition:background .2s, transform .2s;
}
.add-btn:hover{background:var(--red);transform:scale(1.08);}
.add-btn svg{width:16px;height:16px;}

.steak-1{background-image:radial-gradient(circle at 45% 35%, #d4a76a 0%, #a07830 55%, #6b4a20 100%);}
.steak-2{background-image:radial-gradient(circle at 45% 35%, #e8cfa0 0%, #c4956a 55%, #8b6940 100%);}
.steak-3{background-image:radial-gradient(circle at 45% 35%, #c4956a 0%, #8b5a30 55%, #5a3a20 100%);}
.steak-4{background-image:radial-gradient(circle at 45% 35%, #dbb88a 0%, #a07840 55%, #6b4a28 100%);}

/* FOOTER */
footer{
  background:var(--black);
  color:#e8ddd0;
  padding:64px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1.4fr;
  gap:40px;
  padding-bottom:46px;
  border-bottom:1px solid var(--line);
}
.footer-brand .logo-text .name{color:#fff;}
.footer-brand p{
  font-size:13px;
  line-height:1.8;
  color:#9c968d;
  margin:18px 0 22px;
  max-width:300px;
}
.social-row{display:flex;gap:10px;}
.social-row a{
  width:34px;height:34px;
  border-radius:50%;
  border:1px solid #3a352f;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s, border-color .2s;
}
.social-row a:hover{background:var(--red);border-color:var(--red);}
.social-row svg{width:14px;height:14px;}
footer h4{
  font-size:12px;
  letter-spacing:.1em;
  color:#fff;
  margin-bottom:20px;
  font-weight:800;
}
footer ul li{margin-bottom:13px;}
footer ul li a{
  font-size:13.5px;
  color:#aba59c;
  transition:color .2s;
}
footer ul li a:hover{color:#fff;}
.newsletter p{font-size:13px;color:#9c968d;line-height:1.7;margin-bottom:18px;}
.newsletter-form{display:flex;}
.newsletter-form input{
  flex:1;
  background:#3d2415;
  border:1px solid #4a3224;
  border-right:none;
  color:#fff;
  font-size:13px;
  padding:14px 16px;
  outline:none;
  border-radius:4px 0 0 4px;
}
.newsletter-form input::placeholder{color:#8b7a6a;}
.newsletter-form button{
  background:var(--red);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
  padding:0 22px;
  border-radius:0 4px 4px 0;
  transition:background .2s;
}
.newsletter-form button:hover{background:var(--red-bright);}
.footer-bottom{
  text-align:center;
  padding:24px 0;
  font-size:12.5px;
  color:#8b7a6a;
}

/* cart badge */
.cart-badge{
  position:absolute;
  top:-8px;
  right:-8px;
  background:var(--red);
  color:#fff;
  font-size:10px;
  font-weight:800;
  width:20px;
  height:20px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  border:2px solid var(--black);
}

/* CAMPAIGN TIMER */
.camp-timer .timer-unit {
  display:inline-flex;
  align-items:baseline;
  gap:2px;
}

@media(max-width:1100px){
  .cat-grid{grid-template-columns:repeat(3,1fr);}
  .prod-grid{grid-template-columns:repeat(2,1fr);}
  .stats-row{flex-wrap:wrap;gap:28px 0;}
  .stat-item{width:33%;}
  .footer-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:720px){
  .wrap{padding:0 20px;}
  .header-row{gap:16px;}
  .topbar-left span:nth-child(2),.topbar-left span:nth-child(3){display:none;}
  .topbar-right span:nth-child(2),.topbar-right span:nth-child(3){display:none;}
  .search-bar{display:none;}
  .hamburger{display:flex;align-items:center;justify-content:center;}
  .nav-list{display:none;}
  .header-actions{gap:12px;}
  .header-actions a span{display:none;}
  .mobile-menu-inner{padding:12px 20px 16px;}
  .mobile-search{margin-bottom:12px;}
  .mobile-search input{padding:10px 14px;font-size:13px;}
  .mobile-search button{width:42px;}
  .mobile-nav-list a{padding:10px 0;font-size:13px;}
  .cart-inner{padding:0 20px;}
  .cart-layout{grid-template-columns:1fr;}
  .cat-grid{grid-template-columns:repeat(2,1fr);}
  .prod-grid{grid-template-columns:repeat(2,1fr);gap:12px;}
  .prod-body{padding:14px 14px 16px;}
  .prod-body h3{font-size:13px;}
  .prod-body p{font-size:11px;margin-bottom:10px;}
  .price{font-size:15px;}
  .price .old{font-size:11px;}
  .prod-tag{font-size:9px;padding:4px 10px;top:10px;}
  .shop-section .prod-grid{gap:12px;}
  .shop-section .prod-body{padding:14px 14px 16px;}
  .shop-section .prod-body h3{font-size:13px;}
  .shop-section .price{font-size:15px;}
  .shop-section .prod-cat{font-size:9px;}
  .shop-section .star-row{margin-bottom:8px;}
  .hero-visual{display:none;}
  .footer-grid{grid-template-columns:1fr;}
  .stat-item{width:50%;}
  .section-head{flex-direction:column;align-items:flex-start;gap:14px;}
}
@media(max-width:480px){
  .topbar{font-size:10px;}
  .topbar svg{width:11px;height:11px;}
  .topbar-left{gap:14px;}
  .topbar-right{gap:12px;}
  .logo-img{height:44px;}
  .logo-text .tag{display:none;}
  .prod-grid{gap:8px;}
  .prod-body{padding:10px 10px 12px;}
  .prod-body h3{font-size:12px;margin-bottom:3px;}
  .prod-body p{font-size:10px;margin-bottom:8px;}
  .price{font-size:14px;}
  .price .old{font-size:10px;}
  .prod-tag{font-size:8px;padding:3px 8px;top:8px;left:0;}
  .shop-section .prod-grid{gap:8px;}
  .shop-section .prod-body{padding:10px 10px 12px;}
  .shop-section .prod-body h3{font-size:12px;}
  .shop-section .price{font-size:14px;}
  .shop-section .prod-cat{font-size:8px;margin-bottom:4px;}
}

/* ========================================================================
   Auth Pages (Login & Register) - Kasap Theme
   ======================================================================== */
.auth-container{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:85vh;
  background:var(--cream);
}

/* ---- LEFT: Branding Panel ---- */
.auth-left{
  flex:1;
  background:var(--black);
  padding:60px 50px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
/* Dramatik radyal ışıma — tıpkı hero-bg'deki gibi */
.auth-left::before{
  content:'';
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 700px 500px at 20% 40%, rgba(168,32,31,0.18), transparent 65%),
    radial-gradient(ellipse 500px 400px at 80% 60%, rgba(184,146,90,0.08), transparent 55%),
    repeating-linear-gradient(105deg, rgba(255,255,255,0.015) 0px, transparent 2px, transparent 80px);
}
/* Altın ışıma köşe */
.auth-left::after{
  content:'';
  position:absolute;
  width:300px;height:300px;
  background:radial-gradient(circle, rgba(184,146,90,0.12) 0%, transparent 70%);
  bottom:-80px;left:-80px;
}
.auth-left-inner{
  position:relative;
  z-index:2;
  text-align:center;
  max-width:420px;
}

/* Logo rozeti — etçi temasına uygun */
.auth-icon{
  width:88px;height:88px;
  background:rgba(168,32,31,0.15);
  border:2px solid rgba(168,32,31,0.3);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 32px;
  transition:border-color .3s;
}
.auth-icon svg{width:42px;height:42px;color:var(--red-bright);stroke-width:1.5;}

.auth-left h1{
  font-family:'Bebas Neue',sans-serif;
  font-size:48px;
  letter-spacing:.08em;
  color:#fff;
  line-height:1;
  margin-bottom:14px;
}
.auth-left .auth-sub{
  font-family:'Playfair Display',serif;
  font-style:italic;
  color:var(--grey-mid);
  font-size:18px;
  line-height:1.6;
  margin-bottom:0;
}

/* Feature bullets */
.auth-left-features{
  display:flex;align-items:center;justify-content:center;
  gap:20px;
  margin-top:40px;
  flex-wrap:wrap;
}
.auth-left-features span{
  display:flex;align-items:center;gap:8px;
  font-size:11.5px;font-weight:600;letter-spacing:.04em;
  color:#8b7a6a;
}
.auth-left-features span::before{
  content:'';
  width:6px;height:6px;border-radius:50%;
  background:var(--gold);opacity:.7;
}

/* ---- RIGHT: Form Panel ---- */
.auth-right{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:60px 20px;
}
.auth-form-wrap{
  width:100%;
  max-width:420px;
}

.auth-form-header{margin-bottom:32px;}
.auth-form-header h2{
  font-family:'Bebas Neue',sans-serif;
  font-size:36px;
  letter-spacing:.06em;
  color:var(--black);
  margin-bottom:8px;
}
.auth-form-header p{
  font-size:13.5px;color:#8b7a6a;
}

/* Hata mesajı */
.auth-alert{
  display:flex;align-items:flex-start;gap:10px;
  background:#fdf8f0;border:1px solid #e0d5c8;
  border-radius:8px;padding:14px 16px;
  margin-bottom:24px;
}
.auth-alert svg{width:18px;height:18px;color:#c4956a;flex-shrink:0;margin-top:2px;}
.auth-alert span{font-size:13.5px;color:#7a5530;line-height:1.5;}

/* Form düzeni */
.auth-form{display:flex;flex-direction:column;gap:18px;}
.form-group{display:flex;flex-direction:column;gap:8px;}
.form-group label{font-size:12.5px;font-weight:700;letter-spacing:.04em;color:var(--black);text-transform:uppercase;}

/* Input ikon konteyner */
.form-input-wrap{position:relative;}
.form-input-wrap svg{
  position:absolute;left:14px;top:50%;transform:translateY(-50%);
  width:18px;height:18px;color:#a09080;
  transition:color .2s;
}
.form-input-wrap:focus-within svg{color:var(--red);}

/* Input alanı */
.form-input{
  width:100%;
  padding:15px 16px 15px 42px;
  background:#fff;
  border:2px solid #e0d5c8;
  border-radius:10px;
  font-size:14px;color:var(--black);
  outline:none;
  transition:border-color .2s, box-shadow .2s;
}
.form-input::placeholder{color:#a8a29a;}
.form-input:focus{
  border-color:var(--red);
  box-shadow:0 0 0 4px rgba(168,32,31,0.08);
}
.form-input.error{
  border-color:#d4a76a;
  box-shadow:0 0 0 4px rgba(232,112,112,0.1);
}
.form-error{font-size:12px;color:#c4956a;margin-top:4px;font-weight:600;}

/* Alıcı tipi seçici (register) */
.buyer-type-selector{
  display:flex;gap:5px;
  background:#e0d5c8;
  padding:5px;border-radius:10px;
}
.buyer-type-btn{
  flex:1;padding:12px 16px;border:none;border-radius:7px;
  font-size:13px;font-weight:700;letter-spacing:.04em;
  cursor:pointer;
  background:transparent;color:#8b7a6a;
  transition:all .25s;
}
.buyer-type-btn.active{
  background:#fff;color:var(--black);
  box-shadow:0 2px 10px rgba(0,0,0,0.07);
}
.buyer-type-btn:hover:not(.active){color:var(--black);}

.corporate-fields{
  border-top:1px solid #e0d5c8;
  padding-top:20px;margin-top:8px;
}
.corporate-fields h3{
  font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.06em;
  color:var(--black);
  display:flex;align-items:center;gap:8px;margin-bottom:16px;
}
.corporate-fields h3 svg{width:16px;height:16px;color:var(--red);}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;}

/* Kullanım koşulları */
.agreement{
  display:flex;align-items:flex-start;gap:10px;
  font-size:13px;color:#8b7a6a;line-height:1.5;
  cursor:pointer;
}
.agreement input{margin-top:4px;cursor:pointer;accent-color:var(--red);}
.agreement a{color:var(--red);font-weight:600;text-decoration:none;}
.agreement a:hover{text-decoration:underline;}

/* Auth butonu — tıpkı kasap.btn-primary gibi */
.btn-auth{
  width:100%;
  padding:16px 20px;
  background:var(--red);
  color:#fff;
  font-family:'Bebas Neue',sans-serif;
  font-size:16px;
  letter-spacing:.12em;
  border:none;border-radius:10px;
  cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:10px;
  transition:background .25s, transform .2s, box-shadow .25s;
}
.btn-auth:hover{
  background:var(--red-bright);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(168,32,31,0.25);
}
.btn-auth:active{transform:scale(.97) translateY(0);}
.btn-auth svg{width:18px;height:18px;}

/* Kurumsal uyarı notu */
.auth-note{
  background:#fff7e5;border:1px solid #e8cf9c;border-radius:8px;
  padding:14px 16px;margin-top:16px;
  display:flex;align-items:flex-start;gap:10px;
}
.auth-note svg{width:18px;height:18px;color:#b58c3c;flex-shrink:0;margin-top:2px;}
.auth-note span{font-size:12.5px;color:#d4a76a;line-height:1.6;}

/* Alt bağlantılar */
.auth-footer{
  text-align:center;margin-top:36px;padding-top:24px;border-top:1px solid #e0d5c8;
}
.auth-footer p{font-size:13.5px;color:#8b7a6a;}
.auth-footer a{color:var(--red);font-weight:700;text-decoration:none;}
.auth-footer a:hover{text-decoration:underline;}

/* Sıfırla şifre linki */
.btn-link{
  display:inline-flex;align-items:center;gap:6px;
  font-size:13px;font-weight:600;color:#8b7a6a;
  text-decoration:none;transition:color .2s;
}
.btn-link:hover{color:var(--red);}
.btn-link svg{width:14px;height:14px;}

/* Mobil */
@media(max-width:920px){
    .auth-container{flex-direction:column;}
    .auth-left{padding:50px 30px;min-height:260px;}
    .auth-right{padding:40px 30px;}
    .auth-left h1{font-size:36px;}
    .form-row{grid-template-columns:1fr;}
}

/* General Grid for Contact Page */
.grid {
    display: grid;
}
@media(max-width:920px){
    .grid[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================
   TAILWIND PAGES FIX — primary color + cascade
   The shop/product/account pages use Tailwind
   dual-mode classes (text-gray-900 text-white)
   but Tailwind v4 generates both unconditionally.
   The dark-mode class (text-white) overrides the
   light-mode class (text-gray-900) in CSS source order.
   Also primary-* colors were never defined in the theme.
   Scoped to <main> to limit impact.
   ============================================ */

main .bg-primary-600 { background-color: #c4956a; color: #ffffff; }
main .bg-primary-50 { background-color: #fdf8f0; }
main .bg-primary-900\/20 { background-color: rgba(106,76,50,0.2); }
main .text-primary-600 { color: #c4956a; }
main .text-primary-700 { color: #8b6a3a; }
main .text-primary-300 { color: #f0e4d0; }
main .border-primary-600 { border-color: #c4956a; }
main .hover\:bg-primary-700:hover { background-color: #8b6a3a; }
main .hover\:border-primary-600:hover { border-color: #c4956a; }
main .hover\:border-primary-300:hover { border-color: #f0e4d0; }
main .focus\:ring-primary-500:focus { --tw-ring-color: #d4a76a; }

main .text-gray-900 { color: #101828; }
main .text-gray-700 { color: #344054; }
main .text-gray-600 { color: #475467; }
main .text-gray-500 { color: #667085; }
main .text-gray-400 { color: #98a2b3; }
main .hover\:bg-gray-50:hover { background-color: #f9fafb; }
main .hover\:bg-gray-700\/50:hover { background-color: rgba(52,64,84,0.5); }
main .hover\:bg-gray-700:hover { background-color: #344054; }
main .hover\:text-gray-700:hover { color: #344054; }
main .hover\:text-gray-300:hover { color: #d0d5dd; }
main .hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
main .hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
main .animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
@keyframes pulse { 50% { opacity: 0.5; } }

/* ============================================
   SHOP PAGE — page banner, filters, product grid
   Scoped to .shop-section to avoid homepage conflicts
   ============================================ */

.shop-section { padding: 48px 0 90px; }
.shop-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 44px;
}

/* Page banner */
.page-banner {
  position: relative;
  background: var(--black);
  padding: 56px 0 40px;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 400px at 85% 20%, rgba(168,32,31,0.14), transparent 60%);
}
.breadcrumb {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: #9c968d; font-weight: 600;
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: #4a443c; }
.breadcrumb .current { color: var(--red-bright); }
.page-banner h1 {
  position: relative; z-index: 1;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 54px);
  color: #fff;
  letter-spacing: .01em;
}
.page-banner p {
  position: relative; z-index: 1;
  color: #c8b8a8;
  font-size: 14px;
  margin-top: 10px;
  max-width: 520px;
}

/* Sidebar filters */
.filters { align-self: start; }
.filter-box {
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 8px;
  padding: 24px 22px;
  margin-bottom: 20px;
}
.filter-box h3 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.search-mini {
  display: flex;
  border: 1px solid #e0d5c8;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 4px;
}
.search-mini input {
  flex: 1; border: none; outline: none;
  padding: 11px 14px; font-size: 13px;
  background: var(--grey-light);
}
.search-mini button {
  background: var(--black); color: #fff;
  width: 42px; display: flex; align-items: center; justify-content: center;
}
.search-mini svg { width: 14px; height: 14px; }
.check-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 13.5px;
  color: #3a352f;
  cursor: pointer;
}
.check-row:hover { color: var(--red); }
.check-row .ck {
  display: flex; align-items: center; gap: 10px;
}
.check-row input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--red);
  cursor: pointer;
}
.check-row .count {
  color: #b0aaa0;
  font-size: 12px;
}
.price-range { margin-top: 6px; }
.price-slider {
  width: 100%;
  accent-color: var(--red);
  margin-bottom: 10px;
}
.price-vals {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--grey-mid);
  font-weight: 600;
}
.price-vals b { color: var(--black); }
.tag-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  border: 1px solid #e0d5c8;
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #5c5650;
  transition: all .2s;
}
.tag-pill:hover, .tag-pill.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.clear-filters {
  width: 100%;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  color: #5c5650;
  background: var(--grey-light);
  transition: background .2s;
}
.clear-filters:hover { background: #e0d5c8; }

/* Promo card in sidebar */
.promo-card {
  background: var(--black);
  border-radius: 8px;
  padding: 28px 22px;
  color: #fff;
  margin-bottom: 20px;
}
.promo-card .pc-content { display: flex; flex-direction: column; gap: 12px; }
.promo-card .pc-content h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .02em;
  color: #fff;
}
.promo-card .pc-content p {
  font-size: 13px;
  color: #c8b8a8;
  line-height: 1.6;
}

/* Results bar */
.results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  flex-wrap: wrap;
  gap: 16px;
}
.results-count {
  font-size: 13.5px;
  color: var(--grey-mid);
}
.results-count b { color: var(--black); font-weight: 700; }
.results-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sort-select {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 6px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  outline: none;
  transition: border-color .2s;
}
.sort-select:focus { border-color: var(--red); }
.sort-select select {
  appearance: none;
  background: none;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding-right: 4px;
}
.view-toggle {
  display: flex;
  border: 1px solid #e0d5c8;
  border-radius: 6px;
  overflow: hidden;
}
.view-toggle button {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  transition: background .2s;
  cursor: pointer;
}
.view-toggle button.active { background: var(--black); }
.view-toggle button.active svg { stroke: #fff; }
.view-toggle svg { width: 16px; height: 16px; stroke: #a09080; }
.active-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.active-filters .label { font-size: 12px; color: var(--grey-mid); font-weight: 700; }
.af-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 20px;
  padding: 6px 8px 6px 14px;
  font-size: 12px;
  font-weight: 600;
}
.af-pill button {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.af-pill button svg { width: 9px; height: 9px; }

/* Mobile filter toggle */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--black);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  border-radius: 6px;
  transition: background .2s;
}
.mobile-filter-btn:hover { background: var(--red); }
.mobile-filter-btn svg { width: 14px; height: 14px; }

/* Mobile filter drawer */
.filter-drawer {
  display: none;
}
.filter-drawer.open {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.5);
}
.filter-drawer.open .drawer-panel {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--cream);
  box-shadow: 4px 0 24px rgba(0,0,0,0.3);
  overflow-y: auto;
  padding: 24px;
}
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0d5c8;
}
.drawer-header h3 {
  font-size: 16px;
  font-weight: 800;
}
.drawer-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grey-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.drawer-close svg { width: 14px; height: 14px; }

/* Shop product grid (4 cols) */
.shop-section .prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* List view */
.shop-section .prod-grid.list-view {
  grid-template-columns: 1fr;
}
.shop-section .prod-grid.list-view .prod-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}
.shop-section .prod-grid.list-view .prod-img {
  aspect-ratio: 1/0.85;
  border-right: 1px solid #e0d5c8;
}
.shop-section .prod-grid.list-view .prod-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
}
.shop-section .prod-card {
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.shop-section .prod-card:hover { box-shadow: 0 18px 40px rgba(0,0,0,0.09); transform: translateY(-4px); }
.shop-section .prod-img {
  position: relative;
  aspect-ratio: 1/0.85;
  background-size: cover;
  background-position: center;
}
.shop-section .prod-tag {
  position: absolute;
  top: 14px; left: 0;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 6px 14px;
  z-index: 2;
}
.shop-section .prod-tag.new { background: #2b6e4f; }
.shop-section .prod-tag.out { background: #5c5650; }
.shop-section .wish-btn {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  cursor: pointer;
  border: none;
  z-index: 2;
}
.shop-section .wish-btn:hover { background: #fff; }
.shop-section .wish-btn svg { width: 15px; height: 15px; stroke: var(--black); }
.shop-section .prod-body { padding: 18px 20px 20px; }
.shop-section .prod-cat {
  font-size: 10.5px;
  color: var(--red);
  font-weight: 800;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.shop-section .prod-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 5px; }
.shop-section .prod-body h3 a { color: inherit; }
.shop-section .prod-body h3 a:hover { color: var(--red); }
.shop-section .prod-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-section .price { font-size: 18px; font-weight: 800; color: var(--red); }
.shop-section .price .old {
  font-size: 13px; font-weight: 500;
  color: #c8b8a8;
  text-decoration: line-through;
  margin-left: 8px;
}
.shop-section .add-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.shop-section .add-btn:hover { background: var(--red); transform: scale(1.08); }
.shop-section .add-btn svg { width: 16px; height: 16px; }
.shop-section .star-row {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 12px;
}
.shop-section .star-row svg { width: 12px; height: 12px; fill: var(--gold); transition: fill .1s; }
.shop-section .star-row span { font-size: 11.5px; color: var(--grey-mid); font-weight: 600; margin-left: 4px; }

/* Meat texture backgrounds (shop) */
.shop-m1  { background-image: radial-gradient(circle at 45% 35%, #d4a76a 0%, #a07830 55%, #6b4a20 100%); }
.shop-m2  { background-image: radial-gradient(circle at 45% 35%, #e8cfa0 0%, #c4956a 55%, #8b6940 100%); }
.shop-m3  { background-image: radial-gradient(circle at 45% 35%, #c4956a 0%, #8b5a30 55%, #5a3a20 100%); }
.shop-m5  { background-image: radial-gradient(circle at 45% 35%, #dbb88a 0%, #a08050 55%, #6b4a28 100%); }
.shop-m6  { background-image: radial-gradient(circle at 45% 35%, #d4a76a 0%, #a07830 55%, #6b4a20 100%); }
.shop-m7  { background-image: radial-gradient(circle at 45% 35%, #8b6940 0%, #5a3a20 55%, #3d2415 100%); }
.shop-m8  { background-image: radial-gradient(circle at 45% 35%, #dbb88a 0%, #a08050 55%, #6b4a28 100%); }
.shop-m9  { background-image: radial-gradient(circle at 45% 35%, #c4956a 0%, #8b5a30 55%, #5a3a20 100%); }
.shop-m10 { background-image: radial-gradient(circle at 45% 35%, #e8cfa0 0%, #c4956a 55%, #8b6940 100%); }
.shop-m11 { background-image: radial-gradient(circle at 45% 35%, #c4956a 0%, #7a5530 55%, #4a3224 100%); }
.shop-m12 { background-image: radial-gradient(circle at 45% 35%, #e8c38a 0%, #b88a52 55%, #6b4a28 100%); }
.shop-m13 { background-image: radial-gradient(circle at 45% 35%, #d4a76a 0%, #a07830 55%, #6b4a20 100%); }
.shop-m14 { background-image: radial-gradient(circle at 45% 35%, #e8cfa0 0%, #c4956a 55%, #8b6940 100%); }
.shop-m15 { background-image: radial-gradient(circle at 45% 35%, #8b6940 0%, #5a3a20 55%, #3d2415 100%); }
.shop-m16 { background-image: radial-gradient(circle at 45% 35%, #c4956a 0%, #8b5a30 55%, #5a3a20 100%); }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 52px;
}
.page-btn {
  min-width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid #e0d5c8;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #5c5650;
  background: #fff;
  padding: 0 8px;
  transition: all .2s;
}
.page-btn:hover { border-color: var(--red); color: var(--red); }
.page-btn.active { background: var(--black); border-color: var(--black); color: #fff; }
.page-btn svg { width: 14px; height: 14px; }
.page-btn.dots { border: none; cursor: default; }

/* Product link card (entire card clickable) */
.prod-link { display: block; color: inherit; }
.prod-link:hover { color: inherit; }

/* Empty state */
.empty-state {
  text-align: center;
  padding: 64px 20px;
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 8px;
}
.empty-state svg {
  width: 56px; height: 56px;
  color: #d4cfc7;
  margin-bottom: 20px;
}
.empty-state h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.empty-state p {
  font-size: 14px;
  color: var(--grey-mid);
  margin-bottom: 24px;
}

/* Shop responsive */
@media(max-width: 1100px) {
  .shop-layout { grid-template-columns: 1fr; }
  .filters { display: none; }
  .filters.open { display: block; position: fixed; inset: 0; z-index: 100; background: rgba(0,0,0,0.5); overflow-y: auto; }
  .filters.open .filter-box { max-width: 320px; background: var(--cream); }
  .mobile-filter-btn { display: inline-flex; }
  .shop-section .prod-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 720px) {
  .shop-section .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .results-bar { flex-direction: column; align-items: flex-start; }
  .page-banner { padding: 36px 0 28px; }
  .shop-section { padding: 28px 0 60px; }
}

/* Subcategory grid (category page) */
.subcat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

/* ============================================
   ACCOUNT PAGE (Hesabım) - Kasap Theme
   ============================================ */

/* ---- Layout ---- */
.account-page {
  background: var(--bg, #2c1810);
  min-height: 60vh;
}
.account-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 40px 80px;
}
.account-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 1.5px;
  color: #f5e6d3;
  margin-bottom: 24px;
}

/* ---- Sidebar ---- */
.account-sidebar {
  align-self: start;
}
.account-sidebar-inner {
  background: linear-gradient(145deg, #3d2415, #2c1810);
  border: 1px solid #4a3224;
  border-radius: 16px;
  overflow: hidden;
}

/* Sidebar user header */
.account-sidebar-user {
  padding: 20px;
  border-bottom: 1px solid #4a3224;
  display: flex;
  align-items: center;
  gap: 12px;
}
.account-sidebar-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a76a, #d4a76a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  color: #f5e6d3;
  flex-shrink: 0;
}
.account-sidebar-user-info {
  min-width: 0;
  flex: 1;
}
.account-sidebar-user-name {
  font-size: 14px;
  font-weight: 700;
  color: #f5e6d3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-sidebar-user-email {
  font-size: 12px;
  color: #a09080;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* B2B badge in sidebar */
.account-b2b-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.account-b2b-badge.approved {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}
.account-b2b-badge.pending {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}
.account-b2b-badge.rejected {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}
.account-b2b-badge.suspended {
  background: rgba(140, 135, 130, 0.15);
  color: #a09080;
}

/* Sidebar navigation */
.account-sidebar-nav {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.account-sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #b0a89e;
  text-decoration: none;
  transition: all 0.2s;
}
.account-sidebar-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.account-sidebar-link .badge-count {
  margin-left: auto;
  background: rgba(140, 135, 130, 0.2);
  color: #a09080;
  font-size: 11px;
  padding: 1px 8px;
  border-radius: 10px;
}
.account-sidebar-link:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #f5e6d3;
}
.account-sidebar-link:active {
  background: rgba(198, 40, 40, 0.10);
  color: var(--accent);
}
.account-sidebar-link.active {
  background: rgba(198, 40, 40, 0.12);
  color: #d4a76a;
  font-weight: 600;
}
.account-sidebar-link.active svg {
  color: #d4a76a;
}
.account-sidebar-divider {
  height: 1px;
  background: #4a3224;
  margin: 6px 0;
}
.account-sidebar-link.logout {
  color: #ef4444;
}
.account-sidebar-link.logout:hover {
  background: rgba(239, 68, 68, 0.08);
}

/* ---- Main Content ---- */
.account-content {
  min-width: 0;
}

/* Alert banner */
.account-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 16px;
}
.account-alert.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: #4ade80;
}
.account-alert.info {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}
.account-alert svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---- Cards ---- */
.account-card {
  background: linear-gradient(145deg, #3d2415, #2c1810);
  border: 1px solid #4a3224;
  border-radius: 16px;
  overflow: hidden;
}
.account-card-header {
  padding: 16px 24px;
  border-bottom: 1px solid #4a3224;
  background: rgba(255, 255, 255, 0.02);
}
.account-card-header h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: #f5e6d3;
  display: flex;
  align-items: center;
  gap: 8px;
}
.account-card-header h3 svg {
  color: #d4a76a;
  width: 20px;
  height: 20px;
}
.account-card-body {
  padding: 20px 24px;
}

/* ---- Stat Grid (Dashboard) ---- */
.account-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.account-stat {
  background: linear-gradient(145deg, #3d2415, #2c1810);
  border: 1px solid #4a3224;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s;
}
.account-stat:hover {
  transform: translateY(-2px);
}
.account-stat svg {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
}
.account-stat .stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: #f5e6d3;
  letter-spacing: 1px;
}
.account-stat .stat-label {
  font-size: 12px;
  color: #a09080;
  margin-top: 2px;
}

/* ---- Section Tabs ---- */
.account-section-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: #f5e6d3;
  margin-bottom: 16px;
}

/* ---- Tables ---- */
.account-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #4a3224;
}
.account-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: linear-gradient(145deg, #3d2415, #2c1810);
}
.account-table thead {
  background: rgba(255, 255, 255, 0.03);
}
.account-table th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  color: #a09080;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #4a3224;
}
.account-table td {
  padding: 12px 16px;
  color: #d4c5b8;
  border-bottom: 1px solid rgba(58, 32, 24, 0.6);
}
.account-table tbody tr {
  transition: background 0.15s;
}
.account-table tbody tr:last-child td {
  border-bottom: none;
}
.account-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* ---- Order Detail Row ---- */
.account-order-detail {
  border-top: 1px solid #4a3224;
  margin-top: 12px;
  padding-top: 12px;
}
.account-order-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  font-size: 13px;
}
.account-order-detail-grid .label {
  color: #a09080;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.account-order-detail-grid .value {
  color: #d4c5b8;
  font-weight: 500;
}

/* ---- Status Badges ---- */
.order-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.order-badge.pending {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}
.order-badge.confirmed {
  background: rgba(96, 165, 250, 0.15);
  color: #93c5fd;
}
.order-badge.shipped {
  background: rgba(229, 106, 74, 0.15);
  color: #d4a76a;
}
.order-badge.delivered {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}
.order-badge.cancelled {
  background: rgba(239, 68, 68, 0.15);
  color: #f87171;
}
.order-badge.refunded {
  background: rgba(140, 135, 130, 0.15);
  color: #a09080;
}

/* ---- Account Forms (reuse auth form styles) ---- */
.account-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.account-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.account-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.account-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #d4c5b8;
}
.account-form-group label .required {
  color: #ef4444;
}
.account-form-group input,
.account-form-group select,
.account-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  background: #2c1810;
  border: 1px solid #4a3224;
  border-radius: 10px;
  color: #f5e6d3;
  font-size: 13px;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.account-form-group input:focus,
.account-form-group select:focus,
.account-form-group textarea:focus {
  border-color: #d4a76a;
  box-shadow: 0 0 0 3px rgba(229, 106, 74, 0.15);
}
.account-form-group input.error {
  border-color: #ef4444;
}
.account-form-group input:disabled {
  background: rgba(44, 18, 15, 0.5);
  color: #a09080;
  cursor: not-allowed;
}
.account-form-group .form-help {
  font-size: 11px;
  color: #a09080;
  margin-top: 2px;
}
.account-form-group .form-error {
  font-size: 12px;
  color: #ef4444;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}
.account-form-footer {
  padding-top: 16px;
  border-top: 1px solid #4a3224;
  margin-top: 8px;
}

/* ---- Account Buttons ---- */
.account-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
}
.account-btn svg {
  width: 18px;
  height: 18px;
}
.account-btn.primary {
  background: linear-gradient(135deg, #d4a76a, #d4a76a);
  color: #f5e6d3;
  box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
}
.account-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}
.account-btn.small {
  padding: 8px 16px;
  font-size: 12px;
}
.account-btn.secondary {
  background: transparent;
  border: 1px solid #4a3224;
  color: #d4c5b8;
}
.account-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: #8b7a6a;
}

/* ---- Empty State ---- */
.account-empty {
  text-align: center;
  padding: 48px 24px;
}
.account-empty svg {
  width: 48px;
  height: 48px;
  color: #8b7a6a;
  margin-bottom: 12px;
}
.account-empty p {
  color: #a09080;
  font-size: 14px;
}
.account-empty .account-btn {
  margin-top: 16px;
}

/* ---- Address Grid ---- */
.account-addr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.account-addr-card {
  background: linear-gradient(145deg, #3d2415, #2c1810);
  border: 1px solid #4a3224;
  border-radius: 14px;
  padding: 16px;
}
.account-addr-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.account-addr-card-header .name {
  font-weight: 600;
  color: #f5e6d3;
  font-size: 14px;
}
.account-addr-card .phone {
  color: #a09080;
  font-size: 12px;
  margin-top: 2px;
}
.account-addr-card .address {
  color: #b0a89e;
  font-size: 12px;
  margin-top: 4px;
}
.account-addr-card .default-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(198, 40, 40, 0.12);
  color: #d4a76a;
}
.account-addr-delete {
  background: none;
  border: none;
  color: #8b7a6a;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.account-addr-delete:hover {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

/* ---- Review Card ---- */
.account-review {
  background: linear-gradient(145deg, #3d2415, #2c1810);
  border: 1px solid #4a3224;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}
.account-review .product-link {
  color: #d4a76a;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.account-review .product-link:hover {
  text-decoration: underline;
}
.account-review .rating {
  display: flex;
  gap: 2px;
  margin-top: 6px;
}
.account-review .rating svg {
  width: 14px;
  height: 14px;
}
.account-review .rating svg.filled {
  color: #fbbf24;
}
.account-review .rating svg.empty {
  color: #8b7a6a;
}
.account-review .comment {
  color: #b0a89e;
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.5;
}
.account-review .date {
  color: #a09080;
  font-size: 11px;
  margin-top: 8px;
}

/* ---- Notification Items ---- */
.account-notif {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  margin-bottom: 8px;
  background: linear-gradient(145deg, #3d2415, #2c1810);
  border: 1px solid #4a3224;
  transition: background 0.2s;
}
.account-notif.unread {
  border-left: 3px solid #d4a76a;
}
.account-notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(198, 40, 40, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.account-notif-icon svg {
  width: 16px;
  height: 16px;
  color: #d4a76a;
}
.account-notif-body {
  flex: 1;
}
.account-notif-body .title {
  font-size: 13px;
  font-weight: 600;
  color: #f5e6d3;
}
.account-notif-body .message {
  font-size: 12px;
  color: #a09080;
  margin-top: 2px;
}
.account-notif-body .time {
  font-size: 11px;
  color: #8b7a6a;
  margin-top: 4px;
}

/* ---- Corporate Tab ---- */
.account-corp-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media(min-width: 640px) {
  .account-corp-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.account-def-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.account-def-list dt {
  font-size: 11px;
  font-weight: 600;
  color: #a09080;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.account-def-list dd {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 600;
  color: #f5e6d3;
}
.account-info-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.5;
}
.account-info-box svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.account-info-box.green {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
  color: #4ade80;
}
.account-info-box.amber {
  background: rgba(251, 191, 36, 0.08);
  border: 1px solid rgba(251, 191, 36, 0.15);
  color: #fbbf24;
}
.account-info-box .info-text {
  color: inherit;
}

/* ---- Password Eye Toggle ---- */
.password-wrap {
  position: relative;
}
.password-wrap input {
  padding-right: 40px;
}
.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #8b7a6a;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}
.password-toggle:hover {
  color: #a09080;
}

/* ---- Profile Header ---- */
.account-profile-cover {
  height: 100px;
  background: linear-gradient(135deg, #d4a76a 0%, #d4a76a 50%, #6b4a20 100%);
  border-radius: 16px 16px 0 0;
}
.account-profile-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 20px 20px;
  margin-top: -40px;
}
@media(min-width: 640px) {
  .account-profile-head {
    flex-direction: row;
    align-items: flex-end;
    padding: 0 24px 20px;
  }
}
.account-profile-avatar-lg {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  border: 4px solid #2c1810;
  background: linear-gradient(135deg, #d4a76a, #d4a76a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 36px;
  color: #f5e6d3;
  flex-shrink: 0;
}
.account-profile-name {
  font-size: 20px;
  font-weight: 700;
  color: #f5e6d3;
}
.account-profile-meta {
  font-size: 13px;
  color: #a09080;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  margin-top: 4px;
}

/* ---- Responsive ---- */
@media(max-width: 900px) {
  .account-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 20px 60px;
  }
  .account-sidebar {
    margin-bottom: 24px;
  }
  .account-sidebar-nav {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 4px;
  }
  .account-sidebar-link {
    font-size: 12px;
    padding: 8px 12px;
  }
  .account-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .account-form-row {
    grid-template-columns: 1fr;
  }
  .account-addr-grid {
    grid-template-columns: 1fr;
  }
  .account-def-list {
    grid-template-columns: 1fr;
  }
  .account-order-detail-grid {
    grid-template-columns: 1fr;
  }
}
@media(max-width: 540px) {
  .account-stat-grid {
    grid-template-columns: 1fr;
  }
  .account-title {
    font-size: 24px;
  }
  .account-card-body {
    padding: 16px;
  }
  .account-card-header {
    padding: 12px 16px;
  }
}

/* Account page — light theme */
.account-page {
  background: var(--cream);
}
.account-title,
.account-section-title,
.account-card-header h3,
.account-sidebar-user-name,
.account-stat .stat-value,
.account-profile-name,
.account-notif-body .title,
.account-def-list dd {
  color: #3c2415;
}
.account-sidebar-inner,
.account-card,
.account-stat,
.account-table,
.account-addr-card,
.account-review,
.account-notif {
  background: #fff;
  border-color: #e0d5c8;
}
.account-card-header {
  border-color: #e0d5c8;
  background: transparent;
}
.account-table thead {
  background: var(--cream);
}
.account-table th {
  color: var(--grey-mid);
  border-color: #e0d5c8;
}
.account-table td {
  color: #5c5650;
  border-color: #e0d5c8;
}
.account-sidebar-link {
  color: #5c5650;
}
.account-sidebar-link:hover {
  background: rgba(0,0,0,0.03);
  color: var(--red);
}
.account-sidebar-link.active {
  background: rgba(198, 40, 40, 0.08);
}
.account-sidebar-divider,
.account-form-footer {
  background: #e0d5c8;
}
.account-form-group label {
  color: #5c5650;
}
.account-form-group input,
.account-form-group select,
.account-form-group textarea {
  background: #fff;
  border-color: #e0d5c8;
  color: #3c2415;
}
.account-btn.secondary {
  border-color: #e0d5c8;
  color: #5c5650;
}
.account-btn.secondary:hover {
  background: rgba(0,0,0,0.03);
  border-color: #c4bdb2;
}
.account-empty p {
  color: var(--grey-mid);
}
.account-empty svg {
  color: #c4bdb2;
}
.account-addr-card-header .name {
  color: #3c2415;
}
.account-addr-card .address {
  color: #5c5650;
}
.account-profile-avatar-lg {
  border-color: var(--cream);
}
.account-profile-meta {
  color: var(--grey-mid);
}
.account-info-box.green { color: #16a34a; }
.account-info-box.amber { color: #d97706; }

/* ========================================================================
   PRODUCT DETAIL — kasap theme for product.php
   ======================================================================== */

.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}

/* --- Gallery --- */
.product-gallery { position: sticky; top: 24px; width: 100%; min-width: 0; overflow: hidden; }

.productGalleryMain {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0d5c8;
  width: 100%;
  max-width: 100%;
}
.productGalleryMain .swiper-slide {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.productGalleryMain .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  background: var(--grey-light);
}
.productGalleryMain .swiper-button-next,
.productGalleryMain .swiper-button-prev {
  color: #fff;
  background: rgba(0,0,0,0.5);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: background .2s;
}
.productGalleryMain .swiper-button-next::after,
.productGalleryMain .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 800;
}
.productGalleryMain .swiper-button-next:hover,
.productGalleryMain .swiper-button-prev:hover { background: var(--red); }

.productGalleryThumbs { margin-top: 12px; }
.productGalleryThumbs .swiper-slide {
  width: 80px; height: 80px;
  border-radius: 8px; overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: .6;
  transition: border-color .2s, opacity .2s;
}
.productGalleryThumbs .swiper-slide-thumb-active {
  border-color: var(--red);
  opacity: 1;
}
.productGalleryThumbs .gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}

/* Product Image Zoom */
.product-zoom {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.product-zoom .gallery-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .25s ease;
}
.product-zoom .zoom-lens {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-repeat: no-repeat;
  background-size: 200% 200%;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.product-zoom.active .zoom-lens {
  opacity: 1;
}
.product-zoom.active .gallery-img {
  opacity: 0;
}
@media (hover: none) and (pointer: coarse) {
  .product-zoom .gallery-img { opacity: 1 !important; }
  .product-zoom .zoom-lens { display: none; }
}

/* --- Product Info --- */
.product-info { display: flex; flex-direction: column; gap: 18px; }

.product-brand {
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.product-brand a { color: var(--red); transition: color .2s; }
.product-brand a:hover { color: var(--red-bright); }

.product-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.05;
  color: var(--black);
  letter-spacing: .01em;
}

/* --- Rating --- */
.product-rating {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.product-rating .star-row {
  display: flex; align-items: center; gap: 3px;
}
.product-rating .star-row svg { width: 16px; height: 16px; }
.product-rating .star-row span {
  font-size: 13px; color: var(--grey-mid);
  font-weight: 600; margin-left: 6px;
}
.sold-count {
  font-size: 12px; color: var(--grey-mid); font-weight: 600;
}

/* --- Price --- */
.product-price-box {
  background: var(--grey-light);
  border: 1px solid #e0d5c8;
  border-radius: 10px;
  padding: 22px 24px;
}
.product-prices {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.current-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px; color: var(--red);
  line-height: 1; letter-spacing: .02em;
}
.old-price {
  font-size: 18px; color: #c8b8a8;
  text-decoration: line-through; font-weight: 500;
}
.discount-badge {
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: .04em;
}
.tax-note {
  font-size: 11.5px; color: var(--grey-mid);
  font-weight: 600; display: block; margin-top: 6px;
}

/* --- B2B / Kurumsal --- */
.b2b-box {
  background: #fdf8f0;
  border: 1px solid #f0e4d0;
  border-radius: 10px;
  padding: 20px 22px;
}
.b2b-header {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 700;
  letter-spacing: .04em; color: var(--black);
  margin-bottom: 14px;
}
.b2b-extra-discount {
  background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: 3px;
}
.b2b-table-wrap { overflow-x: auto; }
.b2b-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.b2b-table th {
  text-align: left; font-size: 11px; font-weight: 800;
  letter-spacing: .06em; color: var(--grey-mid);
  text-transform: uppercase;
  padding: 8px 10px; border-bottom: 2px solid #e0d5c8;
}
.b2b-table td {
  padding: 10px; border-bottom: 1px solid #e0d5c8;
  font-weight: 600;
}
.b2b-table td:last-child { color: var(--red); font-weight: 800; }
.b2b-lowest {
  font-size: 12.5px; color: var(--grey-mid); margin-top: 12px;
}
.b2b-lowest strong { color: var(--red); }

.b2b-pending {
  display: flex; align-items: center; gap: 10px;
  background: #fff7e5; border: 1px solid #e8cf9c;
  border-radius: 10px; padding: 14px 18px;
  font-size: 13px; color: #d4a76a; font-weight: 600;
}

/* --- Short Description --- */
.product-desc-short {
  font-size: 14px; line-height: 1.7; color: #3a352f;
}

/* --- Variants --- */
.product-variants { padding-top: 4px; }
.product-variants p {
  font-size: 13px; font-weight: 600;
  margin-bottom: 10px; color: var(--black);
}
.variant-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-pill {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 18px;
  border: 2px solid #e0d5c8; border-radius: 8px;
  background: #fff;
  font-size: 13px; font-weight: 700;
  cursor: pointer; transition: all .2s;
}
.variant-pill:hover { border-color: var(--red); color: var(--red); }
.variant-pill.active {
  border-color: var(--red); background: var(--red); color: #fff;
}
.variant-pill small { font-size: 10px; font-weight: 600; opacity: .8; }

/* --- Stock --- */
.product-stock-row { display: flex; align-items: center; gap: 12px; }
.stock-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700;
}
.stock-badge.in-stock { color: #2b6e4f; }
.stock-badge.out-of-stock { color: var(--red); }

/* --- Cart Row --- */
.product-cart-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.qty-selector {
  display: flex; align-items: center;
  border: 2px solid #e0d5c8; border-radius: 8px;
  background: #fff; overflow: hidden;
}
.qty-selector button {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: none; color: var(--black);
  transition: background .2s, color .2s;
}
.qty-selector button:hover { background: var(--grey-light); color: var(--red); }
.qty-selector input {
  width: 48px; height: 44px;
  text-align: center; font-size: 15px; font-weight: 700;
  border: none; border-left: 2px solid #e0d5c8; border-right: 2px solid #e0d5c8;
  outline: none; background: none;
  -moz-appearance: textfield;
}
.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.add-to-cart-btn {
  flex: 1; min-width: 180px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  background: var(--red); color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px; letter-spacing: .08em;
  border-radius: 8px;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.add-to-cart-btn:hover { background: var(--red-bright); transform: translateY(-2px); }
.add-to-cart-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }

.wishlist-btn {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid #e0d5c8; background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s; flex-shrink: 0;
}
.wishlist-btn:hover { border-color: var(--red); background: #faf3eb; }
.wishlist-btn.in-wishlist { border-color: var(--red); background: var(--red); }
.wishlist-btn.in-wishlist svg { fill: #fff; stroke: #fff; }

/* --- Meta --- */
.product-meta { display: flex; flex-direction: column; gap: 10px; padding-top: 6px; }
.meta-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--grey-mid);
}
.meta-row svg { flex-shrink: 0; opacity: .7; }
.meta-row a { color: var(--black); font-weight: 600; }
.meta-row a:hover { color: var(--red); }

/* --- Trust Badges --- */
.trust-badges {
  display: flex; gap: 24px; flex-wrap: wrap;
  padding: 18px 0;
  border-top: 1px solid #e0d5c8;
  margin-top: 6px;
}
.trust-badges span {
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; color: #3a352f;
}
.trust-badges svg { color: var(--red); flex-shrink: 0; }

/* --- Product Tabs --- */
.product-tabs { margin-top: 56px; }
.tab-nav {
  display: flex; gap: 4px;
  border-bottom: 2px solid #e0d5c8;
  margin-bottom: 32px;
}
.tab-btn {
  padding: 14px 24px;
  font-size: 13px; font-weight: 800;
  letter-spacing: .06em;
  color: var(--grey-mid);
  background: none; border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  cursor: pointer; text-transform: uppercase;
  transition: color .2s, border-color .2s;
}
.tab-btn:hover { color: var(--black); }
.tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
.tab-content { min-height: 200px; }
.tab-empty {
  font-size: 14px; color: var(--grey-mid);
  text-align: center; padding: 40px 0;
}

/* Description paragraphs */
.product-desc {
  font-size: 14.5px; line-height: 1.8;
  color: #3a352f; margin-bottom: 16px;
}

/* Specs Table */
.specs-table {
  width: 100%; max-width: 600px;
  border-collapse: collapse; font-size: 14px;
}
.specs-table td {
  padding: 12px 16px; border-bottom: 1px solid #e0d5c8;
}
.specs-table td:first-child {
  font-weight: 700; color: var(--black); width: 140px;
}
.specs-table td:last-child { color: var(--grey-mid); }

/* --- Reviews --- */
.review-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  background: var(--grey-light);
  border: 1px solid #e0d5c8;
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 32px;
}
.review-avg {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.review-avg-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; line-height: 1; color: var(--black);
}
.review-avg .star-row { display: flex; gap: 3px; }
.review-avg p { font-size: 13px; color: var(--grey-mid); font-weight: 600; }

.review-dist {
  display: flex; flex-direction: column; gap: 8px; justify-content: center;
}
.dist-row {
  display: grid;
  grid-template-columns: 16px 1fr 24px;
  gap: 10px;
  align-items: center;
  font-size: 12px; font-weight: 700; color: var(--black);
}
.dist-bar {
  height: 8px; background: #e0d5c8;
  border-radius: 4px; overflow: hidden;
}
.dist-fill {
  height: 100%; background: var(--gold);
  border-radius: 4px; transition: width .3s;
}
.dist-count {
  font-size: 12px; color: var(--grey-mid); text-align: right;
}

/* Review Form */
.review-form {
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 32px;
}
.review-form h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; margin-bottom: 18px; letter-spacing: .03em;
}
.star-picker { display: flex; gap: 4px; margin: 8px 0 16px; }
.star-picker button {
  cursor: pointer; padding: 2px;
  background: none; border: none; transition: transform .15s;
}
.star-picker button:hover { transform: scale(1.15); }

.rev-input, .rev-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0d5c8;
  border-radius: 8px;
  font-size: 14px; font-family: inherit;
  outline: none; transition: border-color .2s;
  background: #fff; margin-bottom: 12px;
}
.rev-input:focus, .rev-textarea:focus { border-color: var(--red); }
.rev-textarea { resize: vertical; min-height: 80px; }
.rev-counter { font-size: 11px; color: var(--grey-mid); text-align: right; margin-bottom: 12px; }

.rev-submit {
  padding: 12px 28px;
  background: var(--red); color: #fff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px; letter-spacing: .08em;
  border-radius: 8px; border: none; cursor: pointer;
  transition: background .2s, transform .2s;
}
.rev-submit:hover { background: var(--red-bright); transform: translateY(-2px); }
.rev-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.rev-error { font-size: 12.5px; color: var(--red); font-weight: 600; margin-top: 10px; }
.rev-success { font-size: 12.5px; color: #2b6e4f; font-weight: 600; margin-top: 10px; }

/* Review prompts */
.rev-prompt {
  display: flex; align-items: center; gap: 12px;
  background: var(--grey-light);
  border: 1px solid #e0d5c8;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.rev-prompt p { font-size: 13.5px; color: var(--grey-mid); font-weight: 600; }

/* Reviews List */
.reviews-list { display: flex; flex-direction: column; gap: 20px; }
.review-item {
  display: flex; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid #e0d5c8;
}
.review-item:last-child { border-bottom: none; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; flex-shrink: 0;
}
.review-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 4px; flex-wrap: wrap;
}
.review-meta strong { font-size: 14px; font-weight: 700; }
.review-meta span { font-size: 12px; color: var(--grey-mid); }
.review-item .star-row { display: flex; gap: 2px; margin-bottom: 6px; }
.review-title {
  font-size: 14px; font-weight: 700;
  margin-bottom: 4px; color: var(--black);
}
.review-comment {
  font-size: 13.5px; line-height: 1.6; color: #3a352f;
}

/* Empty state for reviews */
.rev-empty {
  text-align: center; padding: 48px 20px;
}
.rev-empty svg { margin-bottom: 14px; }
.rev-empty p { font-size: 14px; color: var(--grey-mid); }

/* Spinner */
.spinner {
  display: inline-block;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Transition utilities for Alpine.js x-transition */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.translate-y-1 { transform: translateY(4px); }
.translate-y-0 { transform: translateY(0); }
.transition { transition: all .2s ease-out; }

/* --- Product Detail Responsive --- */
@media(max-width: 960px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .product-gallery { position: static; }
  .review-summary {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .review-avg {
    border-bottom: 1px solid #e0d5c8;
    padding-bottom: 20px;
  }
}
@media(max-width: 720px) {
  .product-price-box { padding: 16px 18px; }
  .current-price { font-size: 28px; }
  .product-cart-row { flex-direction: column; }
  .add-to-cart-btn { width: 100%; }
  .qty-selector { width: 100%; justify-content: center; }
  .tab-btn { padding: 12px 14px; font-size: 12px; }
  .trust-badges { flex-direction: column; gap: 12px; }
  .review-item { flex-direction: column; }
  .b2b-box { padding: 16px; }
}

/* ============================================
   CART / SEPET PAGE
   ============================================ */

.cart-section {
  padding: 24px 0 80px;
}

.cart-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.cart-header {
  margin-bottom: 28px;
}
.cart-header h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 1.5px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-header h1 svg {
  color: var(--red-bright);
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* ---- Cart Item ---- */
.cart-item {
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s;
}
.cart-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cart-item-inner {
  display: flex;
  gap: 16px;
  padding: 16px;
}
.cart-item-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--grey-light);
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.cart-item-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.cart-item-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  transition: color 0.15s;
}
.cart-item-name:hover {
  color: var(--red);
}
.cart-item-variant {
  font-size: 12px;
  color: #a09080;
  margin-top: 2px;
}
.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--red-bright);
  margin-top: 4px;
}
.cart-item-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cart-item-remove:hover {
  background: rgba(239,68,68,0.08);
  color: #ef4444;
}
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cart-item-line-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

/* ---- Quantity ---- */
.cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.cart-qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cart-qty-btn:hover {
  background: var(--grey-light);
  color: var(--red);
}
.cart-qty-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 34px;
  font-size: 14px;
  font-weight: 600;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  color: var(--black);
}

/* ---- Coupon ---- */
.cart-coupon-box {
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  padding: 16px;
  margin-top: 4px;
}
.cart-coupon-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cart-coupon-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: var(--grey-light);
  border: 1px solid #e0d5c8;
  border-radius: 8px;
  transition: border 0.2s;
}
.cart-coupon-input-wrap:focus-within {
  border-color: var(--red);
}
.cart-coupon-input-wrap svg {
  color: #aaa;
  flex-shrink: 0;
}
.cart-coupon-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--black);
  font-size: 13px;
  padding: 10px 0;
  font-family: inherit;
}
.cart-coupon-input-wrap input::placeholder {
  color: #bbb;
}
.cart-coupon-msg {
  font-size: 12px;
  margin-top: 8px;
}
.cart-coupon-ok {
  color: #16a34a;
}
.cart-coupon-err {
  color: #dc2626;
}

/* ---- Back Link ---- */
.cart-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--grey-mid);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 20px;
  transition: color 0.15s;
}
.cart-back-link:hover {
  color: var(--red);
}

/* ---- Summary ---- */
.cart-summary {
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 20px;
}
.cart-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.cart-summary-row > span:first-child {
  color: #a09080;
}
.cart-summary-row > span:last-child {
  font-weight: 600;
  color: var(--black);
}
.cart-summary-row.cart-summary-discount > span:last-child {
  color: #16a34a;
}
.cart-green {
  color: #16a34a !important;
  font-weight: 600;
}
.cart-summary-hr {
  border: none;
  border-top: 1px solid #e0d5c8;
  margin: 16px 0;
}
.cart-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cart-summary-total > span:first-child {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}
.cart-total-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--red-bright);
}
.cart-checkout-btn {
  width: 100%;
  justify-content: center;
}
.cart-free-shipping-hint {
  font-size: 12px;
  color: #a09080;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}
.cart-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #bbb;
  font-size: 12px;
  margin-top: 14px;
}

/* ---- Empty ---- */
.cart-empty {
  text-align: center;
  padding: 20px 20px 60px;
}
.cart-empty svg {
  display: block;
  margin: 0 auto 16px;
  color: #c0b8ae;
  width: 72px;
  height: 72px;
}
.cart-empty h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 6px;
}
.cart-empty p {
  color: #a09080;
  font-size: 14px;
  margin-bottom: 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media(max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-sidebar {
    order: -1;
  }
}
@media(max-width: 600px) {
  .cart-section {
    padding: 24px 0 60px;
  }
  .cart-inner {
    padding: 0 16px;
  }
  .cart-item-inner {
    flex-direction: column;
  }
  .cart-item-img {
    width: 80px;
    height: 80px;
  }
  .cart-item-top {
    flex-direction: column;
  }
  .cart-coupon-row {
    flex-direction: column;
  }
  .cart-coupon-input-wrap {
    width: 100%;
  }
}
@media(max-width: 480px) {
  .cart-header h1 {
    font-size: 26px;
  }
  .cart-item-img {
    width: 100%;
    height: 160px;
  }
  .cart-item-img img {
    object-fit: contain;
  }
  .cart-item-bottom {
    flex-wrap: wrap;
    gap: 8px;
  }
  .cart-item-line-total {
    width: 100%;
    text-align: right;
    font-size: 15px;
  }
  .cart-summary {
    padding: 16px;
  }
  .cart-summary h3 {
    font-size: 18px;
  }
  .cart-total-price {
    font-size: 18px;
  }
  .cart-coupon-box {
    padding: 12px;
  }
}

/* ============================================
   CHECKOUT PAGE — kasap theme for checkout.php
   ============================================ */

.checkout-section {
  padding: 24px 0 80px;
}

.checkout-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.checkout-header {
  margin-bottom: 32px;
}

.checkout-header h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 1.5px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkout-header h1 svg {
  color: var(--red-bright);
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

/* ---- Step Indicator ---- */
.checkout-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.checkout-step-item {
  display: flex;
  align-items: center;
}

.checkout-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
  flex-shrink: 0;
}

.checkout-step-circle.active {
  background: var(--red);
  color: #fff;
}

.checkout-step-circle.completed {
  background: #16a34a;
  color: #fff;
}

.checkout-step-circle.inactive {
  background: #e0d5c8;
  color: #a09080;
}

.checkout-step-circle svg {
  width: 16px;
  height: 16px;
}

.checkout-step-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-left: 8px;
  white-space: nowrap;
  color: var(--grey-mid);
  transition: color 0.3s;
  display: none;
}

@media(min-width: 640px) {
  .checkout-step-label {
    display: inline;
  }
}

.checkout-step-label.active {
  color: var(--black);
}

.checkout-step-line {
  width: 48px;
  height: 2px;
  margin: 0 12px;
  background: #e0d5c8;
  transition: background 0.3s;
  flex-shrink: 0;
}

.checkout-step-line.completed {
  background: #16a34a;
}

.checkout-step-line.active {
  background: var(--red);
}

/* ---- Card ---- */
.checkout-card {
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 16px;
}

.checkout-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---- Form Input (plain — no icon) ---- */
.form-input-plain {
  width: 100%;
  padding: 15px 16px;
  background: #fff;
  border: 2px solid #e0d5c8;
  border-radius: 10px;
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  box-sizing: border-box;
}

.form-input-plain::placeholder {
  color: #a8a29a;
}

.form-input-plain:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(168, 32, 31, 0.08);
}

.form-input-plain.error {
  border-color: #d4a76a;
  box-shadow: 0 0 0 4px rgba(232, 112, 112, 0.1);
}

textarea.form-input-plain {
  resize: vertical;
  min-height: 80px;
}

/* ---- Form Label ---- */
.checkout-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 6px;
  text-transform: uppercase;
}

/* ---- Form Row (2-col grid) ---- */
.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media(max-width: 600px) {
  .checkout-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Saved Address Radio ---- */
.checkout-addr-radio {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid #e0d5c8;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  margin-bottom: 8px;
}

.checkout-addr-radio:hover {
  border-color: var(--red);
  background: rgba(168, 32, 31, 0.02);
}

.checkout-addr-radio input[type="radio"] {
  accent-color: var(--red);
  margin-top: 3px;
  flex-shrink: 0;
}

.checkout-addr-radio.selected {
  border-color: var(--red);
  background: rgba(168, 32, 31, 0.03);
}

.checkout-addr-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
}

.checkout-addr-detail {
  font-size: 13px;
  color: var(--grey-mid);
  margin-top: 2px;
}

.checkout-addr-text {
  font-size: 12px;
  color: #a09080;
  margin-top: 2px;
}

/* ---- Divider ---- */
.checkout-divider {
  border: none;
  border-top: 1px solid #e0d5c8;
  margin: 16px 0;
}

/* ---- Radio Select Cards (shipping / payment) ---- */
.checkout-radio-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 8px;
}

.checkout-radio-card:hover {
  border-color: var(--red);
}

.checkout-radio-card.selected {
  border-color: var(--red);
  background: rgba(168, 32, 31, 0.03);
}

.checkout-radio-card input[type="radio"] {
  accent-color: var(--red);
  flex-shrink: 0;
}

.checkout-radio-card-body {
  flex: 1;
  min-width: 0;
}

.checkout-radio-card-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--black);
}

.checkout-radio-card-desc {
  font-size: 12px;
  color: var(--grey-mid);
  margin-top: 2px;
}

.checkout-radio-card-price {
  font-weight: 800;
  font-size: 14px;
  color: var(--red-bright);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- Guest Info Box ---- */
.checkout-guest-box {
  background: #fff7e5;
  border: 1px solid #e8cf9c;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}

.checkout-guest-box-title {
  font-size: 13px;
  font-weight: 700;
  color: #d4a76a;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---- Bank Accounts ---- */
.checkout-bank-box {
  background: var(--grey-light);
  border: 1px solid #e0d5c8;
  border-radius: 10px;
  padding: 20px;
  margin-top: 16px;
}

.checkout-bank-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
}

.checkout-bank-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #e0d5c8;
  gap: 12px;
}

.checkout-bank-row:last-child {
  border-bottom: none;
}

.checkout-bank-name {
  color: var(--black);
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}

.checkout-bank-holder {
  color: var(--grey-mid);
  font-size: 12px;
  flex-shrink: 0;
}

.checkout-bank-iban {
  color: var(--grey-mid);
  font-family: monospace;
  font-size: 12px;
  margin-left: auto;
  text-align: right;
  word-break: break-all;
}

/* ---- Review Section ---- */
.checkout-review-box {
  background: var(--grey-light);
  border: 1px solid #e0d5c8;
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 13.5px;
  line-height: 1.6;
}

.checkout-review-box p {
  margin-bottom: 2px;
}

.checkout-review-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--grey-mid);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- Navigation Buttons ---- */
.checkout-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.checkout-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid #e0d5c8;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.checkout-nav-back:hover {
  border-color: var(--red);
  color: var(--red);
}

.checkout-nav-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  font-family: inherit;
}

.checkout-nav-next:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}

/* ---- Sidebar Summary ---- */
.checkout-summary {
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  padding: 24px;
  position: sticky;
  top: 100px;
}

.checkout-summary h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 20px;
}

.checkout-summary-items {
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkout-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-summary-item-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--grey-light);
  flex-shrink: 0;
}

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

.checkout-summary-item-info {
  flex: 1;
  min-width: 0;
}

.checkout-summary-item-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-summary-item-qty {
  font-size: 12px;
  color: var(--grey-mid);
  margin-top: 1px;
}

.checkout-summary-item-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
}

.checkout-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.checkout-summary-row-label {
  color: #a09080;
}

.checkout-summary-row-value {
  font-weight: 600;
  color: var(--black);
}

.checkout-summary-row.discount .checkout-summary-row-value {
  color: #16a34a;
}

.checkout-summary-row.free .checkout-summary-row-value {
  color: #16a34a;
}

.checkout-summary-divider {
  border: none;
  border-top: 1px solid #e0d5c8;
  margin: 12px 0;
}

.checkout-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.checkout-summary-total-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
}

.checkout-summary-total-price {
  font-size: 22px;
  font-weight: 800;
  color: var(--red-bright);
}

/* Green text utility */
.checkout-green {
  color: #16a34a !important;
}

/* ---- Complete Order Button ---- */
.checkout-complete-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 30px;
  background: var(--red);
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-transform: uppercase;
}

.checkout-complete-btn:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 32, 31, 0.25);
}

.checkout-complete-btn:active {
  transform: scale(0.97) translateY(0);
}

/* ---- Invoice Type ---- */
.checkout-invoice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid #e0d5c8;
}

.checkout-invoice-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  color: var(--black);
  font-weight: 600;
}

.checkout-invoice-label input[type="radio"] {
  accent-color: var(--red);
}

/* ---- Checkbox (save address etc.) ---- */
.checkout-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grey-mid);
  cursor: pointer;
}

.checkout-checkbox input[type="checkbox"] {
  accent-color: var(--red);
  width: 16px;
  height: 16px;
}

/* Form error message */
.checkout-error {
  font-size: 12px;
  color: #c4956a;
  font-weight: 600;
  margin-top: 4px;
}

/* ---- Responsive ---- */
@media(max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .checkout-sidebar {
    order: -1;
  }
  .checkout-step-line {
    width: 32px;
    margin: 0 8px;
  }
}

@media(max-width: 600px) {
  .checkout-section {
    padding: 24px 0 60px;
  }
  .checkout-inner {
    padding: 0 16px;
  }
  .checkout-header h1 {
    font-size: 26px;
  }
  .checkout-card {
    padding: 20px;
  }
  .checkout-summary {
    padding: 16px;
  }
  .checkout-summary h3 {
    font-size: 18px;
  }
  .checkout-summary-total-price {
    font-size: 18px;
  }
  .checkout-steps {
    max-width: 100%;
  }
  .checkout-step-label {
    display: none !important;
  }
}

/* ===== STATIC PAGE CONTENT ===== */
.page-content{padding-top:60px;padding-bottom:80px;}
.page-body{max-width:800px;margin:0 auto;font-size:15px;line-height:1.8;color:var(--text);}
.page-body h1,.page-body h2,.page-body h3,.page-body h4{margin-top:1.75em;margin-bottom:0.6em;font-weight:700;color:var(--black);}
.page-body h1{font-size:1.6rem;}
.page-body h2{font-size:1.3rem;}
.page-body h3{font-size:1.1rem;}
.page-body p{margin-bottom:1em;}
.page-body ul,.page-body ol{padding-left:1.5em;margin-bottom:1em;}
.page-body li{margin-bottom:0.3em;}
.page-body a{color:var(--red);text-decoration:underline;}
.page-body a:hover{color:var(--red-dark);}
.page-body blockquote{border-left:4px solid var(--red);padding-left:1.2em;color:var(--grey-mid);font-style:italic;margin:1.5em 0;background:var(--grey-light);padding:1em 1.2em;border-radius:4px;}
.page-body img{max-width:100%;height:auto;border-radius:8px;margin:1.5em 0;}
.page-body pre{background:#1e293b;color:#e2e8f0;padding:1em;border-radius:6px;overflow-x:auto;font-size:14px;margin:1.5em 0;}
.page-body table{width:100%;border-collapse:collapse;margin:1.5em 0;}
.page-body th,.page-body td{border:1px solid var(--border);padding:10px 14px;text-align:left;font-size:14px;}
.page-body th{background:var(--grey-light);font-weight:600;}

@media(max-width:720px){
  .page-content{padding-top:40px;padding-bottom:60px;}
  .page-body{font-size:14px;}
  .page-body h1{font-size:1.35rem;}
  .page-body h2{font-size:1.15rem;}
}

/* ============================================
   ORDER SUCCESS PAGE
   ============================================ */
.success-section {
  padding: 64px 0 80px;
}
.success-inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Success checkmark badge */
.success-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-badge svg {
  width: 40px;
  height: 40px;
  stroke: #16a34a;
  stroke-width: 2;
}
.success-badge svg line,
.success-badge svg polyline {
  stroke: #16a34a;
  stroke-width: 2;
}

/* Heading area */
.success-heading {
  font-family: "Bebas Neue", sans-serif;
  font-size: 32px;
  letter-spacing: 1.5px;
  color: var(--black);
  text-align: center;
  margin-bottom: 8px;
}
.success-sub {
  text-align: center;
  color: var(--grey-mid);
  font-size: 14px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Card — reuse checkout-card aesthetic */
.success-card {
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 16px;
}

/* Order number box */
.success-order-box {
  text-align: center;
  padding: 20px;
}
.success-order-box .success-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.success-order-number {
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  color: var(--red-bright);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.success-order-note {
  font-size: 12px;
  color: var(--grey-mid);
  line-height: 1.5;
}

/* Card title */
.success-card-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--black);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.success-card-title svg {
  width: 18px;
  height: 18px;
}

/* Order summary items */
.success-summary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #f0ede7;
}
.success-summary-item:last-child {
  border-bottom: none;
}
.success-summary-qty {
  color: var(--grey-mid);
  min-width: 28px;
  flex-shrink: 0;
}
.success-summary-name {
  flex: 1;
  color: var(--black);
  font-weight: 500;
  min-width: 0;
}
.success-summary-price {
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Divider */
.success-divider {
  border: none;
  border-top: 1px solid #e0d5c8;
  margin: 12px 0;
}

/* Total row */
.success-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
}
.success-total-label {
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
}
.success-total-price {
  font-weight: 800;
  font-size: 22px;
  color: var(--red-bright);
}

/* B2B corporate info */
.success-b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 14px;
}
.success-b2b-field .success-b2b-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.success-b2b-field .success-b2b-value {
  color: var(--black);
  font-weight: 500;
}
.success-b2b-discount {
  color: #16a34a;
  font-weight: 700;
  grid-column: span 2;
  margin-top: 4px;
}

/* Delivery info */
.success-delivery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 0;
}
.success-delivery svg {
  width: 32px;
  height: 32px;
  stroke: var(--red);
  stroke-width: 1.5;
  flex-shrink: 0;
}
.success-delivery-text {
  font-size: 14px;
  text-align: left;
}
.success-delivery-text strong {
  display: block;
  color: var(--black);
  font-size: 14px;
  margin-bottom: 2px;
}
.success-delivery-text span {
  color: var(--grey-mid);
  font-size: 13px;
}

/* Action buttons */
.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.success-actions a.btn-primary,
.success-actions a.btn-secondary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  text-align: center;
  box-sizing: border-box;
}
.success-actions a.btn-primary {
  background: var(--red);
  color: #fff;
}
.success-actions a.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
}
.success-actions a.btn-secondary {
  background: #fff;
  color: var(--black);
  border: 2px solid #e0d5c8;
}
.success-actions a.btn-secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}
.success-actions svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Responsive */
@media(max-width: 600px) {
  .success-section {
    padding: 40px 0 60px;
  }
  .success-inner {
    padding: 0 16px;
  }
  .success-heading {
    font-size: 26px;
  }
  .success-card {
    padding: 20px;
  }
  .success-b2b-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== FEATURES GRID (NEDEN ÖZÇELİK KASAP) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid #e0d5c8;
  border-radius: 12px;
  padding: 36px 28px 32px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.07);
}
.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(168,32,31,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--red-bright);
}
.feature-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--grey-mid);
}

/* ===== STEPS SECTION ===== */
.steps-section {
  background: var(--black-soft);
}
.steps-section .eyebrow-dark {
  color: var(--gold);
}
.steps-section h2 {
  color: #fff;
}
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step-card {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 40px 24px 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: transform .25s, background .25s;
}
.step-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}
.step-num {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #fff;
  line-height: 1;
}
.step-icon {
  margin-bottom: 16px;
}
.step-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold);
}
.step-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step-card p {
  font-size: 13px;
  line-height: 1.6;
  color: #a09080;
}
.step-arrow {
  width: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-arrow svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  opacity: 0.5;
}

/* Responsive */
@media(max-width: 920px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-row {
    flex-direction: column;
    gap: 16px;
  }
  .step-arrow {
    transform: rotate(90deg);
    width: auto;
    height: 32px;
  }
  .step-card {
    max-width: 360px;
    width: 100%;
  }
}
@media(max-width: 540px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 28px 20px 24px;
  }
}

/* ===== HOMEPAGE BANNER ===== */
.homepage-banner-link {
  display:block;
  width:100%;
}
.homepage-banner-img {
  width:100%;
  height:auto;
  display:block;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: var(--cream);
}
.testimonials-section .eyebrow {
  color: var(--red);
}
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.testimonial-stars .star {
  width: 16px;
  height: 16px;
  color: var(--border);
}
.testimonial-stars .star.filled {
  color: #f59e0b;
}
.testimonial-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  overflow: hidden;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.3;
}
.testimonial-author small {
  display: block;
  font-size: 12px;
  color: var(--gray);
  line-height: 1.3;
}
@media(max-width: 920px) {
  .testimonials-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 540px) {
  .testimonials-row {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    padding: 22px 18px 20px;
  }
}

/* ============================================
   MOBILE OVERRIDES — tüm base kuralları ezer
   ============================================ */
@media(max-width:720px){
  .section{padding:50px 0;}
  .section-head h2{font-size:clamp(26px,8vw,36px);}
  .section-head{margin-bottom:32px;}
  .eyebrow-dark{font-size:11px;}
  .cat-grid{gap:12px;}
  .cat-card{padding:16px 14px;}
  .cat-card .cat-label .t{font-size:13px;}
  .cat-card .cat-label .s{font-size:9px;}
  .subcat-grid{grid-template-columns:repeat(auto-fill,minmax(120px,1fr));}
  .shop-section .prod-grid{gap:12px;}
  .shop-section .prod-body{padding:14px 14px 16px;}
  .shop-section .prod-body h3{font-size:13px;}
  .shop-section .prod-cat{font-size:9px;}
  .shop-section .price{font-size:15px;}
  .shop-section .price .old{font-size:11px;}
  .shop-section .star-row{margin-bottom:8px;}
  /* SHOP PAGE — layout + grid columns */
  .shop-layout{grid-template-columns:1fr;}
  .filters{display:none;}
  .mobile-filter-btn{display:flex;}
  .shop-section .prod-grid{grid-template-columns:repeat(2,1fr);}
  .page-banner{padding:30px 0 24px;}
  .page-banner h1{font-size:28px;}
  .page-banner p{font-size:13px;margin-top:6px;}
  .results-bar{margin-bottom:16px;}
  .stats{display:none;}
}
@media(max-width:480px){
  .section-head h2{font-size:22px;}
  .eyebrow-dark{font-size:10px;margin-bottom:6px;}
  .cat-card{padding:12px 10px;}
  .cat-card .cat-label .t{font-size:12px;}
  .cat-card .cat-label .s{font-size:8px;margin-top:2px;}
  .subcat-grid{grid-template-columns:repeat(auto-fill,minmax(90px,1fr));gap:8px;}
  .shop-section .prod-grid{gap:8px;}
  .shop-section .prod-body{padding:10px 10px 12px;}
  .shop-section .prod-body h3{font-size:12px;}
  .shop-section .price{font-size:14px;}
  .shop-section .prod-cat{font-size:8px;margin-bottom:4px;}
  .shop-section .prod-grid{grid-template-columns:repeat(2,1fr);}
  .page-banner{padding:24px 0 20px;}
  .page-banner h1{font-size:24px;}
}