/* Modern CSS Reset & Variables */
:root {
  --primary-color: #000000;
  --secondary-color: #ffffff;
  --background-color: #faf9f8;
  /* H&M style off-white */
  --accent-red: #e50010;
  --text-color: #222222;
  --gray-light: #f4f4f4;
  --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --container-width: 1280px;
  --transition-speed: 0.3s;
}

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

body {
  font-family: var(--font-primary);
  background-color: var(--secondary-color);
  color: var(--text-color);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input {
  font-family: inherit;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility Classes */
.hidden-mobile {
  display: block;
}

.hidden-desktop {
  display: none;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }

  .hidden-desktop {
    display: block !important;
  }
}

/* Toast Notification */
.toast-notification {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 3000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.toast-notification.show {
  opacity: 1;
  transform: translateY(0);
}