* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f7f5f2;
  color: #171717;
  font-family: Arial, sans-serif;
}

header {
  background: #ffffff;
  text-align: center;
  padding: 45px 20px 35px;
  border-bottom: 1px solid #dedbd7;
}

header h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 34px;
  letter-spacing: 5px;
  font-weight: normal;
}

header p {
  margin: 10px 0 0;
  font-size: 13px;
  letter-spacing: 3px;
}

main {
  max-width: 700px;
  margin: 35px auto 70px;
  padding: 0 30px;
  text-align: center;
}

main h2 {
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: normal;
  margin-bottom: 12px;
}

main p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

select {
  width: 100%;
  max-width: 420px;
  padding: 17px 20px;
  background: white;
  border: 1px solid #bbb;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
}
.product-card {
  margin-top: 45px;
  padding: 35px;
  background: #ffffff;
  border: 1px solid #dedbd7;
  border-radius: 8px;
}

.product-card img {
    width: 100%;
    max-width: 340px;
    height: auto;
    display: block;
    margin: 0 auto 25px;
}

.product-card h2 {
  margin-top: 0;
  margin-bottom: 6px;
}

.collection-name {
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.format-choice {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.format-choice label {
  cursor: pointer;
}

#addToCart {
  background: #171717;
  color: white;
  border: none;
  padding: 15px 32px;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
}

#addToCart:hover {
  opacity: 0.8;
}

.cart-box {
  margin-top: 45px;
  padding: 35px;
  background: #ffffff;
  border: 1px solid #dedbd7;
  border-radius: 8px;
  text-align: left;
}

.cart-box h2 {
  text-align: center;
  font-size: 26px;
  margin-top: 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #e5e2de;
}

.cart-item-details {
  line-height: 1.5;
}

.cart-item-details strong {
  display: block;
}

.remove-button {
  background: transparent;
  border: none;
  text-decoration: underline;
  cursor: pointer;
  color: #777;
}

.remove-button:hover {
  color: #000;
}

#cartTotal {
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  margin-top: 25px;
}
.product-image {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto 30px;
  border-radius: 6px;
}
#thankYou {
  text-align: center;
  padding: 35px 20px 15px;
}

#thankYou h2 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: normal;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

#thankYou p {
  color: #666;
  margin: 8px 0;
}

#continueShopping {
  margin-top: 25px;
  background: #171717;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 0;
}

#continueShopping:hover {
  opacity: 0.8;
}

.collection-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    padding-top: 0;
    text-align: center;
}

.collection-hero-image {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto 28px;
    border-radius: 4px;
}

.collection-description {
    max-width: 620px;
    margin: 0 auto;
}

.collection-description h2 {
    font-family: Georgia, serif;
    font-size: 32px;
    font-weight: normal;
    margin: 0 0 18px;
    color: #444;
}

.collection-description p {
    margin: 0 0 12px;
    line-height: 1.65;
    font-size: 15px;
    color: #666;
}

.delivery-note {
    margin-top: 20px !important;
    font-size: 13px !important;
    letter-spacing: 0.3px;
    color: #888 !important;
}

/* FIND YOUR DOG SECTION */

#breedSelect {
    width: 100%;
    max-width: 420px;
    padding: 16px 20px;
    margin-top: 8px;
    background-color: #fff;
    border: 1px solid #d8d3cd;
    border-radius: 2px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #555;
    letter-spacing: 0.3px;
    cursor: pointer;
}

#breedSelect:hover {
    border-color: #999;
}

#breedSelect:focus {
    outline: none;
    border-color: #777;
}

.collection-intro + h2 {
    margin-top: 10px;
    font-size: 32px;
}

.collection-intro + h2 + p {
    margin-bottom: 20px;
    font-size: 14px;
    color: #777;
}

/* SITE LOGO */

.site-logo {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0 auto 16px;
}

.home-logo-link {
    display: inline-block;
    text-decoration: none;
}

.collection-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.collection-nav a {
    color: #777;
    text-decoration: none;
}

.collection-nav a:hover {
    color: #333;
}

.collection-nav span {
    color: #bfa3a0;
}
