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

body{
  font-family:'Poppins',sans-serif;
  background:#f6efe6;
  color:#111;
}

.container{
  width:94%;
  max-width:1200px;
  margin:0 auto;
}

/* HEADER */
.header{
  background:#8b000b;
  color:#fff;
  padding:16px 0;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo h1{
  font-family:'Oswald',sans-serif;
  font-size:38px;
  letter-spacing:1px;
}

.logo span{
  color:#8bc34a;
  font-weight:700;
}

nav{
  display:flex;
  gap:28px;
}

nav a{
  color:#fff;
  text-decoration:none;
  font-weight:700;
}

.phone-btn{
  color:#fff;
  text-decoration:none;
  border:1px solid #fff;
  padding:12px 18px;
  border-radius:8px;
  font-weight:700;
}

/* HERO */
.hero{
  position:relative;
  min-height:520px;
  color:#fff;
  background:
    linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.70) 38%, rgba(0,0,0,.20) 70%),
    url('assets/img/cigkofte-banner.png') center right/cover no-repeat;
  display:flex;
  align-items:center;
}

.hero-content{
  display:block;
}

.hero-left{
  max-width:620px;
}

.hero-left h3{
  font-family:'Oswald',sans-serif;
  font-size:42px;
}

.hero-left h2{
  font-family:'Oswald',sans-serif;
  color:#e11924;
  font-size:76px;
  line-height:1;
  margin:12px 0;
}

.hero-left p{
  font-size:32px;
  font-style:italic;
  margin-bottom:34px;
}

.features{
  display:flex;
  gap:26px;
}

.feature{
  text-align:center;
  font-weight:800;
  text-transform:uppercase;
  font-size:28px;
}

.feature span{
  display:block;
  color:#fff;
  font-size:15px;
  margin-top:8px;
}

/* MENU */
.menu{
  padding:30px 0 42px;
  background:#f6efe6;
}

.section-title{
  text-align:center;
  color:#8b000b;
  font-family:'Oswald',sans-serif;
  font-size:46px;
  margin-bottom:22px;
}

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

.menu-item{
  position:relative;
  background:#fffaf3;
  border:1px solid #e3d6c7;
  border-radius:8px;
  min-height:118px;
  padding:12px 12px 12px 54px;
  display:grid;
  grid-template-columns:120px 1fr;
  gap:14px;
  align-items:center;
  box-shadow:0 3px 10px rgba(0,0,0,.05);
}

.menu-item::before{
  content:attr(data-number);
  position:absolute;
  top:12px;
  left:14px;
  width:30px;
  height:30px;
  border-radius:50%;
  background:#a00012;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:14px;
}

.menu-item img{
  width:120px;
  height:85px;
  object-fit:cover;
  border-radius:6px;
}

.menu-item h3{
  font-size:18px;
  font-weight:900;
  margin-bottom:4px;
}

.menu-item p{
  font-size:13px;
  color:#333;
  line-height:1.35;
  margin-bottom:6px;
}

.menu-item strong{
  color:#9b000e;
  font-size:22px;
  font-weight:900;
}

/* ORDER */
.order-section{
  background:#8b000b;
  color:#fff;
  padding:34px 0;
}

.order-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.order-box{
  padding:24px;
  border-radius:12px;
}

.order-box h3{
  font-family:'Oswald',sans-serif;
  font-size:30px;
}

.order-box p{
  margin:10px 0;
  line-height:1.6;
}

.order-box h2{
  font-size:34px;
}

.order-box a{
  display:inline-block;
  background:#35a936;
  color:#fff;
  text-decoration:none;
  padding:12px 20px;
  border-radius:8px;
  font-weight:900;
  margin-top:8px;
}

/* FOOTER */
.footer{
  background:#111;
  color:#fff;
  padding:28px 0 12px;
}

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

.footer h3{
  color:#fff;
  margin-bottom:8px;
}

.footer p{
  color:#ddd;
  font-size:14px;
  line-height:1.6;
}

.copyright{
  text-align:center;
  color:#ccc;
  font-size:13px;
  margin-top:24px;
  border-top:1px solid #333;
  padding-top:12px;
}

