/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --color-bg: #fff;/*#f4f4f5;*/
  --color-surface: #ffffff;
  --color-border: rgba(0, 0, 0, 0.06);
  --color-border-solid: #d4d4d8;
  --color-text-primary: #18181b;
  --color-text-secondary: #3b3b3c;
  --color-text-muted: #71717a;
  --color-text-link: #52525b;
  --color-accent: #ff2d4f;
  --color-accent-orange: #ff6d00;
  --color-header-bg: #1a1a2e;
   
  --font-family: Arial, sans-serif;

  --shadow-card: 0px 1px 3px 0px rgba(0, 0, 0, 0.05);
  --shadow-section: 0px 2px 16px 0px rgba(0, 0, 0, 0.07);

  --radius-card: 16px;
  --radius-sm: 8px;
  --radius-xs: 4px;

  --page-max-width: 1000px;
  --page-padding: 0 160px;
  --content-width: 660px;
  --sidebar-width: 300px;
  --col-gap: 40px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text-primary);
  font-size: 15px;
  line-height: 1.6;
  width: 100%;
}
.header-lq-con {
  max-width: 1000px;
  margin: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
}

/* ============================================================
   PAGE WRAPPER & LAYOUT
   ============================================================ */
.page-wrapper {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: flex;
  gap: 40px;
  margin-top: 24px;
}

.left-section {
  width: 660px;
}
.right-section {
  width: 300px;
}

.liquor-sections-wrapper {
  display: grid;
  grid-template-columns: var(--content-width) var(--sidebar-width);
  gap: var(--col-gap);
}

.liquor-column {
  min-width: 0;
}

/* ============================================================
   HERO / BREADCRUMB / INTRO
   ============================================================ */
.hero-section {
  padding-top: 8px;
  margin-bottom: 20px;
}

.breadcrumb-new {
  display: block;
  align-items: center;
  gap: 12px;
  /* font-size: 14px; */
  color: #767676;
  margin-bottom: 16px;
  font-family: var(--font-family) important;
}

.breadcrumb-new a {
  font-size: 16px;
  color: #767676;
}

.breadcrumb-new a:hover {
  color: var(--color-text-primary);
}

.breadcrumb-sep {
  font-size: 13px;
  color: #767676;
}

.breadcrumb-current {
  color: var(--color-text-primary);
  font-weight: 400;
  font-size: 16px;
}

.page-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-secondary);
  line-height: 1.3;
  margin-bottom: 10px;
  font-family: var(--font-family) important;
}


.page-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 26px;
  margin-bottom: 12px;
  font-family: var(--font-family) important;
}
.page-desc.active .read-dot {
  display: none;
}
.page-desc.active .read-add {
  display: inline;
}
.page-desc .read-add {
  display: none;
}

.read-more {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-secondary);
  font-family: var(--font-family) important;
  /* border-bottom: 2px solid var(--color-accent); */
  padding-bottom: 1px;
  transition: color 0.15s;
}

.read-more:hover {
  color: var(--color-accent) !important;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-column {
  /*margin-bottom: 20px;*/
}

/* Ad block */
.ad-block {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 250px;
  gap: 12px;
}

.ad-label {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Sidebar card (Trending Brands) */
.sidebar-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px 16px;
  margin-bottom: 20px;
}

.sidebar-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  padding: 0 8px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
}

.sidebar-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text-link) !important;
  padding: 10px 8px;
  border-radius: 8px;
  transition:
    background 0.15s,
    color 0.15s;
  line-height: 1.4;
}

.sidebar-list li a svg {
  flex-shrink: 0;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.15s;
}

.news-item:hover {
  background: rgba(0, 0, 0, 0.03);
}

.news-item img {
  width: 80px;
  height: 45px;
  min-width: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.news-item span {
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text-link);
}

.news-item:hover span {
  color: var(--color-accent);
}

/* ============================================================
   FILTERS SECTION
   ============================================================ */
.filters-section {
  margin-bottom: 0;
  align-items: start;
}

/* Category Tab Buttons */
.category-tabs {
  display: flex;
  align-items: center;
  gap: 6.83px;
  margin-bottom: 24px;
  flex-wrap: nowrap;
}

.cat-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 60px;
  height: 56px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border-solid);
  background: #e4e4e7;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.cat-btn img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.cat-btn span {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-text-muted);
  line-height: 1;
}

