@charset "UTF-8";

:root {
    --color-primary: #9FA8A3;
    --color-primary-light: #C5CCC7;
    --color-primary-dark: #79827D;
    --color-secondary: #D8B4A6;
    --color-secondary-light: #EBD2C9;
    --color-secondary-dark: #BA9385;
    --color-accent: #E7CBA9;
    --color-accent-light: #F3E2CF;
    --color-accent-dark: #C8A983;
    --color-bg-default: #FAF8F5;
    --color-bg-surface: #FFFFFF;
    --color-bg-surface-alt: #F3EFEB;
    --color-bg-surface-muted: #EDE7E1;
    --color-text-primary: #2C3531;
    --color-text-secondary: #6F7A74;
    --color-text-muted: #9FA8A3;
    --color-border-light: #EDE7E1;
    --color-border-subtle: #E5DED6;
    --color-border-accent: #D8B4A6;
    --shadow-card: 0 8px 30px rgba(159, 168, 163, 0.12);
    --shadow-card-hover: 0 14px 38px rgba(159, 168, 163, 0.18);
    --shadow-button: 0 4px 14px rgba(216, 180, 166, 0.25);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Source Sans 3', sans-serif;
    background-color: var(--color-bg-default);
    color: var(--color-text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.text-muted {
    color: #6F7A74 !important;
}

a,
button {
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

/* ===== header ===== */
.belcor-header {
    background-color: #FAF8F5;
}

.belcor-header img {
    max-width: 48px;
    max-height: 48px;
}

.belcor-header .js-mobile-menu.active {
    display: block;
}

/* ===== hero ===== */
.hero-block {
    font-family: 'Source Sans 3', sans-serif;
}

.hero-block .hero-card {
    min-height: 100%;
}

.hero-block img {
    object-fit: cover;
}

/* ===== featured_mugs ===== */
.featured-mugs-section {
    font-family: 'Source Sans 3', sans-serif;
}

.featured-mugs-section .product-card {
    box-shadow: 0 8px 30px rgba(159, 168, 163, 0.12);
}

.featured-mugs-section .product-card:hover {
    box-shadow: 0 14px 38px rgba(159, 168, 163, 0.18);
}

/* ===== care_instructions ===== */
.belcor-care-section {
    box-sizing: border-box;
}

.belcor-care-section .js-care-tab.active {
    background-color: #FFFFFF;
    color: #2C3531;
    box-shadow: 0 2px 8px rgba(159, 168, 163, 0.18);
}

.belcor-care-section .js-care-tab:not(.active) {
    background-color: transparent;
    color: #6F7A74;
}

.belcor-care-section .js-care-card.is-hidden {
    display: none;
}

/* ===== back_in_stock ===== */
.belcor-back-in-stock .belcor-stock-card {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.belcor-back-in-stock .belcor-stock-card:hover {
    transform: translateY(-4px);
}

/* ===== value_sets ===== */
.belcor-value-sets {
    font-family: 'Source Sans 3', sans-serif;
}

.belcor-value-sets .value-set-card {
    will-change: transform, box-shadow;
}

/* ===== collections_grid ===== */
.collections-grid-block .collection-card {
    box-shadow: 0 8px 30px rgba(159, 168, 163, 0.12);
}

.collections-grid-block .collection-card:hover {
    box-shadow: 0 14px 38px rgba(159, 168, 163, 0.18);
}

/* ===== latest_blog_posts ===== */
.belcor-latest-blog .blog-card {
    box-shadow: 0 8px 30px rgba(159, 168, 163, 0.08);
}

.belcor-latest-blog .blog-card:hover {
    box-shadow: 0 14px 38px rgba(159, 168, 163, 0.16);
}

/* ===== footer ===== */
.belcor-footer {
    font-family: 'Source Sans 3', sans-serif;
}

.belcor-footer .belcor-footer-link {
    text-decoration: none;
    word-break: break-word;
}

.belcor-footer .belcor-footer-link:hover {
    color: #2C3531;
}

.belcor-footer a:focus-visible {
    outline: 2px solid #D8B4A6;
    outline-offset: 2px;
}

/* ===== PAGE: catalog ===== */
.catalog-section {
  font-family: 'Source Sans 3', sans-serif;
}
.catalog-section .catalog-grid article {
  transition: transform 300ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 300ms cubic-bezier(0.25, 1, 0.5, 1), border-color 300ms ease;
}
.catalog-section .catalog-grid article:hover {
  transform: translateY(-4px);
  border-color: #D8B4A6;
}
.catalog-section .js-filter-btn.active {
  background-color: #2C3531;
  color: #FAF8F5;
  border-color: #2C3531;
}
.catalog-section .js-product-card.hidden {
  display: none !important;
}
.catalog-section .js-product-card {
  display: flex;
}

/* ===== PAGE: collections-page ===== */
.belcor-collections-section {
  box-sizing: border-box;
}
.belcor-collections-section * {
  box-sizing: border-box;
}
.belcor-collections-section .js-collection-search::placeholder {
  color: #9FA8A3;
  opacity: 1;
}
.belcor-collections-section .js-filter-btn.is-active {
  background-color: #D8B4A6;
  color: #2C3531;
  border-color: #D8B4A6;
  box-shadow: 0 4px 14px rgba(216, 180, 166, 0.25);
}

/* ===== PAGE: blog ===== */
.blog-listing-block .blog-item-card:hover {
  transform: translateY(-4px);
}
.blog-listing-block .blog-intro-card {
  min-height: 280px;
}

/* ===== PAGE: about ===== */
.belcor-about-section {
  font-family: 'Source Sans 3', sans-serif;
}
.belcor-about-section .js-faq-toggle:focus-visible {
  outline: 2px solid #D8B4A6;
  outline-offset: 2px;
}
.belcor-about-section .js-faq-icon.is-active {
  transform: rotate(180deg);
}

/* ===== PAGE: delivery ===== */
.belcor-delivery-section select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236F7A74' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25em 1.25em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.5rem;
}

.belcor-delivery-section .js-faq-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

/* ===== PAGE: contact ===== */
.belcor-contact-section {
  font-family: 'Source Sans 3', sans-serif;
}

.belcor-contact-section .contact-card {
  will-change: transform, box-shadow;
}

.belcor-contact-section iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ===== PAGE: privacy ===== */
.belcor-privacy-policy { font-family: 'Source Sans 3', sans-serif; }
.belcor-privacy-policy h1, .belcor-privacy-policy h2, .belcor-privacy-policy h3 { hyphens: auto; }
.belcor-privacy-policy a { transition: color 0.3s ease; }

/* ===== PAGE: terms ===== */
.belcor-terms-section a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.belcor-terms-section .js-toc-link.active { background-color: #F3EFEB; color: #2C3531; font-weight: 600; }
.belcor-terms-section .js-toc-link.active i { transform: translateX(2px); color: #BA9385; }

/* ===== PAGE: disclaimer ===== */
.belcor-disclaimer {
  font-family: 'Source Sans 3', sans-serif;
  -webkit-font-smoothing: antialiased;
}
.belcor-disclaimer h1,
.belcor-disclaimer h2,
.belcor-disclaimer h3 {
  hyphens: auto;
}

/* ===== PAGE: refund ===== */
.belcor-refund-policy {
  font-family: 'Source Sans 3', sans-serif;
}
.belcor-refund-policy h1,
.belcor-refund-policy h2,
.belcor-refund-policy h3 {
  color: #2C3531;
}
.belcor-refund-policy a:focus-visible {
  outline: 2px solid #D8B4A6;
  outline-offset: 2px;
}

.comment-item {
    font-family: 'Source Sans 3', sans-serif;
}

.comment-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 9999px;
    object-fit: cover;
    border: 1px solid #EDE7E1;
    display: block;
}

.comment-action-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.comment-action-btn:hover {
    background-color: #F3EFEB;
    color: #2C3531;
}

.comment-rating {
    letter-spacing: 0.05em;
}

.reply-comment {
    font-family: 'Source Sans 3', sans-serif;
    position: relative;
}

.reply-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 9999px;
    object-fit: cover;
    border: 1px solid #D8B4A6;
    display: block;
}

.comment-action-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.comment-action-btn:hover {
    background-color: #EDE7E1;
    color: #2C3531;
}


/* ===== PAGE TEMPLATE: catalog-mugs ===== */
.belcor-header {
    background-color: #FAF8F5;
    font-family: 'Source Sans 3', sans-serif;
}

.belcor-header img {
    max-width: 48px;
    max-height: 48px;
}

.belcor-header .js-mobile-menu.active {
    display: block;
}

.belcor-detail-page {
    font-family: 'Source Sans 3', sans-serif;
}

.belcor-detail-page .detail-image-frame img {
    object-fit: cover;
}

.belcor-detail-page .js-accordion-header[aria-expanded="true"] .js-accordion-icon {
    transform: rotate(180deg);
}

.belcor-footer {
    font-family: 'Source Sans 3', sans-serif;
}

.belcor-footer .belcor-footer-link {
    text-decoration: none;
    word-break: break-word;
}

.belcor-footer .belcor-footer-link:hover {
    color: #2C3531;
}

.belcor-footer a:focus-visible {
    outline: 2px solid #D8B4A6;
    outline-offset: 2px;
}

/* ===== PAGE TEMPLATE: collections ===== */
.belcor-header {
    background-color: #FAF8F5;
}

.belcor-header img {
    max-width: 48px;
    max-height: 48px;
}

.belcor-header .js-mobile-menu.active {
    display: block;
}

.collection-detail-page {
    font-family: 'Source Sans 3', sans-serif;
}

.collection-detail-page .collection-main-img {
    object-fit: cover;
}

.collection-detail-page .collection-heading-accent {
    border-radius: 2px;
}

.belcor-footer {
    font-family: 'Source Sans 3', sans-serif;
}

.belcor-footer .belcor-footer-link {
    text-decoration: none;
    word-break: break-word;
}

.belcor-footer .belcor-footer-link:hover {
    color: #2C3531;
}

.belcor-footer a:focus-visible {
    outline: 2px solid #D8B4A6;
    outline-offset: 2px;
}

/* ===== PAGE TEMPLATE: blog-posts ===== */
.belcor-header {
    background-color: #FAF8F5;
    font-family: 'Source Sans 3', sans-serif;
}

.belcor-header img {
    max-width: 48px;
    max-height: 48px;
}

.belcor-header .js-mobile-menu.active {
    display: block;
}

.blog-detail-container {
    font-family: 'Source Sans 3', sans-serif;
}

.blog-detail-container .section-heading {
    border-left: 4px solid #BA9385;
    padding-left: 12px;
}

.blog-detail-container .stacked-card img {
    border-radius: 0;
}

.blog-detail-container .comment-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-detail-container .reply-avatar {
    width: 38px;
    height: 38px;
}

.belcor-footer {
    font-family: 'Source Sans 3', sans-serif;
}

.belcor-footer .belcor-footer-link {
    text-decoration: none;
    word-break: break-word;
}

.belcor-footer .belcor-footer-link:hover {
    color: #2C3531;
}

.belcor-footer a:focus-visible {
    outline: 2px solid #D8B4A6;
    outline-offset: 2px;
}