:root {
  --primary-color: #113E3C;   /* Bottle Green */
  --secondary-color: #B86B3A; /* Copper Amber */
  --neutral-color: #F9F9F7;   /* White Smoke */
  --text-color: #222;
  --light-text: #fff;
}


/* ============================================ */
/* ALCOTALK NAVBAR STYLES - COMPLETE FIXED */
/* ============================================ */

/* CSS Variables */
:root {
  --alco-primary-green: #113E3C;
  --alco-accent-copper: #B86B3A;
  --alco-text-dark: #333;
  --alco-light-bg: #fafafa;
  --alco-white: #ffffff;
}

/* Navbar Container */
.alcotalk-navbar {
  background: var(--alco-white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border-bottom: 2px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.alcotalk-nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 100px;
}

/* Logo Styles - CLEAN NO BACKGROUND */
.alcotalk-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  padding: 5px;
}

.alcotalk-logo-link:hover {
  transform: scale(1.05);
}

.alcotalk-logo-img {
  height: 110px;
  width: auto;
  border-radius: 0;
  box-shadow: none;
  object-fit: contain;
  background: transparent;
  display: block;
}

/* Desktop Navigation Links */
.alcotalk-nav-links {
  display: none;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  margin: 0 40px;
}

@media (min-width: 992px) {
  .alcotalk-nav-links {
    display: flex;
  }
}

.alcotalk-nav-link {
  color: var(--alco-text-dark);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.alcotalk-nav-link:hover {
  background: linear-gradient(135deg, var(--alco-primary-green), #164442);
  color: var(--alco-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(17, 62, 60, 0.2);
}

/* Right Side Actions */
.alcotalk-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Search Button - HIGHLY VISIBLE */
.alcotalk-search-btn {
  background: var(--alco-primary-green);
  border: 2px solid var(--alco-primary-green);
  color: var(--alco-white);
  padding: 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(17, 62, 60, 0.35);
  min-width: 50px;
  min-height: 50px;
}

.alcotalk-search-btn:hover {
  background: var(--alco-accent-copper);
  border-color: var(--alco-accent-copper);
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(184, 107, 58, 0.45);
}

.alcotalk-search-btn:active {
  transform: scale(0.98);
}

.alcotalk-search-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2.5;
}

/* Mobile Toggle Button */
.alcotalk-mobile-toggle {
  display: none;
  background: var(--alco-primary-green);
  border: 2px solid var(--alco-primary-green);
  color: var(--alco-white);
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 50px;
  min-height: 50px;
}

.alcotalk-mobile-toggle:hover {
  background: var(--alco-accent-copper);
  border-color: var(--alco-accent-copper);
  transform: scale(1.05);
}

.alcotalk-mobile-toggle:active {
  transform: scale(0.98);
}

@media (max-width: 991px) {
  .alcotalk-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.alcotalk-hamburger {
  width: 26px;
  height: 26px;
  stroke-width: 2.5;
}

/* Mobile Menu */
.alcotalk-mobile-menu {
  display: none;
  background: var(--alco-light-bg);
  padding: 0;
  border-top: 1px solid #eee;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.alcotalk-mobile-menu.active {
  display: block;
  padding: 20px 30px;
  max-height: 1000px;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alcotalk-mobile-link {
  display: block;
  color: var(--alco-text-dark);
  text-decoration: none;
  padding: 14px 20px;
  margin-bottom: 8px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  background: var(--alco-white);
  border: 1px solid #eee;
}

.alcotalk-mobile-link:hover,
.alcotalk-mobile-link:active {
  background: var(--alco-primary-green);
  color: var(--alco-white);
  transform: translateX(5px);
  border-color: var(--alco-primary-green);
}

/* Search Modal */
.alcotalk-search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 62, 60, 0.90);
  backdrop-filter: blur(10px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.alcotalk-search-modal.active {
  display: flex !important;
  opacity: 1;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.alcotalk-search-content {
  background: linear-gradient(135deg, rgba(17, 62, 60, 0.98), rgba(22, 68, 66, 0.98));
  padding: 40px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideUp 0.3s ease;
  position: relative;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Search Header */
.alcotalk-search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.alcotalk-search-header h3 {
  color: var(--alco-white);
  font-size: 26px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  margin: 0;
}

/* Close Button */
.alcotalk-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--alco-white);
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.alcotalk-close-btn:hover {
  background: var(--alco-accent-copper);
  border-color: var(--alco-accent-copper);
  transform: rotate(90deg);
}

.alcotalk-close-btn:active {
  transform: rotate(90deg) scale(0.95);
}

.alcotalk-close-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

/* Search Input */
.alcotalk-search-input-wrapper {
  position: relative;
  margin-bottom: 20px;
}

.alcotalk-search-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.alcotalk-search-input {
  width: 100%;
  padding: 16px 16px 16px 50px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--alco-white);
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.alcotalk-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.alcotalk-search-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--alco-accent-copper);
  box-shadow: 0 0 0 3px rgba(184, 107, 58, 0.2);
}

/* Search Suggestions */
.alcotalk-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.alcotalk-suggestions-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 600;
}

.alcotalk-suggestion-tag {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  color: var(--alco-white);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.alcotalk-suggestion-tag:hover {
  background: var(--alco-accent-copper);
  border-color: var(--alco-accent-copper);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 107, 58, 0.4);
}

.alcotalk-suggestion-tag:active {
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .alcotalk-nav-container {
    padding: 0 20px;
    height: 85px;
  }

  .alcotalk-logo-img {
    height: 85px;
  }

  .alcotalk-search-content {
    padding: 30px 25px;
  }

  .alcotalk-search-header h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .alcotalk-nav-container {
    padding: 0 15px;
    height: 75px;
  }

  .alcotalk-logo-img {
    height: 65px;
  }

  .alcotalk-search-btn,
  .alcotalk-mobile-toggle {
    min-width: 45px;
    min-height: 45px;
    padding: 10px;
  }

  .alcotalk-search-icon,
  .alcotalk-hamburger {
    width: 22px;
    height: 22px;
  }

  .alcotalk-search-content {
    padding: 25px 20px;
  }

  .alcotalk-search-header h3 {
    font-size: 20px;
  }
  
  .alcotalk-mobile-menu.active {
    padding: 15px 20px;
  }
}

/* Prevent body scroll when modal is open */
body.modal-open {
  overflow: hidden;
}

/*END here*/



/*Search Caorsule Hero Section*/
/* Search overlay */
#search-overlay {
  background: rgba(255,255,255,0.97);
}
#search-overlay input {
  font-size: 1.5rem;
  border: 2px solid #121212;
}