.cat-btn.active {
  background: linear-gradient(135deg, #ff2d4f 0%, #ff6d00 100%);
  border-color: transparent;
  box-shadow: 0px 4px 7.5px rgba(255, 45, 79, 0.35);
}
.cat-btn.active .inact-img{
    display: none;
}
.cat-btn.active .act-img{
    display: inline;
}
.act-img{
  display: none;
}
.inact-img{
  display: inline;
}

.cat-btn.active span {
  color: #ffffff;
}

.cat-btn:hover:not(.active) {
  background: #d4d4d8;
  border-color: #a1a1aa;
}

/* Quick Filters Card */
.quick-filters-card {
  background: rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 45, 79, 0.15);
  background-image: linear-gradient(
    125.95deg,
    rgba(255, 45, 79, 0.15) 0%,
    rgba(255, 109, 0, 0.1) 50%,
    rgba(0, 176, 255, 0.1) 100%
  );
  padding: 14px 17px;
  margin-bottom: 16px;
}

.qf-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
}

.qf-dropdowns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.qf-select-wrap {
  position: relative;
}

.qf-select {
  width: 100%;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--color-border-solid);
  background: #f4f4f5;
  padding: 0 32px 0 13px;
  font-size: 12px;
  font-family: var(--font-family) important;
  color: #3f3f46;
  font-weight: 400;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s;
}

.qf-select:focus {
  border-color: var(--color-accent);
}

.qf-chevron {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 31px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0px 10px 15px -3px rgba(0, 0, 0, 0.1),
    0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.stat-icon img {
  width: 14px;
  height: 14px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.stat-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.stat-number {
  font-size: 16px;
  font-weight: 900;
  color: var(--color-text-primary);
  line-height: 20px;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--color-text-muted);
  line-height: 15px;
}

/* ============================================================
   LIQUOR CONTENT SECTIONS
   ============================================================ */
.liquor-section {
  margin-bottom: 15px;
}

/* Section header gradient banner */
.liquor-header {
  border-radius: var(--radius-card);
  padding: 20px 20px;
  margin-bottom: 16px;
  min-height: 128px;
  display: flex;
  align-items: center;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  padding-right: 30%;
}

.liquor-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  opacity: 0.2;
  background-image: radial-gradient(
    ellipse at 80% 50%,
    rgba(255, 255, 255, 0.4) 0%,
    transparent 70%
  );
}

