/** Shopify CDN: Minification failed

Line 2787:1 Expected "}" to go with "{"

**/
/* ============================================
   FORCE DARK THEME — COLOR SCHEME OVERRIDE
   Must be at TOP of file
   ============================================ */

:root,
[data-color-scheme],
[data-color-scheme="scheme-1"],
[data-color-scheme="scheme-2"],
[data-color-scheme="scheme-3"],
[data-color-scheme="scheme-4"],
[data-color-scheme="scheme-5"],
.color-scheme-1,
.color-scheme-2,
.color-scheme-3,
.color-scheme-4,
.color-scheme-5,
[class*="color-scheme"],
[class*="color-"] {
  --color-background: 11 11 11 !important;
  --color-background-rgb: 11, 11, 11 !important;
  --color-foreground: 242 240 234 !important;
  --color-foreground-rgb: 242, 240, 234 !important;
  
  --color-background-secondary: 20 20 20 !important;
  --color-background-secondary-rgb: 20, 20, 20 !important;
  
  --color-shadow: 0 0 0 !important;
  
  --color-button: 242 240 234 !important;
  --color-button-text: 11 11 11 !important;
  --color-button-rgb: 242, 240, 234 !important;
  --color-button-text-rgb: 11, 11, 11 !important;
  
  --color-secondary-button: 11 11 11 !important;
  --color-secondary-button-text: 242 240 234 !important;
  
  --color-link: 242 240 234 !important;
  --color-badge-foreground: 11 11 11 !important;
  --color-badge-background: 242 240 234 !important;
  --color-badge-border: 242 240 234 !important;
  
  background-color: #0B0B0B !important;
  color: #F2F0EA !important;
}

/* Some themes use rgb() format, some use space-separated.
   Cover both patterns: */
:root,
[data-color-scheme],
[class*="color-scheme"] {
  --color-base-background-1: 11, 11, 11 !important;
  --color-base-background-2: 20, 20, 20 !important;
  --color-base-text: 242, 240, 234 !important;
  --color-base-solid-button-labels: 11, 11, 11 !important;
  --color-base-outline-button-labels: 242, 240, 234 !important;
  --color-base-accent-1: 242, 240, 234 !important;
  --color-base-accent-2: 242, 240, 234 !important;
}

/* Direct element overrides as final fallback */
body,
header,
footer,
main,
section,
.shopify-section,
.shopify-section > div,
.shopify-section > section {
  background-color: #0B0B0B !important;
  color: #F2F0EA !important;
}

/* Buttons */
button,
.button,
[class*="button--primary"],
a.button {
  border-radius: 0 !important;
}

/* Text elements */
h1, h2, h3, h4, h5, h6,
p, span, a, li, label, legend {
  color: #F2F0EA !important;
}

/* Dimmed text */
.subdued,
[class*="subdued"],
[class*="muted"],
small {
  color: rgba(242, 240, 234, 0.6) !important;
}
/* ============================================
   ALBANOTTE Theme Overrides
   Streetwear Coffee • Dawn Theme Customization
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --alb-black: #0B0B0B;
  --alb-off-white: #F2F0EA;
  --alb-off-white-dim: rgba(242, 240, 234, 0.7);
  --alb-off-white-faint: rgba(242, 240, 234, 0.15);
  --alb-off-white-subtle: rgba(242, 240, 234, 0.08);
  
  --alb-accent-buongiorno: #D9B24C;
  --alb-accent-ciao: #4FB7A7;
  --alb-accent-dolce: #C86A2B;
  --alb-accent-mezzanotte: #C9C7C2;
  --alb-accent-senza: #7FAE7A;
  
  --alb-font-heading: 'Bebas Neue', Impact, sans-serif;
  --alb-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --alb-header-height: 70px;
  --alb-header-height-mobile: 60px;
}

/* ---------- Global Overrides ---------- */
body {
  background-color: var(--alb-black);
  color: var(--alb-off-white);
}

/* ============================================
   HEADER STYLES
   ============================================ */

.alb-header {
  background-color: var(--alb-black);
  border-bottom: 1px solid var(--alb-off-white-faint);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.alb-header.is-scrolled {
  background-color: rgba(11, 11, 11, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.alb-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--alb-header-height);
  padding: 0 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
}

@media (max-width: 989px) {
  .alb-header__inner {
    height: var(--alb-header-height-mobile);
    padding: 0 1rem;
  }
}

/* Logo */
.alb-header__logo {
  font-family: var(--alb-font-heading);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--alb-off-white);
  text-decoration: none;
  position: relative;
  transition: opacity 0.2s ease;
}

.alb-header__logo:hover {
  opacity: 0.8;
}

.alb-header__logo-img {
  height: 32px;
  width: auto;
}

@media (max-width: 989px) {
  .alb-header__logo {
    font-size: 1.5rem;
  }
  .alb-header__logo-img {
    height: 26px;
  }
}

/* Navigation */
.alb-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 989px) {
  .alb-header__nav {
    display: none;
  }
}

.alb-header__nav-link {
  font-family: var(--alb-font-heading);
  font-size: 0.9375rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--alb-off-white);
  text-decoration: none;
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.alb-header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--alb-current-accent, var(--alb-off-white));
  transition: width 0.25s ease;
}

.alb-header__nav-link:hover::after,
.alb-header__nav-link:focus::after,
.alb-header__nav-link.is-active::after {
  width: 100%;
}

.alb-header__nav-link:focus {
  outline: none;
}

.alb-header__nav-link:focus-visible {
  outline: 2px solid var(--alb-off-white);
  outline-offset: 4px;
}

/* Icons */
.alb-header__icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.alb-header__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--alb-off-white);
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.alb-header__icon-btn:hover {
  color: var(--alb-off-white-dim);
}

.alb-header__icon-btn:focus-visible {
  outline: 2px solid var(--alb-off-white);
  outline-offset: 2px;
}

.alb-header__icon-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.5;
}

.alb-header__cart-count {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-family: var(--alb-font-body);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  background-color: var(--alb-off-white);
  color: var(--alb-black);
  border-radius: 9px;
}

/* Mobile Menu Toggle */
.alb-header__menu-toggle {
  display: none;
}

@media (max-width: 989px) {
  .alb-header__menu-toggle {
    display: flex;
  }
}

.alb-header__hamburger {
  width: 20px;
  height: 14px;
  position: relative;
}

.alb-header__hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--alb-off-white);
  transition: all 0.25s ease;
}

.alb-header__hamburger span:nth-child(1) { top: 0; }
.alb-header__hamburger span:nth-child(2) { top: 6px; }
.alb-header__hamburger span:nth-child(3) { top: 12px; }

/* ============================================
   MOBILE DRAWER STYLES
   ============================================ */

.alb-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  pointer-events: none;
}

