
/* BUTTONS */
.btn {
  background-color: var(--color-button-background);
  color: var(--color-button-foreground);
  border: 1px solid var(--color-button-background);
  padding: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
}

.btn.btn-secondary {
  background-color: var(--color-button-foreground);
  color: var(--color-button-background);
  border: 1px solid var(--color-button-foreground);
}

/* FORM INPUTS */
.quantity-input {
  -moz-appearance: textfield;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* PRODUCT PAGE COMPONENTS */
.category-selector .dropdown__button,
.category-selector h2 {
  font-size: 24px;
}

.option-dropdown__carat {
  width: 24px;
}

.swatch-group__values .aspect-square {
  aspect-ratio: 0;
  padding: 10px 9px;
  min-width: 70px;
}

.swatch-group__values {
  gap: 0;
  margin-left: -10px;
}

.template-product .category-selector {
  background: #F2EEE3;
}

.PDP-other-ctas {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid black;
  padding-bottom: 10px;
}

.other-ctas-child {
  width: 50%;
}

.other-ctas-child:first-child {
  border-right: 1px solid black;
}

.book-apt-header:hover {
  cursor: pointer;
}

.bottom-border {
  border-bottom: 2px solid black;
}

/* COLLECTION PAGE */
.collection-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 0 10%;
}

/* PRODUCT RECOMMENDATIONS */
#product-recommendations-related {
  text-align: center;
  border-top: 1px solid black;
  margin: 50px auto 0;
  background: #F4F2F0;
  width: 100%;
  max-width: 100%;
  padding-bottom: 50px;
}

/* FOOTER */
.footer-menu__list {
  justify-content: center;
  align-items: center;
}

/* NEWSLETTER */
.newsletter-banner__section > div {
  max-width: 1450px;
  margin: auto;
  padding-left: 3%;
  padding-right: 3%;
}

/* STAFF CONTACT BAR */
.staff-contact-bar {
  padding: 10px 0;
  justify-content: flex-start;
  align-items: flex-start;
}

.staff-contact-bar div {
  display: flex;
  flex-direction: row;
  padding: 0 10px;
  font-size: 12px;
  justify-content: flex-start;
  align-items: flex-start;
}

.staff-contact-bar div:first-child {
  padding-left: 0;
}

.staff-contact-bar img {
  height: 20px;
  margin-right: 5px;
}

/* BLOG POST STYLES */
.blog-post__header-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin-bottom: 40px;
}

.blog-post__header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.blog-post__header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-post__title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blog-post__meta {
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-post__author {
  margin-left: 20px;
}

.blog-post__content {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.blog-post__content p {
  margin-bottom: 20px;
}

.blog-post__content img {
  width: 100%;
  height: auto;
  margin: 40px 0;
  border-radius: 4px;
}

.blog-post__content h2 {
  font-size: 32px;
  margin: 40px 0 20px;
}

.blog-post__content h3 {
  font-size: 24px;
  margin: 30px 0 15px;
}

.blog-post__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.blog-post__tag {
  background-color: #f5f5f5;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  color: #666;
  transition: all 0.3s;
}

.blog-post__tag:hover {
  background-color: #000;
  color: #fff;
}

.blog-post__footer {
  margin-top: 60px;
}

.back-to-blog {
  color: #666;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.back-to-blog:hover {
  color: #000;
}

/* MEGA MENU */
.mega-menu-image {
  height: 400px;
  width: 100%;
  overflow: hidden;
}

/* MOBILE DRAWER */
.mobile-navigation-drawer .drawer-header,
.mobile-navigation-drawer .drawer-wrapper,
header.drawer-header {
  background-color: #ffffff;
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px) {
  .PDP-other-ctas {
    flex-direction: column;
  }
  
  .other-ctas-child {
    width: 100%;
    padding: 10px 0;
  }
  
  .other-ctas-child p {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  
  .other-ctas-child:first-child {
    border-right: 0;
    border-bottom: 1px solid black;
  }
  
  .blog-post__title {
    font-size: 32px;
  }
  
  .blog-post__content {
    font-size: 16px;
  }
  
  .blog-post__header-image {
    max-height: 300px;
  }
  
  .mega-menu-image {
    height: 250px;
  }
}
