.sf-brand-logo {
  display: block;
  max-height: 80px;
  max-width: 260px;
  width: auto;
  object-fit: contain;
}

.sigma_header .sf-brand-logo {
  max-height: 54px;
  max-width: 240px;
  min-width: 0;
}

.sigma_footer-logo .sf-brand-logo {
  max-height: 54px;
  max-width: 220px;
  min-width: 0;
}

.sigma_header-top-links.important-links {
  flex: 1 1 auto;
  min-width: 0;
}

.sigma_header-top-nav {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  width: 100%;
}

.sigma_header-top-nav li {
  flex: 0 0 auto;
  min-width: 168px;
}

.sigma_header-top-nav li:nth-child(1) {
  min-width: 206px;
}

.sigma_header-top-nav li:nth-child(3) {
  min-width: 178px;
}

.sigma_header-top-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sigma_header-top-nav li a div {
  min-width: 0;
}

.sigma_header-top-nav li p,
.sigma_header-top-nav li b {
  white-space: nowrap;
}

.sf-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #f8f8f8;
}

.products-showcase,
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.product-item,
.blog-preview-card {
  background: #fff;
  border: 1px solid #eee;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-item:hover,
.blog-preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,168,124,.45);
  box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.product-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8f8f8;
}

.product-visual img,
.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-name-static {
  padding: 20px;
}

.product-name-static h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.product-name-static p {
  margin: 0 0 10px;
  color: #999;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.price-range-tag {
  color: #c9a87c;
  font-weight: 800;
}

.blog-card-link {
  display: block;
  height: 100%;
  color: inherit;
}

.blog-card-img-wrap {
  position: relative;
  height: 240px;
  background: #f8f8f8;
  overflow: hidden;
}

.blog-card-category {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: #111;
  color: #fff;
  padding: 5px 10px;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 22px;
}

.blog-card-date {
  color: #c9a87c;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.blog-card-title {
  font-size: 20px;
  line-height: 1.35;
  margin: 8px 0 10px;
}

.blog-card-excerpt {
  color: #777;
}

.blog-card-read-more {
  color: #111;
  font-weight: 800;
}

.sigma_product-single-thumb .sf-detail-image {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: #fff;
}

.sf-muted {
  color: #777;
}

.sf-hidden {
  display: none !important;
}

.sf-inquiry-status {
  margin-top: 14px;
  font-weight: 600;
}

.sf-inquiry-status.is-success {
  color: #167a3f;
}

.sf-inquiry-status.is-error {
  color: #b42318;
}

.sf-moq-table {
  width: 100%;
  margin-top: 18px;
}

.sf-moq-table th,
.sf-moq-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.sf-admin-link {
  font-weight: 700;
}

.sf-post-content img {
  max-width: 100%;
  height: auto;
}

.sf-lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-right: 0;
  color: #fff;
}

.sf-lang-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: auto;
  min-width: 86px;
  height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.sf-lang-switcher .sf-current-lang,
.sf-lang-trigger > i {
  color: #fff;
}

.sf-lang-switcher .sf-lang-dropdown {
  position: absolute;
  left: 50%;
  right: auto;
  top: calc(100% + 10px);
  width: max-content;
  min-width: 218px;
  max-width: min(260px, calc(100vw - 24px));
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(17,17,17,.06);
  box-shadow: 0 12px 38px rgba(0,0,0,.08);
  padding: 0;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translate(-50%, 10px);
  transition: .22s ease;
}

.sf-lang-switcher .sf-lang-dropdown::before {
  display: none;
}

.sf-lang-switcher.is-open .sf-lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.sf-lang-switcher.is-open .sf-lang-trigger,
.sf-lang-trigger:hover {
  color: #ff5a1f;
  border-color: rgba(255,90,31,.55);
  background: rgba(255,255,255,.08);
}