.alb-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.alb-drawer__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.alb-drawer.is-open .alb-drawer__overlay {
  opacity: 1;
}

.alb-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background-color: var(--alb-black);
  border-right: 1px solid var(--alb-off-white-faint);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.alb-drawer.is-open .alb-drawer__panel {
  transform: translateX(0);
}

.alb-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--alb-off-white-faint);
}

.alb-drawer__logo {
  font-family: var(--alb-font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--alb-off-white);
  text-decoration: none;
}

.alb-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--alb-off-white);
  cursor: pointer;
}

.alb-drawer__close svg {
  width: 24px;
  height: 24px;
}

.alb-drawer__nav {
  flex: 1;
  padding: 1.5rem 1.25rem;
  overflow-y: auto;
}

.alb-drawer__nav-link {
  display: block;
  font-family: var(--alb-font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--alb-off-white);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--alb-off-white-faint);
  transition: color 0.2s ease;
}

.alb-drawer__nav-link:hover {
  color: var(--alb-off-white-dim);
}

.alb-drawer__footer {
  padding: 1.25rem;
  border-top: 1px solid var(--alb-off-white-faint);
}

.alb-drawer__tagline {
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--alb-off-white-dim);
  text-align: center;
}

/* ============================================
   FOOTER STYLES
   ============================================ */

.alb-footer {
  background-color: var(--alb-black);
  border-top: 1px solid var(--alb-off-white-faint);
  padding: 4rem 0 2rem;
  color: var(--alb-off-white);
}

.alb-footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.alb-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 989px) {
  .alb-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 599px) {
  .alb-footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Footer Columns */
.alb-footer__col {
  min-width: 0;
}

@media (max-width: 599px) {
  .alb-footer__col {
    border-bottom: 1px solid var(--alb-off-white-faint);
  }
  .alb-footer__col:last-child {
    border-bottom: none;
  }
}

.alb-footer__col-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: default;
}

@media (max-width: 599px) {
  .alb-footer__col-header {
    cursor: pointer;
    padding: 1.25rem 0;
  }
}

.alb-footer__col-title {
  font-family: var(--alb-font-heading);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--alb-off-white);
  margin: 0 0 1rem 0;
}

@media (max-width: 599px) {
  .alb-footer__col-title {
    margin: 0;
  }
}

.alb-footer__col-toggle {
  display: none;
  width: 24px;
  height: 24px;
  color: var(--alb-off-white-dim);
  transition: transform 0.3s ease;
}

@media (max-width: 599px) {
  .alb-footer__col-toggle {
    display: block;
  }
  .alb-footer__col.is-open .alb-footer__col-toggle {
    transform: rotate(180deg);
  }
}

.alb-footer__col-content {
  display: block;
}

@media (max-width: 599px) {
  .alb-footer__col-content {
    display: none;
    padding-bottom: 1.25rem;
  }
  .alb-footer__col.is-open .alb-footer__col-content {
    display: block;
  }
}

.alb-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.alb-footer__link {
  margin-bottom: 0.75rem;
}

.alb-footer__link a {
  font-size: 0.875rem;
  color: var(--alb-off-white-dim);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.alb-footer__link a:hover {
  color: var(--alb-off-white);
}

.alb-footer__link a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--alb-off-white);
  transition: width 0.25s ease;
}

.alb-footer__link a:hover::after {
  width: 100%;
}

/* Email Signup Sticker */
.alb-footer__signup {
  border: 2px solid var(--alb-off-white);
  padding: 1.5rem;
  position: relative;
}

.alb-footer__signup::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--alb-off-white-faint);
  pointer-events: none;
}

.alb-footer__signup-title {
  font-family: var(--alb-font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.5rem 0;
}

.alb-footer__signup-text {
  font-size: 0.8125rem;
  color: var(--alb-off-white-dim);
  margin: 0 0 1rem 0;
}

.alb-footer__signup-form {
  display: flex;
  gap: 0.5rem;
}

.alb-footer__signup-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--alb-font-body);
  background-color: transparent;
  border: 1px solid var(--alb-off-white-faint);
  color: var(--alb-off-white);
  transition: border-color 0.2s ease;
}

.alb-footer__signup-input::placeholder {
  color: var(--alb-off-white-dim);
}

.alb-footer__signup-input:focus {
  outline: none;
  border-color: var(--alb-off-white);
}

.alb-footer__signup-btn {
  padding: 0.75rem 1.25rem;
  font-family: var(--alb-font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--alb-off-white);
  color: var(--alb-black);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.alb-footer__signup-btn:hover {
  background-color: var(--alb-off-white-dim);
}

/* Social Icons */
.alb-footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.alb-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--alb-off-white-faint);
  color: var(--alb-off-white);
  transition: all 0.2s ease;
}

.alb-footer__social-link:hover {
  background-color: var(--alb-off-white);
  color: var(--alb-black);
}

.alb-footer__social-link svg {
  width: 18px;
  height: 18px;
}

/* Footer Bottom */
.alb-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--alb-off-white-faint);
  flex-wrap: wrap;
  gap: 1rem;
}

@media (max-width: 599px) {
  .alb-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

.alb-footer__tagline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--alb-off-white-dim);
}

.alb-footer__tricolor {
  display: flex;
  width: 18px;
  height: 12px;
  border: 1px solid var(--alb-off-white-faint);
  overflow: hidden;
}

.alb-footer__tricolor span {
  flex: 1;
}

.alb-footer__tricolor span:nth-child(1) { background-color: #009246; }
.alb-footer__tricolor span:nth-child(2) { background-color: #F1F2F1; }
.alb-footer__tricolor span:nth-child(3) { background-color: #CE2B37; }

.alb-footer__copy {
  font-size: 0.75rem;
  color: var(--alb-off-white-dim);
}

/* ============================================
   PRODUCT CARD STYLES
   ============================================ */

.alb-card {
  background-color: transparent;
  border: 1px solid var(--alb-off-white-faint);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.alb-card:hover {
  border-color: var(--alb-off-white);
  transform: translateY(-6px);
}

.alb-card__accent {
  height: 3px;
  width: 100%;
  background-color: var(--alb-card-accent, var(--alb-off-white));
  transition: height 0.2s ease;
}

.alb-card:hover .alb-card__accent {
  height: 5px;
}

.alb-card__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--alb-off-white-subtle);
}

.alb-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.alb-card:hover .alb-card__media img {
  transform: scale(1.05);
}

.alb-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.375rem 0.75rem;
  font-family: var(--alb-font-heading);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--alb-off-white);
  color: var(--alb-black);
}

.alb-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(11,11,11,0.95) 0%, transparent 100%);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.alb-card:hover .alb-card__quick-add {
  transform: translateY(0);
  opacity: 1;
}

