.drink-feature {
  --feature-panel-height: clamp(300px, 27.27vw, 450px);
}

.dark-button,
.view-all-link {
  color: var(--white);
  background: var(--black);
  border: 0;
  border-radius: 5px;
  padding: clamp(6px, .55vw, 8px) clamp(10px, .91vw, 14px);
  font-weight: 600;
}

.hero-section {
  display: flex;
  align-items: center;
  min-height: clamp(520px, 47.27vw, 600px);
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .18)), url("../images/hero-delivery-banner.jpg");
  background-position: right bottom;
  background-size: cover;
}

.hero-content {
  width: min(88%, 760px);
  margin-left: 5.8%;
  margin-right: auto;
}

.hero-title {
  margin: 0 0 clamp(14px, 1.27vw, 20px);
  font-size: clamp(55px, 5vw, 65px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero-title span {
  color: var(--brand-red-light);
}

.hero-copy {
  max-width: 680px;
  margin: 0 0 clamp(16px, 1.45vw, 24px);
  color: rgba(255, 255, 255, .78);
  font-size: clamp(18px, 1.64vw, 22px);
  line-height: 1.55;
}

.app-badge-row {
  display: flex;
  gap: clamp(20px, 1.82vw, 28px);
  align-items: center;
}

.app-badge-row a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  border: 2px solid var(--white);
  border-radius: 12px;
  padding: 12px;
  transition: transform .2s ease;
}

.app-badge-row a:hover {
  transform: scale(1.04);
}

.app-badge-row img {
  width: clamp(110px, 10vw, 150px);
}

.app-badge-row.compact a {
  border-radius: 8px;
  padding: 6px;
}

.app-badge-row.compact img {
  width: clamp(104px, 9.45vw, 140px);
}

.category-grid-section {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 4% 0;
}

.category-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: clamp(220px, 20vw, 280px);
  border-radius: 10px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  transition: transform .2s ease, box-shadow .2s ease;
}

.category-card:hover {
  z-index: 1;
  transform: scale(1.035);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.category-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, .5);
}

.category-card span {
  position: relative;
  z-index: 1;
  width: 100%;
  color: var(--white);
  background: rgba(0, 0, 0, .5);
  padding: 4px 8px;
  text-align: center;
  font-size: clamp(14px, 1.27vw, 18px);
  font-weight: 400;
  transition: font-weight .2s ease;
}

.category-card:hover span {
  font-weight: 500;
}

.category-whiskey {
  background-image: url("../images/category-whiskey.jpg");
}

.category-vodka {
  background-image: url("../images/category-vodka.jpg");
}

.category-gin {
  background-image: url("../images/category-gin.jpg");
}

.category-wine {
  background-image: url("../images/category-wine.jpg");
}

.category-liqueurs {
  background-image: url("../images/category-liqueurs.jpg");
}

.category-beer {
  background-image: url("../images/category-beer.jpg");
}

.category-cider {
  background-image: url("../images/category-cider.jpg");
}

.category-mixers {
  background-image: url("../images/category-mixers.jpg");
}

.drink-shelf {
  padding: 8px 4%;
}

#featured-products {
  padding-top: 16px;
}

.shelf-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.shelf-heading-row h2 {
  margin: 0;
  font-size: clamp(20px, 1.82vw, 26px);
  line-height: 1.2;
  font-weight: 550;
}

.view-all-link {
  font-size: clamp(12px, 1.09vw, 14px);
  font-weight: 400;
}

.view-all-link:hover {
  background: var(--brand-red);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-auto-columns: calc((100% - 48px) / 7);
  grid-auto-flow: column;
  gap: 8px;
  overflow-x: auto;
  background: var(--soft-gray);
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.product-grid::-webkit-scrollbar {
  display: none;
}

.product-carousel {
  position: relative;
}

.product-carousel .product-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, .05);
  color: var(--ink);
  font-size: 0;
  transform: translateY(-50%);
}