#hero-carousel img {
  height: 500px;
  object-fit: cover;
}
.carousel-caption h5 {
  font-size: 1.5rem;
  font-weight: bold;
}


/* ======================
   Feature Spotlight
   ====================== */
.feature-spotlight {
  background: #e6dfc2; /* beige background like reference */
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

/* image */
.feature-image-wrap {
  position: relative;
  z-index: 2;
}
.feature-image {
  max-height: 600px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* benefits */
.benefit-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.benefit-box {
  background: #f7f5eb;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-align: left;
}
.benefit-box h4 {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.benefit-box p {
  font-size: 0.95rem;
  margin: 0;
  color: #333;
  line-height: 1.6;
}

/* mobile layout */
@media(max-width: 991px){
  .feature-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .benefit-col {
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  .benefit-box { max-width: 320px; }
}



/* Category Archive Page */
.category-heading {
  font-family: 'Merriweather', serif;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.card h3, .card h5 {
  font-family: 'Merriweather', serif;
}
.card .btn-primary {
  background: #121212;
  border: none;
}
.card .btn-outline-primary {
  border-color: #121212;
  color: #121212;
}
.card .btn-outline-primary:hover {
  background: #121212;
  color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.9rem;
}
.breadcrumb a {
  color: #121212;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/* Breadcrumb alternative style */
.breadcrumb-alt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.breadcrumb-alt a {
  color: #222;
  text-decoration: none;
}
.breadcrumb-alt a:hover {
  text-decoration: underline;
}
.breadcrumb-alt .separator {
  color: #999;
  margin: 0 2px;
}
.breadcrumb-alt .current {
  color: #d62d20; /* accent color for current page */
  font-weight: 600;
}


/* Post title */
.post-title {
  font-family: 'Merriweather', serif;
  font-size: 2.4rem;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 1rem;
}

/* Meta */
.post-meta {
  font-size: 0.95rem;
  color: #777;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.post-meta .dot-sep {
  color: #bbb;
}

/* Featured image container */
.featured-img img {
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

/* Content text */
.single-content {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #333;
}
.single-content h2,
.single-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-family: 'Merriweather', serif;
}

/* Tags */
.post-tags {
  margin-top: 2rem;
}
.post-tags .tagcloud a {
  display: inline-block;
  margin-right: 0.6rem;
  padding: 0.3rem 0.6rem;
  font-size: 0.85rem;
  background: #f0f0f0;
  color: #555;
  border-radius: 4px;
  text-decoration: none;
}
.post-tags .tagcloud a:hover {
  background: #d62d20;
  color: #fff;
}

/* Related posts */
.related-heading {
  font-family: 'Merriweather', serif;
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
  text-align: center;
}
.related-card {
  transition: transform .2s ease, box-shadow .2s ease;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .post-title {
    font-size: 1.8rem;
  }
  .post-meta {
    flex-direction: column;
    gap: 0.3rem;
  }
}

/* Full-width featured image section */
.featured-img-wrap {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  max-height: 600px; /* you can adjust to taste */
}

.featured-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

@media (max-width: 768px) {
  .featured-img-wrap {
    max-height: 400px;
  }
}
/* ---- Fonts (add to theme header or keep here) ----
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@600;700;800&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">

/* =====================================================
   MIXOLOGY — FINAL CSS (Full Width BG + Equal Heights)
   ===================================================== */

:root {
  --mix-max: 1200px;
  --mix-pad-desktop: 80px;
  --mix-pad-tablet: 48px;
  --mix-pad-mobile: 16px;

  --mix-green: #0f2b26;  /* Dark green */
  --mix-shadow: 0 8px 24px rgba(0,0,0,.08);
  --mix-card-bg: #FFFFFF;
}

/* SECTION WRAPPER */
.mixology-section {
  position: relative;
  padding: 100px var(--mix-pad-desktop) 60px;
  background: #F5F5F5;
  overflow: hidden;
  z-index: 0;
}

/* BIG FULL WIDTH BACKGROUND WORD */
.mixology-bgword {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;  /* Moved down from -40px */
  
  font-weight: 900;
  font-size: clamp(100px, 18vw, 320px);  /* Fits inside screen */
  opacity: 0.04;
  color: #000;
  line-height: .85;
  white-space: nowrap;
  letter-spacing: -0.03em;
  text-align: center;
  
  pointer-events: none;
  user-select: none;
  z-index: 1;
  overflow: hidden;
  max-width: 100%;
}

/* GRID LAYOUT (L + R) - EQUAL HEIGHTS */
.mixology-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  max-width: var(--mix-max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  align-items: start;  /* Important for equal heights */
}

/* ============ FEATURED (LEFT SIDE) ============ */
.mix-featured {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mix-featured-link {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease;
  flex: 1;
}
.mix-featured-link:hover {
  transform: translateY(-4px);
}

.mix-featured-media {
  position: relative;
  background: #000;
  height: 100%;
}

.mix-featured-img {
  width: 100%;
  height: 100%;
  min-height: 480px;  /* Minimum height */
  object-fit: cover;
  display: block;
  border-radius: 24px;
}

.mix-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 40%, transparent 70%);
  border-radius: 24px;
}

.mix-featured-content {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0,0,0,.5);
}

.mix-featured-title {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.1;
  margin-top: 8px;
  letter-spacing: -0.01em;
}

.mix-meta {
  font-size: 0.9rem;
  opacity: 0.95;
  font-weight: 500;
}

/* ============ TRENDING (RIGHT SIDE) - EQUAL HEIGHT ============ */
.mix-trending {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;  /* Match left side height */
}

/* HEADING WITH DARK GREEN DOT */
.mix-headlink {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #000;
  margin-bottom: 8px;
}

.mix-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mix-green);  /* #0f2b26 dark green */
  flex-shrink: 0;
}

.mix-head {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0;
}

/* TRENDING ITEMS LIST - FILLS REMAINING SPACE */
.mix-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  flex: 1;  /* Takes remaining space to match left height */
}

.mix-item {
  background: var(--mix-card-bg);
  border-radius: 16px;
  box-shadow: var(--mix-shadow);
  transition: all 0.3s ease;
  overflow: hidden;
}

.mix-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.mix-item-link {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 16px;
  text-decoration: none;
  color: #000;
  align-items: center;
}

.mix-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  background: #e5e5e5;
}