.liquor-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Per-category gradient colors */
.beer-header {
  background-image: url(https://images.boldsky.com/liquor-price/images/beer-bg.png);
}
.brandy-header {
  background-image: url(https://images.boldsky.com/liquor-price/images/brandy-bg.png);
}
.gin-header {
  background-image: url(https://images.boldsky.com/liquor-price/images/gin-bg.png);
}
.rum-header {
  background-image: url(https://images.boldsky.com/liquor-price/images/rum-bg.png);
}
.tequila-header {
  background-image: url(https://images.boldsky.com/liquor-price/images/tequila-bg.png);
}
.vodka-header {
  background-image: url(https://images.boldsky.com/liquor-price/images/vodka-bg.png);
}
.whisky-header {
  background-image: url(https://images.boldsky.com/liquor-price/images/whisky-bg.png);
}
.wine-header {
  background-image: url(https://images.boldsky.com/liquor-price/images/wine-bg.png);
}
.others-header {
  background-image: url(https://images.boldsky.com/liquor-price/images/brandy-bg.png);
}

/* Liquor description */
.liquor-section > .liquor-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 26px;
  margin-bottom: 8px;
  font-family: var(--font-family) important;
}

.liquor-section > .read-more {
  margin-bottom: 20px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-section);
  padding: 24px 20px;
  margin-bottom: 24px;
}

.faq-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid #e4e4e7;
  padding: 16px 0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 8px;
  line-height: 1.5;
}

.faq-num {
  color: #4b5563;
  font-weight: 700;
  flex-shrink: 0;
}

.faq-a {
  font-size: 14px;
  color: var(--color-text-link);
  line-height: 1.65;
  padding-left: 20px;
}

/* ============================================================
   DISCLAIMER
   ============================================================ */
.disclaimer-card {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-card);
  margin-bottom: 16px;
}

.disclaimer-inner {
  display: flex;
  gap: 16px;
  padding: 17px 17px 17px 17px;
}

.disclaimer-icon {
  width: 32px;
  height: 32px;
  background: #fef3c7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-content {
  flex: 1;
}

.disclaimer-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 8px;
  line-height: 1.4;
}

.disclaimer-content p {
  font-size: 13px;
  color: #b45309;
  line-height: 1.7;
}

.liq-quantity-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}
.liq-quantity-wrap.no-scroll .liq-arrow {
  display: none;
}
.liq-quantity-box {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.liq-quantity-box::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}
.liq-arrow {
  flex: 0 0 auto;
  border: none;
  background: none;
  padding: 0;
  line-height: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.liq-arrow img {
  width: 22px;
  height: 22px;
  display: block;
}
.liq-arrow-prev img {
  transform: rotate(180deg);
}
.liq-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.liq-quantity-box button.active {
  background-image: linear-gradient(to right, #ff2d4f, #ff6d00);
  color: #fff;
}
.liq-quantity-box button {
  border: none;
  background-color: #c5c5c9;
  width: 60px;
  flex: 0 0 auto;
  border-radius: 10px;
  padding: 5px 0px;
  font-size: 12px;
  cursor: pointer;
}

/* Price Links Card */
.price-links-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-section);
  padding: 20px 17px;
  margin-bottom:10px;
  font-family:var(--font-family) important;
}

.price-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.price-list {
  display: flex;
  flex-direction: column;
}

.price-links-card h2{
	font-size: 20px;
	margin-bottom: 8px;
	font-family:var(--font-family) important;
}
/* .price-list li {
  border-bottom: 1px solid #f4f4f5;
}

.price-list li:last-child {
  border-bottom: none;
} */

.price-list li a {
  display: flex;
  align-items: center;
  padding: 9px 8px;
  font-size: 14px;
  color: var(--color-text-link);
  border-radius: 6px;
  transition:
    background 0.12s,
    color 0.12s;
  line-height: 1.5;
  gap: 8px;
  position: relative;
  padding-left: 0;
}

.price-list li a::before {
  content: "›";
  font-size: 16px;
  color: #a1a1aa;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.7;
}
.price-list li a:hover::before{
  color: #0b0b0c;
}
.left-a-more {
  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  line-height: 16.5px;
  vertical-align: middle;
  color: #7200a8;
  text-align: center;
  display: block;
  padding: 12px 0 0;
}

.scroll-con {
  background-color: #ffffffcc;
  border: 1px solid #0000000f;
  border-radius: 16px;
  padding: 17px 25px;
  margin-bottom: 31px;
}
.scroll-beer-wrapper {
  overflow: hidden;
}
.scroll-beer {
  display: flex;
  gap: 10px;
   transition: none;
  margin-top: 9px;
}
.scroll-beer::-webkit-scrollbar {
  display: none;
}
.disclaimer-card {
  margin-top: 31px;
}
.com-beer-head {
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 28px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 3px;
}
.beer-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}
.beer-all {
    display: flex;
    justify-content: center;
    width: 100%;
    background: linear-gradient(90deg, #ffe0e5 0%, #fff7ed 100%);
    border: 1px solid #ffc6cf;
    align-items: center;
    border-radius: 12px;
    height: 45px;
    font-weight: 700;
    font-style: Bold;
    font-size: 13px;
    margin-bottom: 23px;
}
.beer-card
 {
    display: flex;
    min-width: 325px;
    width: 325px;
    padding: 11px 33px 11px 13px;
    border: 1px solid #00000014;
    background: #ffffffe5;
    border-radius: 16px;
    gap: 14px;
}
.beer-holder {
  background-color: #f4f4f5;
  border-radius: 12px;
  width: 56px;
  height: 88px;
  flex-shrink: 0;
  overflow: hidden;
}
.beer-holder a {
  display: block;
}
.beer-holder img {
  width: 56px;
  height: 88px;
  display: block;
}
.star-holder {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
  margin-top: 9px;
}
.star-holder p {
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #f59e0b;
}
.beer-des {
  font-weight: 700;
  font-size: 13px;
  color: #18181b;
}
.ml-container {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
}
.ml-con {
  background-color: #f4f4f5;
  border-radius: 6px;
  padding: 3px 8px;
  width: 65px;
  font-weight: 500;
  font-size: 11px;
}
.each-ml > p:nth-last-of-type(1) {
  font-weight: 700;
  font-size: 13px;
  margin-top: 5.62px;
  text-align: center;
}
.price-list li a:hover,.sidebar-list li a:hover{
  color: #0b0b0c;
}
.button-holder {
    display: flex;
    align-items: center;
    gap: 8px;
}
.with-b-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.beer-dots{
    display:flex;
    justify-content:center;
    gap:6px;
    margin-top:18px;
}

.beer-dot{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#D1D5DB;
    cursor:pointer;
}

.beer-dot.active{
    background:#FF6D00;
    width: 16px;
    border-radius: 16px;
}

.active-prev:disabled,
.active-next:disabled{
    opacity:.35;
    cursor:not-allowed;
}
.active-prev{
  transform: rotate(180deg);
}


*{
  font-family: var(--font-family) important;
}
.pp-beer-detail {
  padding: 16px 48px 14px 13px;
  display: flex;
  gap: 49px;
}
.pp-box {
  border-radius: 16px;
  background-color: #ffffffe5;
  border: 1px solid #00000014;
  margin-bottom: 16px;
}
.pp-h-name {
  font-weight: 700;
  font-size: 16px;
  color: #18181b;
}
.pp-b-con {
  width: 120px;
  min-width: 120px;
  height: 214px;
  background-color: #f4f4f5;
  border-radius: 12px;
}
.pp-b-con > img {
  width: 100%;
}
.brand-hero .pp-b-con {
  width: 140px;
  min-width: 140px;
  height: 140px;
}
.brand-hero .pp-b-con > img {
  height: 100%;
  object-fit: contain;
}
.pp-head-b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 430px;
  margin-bottom: 22px;
  gap: 25px;
}
.pp-head-left {
  display: flex;
  gap: 12px;
}
.pp-rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pp-rating span {
  font-weight: 600;
  font-size: 10px;
  line-height: 15px;
  color: #f59e0b;
}
.rate-btn {
  width: 78px;
  min-width: 78px;
  height: 23px;
  border-radius: 9999px;
  background: linear-gradient(90deg, #ff2d4f 0%, #ff6d00 100%);
  border: none;
  font-size: 11px;
  line-height: 16.5px;
  color: #ffffff;
}
a.rate-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}
.pp-b-details > .tb-des {
  margin-bottom: 16px;
}
p.pp-price {
  color: #353537;
  font-family: Inter;
  font-weight: 700;
  font-size: 13px;
  line-height: 19.5px;
  text-align: center;
  letter-spacing: 0%;
  margin-bottom: 9px;
}
.pp-ml {
  background-color: #f4f4f5;
  width: 78px;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 11px;
  line-height: 16.5px;
  margin-bottom: 6px;
}
.pp-price-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pp-ml-p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pp-prepare {
  padding: 19px 18px;
}
.each-prep {
  margin-bottom: 20px;
}
.prep-head {
  color: #18181b;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}
.prep-des {
  font-family: var(--font-family) important;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #3b3b3c;
}
.prep-des table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
  overflow-x: auto;
  display: block;
}
.prep-des table th,
.prep-des table td {
  border: 1px solid #e0e0e0;
  padding: 10px 12px;
  text-align: left;
  font-size: 14px;
  line-height: 22px;
}
.prep-des table th {
  background: #f5f5f5;
  font-weight: 700;
  color: #18181b;
}
/* ------pop-up------ */
.popup-model {
  position: relative;
}
.popup-model .background-blur {
  background: #00000066;
  backdrop-filter: blur(4px);
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  display: none;
}
.popup-model.active .background-blur {
  display: block;
}
.popup-model .popup-body {
  background-color: #ffffff;
  border-radius: 16px;
  z-index: 10000;
  width: 384px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 229px;
  font-family: var(--font-family) important;
  padding: 24px;
  display: none;
}
.popup-model.active .popup-body {
  display: block;
}
.popup-sub {
  background: linear-gradient(90deg, #e63946 0%, #ea580c 100%);
  width: 336px;
  height: 39.5px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
  font-style: Bold;
  font-size: 13px;
  line-height: 19.5px;
  color: #ffffff;
  border: none;
  opacity: 40%;
  pointer-events: none;
}
.popup-sub.active {
  opacity: 1;
  pointer-events: auto;
}
.popup-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.popup-head h2 {
  color: #0f172a;
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  line-height: 20.63px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.subhead {
  font-family: Inter;
  font-weight: 400;
  font-size: 11px;
  line-height: 16.5px;
  color: #64748b;
}
.star-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 9px;
}
.star-box > img {
  width: 36px;
  height: 36px;
  cursor: pointer;
}
.rating-message {
  font-family: Inter;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 20px;
  color: #64748b;
}

.popup-rate {
  display: block;
}
.thank-popup{
  display: none;
}
.cross-container{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.thank-holder-pop {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.thank-p {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 15px;
  line-height: 20.63px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #0f172a;
  margin: 7px 0 4px;
}
.rated-p-m {
  font-family: Inter;
  font-weight: 400;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #64748b;
}

#are-slot-1, #are-slot-2, #are-slot-3, #are-slot-4, #are-slot-5, #are-slot-mr1, #are-slot-mr2 {
    background: #ffffff !important;
    margin: 14px 0;
    min-height: 280px;
    padding: 12px 0;
}

#are-slot-1::before, #are-slot-2::before, #are-slot-3::before, #are-slot-4::before, #are-slot-5::before, #are-slot-mr1::before, #are-slot-mr2::before {
    content: "Advertisement";
    display: block;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* ============================================================
   TOP BRAND LIST
   ============================================================ */
.sec-two {
  margin-bottom: 15px;
}

.sec-two > .liquor-desc {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 26px;
  margin-bottom: 8px;
  font-family: var(--font-family) important;
}

.sec-two > .read-more {
  margin-bottom: 20px;
}

.tb-list-container {
  margin-bottom: 15px;
}

.tb-box {
  border-radius: 16px;
  background-color: #ffffffe5;
  border: 1px solid #00000014;
  margin-bottom: 16px;
}

.each-branc-con {
  padding: 16px 13px;
  display: flex;
  gap: 27px;
  align-items: center;
}

.tb-bi-con {
  min-width: 77px;
  width: 77px;
  background-color: #f4f4f5;
  border-radius: 12px;
  height: 152px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tb-bi-con a {
  display: block;
  width: 100%;
  height: 100%;
}

.tb-bi-con img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tb-right {
  min-width: 0;
}

.pp-h-name a:hover {
  color: var(--color-accent);
}

.tb-des {
  font-family: var(--font-family) important;
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: var(--color-text-secondary);
}

.List-beer-card {
  width: 100%;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 16px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.List-beer-card .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  color: #18181b;
  padding: 15px 21px 9px;
}

.beer-table {
  width: 100%;
  border-collapse: collapse;
}

.beer-table thead {
  background: #f6f6fb;
}

.beer-table thead th {
  font-weight: 700;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
  padding: 14px 21px;
}

.beer-table tbody td {
  font-weight: 500;
  font-size: 14px;
  padding: 14px 21px;
  border-bottom: 1px solid #e4e4e799;
  color: var(--color-text-secondary);
}

.beer-table tbody td.no-border {
  border-bottom: none;
}

.beer-table tbody td:first-child a {
  color: #7200a8;
  font-weight: 500;
}

.beer-table tbody td:nth-child(2) {
  width: 140px;
  text-align: center;
}

.beer-table tbody td:nth-child(3) {
  width: 110px;
  text-align: center;
}

.beer-table tbody td:last-child {
  width: 110px;
  font-weight: 700;
  color: #333;
  text-align: center;
}

.beer-table tbody tr.hidden-row {
  display: none;
}

.badge {
  background-color: #f4f4f5;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  vertical-align: middle;
  color: #52525b;
  padding: 2px 8px;
  border-radius: 5px;
}

.odd-row td {
  background: #ffffff;
}

.even-row td {
  background: #fafafa80;
}

.pk-price-table {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px;
}

.entries {
  font-size: 12px;
  color: #888;
}

.view-btn {
  background: linear-gradient(90deg, #ff2d4f 0%, #ff6d00 100%);
  box-shadow: 0px 1px 2px 0px #ff2d4f33;
  width: 151px;
  padding: 9px 0;
  border-radius: 12px;
  border: none;
  color: #ffffff;
  font-family: var(--font-family) important;
  font-weight: 700;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