.alb-card__quick-btn {
  width: 100%;
  padding: 0.75rem;
  font-family: var(--alb-font-heading);
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--alb-off-white);
  color: var(--alb-black);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.alb-card__quick-btn:hover {
  background-color: var(--alb-off-white-dim);
}

.alb-card__quick-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.alb-card__content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.alb-card__vendor {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--alb-off-white-dim);
  margin-bottom: 0.375rem;
}

.alb-card__title {
  font-family: var(--alb-font-heading);
  font-size: 1.375rem;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--alb-off-white);
  margin: 0 0 0.5rem 0;
}

.alb-card__title a {
  color: inherit;
  text-decoration: none;
}

.alb-card__subtitle {
  font-size: 0.75rem;
  color: var(--alb-off-white-dim);
  margin-bottom: 0.75rem;
}

.alb-card__price {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--alb-off-white-faint);
  font-family: var(--alb-font-heading);
  font-size: 1.125rem;
}

.alb-card__price-compare {
  text-decoration: line-through;
  color: var(--alb-off-white-dim);
  font-size: 0.875rem;
  margin-right: 0.5rem;
}

/* ============================================
   PRODUCT PAGE (PDP) STYLES
   ============================================ */

.alb-pdp {
  background-color: var(--alb-black);
  color: var(--alb-off-white);
  padding: 2rem 0 4rem;
}

.alb-pdp__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 989px) {
  .alb-pdp__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* PDP Gallery */
.alb-pdp__gallery {
  position: sticky;
  top: calc(var(--alb-header-height) + 2rem);
}

@media (max-width: 989px) {
  .alb-pdp__gallery {
    position: static;
  }
}

.alb-pdp__main-image {
  aspect-ratio: 1;
  background-color: var(--alb-off-white-subtle);
  border: 1px solid var(--alb-off-white-faint);
  overflow: hidden;
  margin-bottom: 1rem;
}

.alb-pdp__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.alb-pdp__thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
}

.alb-pdp__thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border: 1px solid var(--alb-off-white-faint);
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
  overflow: hidden;
}

.alb-pdp__thumb:hover,
.alb-pdp__thumb.is-active {
  opacity: 1;
  border-color: var(--alb-off-white);
}

.alb-pdp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PDP Info */
.alb-pdp__info {
  padding-top: 1rem;
}

.alb-pdp__vendor {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--alb-off-white-dim);
  margin-bottom: 0.5rem;
}