.mix-thumb-img {
  width: 100%;
  height: 100px;
  object-fit: cover;
  display: block;
  border-radius: 14px;
  transition: transform 0.3s ease;
}

.mix-item:hover .mix-thumb-img {
  transform: scale(1.05);
}

.mix-item-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mix-item-title {
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.3;
  margin: 0;
  color: #111;
}

.mix-item-sub {
  font-size: 0.85rem;
  color: #666;
  font-weight: 500;
}

/* VIEW MORE BUTTON - CENTERED */
.mix-more {
  margin: 12px auto 0;  /* AUTO centers it */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: var(--mix-green);  /* #0f2b26 dark green */
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(15, 43, 38, 0.25);
  align-self: center;  /* Centers in flex container */
}

.mix-more:hover {
  background: #081815;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 43, 38, 0.35);
}

/* ============ TABLET (iPads, etc) ============ */
@media (max-width: 1000px) {
  .mixology-section {
    padding: 80px var(--mix-pad-tablet) 50px;
  }
  
  .mixology-bgword {
    top: -30px;
    font-size: clamp(100px, 20vw, 300px);
  }
  
  .mixology-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .mix-featured-img {
    min-height: 350px;
  }
  
  .mix-item-link {
    grid-template-columns: 120px 1fr;
    gap: 16px;
  }
  
  .mix-thumb-img {
    height: 90px;
  }
}

/* ============ MOBILE (Phones) ============ */
@media (max-width: 600px) {
  .mixology-section {
    padding: 60px var(--mix-pad-mobile) 40px;
  }
  
  .mixology-bgword {
    top: -20px;
    font-size: clamp(70px, 25vw, 160px);
  }
  
  .mixology-wrap {
    gap: 32px;
  }
  
  .mix-featured-img {
    min-height: 280px;
    border-radius: 18px;
  }
  
  .mix-featured-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
  
  .mix-featured-title {
    font-size: clamp(22px, 5.5vw, 32px);
  }
  
  .mix-item-link {
    grid-template-columns: 100px 1fr;
    gap: 14px;
    padding: 14px;
  }
  
  .mix-thumb-img {
    height: 75px;
    border-radius: 12px;
  }
  
  .mix-item-title {
    font-size: clamp(15px, 4vw, 18px);
  }
  
  .mix-dot {
    width: 10px;
    height: 10px;
  }
  
  .mix-head {
    font-size: 1.15rem;
  }
  
  .mix-more {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

/* ============ UTILITY FIXES ============ */
html, body {
  overflow-x: hidden !important;
}

.mixology-section + p {
  display: none !important;
}

/* Small helper class */
.small {
  font-size: 0.9em;
}

/* =====================================================
   404 ERROR PAGE - ALCOTALK PREMIUM
   Add this at the END of main.css
   ===================================================== */

/* Section Wrapper */
.error404-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f2b26 0%, #1a1a1a 50%, #0a0a0a 100%);
  padding: 80px 20px;
  overflow: hidden;
}

/* Animated Background Bubbles */
.error404-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.liquor-bubble {
  position: absolute;
  bottom: -100px;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(183, 107, 58, 0.3), rgba(183, 107, 58, 0.05));
  border-radius: 50%;
  animation: bubbleRise 12s infinite ease-in;
  opacity: 0;
}

.liquor-bubble:nth-child(1) { 
  left: 10%; 
  animation-delay: 0s; 
  width: 60px; 
  height: 60px; 
}
.liquor-bubble:nth-child(2) { 
  left: 30%; 
  animation-delay: 2s; 
  width: 40px; 
  height: 40px; 
}
.liquor-bubble:nth-child(3) { 
  left: 50%; 
  animation-delay: 4s; 
  width: 80px; 
  height: 80px; 
}
.liquor-bubble:nth-child(4) { 
  left: 70%; 
  animation-delay: 6s; 
  width: 50px; 
  height: 50px; 
}
.liquor-bubble:nth-child(5) { 
  left: 85%; 
  animation-delay: 8s; 
  width: 70px; 
  height: 70px; 
}

