   /* Dark Theme Search Box */
.ajax-search-box {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 20px auto;
    padding: 0 10px; /* small side padding for mobile */
    box-sizing: border-box;
}

.ajax-search-box input {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #444;
    border-radius: 25px;
    outline: none;
    background: #1e1e1e;
    color: #fff;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
}

.ajax-search-box input::placeholder {
    color: #aaa;
}

.ajax-search-box input:focus {
    border-color: #dfa600;
    box-shadow: 0 0 8px rgba(223, 166, 0, 0.5);
}

/* 🔍 Search Results Dark Theme */
#ajax-search-results {
    display: none;
    position: absolute;
    top: calc(100% + 5px);
    left: 10px;
    right: 10px;
    background: #1e1e1e; /* same as site background */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    z-index: 1000;
    border: 1px solid #333;
}

/* Each Result Item */
#ajax-search-results a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: #f1f1f1; /* light text */
    text-decoration: none;
    border-bottom: 1px solid #2a2a2a;
    transition: background 0.2s ease, color 0.2s ease;
}

/* Hover Effect */
#ajax-search-results a:hover {
    background: #dfa600;
    color: #000;
}

/* No Result Message */
#ajax-search-results .no-result {
    padding: 10px 14px;
    font-size: 13px;
    color: #bbb;
    background: #1e1e1e;
}

/* Scrollable if too many results */
#ajax-search-results {
    max-height: 300px;
    overflow-y: auto;
}

/* Custom Scrollbar (Dark) */
#ajax-search-results::-webkit-scrollbar {
    width: 6px;
}
#ajax-search-results::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 4px;
}
#ajax-search-results::-webkit-scrollbar-thumb:hover {
    background: #dfa600;
}

/* ✅ Mobile Fix */
@media (max-width: 480px) {
    .ajax-search-box {
        max-width: 100%;
        padding: 0 8px;
    }
}

.site-footer{
        text-align: center;
    background: #1c1c1c;
    border-top: solid 2px #333;
    margin-top: 20px;
}

/* Header Styling */
    body {
      margin: 0;
      background-color: #1e1e1e;
      color: #F68012;
      font-family: 'Segoe UI', sans-serif;
    }
    .site-header {
      background-color: #1e1e1e;
      border-bottom: 1px solid #333;
      position: sticky;
      top: 0;
      z-index: 999;
    }
    .header-container {
      max-width: 1200px;
      margin: auto;
      padding: 4px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      max-height: 70px;
      max-width: 230px;
      padding: 10px;
    }
    .main-nav ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: flex;
      gap: 24px;
    }

    .main-nav ul li a {
      color: #a7aaad;
      text-decoration: none;
      font-weight: 500;
      padding: 6px 10px;
      transition: all 0.3s;
    }

    .main-nav ul li a:hover {
      background-color: #333;
      border-radius: 5px;
      transform: translateY(-6px);
  border-color: #F68012;
  box-shadow: 0 8px 25px rgba(223, 166, 0, 0.4);
  color: #F68012;
    }

    /* ðŸŸ¨ Hamburger Style */
    .hamburger {
      width: 28px;
      height: 24px;
      position: relative;
      display: none;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }

    .hamburger span {
      height: 3px;
      background: #F68012;
      border-radius: 2px;
      transition: 0.4s;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translateY(8px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translateY(-8px);
    }

    /* ðŸŸ¨ Mobile Nav */
    .mobile-nav {
      display: none;
      flex-direction: column;
    background-color: #161616;
    border-top: 1px solid #333;
    padding: 15px 20px;
    border: solid 1px #333;
    border-radius: 10px;
    max-width: 80%;
    margin: 10px auto;
    transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(223, 166, 0, 0.4);
    }
    

    .mobile-nav ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .mobile-nav ul li {
      margin-bottom: 12px;
          text-align: center;
    }

    .mobile-nav ul li a {
      color: #F68012;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
    }

    /* ðŸŸ¨ Responsive */
    @media (max-width: 768px) {
      .main-nav {
        display: none;
      }
      .hamburger {
        display: flex;
      }
      .mobile-nav.show {
        display: flex;
      }
  .logo img {
    max-height: 55px;
    max-width: 180px;
  }
  .post-card h4 {
  font-size: 16px;
}
.post-content {
  padding: 5px!important;
}
    .site-main {
  padding: 10px!important;
}    
    }

/* Index page */
.load-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}

