:root{
  --hokka-primary:#8B5E3C;
  --hokka-secondary:#D9A066;
  --hokka-light-bg:#F7F3EE;
  --hokka-dark-bg:#1F1F1F;
  --hokka-dark-soft:#2c2c2c;
  --hokka-text:#1b1b1b;
  --hokka-text-soft:#6d625a;
  --hokka-white:#ffffff;
  --hokka-border:#e7ddd2;
  --hokka-border-soft:rgba(139,94,60,.14);
  --hokka-overlay:rgba(15,13,12,.52);
  --hokka-overlay-strong:rgba(12,10,9,.72);
  --hokka-radius:22px;
  --hokka-radius-lg:32px;
  --hokka-container:1200px;
  --hokka-shadow:0 18px 60px rgba(31,31,31,.10);
  --hokka-shadow-soft:0 10px 30px rgba(31,31,31,.08);
  --hokka-transition:.30s ease;
  --hokka-heading-font:"Libre Baskerville", Georgia, serif;
  --hokka-body-font:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:var(--hokka-body-font);
  font-size:16px;
  line-height:1.6;
  color:var(--hokka-text);
  background:var(--hokka-light-bg);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

body.admin-bar .hokka-header{
  top:32px;
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  text-decoration:none;
  color:inherit;
  transition:var(--hokka-transition);
}

button,
input,
textarea,
select{
  font:inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hokka-hero-title,
.hokka-section-title,
.hokka-footer__brand h3{
  font-family:var(--hokka-heading-font);
}

.hokka-container{
  width:min(var(--hokka-container), calc(100% - 32px));
  margin:0 auto;
}

.hokka-site-wrap{
  background:transparent;
}

/* =========================
   HEADER
========================= */
.hokka-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(247,243,238,.86);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(139,94,60,.10);
  box-shadow:0 6px 24px rgba(0,0,0,.04);
}

.hokka-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  min-height:88px;
}

.hokka-brand,
.hokka-site-brand,
.hokka-logo-wrap{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}

.hokka-brand{
  min-width:0;
}

.hokka-site-brand{
  flex-direction:column;
  align-items:flex-start;
  gap:4px;
}

.hokka-site-title,
.hokka-brand-title,
.hokka-logo-text{
  margin:0;
  font-size:28px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.3px;
  color:var(--hokka-dark-bg);
}

.hokka-site-tagline,
.hokka-brand-subtitle{
  margin:0;
  font-size:13px;
  color:var(--hokka-text-soft);
}

.hokka-header nav{
  flex:1;
}

.hokka-nav-desktop{
  display:block;
}

.hokka-menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  list-style:none;
  margin:0;
  padding:0;
}

.hokka-menu li{
  margin:0;
  padding:0;
}

.hokka-menu a{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-height:42px;
  color:var(--hokka-dark-bg);
  font-weight:700;
  font-size:15px;
}

.hokka-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:6px;
  width:0;
  height:2px;
  border-radius:999px;
  background:var(--hokka-primary);
  transition:width .25s ease;
}

.hokka-menu a:hover::after,
.hokka-menu .current-menu-item > a::after,
.hokka-menu .current_page_item > a::after{
  width:100%;
}

.hokka-header__cta{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}

.hokka-header__contact,
.hokka-header-contact{
  display:flex;
  flex-direction:column;
  gap:2px;
  text-align:right;
}

.hokka-header__contact a,
.hokka-header-contact a{
  color:var(--hokka-dark-bg);
  font-size:14px;
  font-weight:600;
}

.hokka-header__contact span,
.hokka-header-contact span{
  color:var(--hokka-text-soft);
  font-size:12px;
}

.hokka-logo-link,
.hokka-logo-wrap{
  display:inline-flex;
  align-items:center;
}

.hokka-header__logo{
  width:auto !important;
  height:auto !important;
  max-width:320px !important;
  max-height:86px !important;
  display:block;
  object-fit:contain;
}

.hokka-logo-wrap img.custom-logo{
  width:auto !important;
  height:auto !important;
  max-width:320px !important;
  max-height:86px !important;
  display:block;
  object-fit:contain;
}

.hokka-mobile-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  width:48px;
  height:48px;
  padding:0;
  border:none;
  border-radius:14px;
  background:rgba(139,94,60,.08);
  color:var(--hokka-dark-bg);
  cursor:pointer;
  flex-shrink:0;
}

.hokka-mobile-toggle span{
  display:block;
  width:22px;
  height:2px;
  border-radius:999px;
  background:currentColor;
  transition:transform .25s ease, opacity .25s ease;
}

.hokka-mobile-toggle.is-active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.hokka-mobile-toggle.is-active span:nth-child(2){
  opacity:0;
}

.hokka-mobile-toggle.is-active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.hokka-mobile-menu{
  display:none;
  border-top:1px solid rgba(139,94,60,.10);
  background:rgba(247,243,238,.98);
}

.hokka-mobile-menu.is-open{
  display:block;
}

.hokka-mobile-menu .hokka-container{
  padding:14px 0 18px;
}

.hokka-mobile-menu__list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.hokka-mobile-menu__list li{
  list-style:none;
  margin:0;
  padding:0;
}

.hokka-mobile-menu__list a{
  display:flex;
  align-items:center;
  width:100%;
  min-height:48px;
  padding:12px 4px;
  font-size:18px;
  font-weight:700;
  color:var(--hokka-dark-bg);
  border-bottom:1px solid rgba(139,94,60,.08);
}

.hokka-mobile-menu__contact{
  display:grid;
  gap:10px;
  margin-top:14px;
}

.hokka-mobile-menu__contact-link{
  font-size:15px;
  font-weight:600;
  color:var(--hokka-dark-bg);
}

.hokka-mobile-menu__actions{
  margin-top:16px;
}

.hokka-mobile-menu__actions .hokka-btn{
  width:100%;
  max-width:none;
}

/* =========================
   BUTTONS
========================= */
.hokka-btn,
.hokka-btn-secondary,
.hokka-btn-primary,
.hokka-btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:14px 24px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  font-size:15px;
  line-height:1;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}

.hokka-btn,
.hokka-btn-primary{
  background:var(--hokka-primary);
  color:var(--hokka-white);
  box-shadow:0 14px 34px rgba(139,94,60,.25);
}

.hokka-btn:hover,
.hokka-btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 20px 38px rgba(139,94,60,.28);
}

.hokka-btn-secondary,
.hokka-btn-outline{
  background:rgba(255,255,255,.08);
  color:var(--hokka-white);
  border-color:rgba(255,255,255,.30);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}

.hokka-btn-secondary:hover,
.hokka-btn-outline:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.54);
}

.hokka-header .hokka-btn,
.hokka-header .hokka-btn-primary{
  min-height:48px;
  padding:12px 20px;
}

/* =========================
   HERO
========================= */
.hokka-hero{
  position:relative;
  padding:0;
  background:var(--hokka-light-bg);
}

.hokka-hero-slider{
  position:relative;
  width:100%;
  margin:0;
  border-radius:0;
  overflow:hidden;
  box-shadow:none;
  background:var(--hokka-dark-bg);
  isolation:isolate;
}

.hokka-hero-slide{
  position:relative;
  min-height:720px;
  display:none;
  align-items:center;
}

.hokka-hero-slide.is-active{
  display:flex;
  animation:hokkaFadeSlide .7s ease;
}

@keyframes hokkaFadeSlide{
  from{
    opacity:0;
    transform:scale(1.01);
  }
  to{
    opacity:1;
    transform:scale(1);
  }
}

.hokka-hero-slide-bg{
  position:absolute;
  inset:0;
  z-index:1;
}