@keyframes bubbleRise {
  0% {
    bottom: -100px;
    opacity: 0;
    transform: translateX(0) scale(0);
  }
  10% {
    opacity: 0.6;
    transform: translateX(20px) scale(1);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    bottom: 110%;
    opacity: 0;
    transform: translateX(-30px) scale(0.5);
  }
}

/* Container */
.error404-container {
  position: relative;
  max-width: 800px;
  width: 100%;
  text-align: center;
  z-index: 10;
}

/* 404 Number with Bottle */
.error404-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.digit-4 {
  font-size: clamp(120px, 20vw, 200px);
  font-weight: 900;
  color: #B76B3A;
  text-shadow: 0 0 40px rgba(183, 107, 58, 0.4);
  line-height: 1;
  font-family: Georgia, serif;
}

.bottle-wrapper {
  width: clamp(80px, 12vw, 140px);
  height: clamp(160px, 24vw, 280px);
  animation: bottleSway 3s ease-in-out infinite;
  transform-style: preserve-3d;
}

.bottle-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 10px 30px rgba(183, 107, 58, 0.3));
}

.bottle-liquid {
  animation: liquidFill 2s ease-in-out infinite alternate;
}

@keyframes bottleSway {
  0%, 100% { 
    transform: rotate(-3deg); 
  }
  50% { 
    transform: rotate(3deg); 
  }
}

@keyframes liquidFill {
  0% { 
    opacity: 0.4; 
  }
  100% { 
    opacity: 0.8; 
  }
}

/* Title & Text */
.error404-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #F5E6D3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.error404-text {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Search Bar */
.error404-search {
  margin-bottom: 40px;
}

.error404-search form {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.error404-search-input {
  width: 100%;
  padding: 18px 60px 18px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(183, 107, 58, 0.3);
  border-radius: 50px;
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: all 0.3s ease;
}

.error404-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.error404-search-input:focus {
  border-color: #B76B3A;
  box-shadow: 0 0 0 4px rgba(183, 107, 58, 0.1);
}

.error404-search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: #B76B3A;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.error404-search-btn:hover {
  background: #9d5a30;
  transform: translateY(-50%) scale(1.05);
}

/* Action Buttons */
.error404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.error404-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: #B76B3A;
  color: #fff;
  box-shadow: 0 8px 24px rgba(183, 107, 58, 0.3);
}

.btn-primary:hover {
  background: #9d5a30;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(183, 107, 58, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #fff;
  border: 2px solid rgba(183, 107, 58, 0.3);
}

.btn-secondary:hover {
  background: rgba(183, 107, 58, 0.2);
  border-color: #B76B3A;
  transform: translateY(-2px);
}

/* Categories Section */
.error404-categories {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.error404-cat-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: #F5E6D3;
  margin-bottom: 30px;
}

.error404-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.error404-cat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(183, 107, 58, 0.2);
  border-radius: 16px;
  padding: 20px 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.error404-cat-card:hover {
  background: rgba(183, 107, 58, 0.15);
  border-color: #B76B3A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(183, 107, 58, 0.2);
}

/* Ripple Effect */
.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .error404-section {
    padding: 60px 16px;
  }

  .error404-number {
    gap: 12px;
  }

  .error404-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error404-btn {
    justify-content: center;
  }

  .error404-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .error404-cat-grid {
    grid-template-columns: 1fr;
  }
  
  .digit-4 {
    font-size: 100px;
  }
  
  .bottle-wrapper {
    width: 60px;
    height: 120px;
  }
}
/*Mixology Section End Here*/

/* =====================================================
   SPIRITS AROUND THE WORLD SECTION
   Add this at the END of main.css
   ===================================================== */

.world-spirits-section {
  position: relative;
  padding: 100px 40px 80px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f2b26 100%);
  overflow: hidden;
}

/* Background Word */
.world-spirits-bgword {
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  
  font-weight: 900;
  font-size: clamp(100px, 18vw, 320px);
  opacity: 0.04;
  color: #fff;
  line-height: .85;
  text-align: center;
  letter-spacing: -0.03em;
  
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* Container */
.world-spirits-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */
.world-spirits-header {
  text-align: center;
  margin-bottom: 60px;
}

.world-spirits-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #F5E6D3;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.title-icon {
  font-size: clamp(36px, 5vw, 52px);
  animation: rotateGlobe 6s ease-in-out infinite;
}