#load-more-btn {
      background: linear-gradient(135deg, #af5400, rgb(135 56 0));
  color: #fff;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

#load-more-btn:hover {
  background: linear-gradient(135deg, #0041d0, #00a2d4);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

#load-more-btn:active {
  transform: scale(0.96);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.new-sticker {
    display: inline-block;
    background-color: #e50914;
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    margin-left: 8px;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
}


.update-summary {
  background-color: #272626;
  padding: 20px;
  border-radius: 12px;
  font-family: 'Segoe UI', sans-serif;
  margin: 0 auto;
  max-width: 600px;
    text-align: center;
}

.update-summary strong {
  display: block;
    font-size: 16px;
    margin-bottom: 10px;
    color: #05b712;
    font-family: monospace;
}

.copy-updated-posts {
  margin-top: 20px;
}

.copy-updated-posts .btn {
  background-color: #28a745;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.copy-updated-posts .btn:hover {
  background-color: #218838;
}

#copy-feedback {
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: #141414;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  flex-wrap: wrap;
}

.tab-btn {
  background: linear-gradient(145deg, #1f1f1f, #2a2a2a);
  border: 1px solid #333;
  color: #F68012;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: inset 0 0 0 transparent;
}

.tab-btn:hover {
  background: #2a2a2a;
   transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(223, 166, 0, 0.4);
}

.tab-btn.active {
  color: rgb(5 217 21);
  border-color: #F68012;
  box-shadow: 0 0 10px #dfa60088;
}

/* Post Card Styling */
/*
.post-card {
  background-color: #232222;
  border: 1px solid #F6801266;
  border-radius: 14px;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.post-card:hover {
  transform: translateY(-6px);
  border-color: #F68012;
  box-shadow: 0 8px 25px rgba(223, 166, 0, 0.4);
}

.post-title {
  font-size: 15px;
  color: #F68012;
  margin: 0 0 10px 0;
  font-weight: bold;
    text-transform: capitalize;
}

.post-date {
  font-size: 14px;
    color: #bbb;
    text-align: right;
    position: relative;
    top: 10px;
}

.post-card-link {
  text-decoration: none !important;
  display: block;
  padding: 20px;
  color: #F68012;
}
*/
/* Single Page Styling*/
    .narrow-content {
  max-width: 1140px;
  margin: 60px auto;
  background: #2a2a2a;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255, 179, 0, 0.2);
  color: #ffb300;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.8;
  transition: all 0.3s ease-in-out;
}

.narrow-content h1 {
    border-bottom: 2px solid #8b6200;
    padding-bottom: 12px;
    text-transform: uppercase;
    color: #ffb300;
}

.narrow-content .entry {
  color: #f0f0f0;
  font-size: 1.1rem;
}

.narrow-content .entry a {
  color: #ffb300;
  text-decoration: underline;
}

.narrow-content .entry a:hover {
  color: #fff;
  background: #ffb300;
  padding: 2px 6px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .narrow-content {
    padding: 25px;
  }

  .narrow-content h1 {
    font-size: 1.0rem;
  }

  .narrow-content .entry {
    font-size: 1rem;
  }
}
/* Single Post Styling*/
body {
  background-color: #1e1e1e;
  color: #ffb300;
  font-family: 'Segoe UI', sans-serif;
}
.site-main {
  max-width: 1140px;
  margin: 50px auto;
  padding: 20px;
}
.top-card {
  background: linear-gradient(145deg, #232323, #1a1a1a);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(255, 179, 0, 0.15);
  margin-bottom: 40px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.top-card .title-area h1 {
font-size: 20px;
    font-weight: 700;
    color: #d79804;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    bottom: 20px;
}
.top-card .image-area img {
  border-radius: 12px;
  max-width: 100%;
  transition: transform 0.4s ease;
}
.top-card .image-area img:hover {
  transform: scale(1.03);
}
.last-modified {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 13px;
  color: #999;
}
.post-content {
  background-color: #262626;
  padding: 30px;
  border-radius: 14px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.3);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 60px;
  margin-top: 15px;
}
.post-content a {
  color: #ffb300;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s;
}
.post-content a:hover {
  color: #fff;
}
.related-products {
  margin-top: 40px;
}
.related-products h3 {
  font-size: 24px;
  border-left: 5px solid #ffb300;
  padding-left: 15px;
  margin-bottom: 25px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.related-card {
  background: linear-gradient(to bottom right, #292929, #1e1e1e);
  border-radius: 12px;
  padding: 20px;
  text-decoration: none;
  color: #ffb300;
  box-shadow: 0 4px 10px rgba(255, 179, 0, 0.1);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.related-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 120px;
  height: 120px;
  background: rgba(255, 179, 0, 0.05);
  border-radius: 50%;
  transition: transform 0.3s;
}
.related-card:hover::before {
  transform: scale(1.3);
}
.related-card:hover {
  background: #2a2a2a;
  transform: translateY(-5px);
}
.related-card h4 {
    font-weight: bold;
    margin-bottom: 8px;
    position: relative;
    bottom: 20px;
}
.related-card span {
  font-size: 13px;
  color: #bbb;
}
/* Post Card Styling New */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.post-card {
  background: linear-gradient(to bottom right, #292929, #1e1e1e);
  border-radius: 12px;
  padding: 20px;
  position: relative;
  box-shadow: 0 4px 10px rgba(255, 179, 0, 0.1);
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.post-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 120px;
  height: 120px;
  background: rgba(255, 179, 0, 0.04);
  border-radius: 50%;
  transition: transform 0.3s;
}
.post-card:hover::before {
  transform: scale(1.3);
}
.post-card:hover {
  background-color: #2a2a2a;
  transform: translateY(-5px);
}
.post-card a {
  color: #F57F11;
  text-decoration: none;
  display: block;
  position: relative;
  bottom: 25px;
}
.post-card h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
  line-height: 1.4;
}
.post-card .post-date {
  font-size: 13px;
  color: #bbb;
  position: relative;
    top: 20px;
}
.new-sticker {
  background-color: #ffb300;
  color: #1e1e1e;
  font-size: 11px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 10px;
  animation: blink 1.2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
#copy-updated-btn {
    background-color: #0068b1;
    color: #cfcfcf;
    border: none;
    padding: 8px 16px;
    margin-top: 10px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}
#copy-updated-btn:hover {
  background-color: #ffcc00;
  color: #333;
}