.hokka-hero-slide-image,
.hokka-hero-slide-gradient{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.hokka-hero-slide-image{
  object-fit:cover;
  object-position:center center;
}

.hokka-hero-slide-gradient{
  background:
    linear-gradient(135deg, #241b17 0%, #4c3324 34%, #8B5E3C 68%, #D9A066 100%);
}

.hokka-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(8,8,8,.18) 0%, rgba(8,8,8,.26) 45%, rgba(8,8,8,.34) 100%);
}

.hokka-hero-overlay-soft{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,.06), transparent 40%);
  pointer-events:none;
}

.hokka-hero .hokka-container{
  position:relative;
  z-index:2;
  width:min(1320px, calc(100% - 40px));
}

.hokka-hero-layout{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  min-height:720px;
}

.hokka-hero-content{
  position:relative;
  z-index:2;
  width:100%;
  max-width:620px;
  color:var(--hokka-white);
  padding:0 0 88px 80px;
  margin:0;
  text-align:left;
}

.hokka-hero-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:38px;
  padding:8px 18px;
  margin:0 0 18px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  color:#f8ede0;
  font-size:11px;
  font-weight:800;
  letter-spacing:1.4px;
  text-transform:uppercase;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.hokka-hero-title{
  margin:0 0 16px;
  max-width:620px;
  font-size:62px;
  line-height:1.02;
  font-weight:700;
  letter-spacing:-1.3px;
  color:var(--hokka-white);
  text-wrap:balance;
  text-shadow:0 14px 36px rgba(0,0,0,.22);
}

.hokka-hero-text{
  max-width:560px;
  margin:0 0 24px;
  font-size:17px;
  line-height:1.7;
  color:rgba(255,255,255,.92);
  text-shadow:0 4px 18px rgba(0,0,0,.16);
}

.hokka-hero-buttons{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:0;
}

.hokka-hero-meta{
  display:none;
}

.hokka-hero-meta-card{
  display:none;
}

.hokka-hero-nav{
  position:absolute;
  inset:0;
  z-index:4;
  pointer-events:none;
}

.hokka-hero-arrow{
  position:absolute;
  top:50%;
  z-index:4;
  width:58px;
  height:58px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  color:var(--hokka-white);
  box-shadow:0 10px 24px rgba(0,0,0,.14);
  cursor:pointer;
  transform:translateY(-50%);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  transition:var(--hokka-transition);
  pointer-events:auto;
}

.hokka-hero-arrow:hover{
  background:rgba(255,255,255,.22);
  transform:translateY(-50%) scale(1.04);
}

.hokka-hero-arrow span{
  font-size:30px;
  line-height:1;
  font-weight:400;
}

.hokka-hero-arrow-prev{
  left:24px;
}

.hokka-hero-arrow-next{
  right:24px;
}

.hokka-hero-dots{
  position:absolute;
  left:50%;
  bottom:22px;
  z-index:4;
  display:flex;
  align-items:center;
  gap:10px;
  transform:translateX(-50%);
}

.hokka-hero-dot{
  width:12px;
  height:12px;
  padding:0;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.36);
  cursor:pointer;
  transition:var(--hokka-transition);
}

.hokka-hero-dot:hover,
.hokka-hero-dot.is-active{
  width:34px;
  border-radius:999px;
  background:var(--hokka-white);
}

/* =========================
   FRONT PAGE / SECTION
========================= */
.hokka-front-page{
  overflow:hidden;
}

.hokka-section{
  position:relative;
  padding:64px 0;
}

.hokka-page{
  padding:54px 0;
}

.hokka-section-head{
  max-width:760px;
  margin:0 auto 32px auto;
}

.hokka-section-head--center{
  text-align:center;
}

.hokka-section-kicker{
  display:inline-block;
  margin-bottom:10px;
  color:var(--hokka-primary);
  font-size:13px;
  font-weight:800;
  letter-spacing:.7px;
  text-transform:uppercase;
}

.hokka-section-title{
  margin:0 0 12px;
  font-size:42px;
  line-height:1.14;
  font-weight:700;
  letter-spacing:-.7px;
  color:var(--hokka-dark-bg);
}

.hokka-section-desc{
  margin:0;
  font-size:17px;
  line-height:1.8;
  color:var(--hokka-text-soft);
}

.hokka-section-actions{
  margin-top:24px;
}

.hokka-section-actions--center{
  display:flex;
  justify-content:center;
}

/* =========================
   CARD / GRID
========================= */
.hokka-grid{
  display:grid;
  gap:24px;
}

.hokka-grid-2{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.hokka-grid-3,
.hokka-product-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
}

.hokka-grid-4{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.hokka-card,
.hokka-product-card{
  position:relative;
  background:var(--hokka-white);
  border:1px solid var(--hokka-border);
  border-radius:var(--hokka-radius);
  padding:26px;
  box-shadow:var(--hokka-shadow-soft);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hokka-card:hover,
.hokka-product-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--hokka-shadow);
  border-color:rgba(139,94,60,.24);
}

.hokka-product-card h3{
  font-size:22px;
  line-height:1.3;
  margin:0 0 12px;
  color:var(--hokka-dark-bg);
}

.hokka-product-card p{
  margin:0 0 16px;
  color:var(--hokka-text-soft);
}

.hokka-link{
  color:var(--hokka-primary);
  font-weight:800;
}

.hokka-link:hover{
  color:#6d482e;
}

/* =========================
   FORMS
========================= */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea{
  width:100%;
  min-height:54px;
  padding:14px 16px;
  border:1px solid var(--hokka-border);
  border-radius:16px;
  background:#fff;
  color:var(--hokka-text);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
}

textarea{
  min-height:140px;
  resize:vertical;
}

input:focus,
select:focus,
textarea:focus{
  border-color:rgba(139,94,60,.45);
  box-shadow:0 0 0 4px rgba(139,94,60,.08);
}

/* =========================
   WOOCOMMERCE BASIC
========================= */
.woocommerce ul.products{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:24px;
  margin:0;
  padding:0;
}

.woocommerce ul.products li.product{
  width:100% !important;
  margin:0 !important;
  padding:24px;
  background:#fff;
  border:1px solid var(--hokka-border);
  border-radius:var(--hokka-radius);
  box-shadow:var(--hokka-shadow-soft);
}

.woocommerce ul.products li.product a img{
  border-radius:18px;
  margin-bottom:18px;
}

.woocommerce div.product{
  padding:50px 0;
}

/* =========================
   FOOTER
========================= */
.hokka-footer{
  margin-top:64px;
  padding:56px 0 20px;
  background:
    radial-gradient(circle at top left, rgba(217,160,102,.12), transparent 26%),
    var(--hokka-dark-bg);
  color:var(--hokka-white);
}

.hokka-footer__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:28px;
  padding-bottom:24px;
  margin-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.hokka-footer__grid{
  display:grid;
  grid-template-columns:1.2fr .9fr .9fr .8fr;
  gap:34px;
}

.hokka-footer__col{
  min-width:0;
}

.hokka-footer__brand{
  max-width:520px;
}

.hokka-footer__brand h3{
  margin:0 0 10px;
  font-size:28px;
  line-height:1.2;
  color:var(--hokka-white);
}

.hokka-footer__brand p{
  margin:0;
  font-size:14px;
  line-height:1.8;
  color:rgba(255,255,255,.74);
}

.hokka-footer__title{
  margin:0 0 18px;
  font-size:18px;
  line-height:1.3;
  color:var(--hokka-white);
}