@keyframes rotateGlobe {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

.world-spirits-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Grid */
.world-spirits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

/* Spirit Card */
.spirit-card {
  height: 320px;
  perspective: 1000px;
  cursor: pointer;
}

.spirit-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.spirit-card:hover .spirit-card-inner {
  transform: rotateY(180deg);
}

.spirit-card-front,
.spirit-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Front Side */
.spirit-card-front {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(183, 107, 58, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.country-flag {
  font-size: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.country-name {
  font-size: 28px;
  font-weight: 800;
  color: #F5E6D3;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.spirit-count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* Back Side */
.spirit-card-back {
  background: linear-gradient(135deg, #B76B3A 0%, #9d5a30 100%);
  transform: rotateY(180deg);
  box-shadow: 0 12px 32px rgba(183, 107, 58, 0.4);
  justify-content: flex-start;
  padding-top: 40px;
}

.spirit-name {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.spirit-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.spirit-divider {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  margin: 16px auto;
}

.spirit-explore {
  margin-top: auto;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #fff;
  border-radius: 25px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.spirit-explore:hover {
  background: #fff;
  color: #B76B3A;
  transform: scale(1.05);
}

/* Bottom CTA */
.world-spirits-cta {
  text-align: center;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(183, 107, 58, 0.2);
  border-radius: 20px;
}

.cta-text {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #F5E6D3;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-button {
  display: inline-block;
  padding: 16px 40px;
  background: #B76B3A;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(183, 107, 58, 0.3);
}

.cta-button:hover {
  background: #9d5a30;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(183, 107, 58, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .world-spirits-section {
    padding: 80px 20px 60px;
  }

  .world-spirits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .spirit-card {
    height: 280px;
  }

  .world-spirits-bgword {
    font-size: clamp(70px, 20vw, 180px);
  }

  .world-spirits-title {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .spirit-card-front,
  .spirit-card-back {
    padding: 20px;
  }

  .country-flag {
    font-size: 60px;
  }

  .country-name {
    font-size: 24px;
  }
}





/* ==============================================
   CATEGORY SHOWCASE - LIQUID WAVE DESIGN
   Gen Z Vibe | Unique 3D Cards | Glassmorphism
   FIXED: All cards equal size, reduced blur
   ============================================== */

.category-showcase-liquid {
  position: relative;
  background: linear-gradient(180deg, #0f0f0f 0%, #1a1a1a 100%);
  overflow: hidden;
  padding: 80px 0 !important;
}

/* Animated Liquid Wave Background */
.liquid-wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(183, 107, 58, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  animation: liquidWave 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes liquidWave {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-30px) scale(1.05); opacity: 0.8; }
}

/* Section Header */
.category-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.gradient-text {
  background: linear-gradient(135deg, #F59E0B 0%, #B76B3A 50%, #DC2626 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
  display: block;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.spirits-text {
  color: #fff;
  display: block;
  text-transform: uppercase;
  letter-spacing: 8px;
  margin-top: 10px;
  font-size: 4rem;
}

.category-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 2px;
  position: relative;
  z-index: 2;
}

/* Categories Grid - ALL EQUAL SIZE */
.categories-liquid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
  perspective: 1000px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Liquid Card - ALL SAME HEIGHT */
.liquid-card-wrapper {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.liquid-card {
  position: relative;
  display: block;
  height: 300px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  text-decoration: none;
}

/* Glassmorphism Overlay - REDUCED BLUR FOR SHARPER LOOK */
.glass-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  z-index: 1;
  transition: all 0.4s ease;
}

/* Floating Particles */
.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 3s ease-in-out infinite;
}

.particle:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  left: 50%;
  animation-delay: 1s;
}

.particle:nth-child(3) {
  left: 80%;
  animation-delay: 2s;
}

@keyframes floatParticle {
  0% { transform: translateY(100%); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(-100%); opacity: 0; }
}

/* Card Inner (For Flip Effect) */
.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.liquid-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Card Faces */
.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  border-radius: 24px;
  z-index: 3;
}

/* Front Face */
.card-front {
  background: var(--card-gradient);
  background-size: 200% 200%;
  animation: gradientMove 5s ease infinite;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cat-image-wrap {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  z-index: 0;
}

.cat-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-icon {
  font-size: 4rem;
  margin-bottom: 15px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
  animation: iconFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 4;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.cat-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 4;
}

/* Liquid Ripple Effect */
.liquid-ripple {
  position: absolute;
  bottom: -50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 2;
}

.liquid-card:hover .liquid-ripple {
  bottom: -20%;
  opacity: 1;
}

/* Back Face */
.card-back {
  background: rgba(0, 0, 0, 0.95);
  transform: rotateY(180deg);
  border: 2px solid var(--card-color);
}

.back-content {
  text-align: center;
}

.explore-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 15px;
}

.cat-name-back {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.arrow-icon {
  font-size: 2.5rem;
  color: var(--card-color);
  animation: arrowBounce 1s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

/* Glowing Border */
.glow-border {
  position: absolute;
  inset: -2px;
  background: var(--card-gradient);
  border-radius: 24px;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.4s ease;
  z-index: 0;
}

.liquid-card:hover .glow-border {
  opacity: 0.6;
}

/* Hover Effects */
.liquid-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.liquid-card:hover .glass-overlay {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
}

.liquid-card:hover .particles .particle {
  animation-play-state: running;
}

/* Scroll Indicator */
.scroll-indicator {
  text-align: center;
  margin-top: 60px;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-arrow {
  font-size: 1.5rem;
  margin-top: 10px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .spirits-text { font-size: 3rem; }
  .category-main-title { font-size: 2.8rem; }
}

@media (max-width: 992px) {
  .categories-liquid-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .liquid-card {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .category-showcase-liquid {
    padding: 60px 0 !important;
  }
  
  .spirits-text { font-size: 2.5rem; letter-spacing: 4px; }
  .category-main-title { font-size: 2.2rem; }
  
  .categories-liquid-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .liquid-card {
    height: 220px;
  }
  
  .cat-icon { font-size: 3rem; }
  .cat-name { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .categories-liquid-grid {
    grid-template-columns: 1fr;
  }
  
  .liquid-card {
    height: 200px;
  }
}



/*Hero carousel section start wtih here*/
/* =====================================================
   HERO CAROUSEL SECTION
   Add this at the END of main.css
   ===================================================== */

/* Hero Section */
.hero-carousel-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
}

/* Carousel Container */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Slides Wrapper */
.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual Slide */
.hero-slide {
  position: relative;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

/* Slide Image */
.hero-slide-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Dark Overlay */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    transparent 100%
  );
  z-index: 1;
}

/* Slide Content */
.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 90%;
  padding: 40px;
  color: #fff;
  text-align: left;
  align-self: flex-end;
  margin-bottom: 80px;
}

/* Category Badge */
.hero-category {
  display: inline-block;
  padding: 8px 20px;
  background: #B76B3A;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-category:hover {
  background: #9d5a30;
  transform: scale(1.05);
}

/* Title */
.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  max-width: 800px;
}

.hero-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-title a:hover {
  color: #F5E6D3;
}

/* Meta Info */
.hero-meta {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Read More Button */
.hero-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(183, 107, 58, 0.9);
  backdrop-filter: blur(10px);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid rgba(183, 107, 58, 0.5);
}

.hero-read-more:hover {
  background: #B76B3A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(183, 107, 58, 0.4);
  border-color: #B76B3A;
}

/* Navigation Arrows */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  font-size: 1.5rem;
}

.hero-nav:hover {
  background: rgba(183, 107, 58, 0.8);
  border-color: #B76B3A;
  transform: translateY(-50%) scale(1.1);
}

.hero-nav-prev {
  left: 30px;
}

.hero-nav-next {
  right: 30px;
}

/* Dots Navigation */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: #B76B3A;
  border-color: #B76B3A;
  transform: scale(1.3);
}

.hero-dot:hover {
  background: rgba(183, 107, 58, 0.6);
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-carousel-section {
    height: 500px;
  }
  
  .hero-slide-content {
    padding: 20px;
    margin-bottom: 60px;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .hero-nav-prev {
    left: 15px;
  }
  
  .hero-nav-next {
    right: 15px;
  }
  
  .hero-meta {
    font-size: 0.85rem;
  }
  
  .hero-read-more {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-carousel-section {
    height: 450px;
  }
  
  .hero-category {
    font-size: 0.75rem;
    padding: 6px 16px;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
}
/*Hero section end here */


/* =====================================================
   NEWSLETTER DIVIDER SECTION - FINAL DARK VERSION
   ===================================================== */

/* =====================================================
   NEWSLETTER DIVIDER SECTION - FINAL DARK VERSION
   ===================================================== */

.newsletter-divider {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(
    180deg, 
    rgba(10, 10, 10, 1) 0%,
    rgba(15, 15, 15, 1) 50%,
    rgba(10, 10, 10, 1) 100%
  ) !important;
  overflow: hidden;
  z-index: 2;
}

/* Subtle animated glow */
.newsletter-divider::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(184, 107, 58, 0.08) 0%, transparent 50%);
  animation: slowRotate 20s linear infinite;
}

@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Top copper accent line */
.newsletter-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184, 107, 58, 0.6) 50%, transparent);
  box-shadow: 0 0 20px rgba(184, 107, 58, 0.4);
}

/* Container */
.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
}

/* Newsletter Box */
.newsletter-box {
  text-align: left;
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 800;
  color: #F5E6D3;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.newsletter-title i {
  color: #B86B3A;
  font-size: 2.2rem;
  filter: drop-shadow(0 0 10px rgba(184, 107, 58, 0.5));
}

.newsletter-subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.6;
}

/* Form */
.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(184, 107, 58, 0.4);
  border-radius: 50px;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  border-color: #B86B3A;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 4px rgba(184, 107, 58, 0.15);
}