.sf-lang-switcher.is-open .sf-lang-trigger .sf-current-lang,
.sf-lang-switcher.is-open .sf-lang-trigger > i,
.sf-lang-trigger:hover .sf-current-lang,
.sf-lang-trigger:hover > i {
  color: #ff5a1f;
}

.sf-lang-switcher .sf-lang-dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  color: #111 !important;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  text-transform: uppercase;
  background: #fff;
  border-bottom: 1px solid var(--thm-border, #eee);
  text-align: center;
  white-space: nowrap;
  letter-spacing: .02em;
}

.sf-lang-switcher .sf-lang-dropdown a:last-child {
  border-bottom: 0;
}

.sf-lang-switcher .sf-lang-dropdown a:hover {
  background: #f8f8f8;
  color: #ff5a1f !important;
}

.sigma_header .sigma_header-controls ul li.sf-lang-switcher .sf-lang-dropdown a,
.sigma_header .sigma_header-controls.style-2 ul li.sf-lang-switcher .sf-lang-dropdown a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 100% !important;
  height: 50px !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--thm-border, #eee) !important;
  border-radius: 0 !important;
  box-sizing: border-box;
  overflow: visible;
  text-align: center !important;
}

.sigma_header .sigma_header-controls ul li.sf-lang-switcher .sf-lang-dropdown a:last-child,
.sigma_header .sigma_header-controls.style-2 ul li.sf-lang-switcher .sf-lang-dropdown a:last-child {
  border-bottom: 0 !important;
}

.sf-customizer {
  background: #f7f7f7;
}

.sf-customizer .container {
  max-width: 1440px;
  width: 94%;
}