.product-carousel .product-arrow::before {
  width: 11px;
  height: 11px;
  content: "";
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.product-carousel .product-arrow-left::before {
  transform: translateX(2px) rotate(-45deg);
}

.product-carousel .product-arrow-right::before {
  transform: translateX(-2px) rotate(135deg);
}

.product-carousel .product-arrow-left {
  left: calc(-2vw - 20px);
}

.product-carousel .product-arrow-right {
  right: calc(-2vw - 20px);
}

.product-carousel .product-arrow:hover {
  background: var(--soft-gray);
  color: var(--black);
}

.product-carousel .product-arrow:disabled {
  cursor: default;
  opacity: .35;
}
.promo-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 18px 4%;
}

.promo-image-row img {
  width: 100%;
  height: auto;
  max-height: 750px;
  object-fit: cover;
}

.feature-jameson {
  --feature-copy-gradient: linear-gradient(135deg, #0b3a2a 0%, #071c16 55%, #050505 100%);
  --feature-title-color: #fff7de;
  --feature-text-color: #d7e9dc;
  --feature-button-bg: #d6b45d;
  --feature-button-text: #10120c;
  --feature-button-border: #f2d48a;
  --feature-button-hover-bg: #f0c86d;
}

.feature-gin {
  --feature-copy-gradient: linear-gradient(135deg, #07463f 0%, #0b2d2a 55%, #050505 100%);
  --feature-title-color: #e8f7d3;
  --feature-text-color: #cde4dc;
  --feature-button-bg: #a9d96d;
  --feature-button-text: #07130d;
  --feature-button-border: #c6ef8f;
  --feature-button-hover-bg: #c0ee7a;
}

.feature-tequila {
  --feature-copy-gradient: linear-gradient(135deg, #5a2d12 0%, #2c1408 58%, #050505 100%);
  --feature-title-color: #fff1cf;
  --feature-text-color: #ead4b8;
  --feature-button-bg: #d9913d;
  --feature-button-text: #140b04;
  --feature-button-border: #f0b86a;
  --feature-button-hover-bg: #efaa4d;
}

.feature-champagne {
  --feature-copy-gradient: linear-gradient(135deg, #8b4c03 0%, #3a2107 55%, #050505 100%);
  --feature-title-color: #fff3d1;
  --feature-text-color: #efd6a4;
  --feature-button-bg: #f0a400;
  --feature-button-text: #130d02;
  --feature-button-border: #ffc94a;
  --feature-button-hover-bg: #ffc02e;
}

.feature-jagermeister {
  --feature-copy-gradient: linear-gradient(135deg, #073215 0%, #1d1209 56%, #050505 100%);
  --feature-title-color: #fff0d8;
  --feature-text-color: #e3d0b8;
  --feature-button-bg: #e85a21;
  --feature-button-text: #fff7ed;
  --feature-button-border: #ff7a3d;
  --feature-button-hover-bg: #ff6b2b;
}

.drink-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 18px 4%;
  background: var(--soft-gray);
  align-items: stretch;
  height: calc(var(--feature-panel-height) + 36px);
  max-height: calc(var(--feature-panel-height) + 36px);
}

.drink-feature-image {
  width: 100%;
  height: var(--feature-panel-height);
  max-height: var(--feature-panel-height);
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
}

.feature-champagne .drink-feature-image {
  object-position: center 80%;
}

.drink-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: var(--feature-panel-height);
  max-height: var(--feature-panel-height);
  background: var(--feature-copy-gradient, var(--black));
  border-radius: 5px;
  padding: 48px;
  color: var(--white);
}

.drink-feature-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 2.73vw, 42px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--feature-title-color, var(--white));
}

.drink-feature-copy p {
  max-width: 540px;
  margin: 0 0 24px;
  color: var(--feature-text-color, rgba(255, 255, 255, .76));
  font-size: clamp(13px, 1.18vw, 18px);
  line-height: 1.7;
}

.browse-button {
  border-radius: 5px;
  background: #3a3a3a;
  padding: clamp(7px, .64vw, 9px) clamp(14px, 1.27vw, 20px);
  color: var(--white);
  font-size: clamp(13px, 1.18vw, 16px);
  font-weight: 600;
}

.browse-button:hover {
  background: #444;
  color: var(--white);
}

.drink-feature .browse-button {
  background: var(--feature-button-bg);
  border: 1px solid var(--feature-button-border);
  color: var(--feature-button-text);
}

.drink-feature .browse-button:hover {
  background: var(--feature-button-hover-bg);
  color: var(--feature-button-text);
}

.hours-section {
  min-height: 550px;
  margin: 18px 4% 0;
  color: var(--white);
  background-image: url("../images/section-hours-bar-shelves.jpeg");
  background-position: center;
  background-size: cover;
  border-radius: 5px;
  overflow: hidden;
}

.hours-overlay {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 550px;
  background: rgba(0, 0, 0, .7);
  padding: 0 5%;
}

.hours-copy {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.hours-copy h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1;
}

.hours-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 16px;
  line-height: 1.7;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.hours-grid div {
  padding: 16px 8px;
}

.hours-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1;
}