.newsletter-btn {
  padding: 16px 36px;
  background: linear-gradient(135deg, #B86B3A 0%, #9d5a30 100%);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(184, 107, 58, 0.4);
  white-space: nowrap;
}

.newsletter-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(184, 107, 58, 0.6);
  background: linear-gradient(135deg, #d87d42 0%, #B86B3A 100%);
}

/* Social Box */
.social-box {
  text-align: center;
}

.social-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #F5E6D3;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.social-icon {
  width: 54px;
  height: 54px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(184, 107, 58, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5E6D3;
  font-size: 1.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow: 0 10px 30px rgba(184, 107, 58, 0.5);
}

.social-icon.facebook:hover { 
  background: #1877F2; 
  border-color: #1877F2;
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.5);
}

.social-icon.instagram:hover { 
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF); 
  border-color: #DD2A7B;
  box-shadow: 0 10px 30px rgba(221, 42, 123, 0.5);
}

.social-icon.twitter:hover { 
  background: #1DA1F2; 
  border-color: #1DA1F2;
  box-shadow: 0 10px 30px rgba(29, 161, 242, 0.5);
}

.social-icon.youtube:hover { 
  background: #FF0000; 
  border-color: #FF0000;
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.5);
}

/* Alcohol Bubbles Animation */
.alcohol-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.alcohol-bubbles .bubble {
  position: absolute;
  bottom: -80px;
  font-size: 2.5rem;
  opacity: 0;
  animation: bubbleFloat 12s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(184, 107, 58, 0.4));
}

.bubble:nth-child(1) { left: 8%; animation-delay: 0s; font-size: 2rem; }
.bubble:nth-child(2) { left: 22%; animation-delay: 2.5s; font-size: 1.8rem; }
.bubble:nth-child(3) { left: 40%; animation-delay: 5s; font-size: 3rem; }
.bubble:nth-child(4) { left: 58%; animation-delay: 1.5s; font-size: 2.2rem; }
.bubble:nth-child(5) { left: 75%; animation-delay: 4s; font-size: 2.8rem; }
.bubble:nth-child(6) { left: 88%; animation-delay: 6s; font-size: 2rem; }