.hokka-footer__actions{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

.hokka-footer__actions .hokka-btn{
  min-height:50px;
  padding:13px 22px;
}

.hokka-footer-menu{
  list-style:none;
  margin:0;
  padding:0;
}

.hokka-footer-menu li + li{
  margin-top:12px;
}

.hokka-footer-menu a{
  color:rgba(255,255,255,.88);
  font-weight:600;
}

.hokka-footer-menu a:hover{
  color:#fff2e0;
}

.hokka-footer__bottom{
  padding-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.hokka-footer__bottom p{
  margin:0;
  font-size:14px;
  color:rgba(255,255,255,.70);
}

.hokka-footer__contact{
  display:grid;
  gap:14px;
  min-width:220px;
}

.hokka-footer__contact-item{
  margin:0;
  display:flex;
  flex-direction:column;
  gap:4px;
}

.hokka-footer__contact-item strong{
  font-size:13px;
  color:rgba(255,255,255,.62);
  font-weight:700;
}

.hokka-footer__contact-item span,
.hokka-footer__contact-item a{
  color:rgba(255,255,255,.90);
  font-size:15px;
  line-height:1.7;
}

.hokka-footer__contact-item a:hover{
  color:#fff2e0;
}

.hokka-footer__hours p{
  margin:0 0 10px;
  color:rgba(255,255,255,.90);
  font-size:15px;
  line-height:1.7;
}

.hokka-footer__hours-note{
  margin-top:14px !important;
  color:rgba(255,255,255,.72) !important;
}

.hokka-footer__logo-link{
  display:inline-flex;
  align-items:center;
}

.hokka-footer__logo{
  width:auto;
  height:auto;
  max-width:220px;
  max-height:84px;
  display:block;
  object-fit:contain;
}

.hokka-footer__map{
  margin:10px 0 24px;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--hokka-shadow-soft);
}

.hokka-footer__map iframe{
  display:block;
  width:100%;
  min-height:320px;
  border:0;
}

/* =========================
   UTILITIES
========================= */
.hokka-hidden{
  display:none !important;
}

.hokka-text-center{
  text-align:center;
}

.hokka-bg-light{
  background:var(--hokka-light-bg);
}

.hokka-bg-dark{
  background:var(--hokka-dark-bg);
  color:var(--hokka-white);
}

/* =========================
   FEATURES
========================= */
.hokka-features-grid{
  align-items:stretch;
}

.hokka-feature-card{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  padding:28px;
  border-radius:24px;
}

.hokka-feature-card__top{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:12px;
}

.hokka-feature-card__icon{
  width:56px;
  height:56px;
  min-width:56px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(139,94,60,.10) 0%, rgba(217,160,102,.14) 100%);
  color:var(--hokka-primary);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.55);
}

.hokka-feature-card__icon span{
  font-size:24px;
  line-height:1;
}

.hokka-feature-card__icon .dashicons{
  font-size:24px;
  width:24px;
  height:24px;
  line-height:24px;
}

.hokka-feature-card__title{
  margin:0;
  font-size:20px;
  line-height:1.3;
  font-weight:700;
  color:var(--hokka-dark-bg);
}

.hokka-feature-card__text{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:var(--hokka-text-soft);
}

/* =========================
   ABOUT
========================= */
.hokka-about{
  display:grid;
  grid-template-columns:minmax(0, .98fr) minmax(0, 1.02fr);
  align-items:center;
  gap:42px;
}

.hokka-about__media{
  position:relative;
}

.hokka-about__image,
.hokka-about__placeholder{
  width:100%;
  min-height:600px;
  border-radius:30px;
  display:block;
  box-shadow:0 24px 70px rgba(31,31,31,.14);
}

.hokka-about__image{
  object-fit:cover;
  object-position:center center;
}

.hokka-about__placeholder{
  background:
    radial-gradient(circle at top left, rgba(217,160,102,.18), transparent 28%),
    linear-gradient(135deg, #f3ece4 0%, #eadbcc 48%, #d8bc9e 100%);
  border:1px solid var(--hokka-border);
}

.hokka-about__content{
  max-width:580px;
}

.hokka-about__content .hokka-section-title{
  margin-bottom:16px;
}

.hokka-about__content .hokka-section-desc{
  margin-bottom:28px;
}

.hokka-about__list{
  display:grid;
  gap:16px;
}

.hokka-about__item{
  padding:20px 22px;
  border-radius:20px;
  background:var(--hokka-white);
  border:1px solid var(--hokka-border);
  box-shadow:var(--hokka-shadow-soft);
}

.hokka-about__item h3{
  margin:0 0 8px;
  font-size:20px;
  line-height:1.3;
  color:var(--hokka-dark-bg);
}

.hokka-about__item p{
  margin:0;
  font-size:15px;
  line-height:1.7;
  color:var(--hokka-text-soft);
}

.hokka-about__actions{
  margin-top:24px;
}

/* =========================
   COFFEE MENU
========================= */
.hokka-coffee-menu__grid{
  display:grid;
  gap:24px;
}

.hokka-coffee-menu__grid.is-1{
  grid-template-columns:minmax(0, 420px);
  justify-content:center;
}

.hokka-coffee-menu__grid.is-2{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.hokka-coffee-menu__grid.is-3{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.hokka-coffee-menu__grid.is-4{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.hokka-coffee-card{
  position:relative;
  overflow:hidden;
  background:var(--hokka-white);
  border:1px solid var(--hokka-border);
  border-radius:24px;
  box-shadow:var(--hokka-shadow-soft);
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.hokka-coffee-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--hokka-shadow);
  border-color:rgba(139,94,60,.22);
}

.hokka-coffee-card__image-wrap{
  position:relative;
  overflow:hidden;
}

.hokka-coffee-card__image,
.hokka-coffee-card__placeholder{
  width:100%;
  height:220px;
  display:block;
}

.hokka-coffee-card__image{
  object-fit:cover;
  object-position:center center;
}

.hokka-coffee-card__placeholder{
  background:
    radial-gradient(circle at top left, rgba(217,160,102,.18), transparent 28%),
    linear-gradient(135deg, #f3ece4 0%, #eadbcc 48%, #d8bc9e 100%);
}

.hokka-coffee-card__content{
  padding:20px 20px 22px;
}

.hokka-coffee-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:10px;
}

.hokka-coffee-card__title{
  margin:0;
  font-size:22px;
  line-height:1.25;
  color:var(--hokka-dark-bg);
}

.hokka-coffee-card__price{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(139,94,60,.08);
  color:var(--hokka-primary);
  font-size:13px;
  font-weight:800;
  white-space:nowrap;
}

.hokka-coffee-card__text{
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:var(--hokka-text-soft);
}

.hokka-coffee-menu__actions{
  margin-top:28px;
}

/* =========================
   SHARED GALLERY SLIDER
   (ATMOSPHERE + LIVE STAGE)
========================= */
.hokka-atmosphere-section,
.hokka-live-stage-section{
  position:relative;
}

.hokka-slider{
  position:relative;
  width:100%;
}

.hokka-slider-window{
  overflow:hidden;
  width:100%;
}

.hokka-slider-track{
  display:flex;
  gap:24px;
  will-change:transform;
  transition:transform .55s ease;
}

.hokka-slider-item{
  flex:0 0 calc(33.333% - 16px);
  min-width:calc(33.333% - 16px);
}

.hokka-gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  background:var(--hokka-white);
  border:1px solid var(--hokka-border);
  box-shadow:var(--hokka-shadow-soft);
}

.hokka-gallery-card img{
  width:100%;
  height:360px;
  object-fit:cover;
  object-position:center center;
  display:block;
  transition:transform .4s ease;
}

.hokka-gallery-card:hover img{
  transform:scale(1.03);
}

.hokka-gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:3;
  width:54px;
  height:54px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  color:var(--hokka-dark-bg);
  box-shadow:0 12px 28px rgba(0,0,0,.12);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease, opacity .25s ease;
}

.hokka-gallery-arrow:hover{
  transform:translateY(-50%) scale(1.05);
  box-shadow:0 16px 34px rgba(0,0,0,.16);
}

.hokka-gallery-arrow span{
  font-size:28px;
  line-height:1;
  font-weight:400;
}

.hokka-gallery-arrow:disabled{
  opacity:.45;
  cursor:not-allowed;
}

.hokka-gallery-arrow-prev{
  left:-18px;
}

.hokka-gallery-arrow-next{
  right:-18px;
}

.hokka-gallery-dots{
  display:none;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:14px;
}

.hokka-gallery-dot{
  width:26px;
  height:6px;
  padding:0;
  border:none;
  border-radius:999px;
  background:rgba(139,94,60,.18);
  cursor:pointer;
  transition:background .25s ease, transform .25s ease, width .25s ease;
}

.hokka-gallery-dot.is-active{
  width:38px;
  background:var(--hokka-primary);
}

/* =========================
   LIVE STAGE
========================= */
.hokka-live-stage-section .hokka-section-head{
  max-width:760px;
  margin-bottom:28px;
}

.hokka-live-stage-section .hokka-section-actions{
  margin-top:30px;
  margin-bottom:42px;
}

/* =========================
   ATMOSPHERE
========================= */
.hokka-atmosphere-section .hokka-section-head{
  max-width:760px;
  margin-bottom:28px;
}

/* =========================
   BARISTA
========================= */
.hokka-barista{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(0, .92fr);
  align-items:center;
  gap:34px;
}

.hokka-barista__content{
  max-width:620px;
}

.hokka-barista__content .hokka-section-title{
  margin-bottom:14px;
}

.hokka-barista__content .hokka-section-desc{
  margin-bottom:20px;
}

.hokka-barista__media{
  display:flex;
  justify-content:flex-end;
}

.hokka-barista__image,
.hokka-barista__placeholder{
  width:100%;
  max-width:500px;
  height:500px;
  border-radius:28px;
  display:block;
  object-fit:cover;
  object-position:center center;
  box-shadow:0 20px 50px rgba(31,31,31,.12);
}

.hokka-barista__placeholder{
  background:
    radial-gradient(circle at top left, rgba(217,160,102,.18), transparent 28%),
    linear-gradient(135deg, #f3ece4 0%, #eadbcc 48%, #d8bc9e 100%);
  border:1px solid var(--hokka-border);
}

.hokka-barista-section .hokka-barista{
  padding-top:8px;
}

/* =========================
   EVENTS
========================= */
.hokka-events-section .hokka-section-head{
  margin-bottom:28px;
}

.hokka-events-grid{
  align-items:stretch;
}

.hokka-event-card{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  min-height:250px;
  padding:24px;
}

.hokka-event-card__meta{
  display:inline-flex;
  align-self:flex-start;
  margin-bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(139,94,60,.08);
  color:var(--hokka-primary);
  font-size:13px;
  font-weight:800;
}

.hokka-event-card__title{
  margin:0 0 10px;
  font-size:24px;
  line-height:1.24;
  color:var(--hokka-dark-bg);
}

.hokka-event-card__text{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:var(--hokka-text-soft);
}

.hokka-events-section .hokka-section-actions{
  margin-top:28px;
  margin-bottom:42px;
}

/* =========================
   REVIEWS
========================= */
.hokka-review-card,
.hokka-reviews .hokka-card{
  min-height:100%;
}

/* =========================
   INSTAGRAM
========================= */
.hokka-instagram-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
}

.hokka-instagram-card{
  position:relative;
  overflow:hidden;
  border-radius:22px;
  background:var(--hokka-white);
  border:1px solid var(--hokka-border);
  box-shadow:var(--hokka-shadow-soft);
}

.hokka-instagram-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  object-position:center center;
  display:block;
  transition:transform .35s ease;
}

