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

* {
  font-family: 'Montserrat', sans-serif;
}

:root {
  --color-primary: #000000;
  --color-bg: #FFFFFF;
  --color-text: #000000;
  --color-gray: #757575;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}


/* Utilities */
.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Minimalist Button Styles */
.btn-black {
  background-color: #000000;
  color: #ffffff;
  border: 1px solid #000000;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-black:hover {
  background-color: #333333;
  border-color: #333333;
}

.btn-outline {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  padding: 0.75rem 2rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background-color: #000000;
  color: #ffffff;
}

/* Minimalist Header */
.minimal-header {
  background-color: #ffffff;
  padding: 1.5rem 0;
}

header a {
  text-decoration: none;
  color: #000000;
}

header nav a {
  letter-spacing: 0.05em;
  text-transform: none;
}

header input::placeholder {
  color: #000000;
  font-weight: 400;
}

.cart-badge {
  font-size: 10px;
  line-height: 1;
}


/* Minimalist Card */
.product-card {
  text-align: center;
}

.product-card img {
  transition: opacity 0.3s ease;
}

.product-card:hover img {
  opacity: 0.9;
}

.product-title {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.product-price {
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

/* Footer */
footer {
  background-color: #000000;
  color: #ffffff;
}

footer a {
  color: #ffffff;
  text-decoration: none;
}

footer h4 {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

/* Custom Checkbox */
.footer-checkbox {
  accent-color: #ffffff;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  cursor: pointer;
}

/* Footer & Custom Checkbox Styles */
.custom-checkbox {
  transition: all 0.2s ease;
}

.footer-checkbox:checked+.custom-checkbox {
  background-color: white;
}

.footer-checkbox:checked+.custom-checkbox svg {
  display: block;
}

#footer-subscribe-form input::placeholder {
  color: #9ca3af;
  font-weight: 300;
}

#footer-subscribe-form label {
  letter-spacing: 0.025em;
}

#footer-subscribe-form .btn-black {
  border-radius: 2px;
}