@keyframes bubbleFloat {
  0% {
    bottom: -80px;
    opacity: 0;
    transform: translateX(0) rotate(0deg) scale(0.8);
  }
  15% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.6;
    transform: translateX(50px) rotate(180deg) scale(1);
  }
  85% {
    opacity: 0.3;
  }
  100% {
    bottom: 120%;
    opacity: 0;
    transform: translateX(-30px) rotate(360deg) scale(0.6);
  }
}

/* Hero bottom shadow for smooth transition */
.hero-carousel-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.6));
  pointer-events: none;
  z-index: 1;
}

.hero-carousel-section {
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter-divider {
    padding: 60px 20px;
  }

  .newsletter-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .newsletter-box {
    text-align: center;
  }

  .newsletter-title {
    justify-content: center;
    font-size: 1.6rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    width: 100%;
  }

  .social-title {
    font-size: 1.1rem;
  }

  .social-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .alcohol-bubbles .bubble {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .newsletter-divider {
    padding: 50px 16px;
  }

  .newsletter-title {
    font-size: 1.4rem;
    flex-direction: column;
    gap: 8px;
  }

  .newsletter-subtitle {
    font-size: 0.9rem;
  }

  .social-icons {
    gap: 14px;
  }

  .alcohol-bubbles .bubble {
    font-size: 1.5rem;
  }
}
body .newsletter-divider {
  background: linear-gradient(180deg, 
  #0f2b26 0%,
  #1a3d38 30%,
  #142f2c 60%,
  #0a0a0a 100%
) !important;
box-shadow: 
  inset 0 60px 80px rgba(0, 0, 0, 0.3),
  inset 0 -60px 80px rgba(0, 0, 0, 0.3) !important;
}
/*Devider Section end here*/



/* =====================================================
   FOOTER FIX - White Gap Remove + Copyright Color Update
   REPLACE the footer CSS at the bottom of main.css with this
   ===================================================== */

/* Remove white gap before footer */
.site-footer {
  background: #0a0a0a;
}


/* Footer Spacing - REDUCED GAP */
.site-footer { 
  margin-top: 40px; /* Changed from 80px to 40px */
  padding-bottom: 20px;
  font-size: 0.95rem; 
  background: transparent;
}

/* Rounded Dark Container */
.footer-wrap {
  background: linear-gradient(135deg, #0f2b26 0%, #1a3d38 50%, #0f2b26 100%);
  color: #fff;
  border-radius: 24px;
  padding: 50px 40px 40px;
  box-shadow: 
    0 20px 60px rgba(15, 43, 38, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

/* Subtle glow effect */
.footer-wrap::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 107, 58, 0.08) 0%, transparent 70%);
  animation: footerGlow 20s linear infinite;
  pointer-events: none;
}

@keyframes footerGlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Logo */
.footer-brand {
  display: flex;
  align-items: flex-start;
}

.footer-logo-link {
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-logo-link:hover {
  transform: translateY(-4px);
  filter: brightness(1.2);
}

.footer-logo {
  max-width: 180px;
  height: auto;
  display: block;
}

/* Footer Titles */
.footer-title { 
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.1rem;
  color: #F5E6D3;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #B86B3A, transparent);
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: inline-block;
  background: rgba(184, 107, 58, 0.2);
  border: 1px solid rgba(184, 107, 58, 0.4);
  color: #F5E6D3;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Menu Lists */
.footer-menu, .footer-legal, .footer-explore {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-menu li, .footer-legal li, .footer-explore li { 
  margin-bottom: 12px;
}

.footer-menu li a, .footer-legal li a, .footer-explore li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-menu li a::before, .footer-legal li a::before, .footer-explore li a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.25s ease;
  color: #B86B3A;
}

.footer-menu li a:hover, .footer-legal li a:hover, .footer-explore li a:hover {
  color: #F5E6D3;
  padding-left: 20px;
}

.footer-menu li a:hover::before, .footer-legal li a:hover::before, .footer-explore li a:hover::before {
  opacity: 1;
  left: 0;
}

/* Disabled/Coming Soon Links */
.footer-explore li a.coming-soon {
  opacity: 0.5;
  cursor: not-allowed;
}

.footer-explore li a.coming-soon:hover {
  padding-left: 0;
  color: rgba(255, 255, 255, 0.85);
}

.footer-explore li a.coming-soon::before {
  display: none;
}

/* Copyright Bar - DARK GREEN THEME */
.footer-copyright { 
  background: linear-gradient(135deg, #0f2b26 0%, #1a3d38 100%);
  color: #F5E6D3;
  border-radius: 12px;
  margin-top: 20px;
  padding: 18px 30px;
  box-shadow: 0 4px 16px rgba(15, 43, 38, 0.3);
  border: 1px solid rgba(184, 107, 58, 0.2);
}

.footer-copyright p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #F5E6D3;
}

/* Fade in animation */
.footer-wrap {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   ANIMATED WINE GLASS BACK TO TOP BUTTON
   ===================================================== */
#back-to-top-wine {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  transform: translateY(100px);
}

#back-to-top-wine.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top-wine:hover {
  transform: translateY(-8px) scale(1.1);
}

.wine-glass-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 20px rgba(139, 0, 0, 0.4));
  transition: all 0.3s ease;
}

#back-to-top-wine:hover .wine-glass-svg {
  filter: drop-shadow(0 12px 30px rgba(139, 0, 0, 0.6));
}

/* Wine liquid inside glass */
.wine-liquid {
  fill: #8B0000;
  transition: all 0.3s ease;
}

/* Glass outline */
.glass-outline {
  fill: none;
  stroke: #F5E6D3;
  stroke-width: 2;
  opacity: 0.9;
}