.hokka-instagram-card:hover img{
  transform:scale(1.04);
}

/* =========================
   MENU PAGE
========================= */
.hokka-menu-page-hero{
  padding-top:36px;
  padding-bottom:26px;
}

.hokka-menu-page-nav{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-top:8px;
}

.hokka-menu-page-nav .hokka-btn{
  min-height:46px;
  padding:12px 18px;
}

.hokka-menu-page-section + .hokka-menu-page-section{
  padding-top:0;
}

/* =========================
   ATMOSPHERE PAGE
========================= */
.hokka-atmosphere-page-hero,
.hokka-live-stage-page-hero{
  padding-top:36px;
  padding-bottom:24px;
}

.hokka-atmosphere-page-grid,
.hokka-live-stage-page-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:20px;
}

.hokka-atmosphere-page-card,
.hokka-live-stage-page-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  background:var(--hokka-white);
  border:1px solid var(--hokka-border);
  box-shadow:var(--hokka-shadow-soft);
}

.hokka-atmosphere-page-card img,
.hokka-live-stage-page-card img{
  width:100%;
  height:320px;
  object-fit:cover;
  object-position:center center;
  display:block;
  transition:transform .4s ease;
}

.hokka-atmosphere-page-card:hover img,
.hokka-live-stage-page-card:hover img{
  transform:scale(1.03);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1180px){
  .hokka-coffee-menu__grid.is-4{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px){
  .hokka-header__inner{
    gap:18px;
    min-height:84px;
  }

  .hokka-menu{
    gap:16px;
  }

  .hokka-hero-slide,
  .hokka-hero-layout{
    min-height:650px;
  }

  .hokka-hero-content{
    max-width:560px;
    padding:0 0 84px 54px;
  }

  .hokka-hero-title{
    font-size:52px;
  }

  .hokka-hero-text{
    font-size:16px;
    max-width:520px;
  }

  .hokka-grid-3,
  .hokka-product-grid,
  .woocommerce ul.products{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .hokka-about{
    grid-template-columns:1fr;
    gap:28px;
  }

  .hokka-about__content{
    max-width:100%;
  }

  .hokka-about__image,
  .hokka-about__placeholder{
    min-height:460px;
  }

  .hokka-slider-item{
    flex:0 0 calc(50% - 12px);
    min-width:calc(50% - 12px);
  }

  .hokka-gallery-card img{
    height:330px;
  }

  .hokka-gallery-arrow-prev{
    left:-10px;
  }

  .hokka-gallery-arrow-next{
    right:-10px;
  }

  .hokka-barista{
    grid-template-columns:1fr;
    gap:30px;
  }

  .hokka-barista__media{
    justify-content:flex-start;
  }

  .hokka-barista__image,
  .hokka-barista__placeholder{
    max-width:100%;
    height:400px;
  }

  .hokka-instagram-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .hokka-atmosphere-page-grid,
  .hokka-live-stage-page-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .hokka-footer__grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 991px){
  .hokka-coffee-menu__grid.is-3,
  .hokka-coffee-menu__grid.is-4{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 782px){
  body.admin-bar .hokka-header{
    top:46px;
  }

  .hokka-header{
    position:relative;
    top:auto;
  }

  .hokka-header__inner{
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    padding:10px 0;
    min-height:auto;
    gap:12px;
  }

  .hokka-mobile-toggle{
    display:inline-flex;
  }

  .hokka-nav-desktop,
  .hokka-header__cta{
    display:none;
  }

  .hokka-header nav{
    width:auto;
  }

  .hokka-header__contact,
  .hokka-header-contact{
    display:none;
  }

  .hokka-header__logo,
  .hokka-logo-wrap img.custom-logo{
    max-width:210px !important;
    max-height:74px !important;
  }

  .hokka-hero-slide,
  .hokka-hero-layout{
    min-height:660px;
  }

  .hokka-hero .hokka-container{
    width:min(100%, calc(100% - 20px));
  }

  .hokka-hero-overlay{
    background:
      linear-gradient(180deg, rgba(10,9,8,.20) 0%, rgba(10,9,8,.28) 28%, rgba(10,9,8,.52) 68%, rgba(10,9,8,.76) 100%);
  }

  .hokka-hero-content{
    max-width:100%;
    padding:0 0 86px;
    text-align:center;
    margin:0 auto;
  }

  .hokka-hero-badge{
    margin:0 auto 12px;
    font-size:10px;
    min-height:34px;
    padding:7px 14px;
  }

  .hokka-hero-title{
    font-size:30px;
    line-height:1.08;
    letter-spacing:-.6px;
    max-width:92%;
    margin:0 auto 10px;
  }

  .hokka-hero-text{
    font-size:13px;
    line-height:1.55;
    margin:0 auto 16px;
    max-width:88%;
  }

  .hokka-hero-buttons{
    gap:10px;
    justify-content:center;
  }

  .hokka-btn,
  .hokka-btn-secondary,
  .hokka-btn-primary,
  .hokka-btn-outline{
    width:100%;
    max-width:320px;
    min-height:48px;
    padding:12px 18px;
  }

  .hokka-hero-buttons .hokka-btn,
  .hokka-hero-buttons .hokka-btn-outline,
  .hokka-hero-buttons .hokka-btn-secondary{
    max-width:none;
    width:100%;
  }

  .hokka-hero-arrow{
    width:42px;
    height:42px;
    top:auto;
    bottom:20px;
    transform:none;
  }

  .hokka-hero-arrow:hover{
    transform:scale(1.04);
  }

  .hokka-hero-arrow span{
    font-size:22px;
  }

  .hokka-hero-arrow-prev{
    left:12px;
  }

  .hokka-hero-arrow-next{
    right:12px;
  }

  .hokka-hero-dots{
    bottom:20px;
  }

  .hokka-section{
    padding:52px 0;
  }

  .hokka-page{
    padding:42px 0;
  }

  .hokka-section-head{
    margin-bottom:24px;
  }

  .hokka-section-head,
  .hokka-section-head--center,
  .hokka-about__content .hokka-section-head,
  .hokka-barista__content .hokka-section-head{
    text-align:center !important;
  }

  .hokka-about__content,
  .hokka-barista__content{
    max-width:100%;
  }

  .hokka-about__content .hokka-section-kicker,
  .hokka-barista__content .hokka-section-kicker{
    display:block;
    text-align:center;
  }

  .hokka-section-title{
    font-size:34px;
  }

  .hokka-grid-2,
  .hokka-grid-3,
  .hokka-product-grid,
  .woocommerce ul.products{
    grid-template-columns:1fr;
  }

  .hokka-about{
    gap:22px;
  }

  .hokka-about__image,
  .hokka-about__placeholder{
    min-height:340px;
    border-radius:24px;
  }

  .hokka-about__item{
    padding:16px 18px;
    border-radius:18px;
  }

  .hokka-about__item h3{
    font-size:17px;
  }

  .hokka-about__item p{
    font-size:14px;
    line-height:1.62;
  }

  .hokka-about__actions .hokka-btn{
    width:100%;
  }

  .hokka-coffee-card__image,
  .hokka-coffee-card__placeholder{
    height:200px;
  }

  .hokka-coffee-card__title{
    font-size:20px;
  }

  .hokka-footer{
    margin-top:48px;
    padding-top:44px;
  }

  .hokka-footer__top{
    flex-direction:column;
    gap:26px;
  }

  .hokka-footer__grid{
    grid-template-columns:1fr;
  }

  .hokka-footer__logo{
    max-width:190px;
    max-height:72px;
  }

  .hokka-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .hokka-footer__map{
    border-radius:18px;
  }

  .hokka-footer__map iframe{
    min-height:260px;
  }

  .hokka-slider-track{
    gap:14px;
  }

  .hokka-slider-item{
    flex:0 0 100%;
    min-width:100%;
  }

  .hokka-gallery-card{
    border-radius:22px;
  }

  .hokka-gallery-card img{
    height:300px;
  }

  .hokka-gallery-arrow{
    width:40px;
    height:40px;
    top:auto;
    bottom:56px;
    transform:none;
  }

  .hokka-gallery-arrow:hover{
    transform:scale(1.04);
  }

  .hokka-gallery-arrow span{
    font-size:22px;
  }

  .hokka-gallery-arrow-prev{
    left:8px;
  }

  .hokka-gallery-arrow-next{
    right:8px;
  }

  .hokka-gallery-dots{
    display:flex;
  }

  .hokka-live-stage-section .hokka-section-actions{
    margin-top:22px;
    margin-bottom:34px;
  }

  .hokka-events-section .hokka-section-actions{
    margin-top:22px;
    margin-bottom:34px;
  }

  .hokka-barista-section .hokka-barista{
    padding-top:4px;
  }

  .hokka-barista{
    gap:30px;
  }

  .hokka-barista__image,
  .hokka-barista__placeholder{
    height:320px;
    border-radius:22px;
  }

  .hokka-event-card{
    min-height:auto;
    max-width:420px;
    margin:0 auto;
    padding:20px;
  }

  .hokka-event-card__meta{
    margin-bottom:12px;
    font-size:12px;
    padding:7px 11px;
  }

  .hokka-event-card__title{
    font-size:22px;
    margin-bottom:8px;
  }

  .hokka-event-card__text{
    font-size:14px;
    line-height:1.65;
  }

  .hokka-card,
  .hokka-product-card{
    padding:22px;
  }

  .hokka-reviews .hokka-card,
  .hokka-review-card{
    max-width:100%;
    margin:0 auto;
    padding:16px 16px 14px;
    border-radius:18px;
  }

  .hokka-reviews .hokka-card p,
  .hokka-review-card p{
    font-size:13px;
    line-height:1.55;
  }

  .hokka-reviews .hokka-card h3,
  .hokka-review-card h3{
    font-size:17px;
  }

  .hokka-instagram-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .hokka-instagram-card{
    border-radius:18px;
  }

  .hokka-instagram-card img{
    height:160px;
  }

  .hokka-menu-page-hero{
    padding-top:18px;
    padding-bottom:16px;
  }

  .hokka-menu-page-nav{
    gap:10px;
  }

  .hokka-menu-page-nav .hokka-btn{
    width:auto;
    max-width:none;
    min-height:42px;
    padding:10px 14px;
    font-size:14px;
  }

  .hokka-atmosphere-page-hero,
  .hokka-live-stage-page-hero{
    padding-top:18px;
    padding-bottom:12px;
  }

  .hokka-atmosphere-page-grid,
  .hokka-live-stage-page-grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .hokka-atmosphere-page-card,
  .hokka-live-stage-page-card{
    border-radius:20px;
  }

  .hokka-atmosphere-page-card img,
  .hokka-live-stage-page-card img{
    height:240px;
  }
}

@media (max-width: 640px){
  .hokka-coffee-menu__grid.is-2,
  .hokka-coffee-menu__grid.is-3,
  .hokka-coffee-menu__grid.is-4{
    grid-template-columns:1fr;
  }

  .hokka-coffee-card__content{
    padding:18px 18px 20px;
  }

  .hokka-coffee-card__image,
  .hokka-coffee-card__placeholder{
    height:190px;
  }
}

@media (max-width: 576px){
  .hokka-container{
    width:min(var(--hokka-container), calc(100% - 20px));
  }

  .hokka-site-title,
  .hokka-brand-title,
  .hokka-logo-text{
    font-size:24px;
  }

  .hokka-header__logo,
  .hokka-logo-wrap img.custom-logo{
    max-width:190px !important;
    max-height:68px !important;
  }

  .hokka-hero-slide,
  .hokka-hero-layout{
    min-height:700px;
  }

  .hokka-hero-content{
    padding-bottom:82px;
  }

  .hokka-hero-title{
    font-size:27px;
  }

  .hokka-hero-text{
    font-size:12.5px;
    max-width:90%;
  }

  .hokka-section-title{
    font-size:30px;
  }

  .hokka-product-card,
  .hokka-card{
    padding:20px;
  }

  .hokka-instagram-grid{
    grid-template-columns:1fr;
  }

  .hokka-gallery-card img{
    height:280px;
  }

  .hokka-gallery-dots{
    margin-top:12px;
  }

  .hokka-gallery-dot{
    width:24px;
    height:5px;
  }

  .hokka-gallery-dot.is-active{
    width:36px;
  }

  .hokka-footer__logo{
    max-width:170px;
    max-height:66px;
  }
}
/* =========================================================
   FINAL MOBILE + SPACING + LOGO FIX
   bunu main.css dosyasının en altına ekle
========================================================= */

/* Logo alanı daha büyük görünsün */
.hokka-brand{
  min-width: 0;
}

.hokka-logo-link,
.hokka-logo-wrap{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  line-height:1;
}

.hokka-header__logo,
.hokka-logo-wrap img.custom-logo{
  width:auto !important;
  max-width:none !important;
  height:auto !important;
  max-height:none !important;
  object-fit:contain;
}

/* Desktop header logo */
@media (min-width: 783px){
  .hokka-header__inner{
    min-height:88px;
  }

  .hokka-header__logo,
  .hokka-logo-wrap img.custom-logo{
    height:72px !important;
    width:auto !important;
    max-width:320px !important;
  }
}

/* Footer logo */
.hokka-footer__logo{
  width:auto !important;
  height:auto !important;
  max-width:none !important;
  max-height:none !important;
}

@media (min-width: 783px){
  .hokka-footer__logo{
    height:76px !important;
    width:auto !important;
    max-width:320px !important;
  }
}

/* Mobil logo daha büyük görünsün ama header büyümesin */
@media (max-width: 782px){
  .hokka-header{
    position:relative;
    top:auto;
  }

  .hokka-header__inner{
    position:relative;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    min-height:74px;
    padding:10px 0;
  }

  .hokka-brand{
    flex:1;
    min-width:0;
  }

  .hokka-header__logo,
  .hokka-logo-wrap img.custom-logo{
    height:54px !important;
    width:auto !important;
    max-width:220px !important;
  }

  .hokka-mobile-toggle{
    display:inline-flex;
    width:46px;
    height:46px;
    min-width:46px;
    border:none;
    border-radius:14px;
    background:rgba(139,94,60,.10);
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
    padding:0;
    cursor:pointer;
  }

  .hokka-mobile-toggle span{
    display:block;
    width:20px;
    height:2px;
    border-radius:999px;
    background:var(--hokka-dark-bg);
    transition:.25s ease;
  }

  .hokka-mobile-toggle.is-active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  .hokka-mobile-toggle.is-active span:nth-child(2){
    opacity:0;
  }

  .hokka-mobile-toggle.is-active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  .hokka-nav-desktop,
  .hokka-header__contact,
  .hokka-header-contact,
  .hokka-header__cta .hokka-header-booking-btn{
    display:none !important;
  }

  .hokka-header__cta{
    width:auto;
    margin:0;
    padding:0;
  }

  .hokka-mobile-menu{
    background:var(--hokka-light-bg);
    border-top:1px solid rgba(139,94,60,.10);
    box-shadow:0 14px 30px rgba(0,0,0,.06);
    padding:0;
  }

  .hokka-mobile-menu .hokka-container{
    padding-top:16px;
    padding-bottom:16px;
  }

  .hokka-mobile-menu__list{
    list-style:none;
    margin:0;
    padding:0;
    display:grid;
    gap:4px;
  }

  .hokka-mobile-menu__list li{
    margin:0;
    padding:0;
    list-style:none;
  }

  .hokka-mobile-menu__list a{
    display:block;
    padding:12px 2px;
    font-size:20px;
    font-weight:700;
    color:var(--hokka-dark-bg);
    border-bottom:1px solid rgba(139,94,60,.08);
  }

  .hokka-mobile-menu__actions{
    margin-top:16px;
  }

  .hokka-mobile-menu__actions .hokka-btn{
    width:100%;
    max-width:none;
  }

  .hokka-mobile-menu__contact{
    display:grid;
    gap:10px;
    margin-top:14px;
  }

  .hokka-mobile-menu__contact-link{
    font-size:15px;
    font-weight:600;
    color:var(--hokka-text-soft);
  }
}

/* Hero mobilde daha uzun, yazılar daha küçük */
@media (max-width: 782px){
  .hokka-hero-slide,
  .hokka-hero-layout{
    min-height:700px !important;
  }

  .hokka-hero-content{
    max-width:100%;
    padding:0 8px 92px !important;
    margin:0 auto;
    text-align:center;
  }

  .hokka-hero-badge{
    font-size:10px;
    min-height:32px;
    padding:6px 14px;
    margin:0 auto 10px;
  }

  .hokka-hero-title{
    font-size:28px !important;
    line-height:1.08 !important;
    letter-spacing:-.4px !important;
    max-width:92%;
    margin:0 auto 10px;
  }

  .hokka-hero-text{
    font-size:13px !important;
    line-height:1.55 !important;
    max-width:88%;
    margin:0 auto 16px;
  }

  .hokka-hero-buttons{
    gap:10px;
  }

  .hokka-hero-buttons .hokka-btn,
  .hokka-hero-buttons .hokka-btn-primary,
  .hokka-hero-buttons .hokka-btn-outline,
  .hokka-hero-buttons .hokka-btn-secondary{
    min-height:46px;
    font-size:14px;
    max-width:none;
    width:100%;
  }

  .hokka-hero-arrow{
    width:44px;
    height:44px;
    bottom:22px;
  }

  .hokka-hero-dots{
    bottom:24px;
  }
}

@media (max-width: 576px){
  .hokka-hero-slide,
  .hokka-hero-layout{
    min-height:720px !important;
  }

  .hokka-hero-title{
    font-size:25px !important;
  }

  .hokka-hero-text{
    font-size:12px !important;
  }
}

/* Bizi Tanıyın mobilde ortaya gelsin */
@media (max-width: 782px){
  .hokka-about__content,
  .hokka-about__content .hokka-section-head,
  .hokka-about__content .hokka-section-kicker,
  .hokka-about__content .hokka-section-title,
  .hokka-about__content .hokka-section-desc,
  .hokka-about__actions{
    text-align:center !important;
  }

  .hokka-about__actions{
    display:flex;
    justify-content:center;
  }
}

/* Canlı sahne > Etkinlikler ve Etkinlikler > Barista arası boşluk */
.hokka-live-stage-section{
  padding-bottom:92px !important;
}

.hokka-events-section{
  padding-top:12px !important;
  padding-bottom:92px !important;
}

.hokka-barista-section{
  padding-top:18px !important;
}

.hokka-live-stage-section .hokka-section-actions{
  margin-top:30px !important;
  margin-bottom:0 !important;
}

.hokka-events-section .hokka-section-actions{
  margin-top:30px !important;
  margin-bottom:0 !important;
}

@media (max-width: 782px){
  .hokka-live-stage-section{
    padding-bottom:72px !important;
  }

  .hokka-events-section{
    padding-top:0 !important;
    padding-bottom:72px !important;
  }

  .hokka-barista-section{
    padding-top:6px !important;
  }
}

/* Mobil yorum kartları daha ince olsun */
@media (max-width: 782px){
  .hokka-reviews .hokka-grid,
  .hokka-reviews .hokka-grid-3{
    gap:14px !important;
  }

  .hokka-reviews .hokka-card,
  .hokka-review-card{
    max-width:none !important;
    margin:0 auto;
    padding:16px 16px 14px !important;
    border-radius:18px;
  }

  .hokka-reviews .hokka-card h3,
  .hokka-review-card h3{
    font-size:17px !important;
    line-height:1.3 !important;
    margin-bottom:8px !important;
  }

  .hokka-reviews .hokka-card p,
  .hokka-review-card p{
    font-size:13px !important;
    line-height:1.55 !important;
    margin:0 !important;
  }
}

/* Footer 4 kolon yapı */
.hokka-footer__grid{
  display:grid !important;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:34px;
  align-items:flex-start;
}

.hokka-footer__col{
  min-width:0;
}

.hokka-footer__title{
  margin:0 0 16px;
  font-size:20px;
  line-height:1.25;
  color:var(--hokka-white);
}

.hokka-footer__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.hokka-footer__hours p{
  margin:0 0 10px;
  color:rgba(255,255,255,.88);
  font-size:15px;
  line-height:1.7;
}

.hokka-footer__hours-note{
  margin-top:16px !important;
  color:rgba(255,255,255,.72) !important;
}

.hokka-footer__bottom{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:22px;
  padding-top:20px;
}

@media (max-width: 991px){
  .hokka-footer__grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 782px){
  .hokka-footer__grid{
    grid-template-columns:1fr;
    gap:26px;
  }

  .hokka-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }

  .hokka-footer__logo{
    height:58px !important;
    width:auto !important;
    max-width:240px !important;
  }
}
/* =========================
   FINAL FIXES
========================= */

/* 1) LOGO - header büyümeden logo daha büyük görünsün */
.hokka-brand{
  flex:0 0 auto;
  min-width:220px;
}

.hokka-logo-link,
.hokka-logo-wrap,
.hokka-logo-wrap .custom-logo-link{
  display:inline-flex;
  align-items:center;
  line-height:1;
}

.hokka-header__logo,
.hokka-logo-wrap img.custom-logo{
  width:auto !important;
  max-width:none !important;
  height:72px !important;
  max-height:none !important;
  object-fit:contain;
}

@media (max-width: 1100px){
  .hokka-header__logo,
  .hokka-logo-wrap img.custom-logo{
    height:64px !important;
  }
}

@media (max-width: 782px){
  .hokka-header__inner{
    min-height:unset;
    padding:10px 0;
  }

  .hokka-brand{
    min-width:0;
  }

  .hokka-header__logo,
  .hokka-logo-wrap img.custom-logo{
    height:58px !important;
    width:auto !important;
    max-width:none !important;
    max-height:none !important;
  }
}

/* 2) CANLI SAHNE > ETKİNLİKLER ve ETKİNLİKLER > BARISTA arası boşluk */
.hokka-live-stage-section{
  padding-bottom:96px !important;
}

.hokka-events-section{
  padding-top:24px !important;
  padding-bottom:96px !important;
}

.hokka-barista-section{
  padding-top:24px !important;
}

.hokka-live-stage-section .hokka-section-actions{
  margin-bottom:0 !important;
}

.hokka-events-section .hokka-section-actions{
  margin-bottom:0 !important;
}

@media (max-width: 782px){
  .hokka-live-stage-section{
    padding-bottom:72px !important;
  }

  .hokka-events-section{
    padding-top:18px !important;
    padding-bottom:72px !important;
  }

  .hokka-barista-section{
    padding-top:18px !important;
  }
}

/* 3) MOBİL HERO biraz küçülsün ama yine dolu dursun */
@media (max-width: 782px){
  .hokka-hero-slide,
  .hokka-hero-layout{
    min-height:540px !important;
  }

  .hokka-hero-content{
    padding:0 0 70px !important;
    max-width:100% !important;
  }

  .hokka-hero-title{
    font-size:29px !important;
    line-height:1.08 !important;
    margin:0 auto 10px !important;
    max-width:92% !important;
  }

  .hokka-hero-text{
    font-size:13px !important;
    line-height:1.52 !important;
    max-width:88% !important;
    margin:0 auto 14px !important;
  }

  .hokka-hero-badge{
    font-size:9px !important;
    padding:6px 12px !important;
    margin:0 auto 10px !important;
  }

  .hokka-hero-arrow{
    bottom:14px !important;
    width:40px !important;
    height:40px !important;
  }

  .hokka-hero-dots{
    bottom:14px !important;
  }
}

@media (max-width: 576px){
  .hokka-hero-slide,
  .hokka-hero-layout{
    min-height:500px !important;
  }

  .hokka-hero-title{
    font-size:27px !important;
    max-width:94% !important;
  }

  .hokka-hero-text{
    font-size:12.5px !important;
    max-width:90% !important;
  }
}

/* 4) YORUM kartları mobilde daha ince olsun */
@media (max-width: 782px){
  .hokka-reviews .hokka-grid,
  .hokka-reviews .hokka-grid-3{
    gap:14px !important;
  }

  .hokka-reviews .hokka-card,
  .hokka-review-card{
    max-width:100% !important;
    padding:16px 16px 14px !important;
    border-radius:18px !important;
  }

  .hokka-reviews .hokka-card h3,
  .hokka-review-card h3{
    font-size:16px !important;
    margin-bottom:6px !important;
  }

  .hokka-reviews .hokka-card p,
  .hokka-review-card p{
    font-size:13px !important;
    line-height:1.55 !important;
    margin:0 !important;
  }
}

/* 5) Mobilde Bizi Tanıyın başlığı ve içeriği tam ortalansın */
@media (max-width: 782px){
  .hokka-about__content,
  .hokka-about__content .hokka-section-head,
  .hokka-about__content .hokka-section-kicker,
  .hokka-about__content .hokka-section-title,
  .hokka-about__content .hokka-section-desc{
    text-align:center !important;
  }

  .hokka-about__content{
    margin:0 auto !important;
  }
}
/* =========================================================
   LAST OVERRIDE FIX
   Logo + section spacing + mobile hero
========================================================= */

/* -------------------------
   LOGO FIX
------------------------- */
.hokka-brand{
  display:flex;
  align-items:center;
  flex:0 0 auto;
  min-width:auto;
}

.hokka-logo-link,
.hokka-logo-wrap,
.hokka-logo-wrap .custom-logo-link{
  display:inline-flex !important;
  align-items:center;
  line-height:1;
  overflow:visible;
}

.hokka-header__logo,
.hokka-logo-wrap img.custom-logo{
  display:block;
  width:auto !important;
  height:92px !important;
  max-width:none !important;
  max-height:none !important;
  object-fit:contain;
  transform:scale(1.70);
  transform-origin:left center;
}

.hokka-footer__logo{
  display:block;
  width:auto !important;
  height:98px !important;
  max-width:none !important;
  max-height:none !important;
  object-fit:contain;
  transform:scale(1.70);
  transform-origin:left center;
}

@media (max-width: 1100px){
  .hokka-header__logo,
  .hokka-logo-wrap img.custom-logo{
    height:70px !important;
    transform:scale(1.35);
  }

  .hokka-footer__logo{
    height:92px !important;
    transform:scale(1.70);
  }
}

@media (max-width: 782px){
  .hokka-header__inner{
    min-height:auto !important;
    padding:12px 0 !important;
    gap:12px !important;
  }

  .hokka-header__logo,
  .hokka-logo-wrap img.custom-logo{
    height:64px !important;
    transform:scale(1.55);
    transform-origin:left center;
  }

  .hokka-footer__logo{
    height:92px !important;
    transform:scale(1.70);
    transform-origin:left center;
  }
}

/* -------------------------
   SECTION SPACING FIX
------------------------- */

/* canlı sahne ile etkinlikler arası */
.hokka-live-stage-section{
  padding-bottom:36px !important;
}

.hokka-live-stage-section .hokka-section-actions{
  margin-top:26px !important;
  margin-bottom:0 !important;
}

.hokka-live-stage-section + .hokka-events-section{
  margin-top:42px !important;
  padding-top:0 !important;
}

/* etkinlikler ile barista arası */
.hokka-events-section{
  padding-bottom:28px !important;
}

.hokka-events-section .hokka-section-actions{
  margin-top:26px !important;
  margin-bottom:0 !important;
}

.hokka-events-section + .hokka-barista-section{
  margin-top:42px !important;
  padding-top:0 !important;
}

@media (max-width: 782px){
  .hokka-live-stage-section{
    padding-bottom:24px !important;
  }

  .hokka-live-stage-section + .hokka-events-section{
    margin-top:34px !important;
  }

  .hokka-events-section{
    padding-bottom:18px !important;
  }

  .hokka-events-section + .hokka-barista-section{
    margin-top:34px !important;
  }
}

/* -------------------------
   ABOUT MOBILE CENTER FIX
------------------------- */
@media (max-width: 782px){
  .hokka-about__content,
  .hokka-about__content .hokka-section-head,
  .hokka-about__content .hokka-section-kicker,
  .hokka-about__content .hokka-section-title,
  .hokka-about__content .hokka-section-desc{
    text-align:center !important;
  }

  .hokka-about__content{
    max-width:100% !important;
    margin:0 auto !important;
  }
}

/* -------------------------
   REVIEW CARD MOBILE FIX
------------------------- */
@media (max-width: 782px){
  .hokka-reviews .hokka-grid,
  .hokka-reviews .hokka-grid-3{
    gap:14px !important;
  }

  .hokka-reviews .hokka-card,
  .hokka-review-card{
    max-width:100% !important;
    padding:16px 16px 14px !important;
    border-radius:18px !important;
    min-height:auto !important;
  }

  .hokka-reviews .hokka-card h3,
  .hokka-review-card h3{
    font-size:16px !important;
    line-height:1.3 !important;
    margin:0 0 6px !important;
  }

  .hokka-reviews .hokka-card p,
  .hokka-review-card p{
    font-size:13px !important;
    line-height:1.55 !important;
    margin:0 !important;
  }
}

/* -------------------------
   MOBILE HERO TUNE
------------------------- */
@media (max-width: 782px){
  .hokka-hero-slide,
  .hokka-hero-layout{
    min-height:560px !important;
  }

  .hokka-hero-content{
    max-width:100% !important;
    padding:0 0 64px !important;
    text-align:center !important;
  }

  .hokka-hero-badge{
    margin:0 auto 10px !important;
    font-size:9px !important;
    min-height:32px !important;
    padding:6px 12px !important;
  }

  .hokka-hero-title{
    font-size:28px !important;
    line-height:1.08 !important;
    letter-spacing:-.4px !important;
    max-width:92% !important;
    margin:0 auto 10px !important;
  }

  .hokka-hero-text{
    font-size:12.5px !important;
    line-height:1.5 !important;
    max-width:86% !important;
    margin:0 auto 14px !important;
  }

  .hokka-hero-buttons{
    gap:10px !important;
  }

  .hokka-hero-arrow{
    width:42px !important;
    height:42px !important;
    bottom:12px !important;
    top:auto !important;
    transform:none !important;
  }

  .hokka-hero-arrow-prev{
    left:12px !important;
  }

  .hokka-hero-arrow-next{
    right:12px !important;
  }

  .hokka-hero-dots{
    bottom:14px !important;
  }
}

@media (max-width: 576px){
  .hokka-hero-slide,
  .hokka-hero-layout{
    min-height:480px !important;
  }

  .hokka-hero-title{
    font-size:26px !important;
  }

  .hokka-hero-text{
    font-size:12px !important;
  }
}
/* kesin spacing fix */
.hokka-live-stage-section{
  margin-bottom:48px !important;
}

.hokka-events-section{
  margin-top:48px !important;
  margin-bottom:48px !important;
}

.hokka-barista-section{
  margin-top:48px !important;
}

.hokka-live-stage-section .hokka-section-actions{
  margin-bottom:0 !important;
}

.hokka-events-section .hokka-section-actions{
  margin-bottom:0 !important;
}

@media (max-width: 782px){
  .hokka-live-stage-section{
    margin-bottom:36px !important;
  }

  .hokka-events-section{
    margin-top:36px !important;
    margin-bottom:36px !important;
  }

  .hokka-barista-section{
    margin-top:36px !important;
  }
}
.hokka-live-stage-section + .hokka-events-section{
  margin-top:48px !important;
  padding-top:0 !important;
}

@media (max-width: 782px){
  .hokka-live-stage-section + .hokka-events-section{
    margin-top:36px !important;
  }
}
.hokka-live-stage-section .hokka-container{
  padding-bottom:24px !important;
}

.hokka-events-section .hokka-container{
  padding-top:24px !important;
}

@media (max-width: 782px){
  .hokka-live-stage-section .hokka-container{
    padding-bottom:18px !important;
  }

  .hokka-events-section .hokka-container{
    padding-top:18px !important;
  }
}
/* =========================
   LIVE STAGE / EVENTS / BARISTA REAL SPACING FIX
========================= */

.hokka-live-stage-section{
  padding-top:64px;
  padding-bottom:40px;
}

.hokka-events-section{
  padding-top:40px;
  padding-bottom:40px;
}

.hokka-barista-section{
  padding-top:40px;
  padding-bottom:64px;
}

@media (max-width: 782px){
  .hokka-live-stage-section{
    padding-top:52px;
    padding-bottom:28px;
  }

  .hokka-events-section{
    padding-top:28px;
    padding-bottom:28px;
  }

  .hokka-barista-section{
    padding-top:28px;
    padding-bottom:52px;
  }
}
.hokka-live-stage-section{
  padding-bottom:56px;
}

.hokka-events-section{
  padding-top:48px;
}

@media (max-width: 782px){
  .hokka-live-stage-section{
    padding-bottom:36px;
  }

  .hokka-events-section{
    padding-top:32px;
  }
}
/* CANLI SAHNE > ETKİNLİKLER GERÇEK BOŞLUK FIX */
.hokka-live-stage-section{
  padding-bottom: 72px !important;
}

.hokka-events-section{
  padding-top: 72px !important;
}

.hokka-live-stage-section .hokka-section-actions{
  margin-top: 32px !important;
  margin-bottom: 0 !important;
}

@media (max-width: 782px){
  .hokka-live-stage-section{
    padding-bottom: 44px !important;
  }

  .hokka-events-section{
    padding-top: 44px !important;
  }

  .hokka-live-stage-section .hokka-section-actions{
    margin-top: 24px !important;
    margin-bottom: 0 !important;
  }
}
.hokka-live-stage-spacing{
  display:block;
  height:72px;
  width:100%;
}

@media (max-width: 782px){
  .hokka-live-stage-spacing{
    height:40px;
  }
}
@media (max-width: 782px){
  .hokka-hero-slide,
  .hokka-hero-layout{
    min-height:580px !important;
  }

  .hokka-hero-content{
    padding:0 0 80px !important;
  }

  .hokka-hero-arrow{
    bottom:18px !important;
  }

  .hokka-hero-dots{
    bottom:20px !important;
  }
}