@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;600;900&family=Playfair+Display:ital,wght@1,600&display=swap');

/* GLOBAL SCROLLBAR */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--color-washed-black);
}
::-webkit-scrollbar-thumb {
  background: var(--color-oxblood);
  border: 2px solid var(--color-washed-black);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-light-gray);
}

:root {
  /* Alequi Studio Palette */
  --color-cream: #F2EDE5;
  --color-faded-denim: #5C7EA1;
  --color-oxblood: #7A2630;
  --color-washed-black: #1F1F1F;
  --color-light-gray: #DAD6D1;

  /* Typography */
  --font-display: 'Anton', sans-serif; /* For bold, uppercase headings */
  --font-tagline: 'Playfair Display', serif; /* For italic taglines */
  --font-body: 'Inter', sans-serif; /* For general text */
}

html, body {
  background-color: var(--color-cream);
  color: var(--color-washed-black);
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent; /* No ugly blue tap boxes */
}

/* Accessibility: Remove default outline, use focus-visible */
*:focus:not(:focus-visible) {
  outline: none;
}
*:focus-visible {
  outline: 3px dashed var(--color-faded-denim);
  outline-offset: 4px;
}

main.container {
  flex: 1;
}

/* TOP BANNER */
.top-banner {
  background-color: var(--color-washed-black);
  color: var(--color-cream);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 8px 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.4;
}

/* HEADER */
header {
  border-bottom: 1px solid var(--color-light-gray);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-cream);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-left, .header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-right {
  justify-content: flex-end;
  gap: 20px;
}

.hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--color-washed-black);
}

.logo {
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo a {
  text-decoration: none;
  color: var(--color-washed-black);
  font-size: 2.5rem;
  letter-spacing: 1px;
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: 2px;
}

.logo .sub-logo {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 6px;
  font-weight: 900;
  color: var(--color-washed-black);
  margin-right: -6px; /* offset the extra letter spacing on the right */
}

.icon {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

/* UTILITIES & BUTTONS */
.btn-primary {
  background-color: var(--color-faded-denim);
  color: var(--color-cream);
  padding: 15px 35px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: 1px;
  display: inline-block;
  border: 3px solid transparent;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background-color: var(--color-washed-black);
    transform: translateY(-2px);
  }
}
.btn-primary:active {
  transform: translateY(1px);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* HERO SECTION */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  /* Grunge texture background overlay can be applied here */
  background-image: radial-gradient(circle at center, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.08) 100%);
  border-bottom: 1px solid var(--color-light-gray);
}

.hero-text-wrapper {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.9;
  color: var(--color-oxblood);
  text-transform: uppercase;
  margin: 0 0 10px 0;
  letter-spacing: -1px;
}

.hero-tagline {
  font-family: var(--font-tagline);
  font-size: 2.5rem;
  color: var(--color-washed-black);
  margin: 0 0 20px 0;
}

.hero-subtitle {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--color-washed-black);
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper img {
  max-width: 120%;
  height: auto;
  object-fit: cover;
}

/* GLOBAL RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .top-banner {
    font-size: 0.62rem;
    line-height: 1.15;
    padding: 5px 8px;
    letter-spacing: 0.5px;
  }

  header {
    padding: 8px 14px;
    min-height: 50px;
  }

  .header-right {
    gap: 12px;
  }

  .logo a {
    font-size: 1.62rem;
    line-height: 0.86;
  }

  .logo .sub-logo {
    font-size: 0.52rem;
    letter-spacing: 4px;
    margin-right: -4px;
  }

  .hamburger {
    min-width: 36px;
    min-height: 36px;
    justify-content: center;
  }

  .icon {
    width: 21px;
    height: 21px;
  }
}

/* GLOBAL WHATSAPP CONTACT */
.whatsapp-float {
  position: fixed;
  right: clamp(18px, 2.2vw, 34px);
  bottom: calc(clamp(18px, 2.2vw, 30px) + env(safe-area-inset-bottom));
  z-index: 900;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 7px 18px 7px 8px;
  color: var(--color-cream);
  background: var(--color-oxblood);
  border: 2px solid var(--color-washed-black);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--color-washed-black);
  box-sizing: border-box;
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: transform 180ms ease, box-shadow 180ms ease, bottom 220ms ease, opacity 180ms ease;
}

.whatsapp-float__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  color: var(--color-washed-black);
  background: #25d366;
  border: 2px solid var(--color-washed-black);
  border-radius: 50%;
}

.whatsapp-float__icon svg {
  width: 27px;
  height: 27px;
}

.whatsapp-float__label {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-transform: uppercase;
}

.whatsapp-float__label small {
  margin-bottom: 3px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.82;
}

.whatsapp-float__label strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.whatsapp-float:hover {
  color: var(--color-cream);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--color-washed-black);
}

.whatsapp-float:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--color-washed-black);
}

.whatsapp-float:focus-visible {
  outline-color: #25d366;
  outline-style: solid;
}

.toast-notification.active ~ .whatsapp-float {
  bottom: calc(98px + env(safe-area-inset-bottom));
}

body.mini-cart-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
}

@media (max-width: 900px) {
  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 54px;
    min-height: 54px;
    padding: 5px;
    justify-content: center;
    box-shadow: 4px 4px 0 var(--color-washed-black);
  }

  .whatsapp-float__icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .whatsapp-float__label {
    display: none;
  }

  .toast-notification.active ~ .whatsapp-float {
    bottom: calc(92px + env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float {
    transition: none;
  }
}