/* Bubbles animation */
.wine-bubble {
  fill: rgba(255, 255, 255, 0.4);
  animation: bubbleRise 2s ease-in-out infinite;
}

.wine-bubble:nth-child(1) {
  animation-delay: 0s;
}

.wine-bubble:nth-child(2) {
  animation-delay: 0.5s;
}

.wine-bubble:nth-child(3) {
  animation-delay: 1s;
}

@keyframes bubbleRise {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Pouring animation when scrolling to top */
#back-to-top-wine.pouring .wine-liquid {
  animation: pourOut 1.5s ease-out forwards;
}

@keyframes pourOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-50px);
    opacity: 0;
  }
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

/* Tablets */
@media (max-width: 991px) {
  .footer-wrap { 
    padding: 40px 30px 35px;
    border-radius: 18px;
  }
  
  #back-to-top-wine {
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .site-footer {
    margin-top: 40px; /* Keep consistent on mobile too */
  }
  
  .footer-wrap {
    padding: 35px 20px 30px;
    border-radius: 16px;
  }
  
  .footer-brand {
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .footer-logo {
    max-width: 160px;
  }
  
  .footer-title {
    text-align: center;
    font-size: 1rem;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-menu, .footer-legal, .footer-explore {
    text-align: center;
  }
  
  .footer-menu li a::before, .footer-legal li a::before, .footer-explore li a::before {
    display: none;
  }
  
  .footer-menu li a:hover, .footer-legal li a:hover, .footer-explore li a:hover {
    padding-left: 0;
  }
  
  .coming-soon-badge {
    display: block;
    margin: 4px auto 0;
    width: fit-content;
  }
  
  #back-to-top-wine {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    max-width: 140px;
  }
}

/*END HERE*/



/*Start of the Search page css*//* ============================================ */
/* SEARCH PAGE STYLES - Add to bottom of main.css */
/* ============================================ */

.alcotalk-search-page {
  padding: 60px 0;
  background: #fafafa;
  min-height: 70vh;
}

.search-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================ */
/* SEARCH HEADER */
/* ============================================ */

.search-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-header h1 {
  font-size: 32px;
  color: #113E3C;
  margin-bottom: 10px;
  font-weight: 700;
}

.results-count {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* ============================================ */
/* SEARCH RESULTS GRID */
/* ============================================ */

.search-results {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}

/* Result Card */
.result-card {
  display: flex;
  gap: 25px;
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Result Image */
.result-image {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.result-card:hover .result-image img {
  transform: scale(1.1);
}

/* Result Content */
.result-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Category Badge */
.result-category {
  display: inline-block;
  padding: 5px 12px;
  background: #113E3C;
  color: white;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}

/* Title */
.result-title {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.3;
}

.result-title a {
  color: #113E3C;
  text-decoration: none;
  transition: color 0.3s ease;
}

.result-title a:hover {
  color: #B86B3A;
}

/* Excerpt */
.result-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 15px;
}

/* Read More Link */
.result-link {
  color: #B86B3A;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.result-link:hover {
  color: #113E3C;
  padding-left: 5px;
}

/* ============================================ */
/* PAGINATION */
/* ============================================ */

.search-pagination {
  text-align: center;
  padding: 30px 0;
}

.search-pagination a,
.search-pagination span {
  display: inline-block;
  padding: 10px 18px;
  margin: 0 5px;
  background: white;
  color: #113E3C;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #eee;
}

.search-pagination a:hover,
.search-pagination .current {
  background: #113E3C;
  color: white;
  border-color: #113E3C;
}

/* ============================================ */
/* NO RESULTS SECTION */
/* ============================================ */

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.no-results-icon {
  margin-bottom: 30px;
  color: #B86B3A;
  opacity: 0.4;
}

.no-results h2 {
  font-size: 28px;
  color: #113E3C;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Search Form in No Results */
.no-results .search-form {
  max-width: 500px;
  margin: 0 auto 40px;
  display: flex;
  gap: 10px;
}

.no-results .search-form input {
  flex: 1;
  padding: 15px 20px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: border 0.3s ease;
}

.no-results .search-form input:focus {
  border-color: #113E3C;
}

.no-results .search-form button {
  padding: 15px 30px;
  background: #113E3C;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.no-results .search-form button:hover {
  background: #B86B3A;
}

/* Popular Searches */
.popular-searches {
  margin-bottom: 30px;
}

.popular-searches p {
  color: #666;
  margin-bottom: 15px;
  font-weight: 600;
}

.popular-searches a {
  display: inline-block;
  padding: 8px 16px;
  margin: 5px;
  background: #f5f5f5;
  color: #113E3C;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.popular-searches a:hover {
  background: #113E3C;
  color: white;
}

/* Back Home Link */
.back-home {
  display: inline-block;
  padding: 12px 25px;
  background: white;
  color: #113E3C;
  border: 2px solid #113E3C;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.back-home:hover {
  background: #113E3C;
  color: white;
}

/* ============================================ */
/* RESPONSIVE */
/* ============================================ */

@media (max-width: 768px) {
  .alcotalk-search-page {
    padding: 40px 0;
  }

  .search-header h1 {
    font-size: 24px;
  }

  .result-card {
    flex-direction: column;
    gap: 15px;
  }

  .result-image {
    width: 100%;
    height: 200px;
  }

  .no-results .search-form {
    flex-direction: column;
  }

  .no-results .search-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .search-header {
    padding: 20px 15px;
  }

  .search-header h1 {
    font-size: 20px;
  }

  .result-card {
    padding: 15px;
  }

  .result-title {
    font-size: 18px;
  }

  .result-excerpt {
    font-size: 14px;
  }
}