@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Roboto+Condensed:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

.home-page-shell {
  width: 100%;
  padding-bottom: 2rem;
}




/* 
__________________________________________________________________
ANNOUNCEMENTS
ANNOUNCEMENTS
ANNOUNCEMENTS
ANNOUNCEMENTS
ANNOUNCEMENTS
__________________________________________________________________
*/
.home-announcement {
  max-width: 1440px;
  margin: 1rem auto 0;
  margin-bottom: 0.75rem;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(47, 39, 19, 0.98) 0%, rgba(28, 24, 13, 0.98) 100%);
  border: 1px solid rgba(214, 196, 154, 0.18);
  box-shadow: var(--pp-shadow-sm);
}

.home-announcement__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.2rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(214, 196, 154, 0.12);
  border: 1px solid rgba(214, 196, 154, 0.18);
  color: var(--pp-accent-strong);
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  flex: 0 0 auto;
}

.home-announcement__content h3 {
  margin: 0 0 0.3rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pp-text);
}

.home-announcement__content p {
  margin: 0;
  color: var(--pp-text-soft);
  line-height: 1.6;
}









/* 
__________________________________________________________________
SLIDER BANNER
SLIDER BANNER
SLIDER BANNER
SLIDER BANNER
SLIDER BANNER
__________________________________________________________________
*/
.slider-container {
  position: relative;
  max-width: 1900px;
  height: 28rem;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--pp-border);
  background: var(--pp-surface);
  box-shadow: var(--pp-shadow-sm);
}

.slider-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 12, 16, 0.05) 0%,
    rgba(10, 12, 16, 0.55) 100%
  );
  pointer-events: none;
  z-index: 2;
}

.slider {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
  will-change: transform;
  touch-action: pan-y;
  user-select: none;
  cursor: default;
}

.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  user-select: none;
}

.slider.is-dragging {
  cursor: grabbing;
}

.slider-arrow:disabled,
.slider-control:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid var(--pp-border);
  color: var(--pp-text);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.slider-arrow.prev {
  left: 12px;
}

.slider-arrow.next {
  right: 12px;
}

.slider-control.pause {
  position: absolute;
  bottom: 10px;
  right: 12px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid var(--pp-border);
  color: var(--pp-text);
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}








/* 
__________________________________________________________________
PLACEHOLDER FOR EMPTY SECTION
PLACEHOLDER FOR EMPTY SECTION
PLACEHOLDER FOR EMPTY SECTION
PLACEHOLDER FOR EMPTY SECTION
PLACEHOLDER FOR EMPTY SECTION
__________________________________________________________________
*/
.home-hero {
  max-width: 1440px;
  margin: 1rem auto 0;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.9fr);
  gap: 1rem;
}

.home-hero__copy,
.home-hero__card {
  border-radius: 24px;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(18, 21, 27, 0.98) 0%, rgba(15, 17, 22, 0.98) 100%);
  border: 1px solid var(--pp-border);
  box-shadow: var(--pp-shadow-sm);
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.9rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(214, 196, 154, 0.12);
  border: 1px solid rgba(214, 196, 154, 0.2);
  color: var(--pp-accent-strong);
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.home-hero__copy h1 {
  margin: 0 0 1rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.4rem);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--pp-text);
  text-wrap: balance;
}

.home-hero__text {
  max-width: 58ch;
  margin: 0;
  color: var(--pp-text-soft);
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.home-hero__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  min-height: 100%;
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(127, 209, 167, 0.12);
  border: 1px solid rgba(127, 209, 167, 0.18);
  color: #d8f5e7;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-hero__card h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pp-text);
}

.home-hero__card p {
  margin: 0;
  color: var(--pp-text-soft);
  line-height: 1.7;
}










/* 
__________________________________________________________________
HOME PAGE CONTENT
HOME PAGE CONTENT
HOME PAGE CONTENT
HOME PAGE CONTENT
HOME PAGE CONTENT
__________________________________________________________________
*/
.home-content-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.2rem 1rem 0;
}

.home-section {
  margin-top: 1rem;
}

.home-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.home-section__header--compact {
  margin-bottom: 1rem;
}

.home-section__kicker {
  margin: 0 0 0.3rem;
  display: inline-flex;
  align-items: center;
  padding: 0.33rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(214, 196, 154, 0.16);
  color: var(--pp-text-soft);
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.home-section__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pp-text);
}