/* Original customizer logic, restyled to sit inside the template UI. */
.customizer-wrapper {
  display: grid;
  grid-template-columns: minmax(290px, 380px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.customizer-sidebar,
.customizer-main {
  background: #fff;
  border: 1px solid #eee;
  padding: 22px;
  box-shadow: 0 12px 35px rgba(0,0,0,.04);
}

.customizer-sidebar h3,
.customizer-main h3 {
  margin-bottom: 18px;
  font-size: 22px;
}

.product-selection-grid {
  display: grid;
  gap: 12px;
}

.selection-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 22px;
  gap: 14px;
  align-items: center;
  border: 1px solid #eee;
  padding: 12px;
  cursor: pointer;
  transition: .2s ease;
  background: #fff;
}

.selection-item:hover,
.selection-item.active {
  border-color: #c9a87c;
  box-shadow: 0 12px 28px rgba(201,168,124,.16);
}

.selection-visual,
.config-visual {
  background: #f8f8f8;
  overflow: hidden;
}

.selection-visual {
  width: 72px;
  height: 72px;
}

.selection-visual img,
.config-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selection-info h4 {
  margin: 0 0 5px;
  font-size: 15px;
}

.selection-info p {
  margin: 0;
  color: #9b8b7a;
  font-weight: 700;
}

.selection-check {
  width: 18px;
  height: 18px;
  border: 2px solid #ddd;
  border-radius: 50%;
}

.selection-item.active .selection-check {
  background: #c9a87c;
  border-color: #c9a87c;
}

.selection-featured-badge {
  position: absolute;
  top: -8px;
  left: 12px;
  background: #111;
  color: #fff;
  padding: 3px 8px;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.selected-items-list {
  display: grid;
  gap: 14px;
  min-height: 120px;
}

.empty-msg {
  margin: 0;
  color: #999;
  padding: 22px;
  background: #fafafa;
  border: 1px dashed #ddd;
}

.config-item {
  position: relative;
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 68px 18px 18px;
  border: 1px solid #eee;
  background: #fff;
}

.config-visual {
  width: 132px;
  height: 132px;
}

.config-details {
  min-width: 0;
}

.config-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 10px;
  padding-right: 8px;
}

.config-header h4 {
  margin: 0;
  font-size: 18px;
}

.config-price,
.config-price-float,
.config-price-deal {
  color: #c9a87c;
  font-weight: 800;
  white-space: nowrap;
}

.config-price-strike,
.total-strike {
  color: #aaa;
  text-decoration: line-through;
  margin-right: 8px;
}

.deal-badge,
.deal-badge-lg {
  display: inline-flex;
  padding: 3px 8px;
  background: #111;
  color: #fff;
  font-size: 11px;
  margin-left: 8px;
}

.qty-row,
.color-input-wrap,
.pantone-live-row,
.pantone-manual-row {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.qty-btn,
.remove-btn,
.order-flow-close {
  border: 0;
  background: #111;
  color: #fff;
  width: 26px;
  height: 26px;
  line-height: 1;
  transition: .2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.qty-input-field {
  width: 102px;
  max-width: 102px;
  height: 28px;
  border: 1px solid #ddd;
  padding: 0 6px;
  text-align: center;
}

.remove-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 0;
  font-size: 18px !important;
  background: #1d1813;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  overflow: hidden;
}

.remove-btn::before {
  display: none !important;
}

.remove-btn:hover {
  background: #c9a87c;
  transform: translateY(-1px);
}

.tier-indicator {
  display: inline-flex;
  max-width: 100%;
  margin: 8px 0 12px;
  padding: 6px 9px;
  background: #fbf8f3;
  border: 1px solid #eee3d7;
  color: #8b765f;
  font-size: 13px;
  line-height: 1.45;
}

.color-options {
  display: grid;
  gap: 10px;
}

.color-opt-group > label {
  display: block;
  margin-bottom: 7px;
  color: #1f1b17;
  font-weight: 700;
}

.color-input-wrap {
  display: block;
}

.color-mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px;
  width: 100%;
}

.color-mode-card,
.order-flow-card,
.order-flow-question-option {
  text-align: left;
  border: 1px solid #ded4c8;
  background: #f6f0e8;
  color: #1d1813;
  padding: 10px 12px;
  cursor: pointer;
  transition: .2s ease;
}

.color-mode-card {
  min-height: 96px;
}

.color-mode-card:hover {
  border-color: #c9a87c;
  background: #efe4d6;
  transform: translateY(-2px);
}

.color-mode-card.active,
.order-flow-card.selected,
.order-flow-question-option.selected {
  border-color: #c9a87c;
  background: #1d1813;
  color: #fff;
  box-shadow: 0 10px 28px rgba(201,168,124,.14);
}

.color-mode-card strong,
.color-mode-card span {
  display: block;
}

.color-mode-card strong {
  color: inherit;
}

.color-mode-card span {
  color: rgba(29,24,19,.72);
  font-size: 12px;
}

.color-mode-card.active span {
  color: rgba(255,255,255,.74);
}

.color-mode-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 7px;
}

.logo-option-row {
  width: auto;
  margin-top: 10px !important;
  padding: 9px 12px !important;
}

.pantone-presets-row {
  width: 100%;
  display: grid;
  gap: 10px;
}

.preset-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.pantone-preset-btn,
.pantone-live-chip {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ddd;
  padding: 0;
  flex: 0 0 auto;
  transition: transform .18s ease, box-shadow .18s ease;
}

.pantone-preset-btn:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 0 0 2px #c9a87c, 0 8px 18px rgba(0,0,0,.12);
}

.pantone-preset-btn:before,
.pantone-preset-btn:hover:before {
  display: none !important;
}

.pantone-preset-btn.active {
  box-shadow: 0 0 0 2px #111;
}

.pantone-text-input {
  width: 170px;
  max-width: 100%;
  height: 38px;
  border: 1px solid #ddd;
  padding: 0 10px;
}

.pantone-live-row,
.pantone-manual-row {
  margin-top: 6px;
}

.pantone-manual-hint {
  display: inline-block;
  max-width: 380px;
  font-size: 12px;
  color: #7a6c5e;
  line-height: 1.45;
}

.moq-status-bar {
  margin-top: 14px;
}