/* TABLET */
@media(max-width:1000px){
  .menu-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */
@media(max-width:700px){
  .nav{
    flex-direction:column;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero{
    min-height:500px;
    background:
      linear-gradient(90deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.76) 55%, rgba(0,0,0,.35) 100%),
      url('assets/img/cigkofte-banner.png') center right/cover no-repeat;
  }

  .hero-left h2{
    font-size:52px;
  }

  .hero-left h3{
    font-size:32px;
  }

  .hero-left p{
    font-size:24px;
  }

  .features{
    justify-content:center;
    flex-wrap:wrap;
  }

  .menu-grid{
    grid-template-columns:1fr;
  }

  .menu-item{
    grid-template-columns:100px 1fr;
    padding-left:48px;
  }

  .menu-item img{
    width:100px;
    height:75px;
  }

  .order-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
}

/* ARTICLE PAGE */

.article-topline{
  background:#9b000e;
  color:#fff;
  font-size:13px;
  padding:8px 0;
}

.topline-inner{
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.article-header{
  background:#fff;
  padding:18px 0;
  box-shadow:0 2px 12px rgba(0,0,0,.08);
}

.article-nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:25px;
}

.article-logo h1{
  color:#9b000e;
  font-family:'Oswald',sans-serif;
  line-height:.9;
  font-size:30px;
}

.article-nav nav{
  display:flex;
  gap:30px;
}

.article-nav nav a{
  color:#111;
  text-decoration:none;
  font-weight:800;
}

.menu-button{
  background:#9b000e;
  color:#fff;
  padding:14px 22px;
  border-radius:8px;
  text-decoration:none;
  font-weight:900;
}

.article-hero{
  height:360px;
  background-size:cover;
  background-position:center;
  color:#fff;
  display:flex;
  align-items:center;
}

.breadcrumb{
  font-size:14px;
  margin-bottom:18px;
}

.article-badge{
  background:#b40014;
  padding:7px 14px;
  border-radius:6px;
  font-size:13px;
  font-weight:900;
}

.article-hero h1{
  max-width:750px;
  font-size:44px;
  margin:18px 0 8px;
  font-family:'Oswald',sans-serif;
}

.article-meta{
  font-size:15px;
  margin-top:10px;
  color:#fff;
  display:inline-block;
  background:rgba(0,0,0,.35);
  padding:8px 12px;
  border-radius:8px;
}

.article-layout{
  width:94%;
  max-width:1180px;
  display:grid;
  grid-template-columns:minmax(0, 1fr) 320px;
  gap:24px;
  margin:-60px auto 0;
  position:relative;
  z-index:3;
  align-items:start;
}

.article-card{
  background:#fff;
  border-radius:14px;
  padding:32px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.article-content{
  font-size:17px;
  line-height:1.9;
  color:#333;
}

.article-content h2{
  color:#111;
  margin:26px 0 10px;
  font-size:24px;
}

.article-content p{
  margin-bottom:16px;
}

.article-sidebar{
  display:grid;
  gap:18px;
  align-content:start;
}

.side-card{
  background:#fff;
  border-radius:14px;
  padding:24px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.side-card h3{
  margin-bottom:18px;
  color:#111;
}

.recent-post{
  display:grid;
  grid-template-columns:80px 1fr;
  gap:12px;
  margin-bottom:16px;
  text-decoration:none;
  color:#111;
}

.recent-post:last-child{
  margin-bottom:0;
}

.recent-post img{
  width:80px;
  height:65px;
  object-fit:cover;
  border-radius:8px;
}

.recent-post small{
  display:block;
  color:#777;
  margin-top:5px;
}

.cta-card{
  background:#a00012;
  color:#fff;
  border-radius:14px;
  padding:28px;
  box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.cta-card h3{
  font-size:24px;
  margin-bottom:12px;
}

.cta-card a{
  display:inline-block;
  background:#fff;
  color:#9b000e;
  padding:12px 18px;
  border-radius:8px;
  margin-top:15px;
  text-decoration:none;
  font-weight:900;
}

.article-footer{
  background:#9b000e;
  color:#fff;
  padding:38px 0 14px;
  margin-top:40px;
}

.article-footer h3{
  margin-bottom:10px;
}

.article-footer p{
  color:#f3dada;
  line-height:1.7;
}

/* ARTICLE TABLET */
@media(max-width:1100px){
  .article-layout{
    max-width:1000px;
    grid-template-columns:minmax(0, 1fr) 280px;
    gap:18px;
  }
}

/* ARTICLE MOBILE */
@media(max-width:760px){
  .topline-inner{
    flex-direction:column;
    text-align:center;
  }

  .article-nav{
    flex-direction:column;
  }

  .article-nav nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
  }

  .article-hero{
    height:auto;
    min-height:340px;
    padding:45px 0;
  }

  .article-hero h1{
    font-size:34px;
  }

  .article-layout{
    grid-template-columns:1fr;
    margin:20px auto 0;
  }

  .article-card{
    padding:24px;
  }
}

.article-tags{
  margin-top:35px;
  margin-bottom:35px;
  padding-top:25px;
  border-top:1px solid #eee;
}

.article-tags h3{
  margin-bottom:15px;
  color:#111;
  font-size:20px;
}

.article-tag{
  display:inline-block;
  padding:10px 16px;
  margin:0 8px 8px 0;
  background:#f2f2f2;
  border-radius:30px;
  text-decoration:none;
  color:#333;
  font-size:14px;
  font-weight:700;
  transition:.2s;
}

.article-tag:hover{
  background:#9b000e;
  color:#fff;
}

.article-info-box{
  margin-top:30px;
  padding:25px;
  background:#f8f8f8;
  border-radius:12px;
  border-left:5px solid #9b000e;
  line-height:1.7;
}

.article-hero .container{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
}

@media(max-width:760px){

  .container{
    width:95%;
  }

  .nav{
    flex-direction:column;
    gap:15px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
  }

  .hero{
    min-height:420px;
    padding:40px 0;
  }

  .hero-left{
    max-width:100%;
    text-align:center;
  }

  .hero-left h2{
    font-size:48px;
  }

  .hero-left h3{
    font-size:28px;
  }

  .hero-left p{
    font-size:20px;
  }

  .features{
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
  }

  .menu-grid{
    grid-template-columns:1fr;
  }

  .menu-item{
    grid-template-columns:90px 1fr;
    min-height:auto;
  }

  .menu-item img{
    width:90px;
    height:70px;
  }

  .order-grid{
    grid-template-columns:1fr;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  /* ARTICLE */

  .article-layout{
    grid-template-columns:1fr !important;
    margin:20px auto 0 !important;
  }

  .article-sidebar{
    margin-top:20px;
  }

  .article-hero{
    min-height:320px !important;
    padding:40px 0 50px !important;
  }

  .article-hero h1{
    font-size:32px !important;
  }

  .article-nav{
    flex-direction:column;
    gap:15px;
  }

  .article-nav nav{
    flex-wrap:wrap;
    justify-content:center;
  }

  .article-card{
    padding:20px;
  }
}

.tag-post-list{
  display:grid;
  gap:22px;
  margin-top:30px;
}

.tag-post-card{
  display:grid;
  grid-template-columns:180px 1fr;
  gap:22px;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  color:#111;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.tag-post-card img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.tag-post-card div{
  padding:22px;
}

.tag-post-card h2{
  margin:0 0 10px;
  color:#8b000b;
}

.tag-post-card p{
  color:#555;
  line-height:1.6;
}

.tag-post-card span{
  display:inline-block;
  margin-top:12px;
  font-weight:700;
  color:#8b000b;
}

@media(max-width:700px){
  .tag-post-card{
    grid-template-columns:1fr;
  }

  .tag-post-card img{
    height:220px;
  }
}

.article-layout{
  padding-top:120px;
}

#tagsBox{
    max-height:220px;
    overflow:hidden;
    position:relative;
}

#tagsBox.expanded{
    max-height:none;
}

.show-tags-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 18px;
    background:#8b000b;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
    font-weight:700;
}

#chatWidget{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:9999;
  font-family:Poppins,Arial,sans-serif;
}

#chatButton{
  background:#8b000b;
  color:#fff;
  padding:14px 18px;
  border-radius:40px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 8px 25px rgba(0,0,0,.25);
}

#chatBox{
  display:none;
  width:330px;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,.25);
  margin-bottom:12px;
}

.chat-header{
  background:#8b000b;
  color:#fff;
  padding:15px;
  display:flex;
  justify-content:space-between;
}

#chatStart,
#chatInputArea{
  padding:14px;
  display:grid;
  gap:10px;
}

#chatStart input,
#chatInputArea input{
  padding:12px;
  border:1px solid #ddd;
  border-radius:8px;
}

#chatStart button,
#chatInputArea button{
  background:#35a936;
  color:#fff;
  border:0;
  padding:12px;
  border-radius:8px;
  font-weight:800;
}

#chatMessages{
  height:260px;
  overflow-y:auto;
  padding:14px;
  background:#f7f7f7;
}

.msg{
  margin-bottom:10px;
  padding:10px;
  border-radius:10px;
  max-width:85%;
}

.msg.user{
  background:#dff7df;
  margin-left:auto;
}

.msg.admin{
  background:#fff;
  border:1px solid #ddd;
}

.hero{
    position:relative;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
}