.alb-pdp__title {
  font-family: var(--alb-font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.75rem 0;
}

.alb-pdp__accent {
  width: 60px;
  height: 4px;
  background-color: var(--alb-pdp-accent, var(--alb-off-white));
  margin-bottom: 1.5rem;
}

.alb-pdp__price {
  font-family: var(--alb-font-heading);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.alb-pdp__price-compare {
  text-decoration: line-through;
  color: var(--alb-off-white-dim);
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

/* Tasting Notes Sticker */
.alb-pdp__notes {
  border: 2px solid var(--alb-off-white);
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.alb-pdp__notes::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--alb-off-white-faint);
  pointer-events: none;
}

.alb-pdp__notes-title {
  font-family: var(--alb-font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 0.75rem 0;
  color: var(--alb-off-white-dim);
}

.alb-pdp__notes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.alb-pdp__note {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--alb-off-white-faint);
  color: var(--alb-off-white);
}

/* Variants/Options */
.alb-pdp__variants {
  margin-bottom: 1.5rem;
}

.alb-pdp__variant-label {
  font-family: var(--alb-font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.alb-pdp__variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.alb-pdp__variant-option {
  padding: 0.75rem 1.25rem;
  font-family: var(--alb-font-body);
  font-size: 0.875rem;
  background-color: transparent;
  border: 1px solid var(--alb-off-white-faint);
  color: var(--alb-off-white);
  cursor: pointer;
  transition: all 0.2s ease;
}

.alb-pdp__variant-option:hover {
  border-color: var(--alb-off-white);
}

.alb-pdp__variant-option.is-selected {
  background-color: var(--alb-off-white);
  color: var(--alb-black);
  border-color: var(--alb-off-white);
}

.alb-pdp__variant-option:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Quantity */
.alb-pdp__qty {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.alb-pdp__qty-label {
  font-family: var(--alb-font-heading);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 1rem;
}

.alb-pdp__qty-controls {
  display: flex;
  border: 1px solid var(--alb-off-white-faint);
}

.alb-pdp__qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: none;
  color: var(--alb-off-white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.alb-pdp__qty-btn:hover {
  background-color: var(--alb-off-white-faint);
}

.alb-pdp__qty-value {
  width: 60px;
  text-align: center;
  font-family: var(--alb-font-heading);
  font-size: 1.125rem;
  border-left: 1px solid var(--alb-off-white-faint);
  border-right: 1px solid var(--alb-off-white-faint);
  line-height: 44px;
}

/* Add to Cart */
.alb-pdp__add-btn {
  width: 100%;
  padding: 1.25rem 2rem;
  font-family: var(--alb-font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--alb-off-white);
  color: var(--alb-black);
  border: 2px solid var(--alb-off-white);
  cursor: pointer;
  transition: all 0.25s ease;
  margin-bottom: 1rem;
}

.alb-pdp__add-btn:hover {
  background-color: transparent;
  color: var(--alb-off-white);
}

.alb-pdp__add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Description */
.alb-pdp__description {
  padding-top: 1.5rem;
  border-top: 1px solid var(--alb-off-white-faint);
}

.alb-pdp__description h4,
.alb-pdp__description h5,
.alb-pdp__description h6 {
  font-family: var(--alb-font-heading);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 1.5rem 0 0.75rem;
}

.alb-pdp__description p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--alb-off-white-dim);
  margin: 0 0 1rem 0;
}

.alb-pdp__description ul,
.alb-pdp__description ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem 0;
  color: var(--alb-off-white-dim);
}

.alb-pdp__description li {
  margin-bottom: 0.5rem;
}

/* ============================================
   COLLECTION PAGE STYLES
   ============================================ */

.alb-collection {
  background-color: var(--alb-black);
  padding: 2rem 0 4rem;
}

.alb-collection__header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 1.5rem;
}

.alb-collection__title {
  font-family: var(--alb-font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
  color: var(--alb-off-white);
}

.alb-collection__count {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--alb-off-white-dim);
}

.alb-collection__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (max-width: 1199px) {
  .alb-collection__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 749px) {
  .alb-collection__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 479px) {
  .alb-collection__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   DAWN THEME OVERRIDES
   ============================================ */

/* Override Dawn's default product card */
.card-wrapper {
  background-color: transparent;
}

.card {
  background-color: transparent;
}

.card__inner {
  border-radius: 0;
}

/* Override Dawn's buttons */
.button {
  font-family: var(--alb-font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0;
}

/* Override Dawn's product page */
.product {
  background-color: var(--alb-black);
}

.product__title {
  font-family: var(--alb-font-heading);
  text-transform: uppercase;
}

/* Override Dawn's header (fallback) */
.header-wrapper {
  background-color: var(--alb-black) !important;
  border-bottom: 1px solid var(--alb-off-white-faint);
}

.header__heading-link {
  color: var(--alb-off-white);
}

/* Override Dawn's footer (fallback) */
.footer {
  background-color: var(--alb-black);
  border-top: 1px solid var(--alb-off-white-faint);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.alb-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* ============================================
   PRODUCT PAGE - MODERN DAWN / REFRESH
   Block-based product-information section
   ============================================ */

/* Section background */
[data-section-type="product-information"],
.product-information,
section.shopify-section-template-product {
  background-color: var(--alb-black) !important;
}

/* Product title - targets the h1 inside text blocks */
.product-information h1,
[data-block-type="text"] h1,
.type-preset-h3 h1,
.type-preset-h2 h1,
.type-preset-h1 h1 {
  font-family: var(--alb-font-heading) !important;
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
  line-height: 0.95 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  color: var(--alb-off-white) !important;
  margin: 0 !important;
}

/* Price styling */
[data-block-type="price"],
.price-wrapper,
.product-price {
  font-family: var(--alb-font-heading) !important;
  font-size: 1.5rem !important;
  color: var(--alb-off-white) !important;
}

.price--on-sale .price-item--regular,
.price s,
del {
  text-decoration: line-through !important;
  color: var(--alb-off-white-dim) !important;
  font-size: 1rem !important;
}

/* Variant picker buttons */
[data-block-type="variant-picker"] label,
.variant-picker label,
.variant-picker__button,
.product-form__input label,
fieldset[data-variant-option] label {
  background-color: transparent !important;
  border: 1px solid var(--alb-off-white-faint) !important;
  color: var(--alb-off-white) !important;
  font-family: var(--alb-font-body) !important;
  font-size: 0.875rem !important;
  padding: 0.75rem 1.25rem !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  min-width: 44px !important;
  min-height: 44px !important;
}

[data-block-type="variant-picker"] input:checked + label,
.variant-picker input:checked + label,
.variant-picker__button--selected,
fieldset[data-variant-option] input:checked + label {
  background-color: var(--alb-off-white) !important;
  color: var(--alb-black) !important;
  border-color: var(--alb-off-white) !important;
}

[data-block-type="variant-picker"] label:hover,
.variant-picker label:hover {
  border-color: var(--alb-off-white) !important;
}

/* Variant picker fieldset/legend */
[data-block-type="variant-picker"] legend,
.variant-picker__label,
.product-form__group-name {
  font-family: var(--alb-font-heading) !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--alb-off-white) !important;
  margin-bottom: 0.75rem !important;
}

/* Quantity selector */
[data-block-type="buy-buttons"] .quantity,
.quantity-selector,
.product-form__quantity {
  border: 1px solid var(--alb-off-white-faint) !important;
  border-radius: 0 !important;
  background: transparent !important;
  display: inline-flex !important;
  align-items: center !important;
}

.quantity__button,
.quantity-selector__button,
.js-qty__adjust {
  background: transparent !important;
  border: none !important;
  color: var(--alb-off-white) !important;
  width: 44px !important;
  height: 44px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}

.quantity__button:hover,
.quantity-selector__button:hover {
  background: var(--alb-off-white-faint) !important;
}

.quantity__input,
.quantity-selector__input,
.js-qty__num {
  background: transparent !important;
  border: none !important;
  border-left: 1px solid var(--alb-off-white-faint) !important;
  border-right: 1px solid var(--alb-off-white-faint) !important;
  color: var(--alb-off-white) !important;
  font-family: var(--alb-font-heading) !important;
  font-size: 1rem !important;
  text-align: center !important;
  width: 60px !important;
  height: 44px !important;
}

/* Add to Cart button */
[data-block-type="buy-buttons"] button[type="submit"],
[data-block-type="add-to-cart"] button,
.product-form__submit,
.add-to-cart,
button[name="add"] {
  background-color: var(--alb-off-white) !important;
  color: var(--alb-black) !important;
  border: 2px solid var(--alb-off-white) !important;
  border-radius: 0 !important;
  font-family: var(--alb-font-heading) !important;
  font-size: 1.125rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 1.125rem 2rem !important;
  min-height: 56px !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  width: 100% !important;
}

[data-block-type="buy-buttons"] button[type="submit"]:hover,
.product-form__submit:hover,
button[name="add"]:hover {
  background-color: transparent !important;
  color: var(--alb-off-white) !important;
}

[data-block-type="buy-buttons"] button[type="submit"]:disabled,
.product-form__submit:disabled,
button[name="add"]:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

/* Buy it now / Accelerated checkout */
[data-block-type="accelerated-checkout"] button,
.shopify-payment-button button,
.shopify-payment-button__button {
  border-radius: 0 !important;
  font-family: var(--alb-font-heading) !important;
  letter-spacing: 0.05em !important;
}

.shopify-payment-button__button--unbranded {
  background-color: transparent !important;
  border: 1px solid var(--alb-off-white-faint) !important;
  color: var(--alb-off-white) !important;
}

/* Divider */
[data-block-type="_divider"],
.product-information hr,
.divider {
  border-color: var(--alb-off-white-faint) !important;
  opacity: 1 !important;
}

/* Product description */
[data-block-type="text"] .rte,
.product-description,
.product__description {
  color: var(--alb-off-white-dim) !important;
  font-size: 0.9375rem !important;
  line-height: 1.75 !important;
}

[data-block-type="text"] .rte h1,
[data-block-type="text"] .rte h2,
[data-block-type="text"] .rte h3,
[data-block-type="text"] .rte h4,
[data-block-type="text"] .rte h5,
[data-block-type="text"] .rte h6 {
  font-family: var(--alb-font-heading) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--alb-off-white) !important;
  margin-top: 1.5rem !important;
}

[data-block-type="text"] .rte p {
  margin-bottom: 1rem !important;
}

[data-block-type="text"] .rte ul,
[data-block-type="text"] .rte ol {
  padding-left: 1.25rem !important;
  color: var(--alb-off-white-dim) !important;
}

[data-block-type="text"] .rte a {
  color: var(--alb-off-white) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

/* Product media gallery */
[data-block-type="_product-media-gallery"],
.product-media-gallery,
.product__media-wrapper {
  background-color: var(--alb-off-white-subtle) !important;
}

.product-media-gallery__media,
.product__media,
.product__media-item {
  background-color: var(--alb-off-white-subtle) !important;
  border: 1px solid var(--alb-off-white-faint) !important;
  border-radius: 0 !important;
}

/* Thumbnails */
.product-media-gallery__thumbnail,
.thumbnail,
.product__thumbnail {
  border: 1px solid var(--alb-off-white-faint) !important;
  border-radius: 0 !important;
  opacity: 0.6 !important;
  transition: all 0.2s ease !important;
  overflow: hidden !important;
}

.product-media-gallery__thumbnail:hover,
.product-media-gallery__thumbnail--active,
.thumbnail:hover,
.thumbnail--active,
.product__thumbnail--active {
  opacity: 1 !important;
  border-color: var(--alb-off-white) !important;
}

/* Product details container */
[data-block-type="_product-details"],
.product-details,
.product__info-wrapper {
  color: var(--alb-off-white) !important;
}

/* Groups inside product details */
[data-block-type="group"] {
  color: var(--alb-off-white) !important;
}

/* ============================================
   PRODUCT RECOMMENDATIONS
   ============================================ */

[data-section-type="product-recommendations"],
.product-recommendations {
  background-color: var(--alb-black) !important;
}

[data-section-type="product-recommendations"] h3,
.product-recommendations__heading {
  font-family: var(--alb-font-heading) !important;
  font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--alb-off-white) !important;
}

/* Product cards in recommendations */
[data-block-type="_product-card"],
.product-card {
  background-color: transparent !important;
  border: 1px solid var(--alb-off-white-faint) !important;
  border-radius: 0 !important;
  transition: all 0.3s ease !important;
}

[data-block-type="_product-card"]:hover,
.product-card:hover {
  border-color: var(--alb-off-white) !important;
  transform: translateY(-4px) !important;
}

/* Product card media */
[data-block-type="_product-card-gallery"],
.product-card__media {
  background-color: var(--alb-off-white-subtle) !important;
  border-radius: 0 !important;
}

/* Product card title */
[data-block-type="product-title"],
.product-card__title {
  font-family: var(--alb-font-heading) !important;
  font-size: 1.125rem !important;
  text-transform: uppercase !important;
  color: var(--alb-off-white) !important;
}

[data-block-type="product-title"] a,
.product-card__title a {
  color: inherit !important;
  text-decoration: none !important;
}

/* ============================================
   COLLECTION PAGE
   ============================================ */

[data-section-type="collection-grid"],
[data-section-type="main-collection"],
.collection-template,
.collection {
  background-color: var(--alb-black) !important;
}

.collection__title,
.collection-hero__title {
  font-family: var(--alb-font-heading) !important;
  font-size: clamp(2.5rem, 8vw, 5rem) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.02em !important;
  color: var(--alb-off-white) !important;
}

.collection__description {
  color: var(--alb-off-white-dim) !important;
}

/* Filters and sorting */
.facets,
.collection-filters {
  border-color: var(--alb-off-white-faint) !important;
}

.facets__heading,
.filter-group__title {
  font-family: var(--alb-font-heading) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: var(--alb-off-white) !important;
}

select,
.select__select {
  background-color: transparent !important;
  border: 1px solid var(--alb-off-white-faint) !important;
  border-radius: 0 !important;
  color: var(--alb-off-white) !important;
  font-family: var(--alb-font-body) !important;
}

/* ============================================
   GLOBAL FIXES
   ============================================ */

/* Remove all border-radius */
button,
input,
select,
textarea,
.button,
[class*="button"],
[class*="btn"] {
  border-radius: 0 !important;
}

/* Focus states */
*:focus-visible {
  outline: 2px solid var(--alb-off-white) !important;
  outline-offset: 2px !important;
}

/* Link colors */
a {
  color: var(--alb-off-white);
}

/* Form inputs */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
textarea {
  background-color: transparent !important;
  border: 1px solid var(--alb-off-white-faint) !important;
  border-radius: 0 !important;
  color: var(--alb-off-white) !important;
  font-family: var(--alb-font-body) !important;
}

input::placeholder,
textarea::placeholder {
  color: var(--alb-off-white-dim) !important;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--alb-off-white) !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Labels */
label {
  color: var(--alb-off-white) !important;
}

/* Icons */
svg {
  stroke: currentColor;
}

/* Badges */
.badge,
.tag,
.label {
  font-family: var(--alb-font-heading) !important;
  font-size: 0.6875rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  background-color: var(--alb-off-white) !important;
  color: var(--alb-black) !important;
  border-radius: 0 !important;
  padding: 0.375rem 0.75rem !important;
}

/* Ensure text is visible */
p, span, div, li, td, th {
  color: inherit;
}

/* Color scheme overrides - force dark everywhere */
[data-color-scheme],
.color-scheme-1,
.color-scheme-2,
.color-scheme-3 {
  --color-background: var(--alb-black) !important;
  --color-foreground: var(--alb-off-white) !important;
  background-color: var(--alb-black) !important;
  color: var(--alb-off-white) !important;
}
/* ============================================
   ALBANOTTE EXTRAS BLOCK
   ============================================ */

.alb-extras-block {
  padding: 1rem 0 1.5rem;
  width: 100%;
}

.alb-extras-block__accent {
  height: 5px;
  margin-bottom: 1rem;
}

.alb-extras-block__roast {
  font-family: var(--alb-font-heading), 'Bebas Neue', Impact, sans-serif !important;
  font-size: 0.875rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--alb-off-white-dim, rgba(242, 240, 234, 0.7)) !important;
  margin: 0 0 1rem 0 !important;
}

.alb-extras-block__notes {
  border: 2px solid var(--alb-off-white, #F2F0EA);
  padding: 1rem 1.25rem;
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.alb-extras-block__notes::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid var(--alb-off-white-faint, rgba(242, 240, 234, 0.15));
  pointer-events: none;
}

.alb-extras-block__notes-title {
  font-family: var(--alb-font-heading), 'Bebas Neue', Impact, sans-serif !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  color: var(--alb-off-white-dim, rgba(242, 240, 234, 0.7)) !important;
  margin: 0 0 0.625rem 0 !important;
}

.alb-extras-block__notes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.alb-extras-block__note {
  font-family: var(--alb-font-body), 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.3125rem 0.625rem;
  border: 1px solid var(--alb-off-white-faint, rgba(242, 240, 234, 0.15));
  color: var(--alb-off-white, #F2F0EA);
  transition: all 0.2s ease;
}

.alb-extras-block__note:hover {
  border-color: var(--alb-off-white, #F2F0EA);
  background-color: var(--alb-off-white-faint, rgba(242, 240, 234, 0.15));

 /* ============================================
   ALBANOTTE STREET CHARACTER LAYER v2
   Bold Italian Street / Wheat-Paste / Espresso
   ============================================ */

/* ---------- 1. BACKGROUND TEXTURE ---------- */
/* Visible crosshatch grain — like aged poster paper */

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(242, 240, 234, 0.07) 0px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(242, 240, 234, 0.05) 0px,
      transparent 1px,
      transparent 4px
    ),
    repeating-linear-gradient(
      45deg,
      transparent 0px,
      transparent 8px,
      rgba(242, 240, 234, 0.02) 8px,
      rgba(242, 240, 234, 0.02) 9px
    );
  background-size: 4px 4px, 5px 5px, 12px 12px;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 30% 20%,
    rgba(217, 178, 76, 0.03) 0%,
    transparent 50%
  ),
  radial-gradient(
    ellipse at 70% 80%,
    rgba(79, 183, 167, 0.02) 0%,
    transparent 50%
  );
}

body > * {
  position: relative;
  z-index: 1;
}

/* ---------- 2. SECTION DEPTH ---------- */
/* Visible alternating panels — not flat black */

.shopify-section:nth-child(odd) {
  background-color: #0D0D0D !important;
}

.shopify-section:nth-child(even) {
  background-color: #121210 !important;
}

/* Visible section dividers — torn edge feel */
.shopify-section + .shopify-section {
  border-top: 1px solid rgba(242, 240, 234, 0.06);
  box-shadow: inset 0 1px 0 rgba(242, 240, 234, 0.03);
}

/* ---------- 3. STICKER CLASS — BOLD ---------- */

.alb-sticker {
  position: relative;
  border: 2px solid rgba(242, 240, 234, 0.7) !important;
  background-color: #141412 !important;
  box-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.5),
    4px 4px 0 rgba(0, 0, 0, 0.2),
    inset 0 0 20px rgba(0, 0, 0, 0.3) !important;
}

/* Inner border — the double-cut sticker edge */
.alb-sticker::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(242, 240, 234, 0.15);
  pointer-events: none;
  z-index: 1;
}

/* Outer rough edge — slightly misaligned */
.alb-sticker::after {
  content: '';
  position: absolute;
  inset: -2px;
  border: 1px solid rgba(242, 240, 234, 0.08);
  transform: rotate(-0.6deg);
  pointer-events: none;
}

.alb-sticker:hover {
  box-shadow:
    5px 5px 0 rgba(0, 0, 0, 0.5),
    7px 7px 0 rgba(0, 0, 0, 0.2),
    inset 0 0 20px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-3px) rotate(-0.3deg);
  transition: all 0.2s ease;
}