.moq-inner {
  display: grid;
  gap: 8px;
}

.moq-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 8px 10px;
  background: #fafafa;
  border: 1px solid #eee;
}

.moq-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d06b2a;
}

.moq-item.met .moq-dot {
  background: #2d8a5a;
}

.customizer-footer {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 18px;
}

.customizer-order-btn {
  min-width: 160px;
  padding: 14px 22px;
}

.total-label span {
  color: #777;
}

.total-price {
  font-size: 26px;
  font-weight: 800;
  color: #111;
}

.order-flow-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.order-flow-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.56);
}

.order-flow-dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: 88vh;
  overflow: auto;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}

.order-flow-header,
.order-flow-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid #eee;
}

.order-flow-footer {
  border-top: 1px solid #eee;
  border-bottom: 0;
}

.order-flow-step-badge {
  display: inline-flex;
  margin-bottom: 6px;
  color: #c9a87c;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}

.order-flow-body {
  padding: 26px;
}

.order-flow-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.order-flow-card.disabled {
  opacity: .45;
  cursor: not-allowed;
}

.order-flow-card-image {
  height: 140px;
  background: #f8f8f8;
  margin: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-flow-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.order-flow-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #777;
  font-size: 13px;
}

.order-flow-actions {
  display: flex;
  gap: 10px;
}

.order-flow-btn {
  border: 1px solid #111;
  padding: 12px 18px;
  background: #fff;
  color: #111;
  font-weight: 800;
}

.order-flow-btn.primary {
  background: #111;
  color: #fff;
}

.order-flow-question-options {
  gap: 12px;
}

.order-flow-thank-card-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
}

.order-flow-thank-card-image {
  height: 220px;
  background: #f8f8f8;
}

.order-flow-thank-card-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.order-flow-thank-card-controls {
  display: grid;
  grid-template-columns: auto auto minmax(120px, 1fr);
  gap: 12px;
  align-items: center;
  margin: 14px 0;
}

.order-flow-qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ddd;
  background: #fff;
}

.order-flow-qty-control button {
  width: 26px;
  height: 26px;
  border: 0;
  background: #111;
  color: #fff;
  line-height: 1;
}

.order-flow-qty-control input {
  width: 102px;
  height: 28px;
  border: 0;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
}

.order-flow-thank-card-total {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.order-flow-thank-card-message textarea,
.order-flow-thank-card-editor textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px;
}

.toast-notification {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: #111;
  color: #fff;
  padding: 12px 18px;
  z-index: 10000;
  opacity: 0;
  transition: .2s ease;
}

.toast-notification.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.sf-customizer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 30px;
}

.sf-custom-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sf-custom-product,
.sf-custom-summary {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
}

.sf-custom-product {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.sf-custom-product img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  background: #f8f8f8;
}

.sf-custom-product h5,
.sf-custom-summary h5 {
  margin-bottom: 6px;
}

.sf-custom-product p {
  margin-bottom: 10px;
}

.sf-selected-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.sf-selected-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px 34px;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.sf-selected-list input {
  height: 38px;
  padding: 6px 8px;
}

.sf-remove {
  width: 34px;
  height: 34px;
  border: 0;
  background: #111;
  color: #fff;
  line-height: 1;
}

.sf-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0;
}

.sf-options label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 600;
}

.sf-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 18px;
  font-weight: 700;
}

.sf-summary-note {
  font-size: 13px;
  line-height: 1.6;
}

[data-sf-products-grid] {
  display: flex !important;
  flex-wrap: wrap;
  height: auto !important;
  min-height: 260px;
}

[data-sf-products-grid] .masonry-item {
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
}

.widget-categories a.active,
.widget-categories a[data-sf-category]:hover {
  color: #ff5a1f;
}

.sigma_footer .sigma_social-icons {
  flex-wrap: wrap;
  gap: 8px;
}

.sigma_footer .sigma_social-icons li {
  margin: 0 !important;
}

