* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* BASE */
body {
  font-family: 'Inter', sans-serif;
  background: #eee;
}

/* HEADER */
header {
  background: #E32131;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
}

header h1 {
  font-family: 'Playfair Display', serif;
}

nav {
  display: flex;
  align-items: center;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-size: 14px;
}

/* CART ICON */
.cart {
  margin-left: 20px;
  font-size: 18px;
}

/* HERO */
.hero {
  position: relative;
  height: 420px;
  background: url('images/onlypans_banner_image4.jpg') center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(227, 33, 49, 0.75);
}

.hero-content {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  z-index: 2;
  max-width: 300px;
}

.hero-content h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

.hero-content p {
  margin-bottom: 16px;
}

.hero-content button {
  padding: 8px 16px;
  border: none;
  background: white;
  color: #E32131;
  cursor: pointer;
  margin-top: 10px;
}

/* SECTIONS */
.section {
  padding: 50px 60px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  color: #E32131;
  margin-bottom: 20px;
}

/* SLIDER */
.slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
}

.slider img {
  flex: 0 0 auto;
  width: 300px;
  height: 350px;
  object-fit: cover;
  scroll-snap-align: start;
  border-radius: 8px;
}

.slider::-webkit-scrollbar {
  display: none;
}

/* FOOTER */

  footer {
  background: #E32131;
  color: white;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  text-align: center;
}

/* SOCIALS */
.footer-right a {
  color: white;
  font-size: 20px;
  margin-left: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.footer-right {
  text-align: right;
}

.footer-address {
  display: block;
  font-size: 0.7rem;
  margin-top: 8px;
  line-height: 1.3;
}

.footer-credit {
  display: block;
  font-size: 0.6rem;
  margin-top: 4px;
  opacity: 0.8;
}