/* ---------- 4. TAPE CLASS — VISIBLE ---------- */

.alb-tape {
  position: relative;
}

.alb-tape::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-1.5deg);
  width: 80px;
  height: 18px;
  background: linear-gradient(
    180deg,
    rgba(242, 240, 234, 0.1) 0%,
    rgba(242, 240, 234, 0.06) 100%
  );
  border: 1px solid rgba(242, 240, 234, 0.08);
  backdrop-filter: blur(2px);
  z-index: 10;
  pointer-events: none;
  /* Tape texture */
  box-shadow: 
    0 1px 2px rgba(0, 0, 0, 0.3),
    inset 0 0 4px rgba(242, 240, 234, 0.03);
}

.alb-tape--wide::before {
  width: 100px;
  height: 20px;
  transform: translateX(-50%) rotate(0.8deg);
}

.alb-tape--left::before {
  left: 15%;
  transform: rotate(-2.5deg);
}

.alb-tape--right::before {
  left: auto;
  right: 15%;
  transform: rotate(1.8deg);
}

/* Double tape — second strip */
.alb-tape--double::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(1deg);
  width: 70px;
  height: 16px;
  background: linear-gradient(
    180deg,
    rgba(242, 240, 234, 0.08) 0%,
    rgba(242, 240, 234, 0.04) 100%
  );
  border: 1px solid rgba(242, 240, 234, 0.06);
  z-index: 10;
  pointer-events: none;
}