.sigma_footer .sigma_social-icons li a[aria-disabled="true"] {
  cursor: default;
}

.sigma_footer .sigma_social-icons li a {
  border: 1px solid rgba(255,255,255,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sigma_footer .sigma_social-icons li a i {
  font-size: 15px;
}

@media (max-width: 991px) {
  .sigma_header .sigma_header-controls-inner {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .sigma_header .sigma_header-controls ul li.sf-lang-switcher,
  .sigma_header .sigma_header-controls.style-2 ul li.sf-lang-switcher {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .sf-lang-trigger {
    min-width: 64px;
    height: 42px;
    padding: 0 12px;
    border-color: rgba(17,17,17,.16);
    background: rgba(255,255,255,.94);
    color: #111;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
  }

  .sf-lang-switcher .sf-current-lang,
  .sf-lang-trigger > i {
    color: #111;
  }

  .sf-lang-switcher .sf-lang-dropdown {
    left: auto;
    right: 0;
    min-width: 176px;
    max-width: calc(100vw - 32px);
    transform: translateY(10px);
  }

  .sf-lang-switcher.is-open .sf-lang-dropdown {
    transform: translateY(0);
  }

  .blog-preview-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .blog-preview-card {
    overflow: hidden;
  }

  .blog-card-link {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 156px;
  }

  .blog-card-img-wrap {
    height: 100%;
    min-height: 156px;
  }

  .blog-card-category {
    left: 8px;
    bottom: 8px;
    padding: 4px 8px;
    font-size: 10px;
    letter-spacing: .06em;
  }

  .blog-card-body {
    min-width: 0;
    padding: 14px 14px 16px;
  }

  .blog-card-date {
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: .04em;
  }

  .blog-card-title {
    display: -webkit-box;
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.28;
    overflow: hidden;
    overflow-wrap: anywhere;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .blog-card-excerpt {
    display: -webkit-box;
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .blog-card-read-more {
    display: none;
  }

  .sf-customizer-grid {
    grid-template-columns: 1fr;
  }

  .customizer-wrapper,
  .order-flow-thank-card-shell {
    grid-template-columns: 1fr;
  }

  .order-flow-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .products-showcase,
  .blog-preview-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .customizer-wrapper {
    gap: 14px;
  }

  .customizer-sidebar,
  .customizer-main {
    padding: 18px 14px;
  }

  .customizer-sidebar h3,
  .customizer-main h3 {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .product-selection-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .selection-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px;
    min-height: 66px;
    padding: 9px 28px 9px 9px;
    border-radius: 12px;
  }

  .selection-visual {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .selection-info {
    min-width: 0;
    padding-right: 0;
  }

  .selection-info h4 {
    display: -webkit-box;
    margin: 0 0 3px;
    font-size: 12px;
    line-height: 1.25;
    overflow: hidden;
    overflow-wrap: anywhere;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .selection-info p {
    margin: 0;
    font-size: 12px;
  }

  .selection-check {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 14px;
    height: 14px;
  }

  .blog-card-link {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 148px;
  }

  .blog-card-img-wrap {
    min-height: 148px;
  }

  .blog-card-body {
    padding: 13px 13px 14px;
  }

  .blog-card-title {
    font-size: 17px;
    -webkit-line-clamp: 4;
  }

  .sf-custom-products,
  .sf-options {
    grid-template-columns: 1fr;
  }

  .sf-custom-product {
    grid-template-columns: 78px minmax(0, 1fr);
  }

  .sf-custom-product img {
    width: 78px;
    height: 78px;
  }

  .config-item {
    grid-template-columns: 1fr;
    padding: 48px 18px 18px;
  }

  .config-visual {
    width: 100%;
    height: 220px;
  }

  .color-mode-grid,
  .order-flow-card-grid {
    grid-template-columns: 1fr;
  }

  .customizer-footer {
    align-items: stretch;
    flex-direction: column;
  }
}