.hours-grid span {
  color: rgba(255, 255, 255, .8);
  font-weight: 300;
}

.app-heading-section {
  padding: clamp(12px, 1.09vw, 18px) 4%;
  text-align: center;
}

.app-heading-section h2 {
  margin: 0;
  font-size: clamp(24px, 2.18vw, 32px);
}

.app-heading-section p {
  margin: 4px 0 0;
  color: rgba(0, 0, 0, .65);
  font-size: clamp(16px, 1.45vw, 22px);
}

.app-section {
  --app-gradient-red: #641d24;
  --app-gradient-plum: #35141a;
  --app-gradient-ink: #050505;
  --app-copy-color: #fff;
  --app-muted-copy-color: rgba(255, 255, 255, .75);
  --app-badge-border: #fff;
  display: grid;
  grid-template-columns: 7fr 5fr;
  align-items: center;
  min-height: clamp(360px, 32.73vw, 500px);
  margin: 0 4%;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(195, 71, 80, .32), transparent 32%),
    linear-gradient(135deg, var(--app-gradient-red) 0%, var(--app-gradient-plum) 42%, var(--app-gradient-ink) 100%);
  border-radius: 5px;
  padding: 0 clamp(28px, 2.55vw, 64px);
}

.app-copy {
  color: var(--app-copy-color);
  text-align: center;
}

.app-copy h2 {
  margin: 0 0 clamp(12px, 1.09vw, 20px);
  font-size: clamp(28px, 2.55vw, 38px);
  font-weight: 500;
  line-height: .95;
}

.app-copy h3 {
  margin: 0 0 clamp(10px, .91vw, 16px);
  font-size: clamp(18px, 1.64vw, 24px);
  font-weight: 300;
}

.app-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.app-step {
  min-width: 0;
  padding: 0 4px;
}

.app-step img {
  width: clamp(56px, 5.09vw, 80px);
  height: clamp(56px, 5.09vw, 80px);
  margin: 0 auto;
  object-fit: contain;
  filter: invert(1);
}

.app-step h4 {
  margin: clamp(5px, .45vw, 8px) 0 4px;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1;
}

.app-step p {
  margin: 0;
  color: var(--app-muted-copy-color);
  font-size: clamp(11px, 1vw, 16px);
  line-height: 1.25;
}

.download-area {
  margin-top: clamp(14px, 1.27vw, 24px);
}

.download-area .app-badge-row {
  justify-content: center;
}

.download-area .app-badge-row a {
  border-color: var(--app-badge-border);
}

.app-phone-preview {
  align-self: end;
  height: clamp(360px, 32.73vw, 500px);
}

.app-phone-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.wholesale-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(220px, 20vw, 300px);
  background: var(--soft-gray);
  padding: clamp(28px, 2.55vw, 40px) 4%;
  text-align: center;
}

.wholesale-section h2 {
  margin: 0;
  font-size: clamp(26px, 2.36vw, 36px);
  font-weight: 400;
  line-height: 1.35;
}

.wholesale-section p {
  max-width: 640px;
  margin: 10px 0;
  color: rgba(0, 0, 0, .65);
  font-size: clamp(13px, 1.18vw, 16px);
}