/* ---------- 5. STAMP MARK ---------- */

.alb-stamp {
  position: relative;
}

.alb-stamp::after {
  content: 'ALBANOTTE ★ ROASTED IN USA ★';
  position: absolute;
  top: 15px;
  right: 15px;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(242, 240, 234, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--alb-font-heading), 'Bebas Neue', Impact, sans-serif;
  font-size: 0.35rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(242, 240, 234, 0.12);
  transform: rotate(-20deg);
  pointer-events: none;
  z-index: 2;
  text-align: center;
  padding: 8px;
  line-height: 1.4;
  /* Double circle */
  box-shadow: inset 0 0 0 3px transparent, inset 0 0 0 5px rgba(242, 240, 234, 0.08);
}

/* ---------- 6. HEADER — STREET SIGNAGE ---------- */

.alb-header {
  background-color: #0B0B0B !important;
  border-bottom: 2px solid rgba(242, 240, 234, 0.12) !important;
  /* Worn sign grain */
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 3px,
      rgba(242, 240, 234, 0.015) 3px,
      rgba(242, 240, 234, 0.015) 4px
    ) !important;
}

/* Double bottom line — street sign style */
.alb-header::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(242, 240, 234, 0.06);
  pointer-events: none;
}

/* Nav hover — thick accent slash */
.alb-header__nav-link::after {
  height: 3px !important;
  bottom: -6px !important;
  /* Slight angle like a brush stroke */
  transform: skewX(-5deg);
  transform-origin: left;
}

/* Logo — espresso bar sign feel */
.alb-header__logo {
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.6) !important;
  position: relative !important;
}

.alb-header__logo::after {
  content: '®';
  position: absolute;
  top: 0;
  right: -12px;
  font-size: 0.5rem;
  color: rgba(242, 240, 234, 0.3);
}

/* Sticky header — more visible backdrop */
.alb-header.is-scrolled {
  background-color: rgba(11, 11, 11, 0.92) !important;
  backdrop-filter: blur(15px) saturate(120%) !important;
  border-bottom-color: rgba(242, 240, 234, 0.08) !important;
}

/* ---------- 7. FOOTER — WHEAT PASTE ---------- */

.alb-footer {
  background-color: #0A0A0A !important;
  border-top: 3px solid rgba(242, 240, 234, 0.15) !important;
  position: relative !important;
}

/* Torn edge at top of footer */
.alb-footer::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    rgba(242, 240, 234, 0.1) 0px,
    rgba(242, 240, 234, 0.1) 4px,
    transparent 4px,
    transparent 8px,
    rgba(242, 240, 234, 0.06) 8px,
    rgba(242, 240, 234, 0.06) 10px,
    transparent 10px,
    transparent 16px
  );
  pointer-events: none;
}

/* Email signup — full sticker poster feel */
.alb-footer__signup {
  background-color: #151513 !important;
  border: 2px solid rgba(242, 240, 234, 0.6) !important;
  box-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.5),
    5px 5px 0 rgba(0, 0, 0, 0.2),
    inset 0 0 30px rgba(0, 0, 0, 0.3) !important;
  position: relative !important;
}