.home-section__subtitle {
  margin: 0;
  color: var(--pp-text-muted);
}

.home-feature-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.68fr);
  gap: 1rem;
  align-items: start;
}

.home-feature-card {
  background: linear-gradient(180deg, rgba(18, 21, 27, 0.98) 0%, rgba(15, 17, 22, 0.98) 100%);
  border: 1px solid var(--pp-border);
  border-radius: 24px;
  box-shadow: var(--pp-shadow-sm);
  overflow: hidden;
}

.home-feature-card--deal {
  justify-self: start;
  width: min(100%, 24rem);
  height: 100%;
}

.home-feature-card--products {
  padding: 1.2rem;
  width: 100%;
}

.home-featured-carousel {
  position: relative;
}

.home-featured-carousel__button {
  display: none;
}

.home-feature-card__link {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.home-feature-card__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(214, 196, 154, 0.12), transparent 45%),
    #0d1015;
  aspect-ratio: 2 / 3;
  border-bottom: 1px solid var(--pp-border);
  overflow: hidden;
}

.home-feature-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 1rem;
}

.home-feature-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 125, 125, 0.18);
  border: 1px solid rgba(255, 125, 125, 0.28);
  color: #ffd7d7;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.home-feature-card__body {
  padding: 1.15rem 1.15rem 1.25rem;
}

.home-feature-card__body h3 {
  margin: 0 0 0.6rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--pp-text);
}

.home-feature-card__text {
  margin: 0.75rem 0 0;
  color: var(--pp-text-soft);
  line-height: 1.6;
}

.home-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.7rem;
}

.home-price-row__old {
  color: var(--pp-text-muted);
  text-decoration: line-through;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.home-price-row__new {
  color: green;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.home-empty-state {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.85rem;
  min-height: 100%;
  padding: 2rem;
  text-align: center;
  color: var(--pp-text-soft);
}

.home-empty-state__image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid var(--pp-border);
  box-shadow: var(--pp-shadow-sm);
  background: #0d1015;
}

.home-empty-state h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--pp-text);
  font-size: 1.15rem;
  font-weight: 700;
}

.home-empty-state p {
  margin: 0;
  line-height: 1.6;
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  align-content: start;
}

.home-product-card {
  border-radius: 20px;
  background: var(--pp-surface-2);
  border: 1px solid rgba(214, 196, 154, 0.12);
  overflow: hidden;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.home-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 196, 154, 0.22);
  box-shadow: var(--pp-shadow-md);
}

.home-product-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.home-product-card__image-wrap {
  background: #0d1015;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--pp-border);
}

.home-product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0.8rem;
}

.home-product-card__image-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-text-muted);
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-product-card__body {
  padding: 0.95rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.home-product-card__body h3 {
  margin: 0 0 0.45rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--pp-text);
  min-height: calc(1.35em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-product-card__price {
  margin-top: 0.5rem;
  text-align: end;
  margin-bottom: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
}

.home-product-card__price-old {
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--pp-text-muted);
  text-decoration: line-through;
  font-size: 1rem;
}

.home-product-card__price-new {
  color: white;
  font-weight: 800;
  font-size: 24px;
}

.home-product-card--placeholder {
  min-height: 100%;
}

.home-product-card--carousel {
  flex: 0 0 auto;
  width: 15rem;
}

.home-carousel-section {
  margin-top: 2rem;
}

.home-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  padding: 0.25rem 0.15rem 0.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-carousel__track::-webkit-scrollbar {
  display: none;
}

.home-carousel__button {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 196, 154, 0.16);
  background: rgba(15, 17, 22, 0.92);
  color: var(--pp-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--pp-shadow-sm);
  transition: transform 0.16s ease, background-color 0.16s ease, border-color 0.16s ease;
}

.home-carousel__button:hover {
  transform: translateY(-1px);
  background: rgba(15, 17, 22, 1);
  border-color: rgba(214, 196, 154, 0.28);
}

.home-messages {
  margin-top: 1.25rem;
}

.home-messages .alert {
  margin-bottom: 0.75rem;
}

.home-messages .alert:last-child {
  margin-bottom: 0;
}











/* 
__________________________________________________________________
RESPONSIVE RULES
RESPONSIVE RULES
RESPONSIVE RULES
RESPONSIVE RULES
RESPONSIVE RULES
__________________________________________________________________
*/
@media (max-width: 1280px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .home-feature-grid {
    grid-template-columns: 1fr;
  }

  .home-feature-card--deal {
    width: min(100%, 30rem);
    justify-self: center;
  }

  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-product-card--carousel {
    width: 13.5rem;
  }
}