/* Tape on email signup */
.alb-footer__signup::after {
  content: '';
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%) rotate(-1.2deg);
  width: 80px;
  height: 18px;
  background: linear-gradient(
    180deg,
    rgba(242, 240, 234, 0.1) 0%,
    rgba(242, 240, 234, 0.05) 100%
  );
  border: 1px solid rgba(242, 240, 234, 0.08);
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Social links — espresso coaster shape */
.alb-footer__social-link {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4) !important;
  transition: all 0.15s ease !important;
}

.alb-footer__social-link:hover {
  transform: rotate(-3deg) scale(1.05) !important;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.5) !important;
}

/* Footer links — visible underline swoosh */
.alb-footer__link a::after {
  height: 2px !important;
  background: linear-gradient(90deg, #F2F0EA, transparent) !important;
  transform: skewX(-8deg) !important;
}

/* Tricolor — subtle but visible stitch */
.alb-footer__tricolor {
  box-shadow: 0 0 0 2px rgba(242, 240, 234, 0.1), 1px 1px 2px rgba(0, 0, 0, 0.4) !important;
}

/* ---------- 8. PRODUCT CARDS — MINI POSTERS ---------- */

.alb-card,
[data-block-type="_product-card"],
.product-card {
  background-color: #141412 !important;
  border: 1px solid rgba(242, 240, 234, 0.15) !important;
  box-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.4),
    4px 4px 0 rgba(0, 0, 0, 0.15) !important;
  transition: all 0.25s ease !important;
  position: relative !important;
}

/* Inner frame line */
.alb-card::before,
[data-block-type="_product-card"]::before {
  content: '' !important;
  position: absolute !important;
  inset: 4px !important;
  border: 1px solid rgba(242, 240, 234, 0.07) !important;
  pointer-events: none !important;
  z-index: 2 !important;
}

/* Card hover — dramatic lift */
.alb-card:hover,
[data-block-type="_product-card"]:hover,
.product-card:hover {
  border-color: rgba(242, 240, 234, 0.5) !important;
  box-shadow:
    5px 5px 0 rgba(0, 0, 0, 0.4),
    8px 8px 0 rgba(0, 0, 0, 0.15),
    12px 12px 20px rgba(0, 0, 0, 0.3) !important;
  transform: translateY(-6px) rotate(-0.3deg) !important;
}

/* Accent bar — thicker, with glow */
.alb-card__accent {
  height: 4px !important;
  position: relative !important;
}

.alb-card__accent::after {
  content: '';
  position: absolute;
  inset: 0;
  filter: blur(6px);
  opacity: 0.3;
  background: inherit;
}

.alb-card:hover .alb-card__accent {
  height: 6px !important;
}

/* Card title — poster headline style */
.alb-card__title,
[data-block-type="product-title"] {
  font-size: 1.25rem !important;
  letter-spacing: 0.04em !important;
  line-height: 1.05 !important;
  text-transform: uppercase !important;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3) !important;
}

/* Card vendor / micro text */
.alb-card__vendor,
.alb-card__subtitle {
  font-size: 0.5625rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: rgba(242, 240, 234, 0.45) !important;
}

/* Quick add — stamp button */
.alb-card__quick-btn {
  letter-spacing: 0.15em !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5) !important;
  border: 1px solid rgba(11, 11, 11, 0.3) !important;
}

.alb-card__quick-btn:hover {
  transform: translate(1px, 1px) !important;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5) !important;
}

/* Card image — slight vignette */
.alb-card__media::after,
[data-block-type="_product-card-gallery"]::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* ---------- 9. PRODUCT PAGE — ESPRESSO BAR ---------- */

/* Title accent underline — visible colored bar */
[data-block-type="text"] h1::after,
.product__title::after {
  content: '' !important;
  display: block !important;
  width: 80px !important;
  height: 5px !important;
  background-color: var(--alb-off-white, #F2F0EA) !important;
  margin-top: 1rem !important;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4) !important;
  transform: skewX(-3deg) !important;
}

/* Product details — warm charcoal panel */
[data-block-type="_product-details"],
.product-details,
.product__info-wrapper {
  background-color: #131311 !important;
  border-left: 3px solid rgba(242, 240, 234, 0.08) !important;
  padding-left: 2rem !important;
}

@media (max-width: 989px) {
  [data-block-type="_product-details"],
  .product-details,
  .product__info-wrapper {
    border-left: none !important;
    border-top: 3px solid rgba(242, 240, 234, 0.08) !important;
    padding-left: 0 !important;
    padding-top: 2rem !important;
  }
}

/* Product media — gallery frame */
.product-media-gallery__media,
.product__media-item,
[data-block-type="_product-media-gallery"] img {
  border: 2px solid rgba(242, 240, 234, 0.08) !important;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3) !important;
}

/* Tasting notes sticker — BOLD */
.alb-extras-block__notes {
  background-color: #161614 !important;
  border: 2px solid rgba(242, 240, 234, 0.6) !important;
  box-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.5),
    5px 5px 0 rgba(0, 0, 0, 0.2) !important;
  padding: 1.25rem 1.5rem !important;
}

/* Note chips — mini label stickers */
.alb-extras-block__note {
  background-color: rgba(242, 240, 234, 0.04) !important;
  border: 1px solid rgba(242, 240, 234, 0.25) !important;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3) !important;
  padding: 0.375rem 0.75rem !important;
  font-size: 0.6875rem !important;
}

.alb-extras-block__note:hover {
  background-color: rgba(242, 240, 234, 0.08) !important;
  border-color: rgba(242, 240, 234, 0.5) !important;
  transform: rotate(-1deg) !important;
}

/* Buy button — street poster CTA */
[data-block-type="buy-buttons"] button[type="submit"],
.product-form__submit,
button[name="add"] {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5) !important;
  text-shadow: none !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Press-in effect on click */
[data-block-type="buy-buttons"] button[type="submit"]:hover,
.product-form__submit:hover,
button[name="add"]:hover {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4) !important;
  transform: translate(2px, 2px) !important;
  transition: all 0.1s ease !important;
}

[data-block-type="buy-buttons"] button[type="submit"]:active,
.product-form__submit:active,
button[name="add"]:active {
  box-shadow: 0px 0px 0 rgba(0, 0, 0, 0.4) !important;
  transform: translate(4px, 4px) !important;
}

/* Variant buttons — pressed label */
[data-block-type="variant-picker"] label,
fieldset[data-variant-option] label {
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3) !important;
  transition: all 0.15s ease !important;
}

[data-block-type="variant-picker"] label:hover,
fieldset[data-variant-option] label:hover {
  transform: translate(1px, 1px) !important;
  box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3) !important;
}

[data-block-type="variant-picker"] input:checked + label,
fieldset[data-variant-option] input:checked + label {
  box-shadow: inset 0 0 0 1px #0B0B0B, 3px 3px 0 rgba(0, 0, 0, 0.4) !important;
}

/* ---------- 10. HERO + CUSTOM SECTIONS ---------- */

/* Hero — bold poster feel */
.albanotte-hero {
  border-bottom: 3px solid rgba(242, 240, 234, 0.1) !important;
}

/* Grain overlay on hero and grid */
.albanotte-hero::after,
.albanotte-drop-grid::after,
.albanotte-box::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.04 !important;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 1px,
      rgba(242, 240, 234, 0.15) 1px,
      rgba(242, 240, 234, 0.15) 2px
    ) !important;
  background-size: 4px 4px !important;
}

.albanotte-hero > *,
.albanotte-drop-grid > *,
.albanotte-box > * {
  position: relative !important;
  z-index: 1 !important;
}

/* Drop grid — warmer background */
.albanotte-drop-grid {
  background-color: #0E0E0C !important;
}

/* Build a Box summary — poster sticker */
.albanotte-box__summary-sticker {
  background-color: #161614 !important;
  box-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.5),
    5px 5px 0 rgba(0, 0, 0, 0.2) !important;
}

/* Story section — warm panel */
.albanotte-story {
  background-color: #111110 !important;
}

/* Value cards — mini poster stickers */
.albanotte-value {
  background-color: #151513 !important;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3) !important;
  border-color: rgba(242, 240, 234, 0.2) !important;
  transition: all 0.2s ease !important;
}

.albanotte-value:hover {
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.4) !important;
  transform: translateY(-3px) rotate(-0.5deg) !important;
  border-color: rgba(242, 240, 234, 0.5) !important;
}

/* ---------- 11. TYPOGRAPHY — STREET POSTER ---------- */

/* Headings — condensed and commanding */
h1, h2, h3 {
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3) !important;
}

/* All micro copy — Italian café menu style */
.alb-footer__tagline,
.alb-footer__copy,
.alb-drawer__tagline,
.albanotte-microline,
.alb-card__vendor,
.alb-extras-block__roast,
.alb-extras-block__notes-title,
.albanotte-box__counter-label,
.albanotte-box__summary-label,
.albanotte-product-card__origin {
  font-size: 0.625rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: rgba(242, 240, 234, 0.45) !important;
}

/* ---------- 12. DIVIDERS — ROUGH LINES ---------- */

hr,
.divider,
[data-block-type="_divider"] {
  border: none !important;
  height: 2px !important;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(242, 240, 234, 0.15) 5%,
      rgba(242, 240, 234, 0.08) 30%,
      rgba(242, 240, 234, 0.12) 50%,
      rgba(242, 240, 234, 0.06) 70%,
      rgba(242, 240, 234, 0.15) 95%,
      transparent 100%
    ) !important;
}

/* ---------- 13. SCROLLBAR ---------- */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0B0B0B; }
::-webkit-scrollbar-thumb {
  background: #2A2A28;
  border: 1px solid #0B0B0B;
}
::-webkit-scrollbar-thumb:hover { background: #3A3A38; }
html {
  scrollbar-color: #2A2A28 #0B0B0B;
  scrollbar-width: thin;
}

/* ---------- 14. SELECTION ---------- */

::selection {
  background-color: rgba(217, 178, 76, 0.25);
  color: #F2F0EA;
}

/* ---------- 15. ITALIAN ESPRESSO RING ---------- */
/* Subtle coffee ring watermark on certain sections */

.albanotte-story::before,
.alb-footer::after {
  content: '' !important;
  position: absolute !important;
  width: 120px !important;
  height: 120px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(217, 178, 76, 0.04) !important;
  box-shadow: inset 0 0 15px rgba(217, 178, 76, 0.02) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.albanotte-story::before {
  top: 40px !important;
  right: 60px !important;
  transform: rotate(15deg) !important;
}

.alb-footer::after {
  bottom: 80px !important;
  left: 40px !important;
  width: 90px !important;
  height: 90px !important;
}

/* ============================================
   END STREET CHARACTER LAYER v2
   ============================================ */
   /* ============================================
   ALBANOTTE GLOBAL COHESION PATCH
   
   Add this to your theme's main CSS file
   (usually assets/base.css or assets/theme.css)
   OR create a new snippet and include it in theme.liquid
   
   Fixes: hero transition, section flow, spacing rhythm
   ============================================ */

/* ---- Consistent Section Spacing ---- */
.alb-hero-street,
.alb-trust-bar,
.alb-coffee,
.alb-merch-grid,
.alb-story {
  position: relative;
}

/* ---- Hero to Trust Bar Transition ---- */

/* Hero: softer bottom edge */
.alb-hero-street {
  padding-bottom: 3.5rem;
  margin-bottom: 0;
  border-bottom: none;
}

/* Gradient fade at hero bottom */
.alb-hero-street::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent 0%, #0B0B0B 100%);
  pointer-events: none;
  z-index: 0;
}

/* Trust bar: seamless connection */
.alb-trust-bar {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  border-top: none !important;
}

/* ---- Trust Bar to Coffee Grid Transition ---- */

/* Subtle divider between trust and coffee */
.alb-trust-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(242, 240, 234, 0.06) 20%,
    rgba(242, 240, 234, 0.08) 50%,
    rgba(242, 240, 234, 0.06) 80%,
    transparent 100%
  );
}

/* ---- Coffee to Story Transition ---- */

/* Coffee section: add breathing room */
.alb-coffee {
  padding-bottom: 5rem;
}

/* Story entrance: no harsh edge */
.alb-story {
  position: relative;
}

/* If story has cream background, add top shadow for depth */
.alb-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* ---- Unified Background Tones ---- */

/* Make sure all dark sections share the same base */
.alb-hero-street,
.alb-trust-bar,
.alb-coffee,
.alb-merch-grid {
  --unified-dark: #0B0B0B;
}

/* Trust bar blends with hero */
.alb-trust-bar {
  background-color: #0D0D0B !important;
}

/* Coffee slightly warmer to create depth without contrast */
.alb-coffee {
  background-color: #0C0C0A !important;
}

/* ---- Smoother Card Hovers ---- */

.alb-coffee__card,
.alb-merch-grid__card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* ---- Consistent Typography Scale ---- */

.alb-coffee__heading,
.alb-merch-grid__heading,
.alb-story__heading {
  font-family: 'Bebas Neue', Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---- Mobile Rhythm ---- */

@media (max-width: 749px) {
  .alb-hero-street {
    padding-bottom: 2.5rem;
  }

  .alb-hero-street::after {
    height: 50px;
  }

  .alb-coffee {
    padding-top: 2.5rem;
    padding-bottom: 3.5rem;
  }

  .alb-story {
    padding-top: 0;
  }
}

/* ---- Remove Double Borders ---- */

/* Kill any redundant borders between sections */
.shopify-section + .shopify-section {
  margin-top: 0;
}

.alb-trust-bar,
.alb-coffee,
.alb-story {
  border-top: none !important;
}