@media (max-width: 960px) {
  .slider-container {
    display: none !important;
  }

  .home-section__header {
    align-items: start;
    flex-direction: column;
  }

  .home-product-card--carousel {
    width: 13rem;
  }
}





@media (max-width: 768px) {
  .home-page-shell {
    padding-bottom: 1.5rem;
  }

  .home-announcement {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    flex-direction: column;
  }

  .home-hero__copy,
  .home-hero__card,
  .home-feature-card--products,
  .home-feature-card--deal {
    border-radius: 20px;
  }

  .home-hero__copy,
  .home-hero__card {
    padding: 1.5rem;
  }

  .slider-container {
    border-radius: 22px;
    min-height: 280px;
  }

  .home-feature-card--products {
    overflow: hidden;
    background:
      radial-gradient(circle at top left, rgba(162, 22, 22, 0.22), transparent 34%),
      linear-gradient(180deg, rgba(42, 18, 22, 0.98) 0%, rgba(18, 21, 27, 0.98) 100%);
    border-color: rgba(162, 22, 22, 0.32);
  }

  .home-featured-carousel {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .home-featured-carousel__button {
    display: none !important;
  }

  .home-product-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0.8rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    width: 100%;
    padding: 0.15rem 0 0.75rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

  .home-product-grid .home-product-card {
    flex: 0 0 clamp(12rem, 68vw, 15.5rem);
    height: 17.5rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .home-product-grid .home-product-card__link {
    height: 100%;
  }

  .home-product-grid .home-product-card__image-wrap {
    flex: 0 0 66%;
    height: 66%;
    aspect-ratio: auto;
  }

  .home-product-grid .home-product-card__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.55rem;
  }

  .home-product-grid .home-product-card__body {
    flex: 1 1 34%;
    min-height: 0;
    padding: 0.75rem 0.8rem 0.85rem;
  }

  .home-product-grid .home-product-card__body h3 {
    min-height: calc(1.35em * 2);
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 0.9rem;
  }

  .home-product-grid .home-product-card__price {
    text-align: left;
    margin-top: auto;
  }

  .home-product-grid .home-product-card__price-new {
    font-size: 1.2rem;
  }

  .home-carousel {
    gap: 0.5rem;
  }

  .home-carousel__button {
    width: 2.7rem;
    height: 2.7rem;
  }

  .home-section__title {
    font-size: 1.35rem;
  }
}




@media (max-width: 576px) {
  .slider-container {
    min-height: 250px;
  }

  .slider-arrow,
  .slider-control {
    width: 2.6rem;
    height: 2.6rem;
  }

  .slider-arrow.prev {
    left: 0.7rem;
  }

  .slider-arrow.next {
    right: 0.7rem;
  }

  .slider-control.pause {
    right: 0.7rem;
    bottom: 0.7rem;
  }

  .home-carousel__button {
    display: none;
  }

  .home-carousel__track {
    padding-left: 0;
    padding-right: 0;
  }

  .home-product-card--carousel {
    width: 11.5rem;
  }

  .home-section__subtitle {
    font-size: 0.92rem;
  }

  .home-price-row__new {
    font-size: 1.55rem;
  }

  .home-feature-card--products {
    padding: 1rem 0.85rem;
  }

  .home-featured-carousel {
    overflow: hidden;
  }

  .home-featured-carousel__button {
    display: none !important;
  }

  .home-product-grid {
    gap: 0.75rem;
    margin-left: -0.1rem;
    margin-right: -0.1rem;
    padding-bottom: 0.65rem;
  }

  .home-product-grid .home-product-card {
    flex-basis: 70vw;
    max-width: 15rem;
    height: 16.75rem;
  }

  .home-product-grid .home-product-card__image-wrap img {
    padding: 0.5rem;
  }

  .home-product-grid .home-product-card__body {
    padding: 0.7rem 0.75rem 0.8rem;
  }

  .home-product-grid .home-product-card__body h3 {
    min-height: calc(1.35em * 2);
    -webkit-line-clamp: 2;
    line-clamp: 2;
    font-size: 0.88rem;
  }

  .home-product-grid .home-product-card__price {
    text-align: left;
  }

  .home-product-grid .home-product-card__price-new {
    font-size: 1.15rem;
  }
}