body.briefs-card-page {
  --briefs-primary: #2d1d12;
  --briefs-primary-dark: #24170f;
  --briefs-accent: #8a5a2b;
  --briefs-accent-dark: #6b4120;
  --briefs-bg-light: #fcf8f2;
  --briefs-white: #ffffff;
  --briefs-text-dark: #24170f;
  --briefs-text-muted: #7f6752;
  --briefs-border-color: rgba(138, 90, 43, 0.16);
  --briefs-border-strong: rgba(138, 90, 43, 0.24);
  --briefs-success: #1f8c68;
  --briefs-star-color: #f2b649;
  --briefs-shadow: 0 18px 44px rgba(38, 24, 12, 0.08);
  --briefs-shadow-lg: 0 28px 70px rgba(38, 24, 12, 0.14);
  --briefs-shadow-xl: 0 36px 90px rgba(38, 24, 12, 0.18);
  --briefs-radius: 24px;
  --briefs-radius-sm: 16px;
  --briefs-overlay: linear-gradient(180deg, rgba(18, 12, 9, 0.02), rgba(18, 12, 9, 0.18));
}

body.briefs-card-page .briefs-products-grid,
body.briefs-card-page #productsGrid,
body.briefs-card-page #productGrid,
body.briefs-card-page #relatedProductsGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

body.briefs-card-page .product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 246, 239, 0.98));
  border-radius: var(--briefs-radius);
  overflow: hidden;
  border: 1px solid var(--briefs-border-color);
  box-shadow: var(--briefs-shadow);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  opacity: 0;
  transform: translateY(22px);
  animation: briefsFadeInUp 0.5s ease forwards;
}

body.briefs-card-page .product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 28%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.32s ease;
}

body.briefs-card-page .product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--briefs-shadow-xl);
  border-color: rgba(138, 90, 43, 0.08);
}

body.briefs-card-page .product-card:hover::before {
  opacity: 1;
}

body.briefs-card-page .product-card:hover .product-image-primary,
body.briefs-card-page .product-card:hover .product-image-secondary {
  transform: scale(1.055);
}

body.briefs-card-page .product-card:hover .product-image-secondary {
  opacity: 1;
}

body.briefs-card-page .product-card:hover .product-image-stack.has-secondary .product-image-primary {
  opacity: 0;
}

body.briefs-card-page .product-card:hover .product-actions,
body.briefs-card-page .product-card:hover .btn-add-cart {
  opacity: 1;
  transform: translateY(0);
}

body.briefs-card-page .product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #f5eadb 0%, #efe2d3 46%, #f8f2ea 100%);
  overflow: hidden;
}

body.briefs-card-page .product-media-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}

body.briefs-card-page .product-image-stack {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.briefs-card-page .product-image-primary,
body.briefs-card-page .product-image-secondary {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.38s ease;
}

body.briefs-card-page .product-image-secondary {
  opacity: 0;
}

body.briefs-card-page .product-image-sheen {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.3), transparent 30%),
    linear-gradient(180deg, rgba(23, 17, 12, 0), rgba(23, 17, 12, 0.18));
  pointer-events: none;
}

body.briefs-card-page .product-badge {
  position: absolute;
  left: 14px;
  z-index: 3;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 12px 24px rgba(35, 21, 11, 0.16);
}

body.briefs-card-page .product-badge.bestseller {
  top: 14px;
  background: linear-gradient(135deg, var(--briefs-accent), #c18a4e);
  color: var(--briefs-white);
}

body.briefs-card-page .product-badge.new {
  top: 14px;
  background: rgba(255, 250, 244, 0.96);
  color: var(--briefs-primary);
  border: 1px solid rgba(138, 90, 43, 0.18);
}

body.briefs-card-page .product-badge.limited {
  top: 50px;
  background: rgba(35, 21, 11, 0.84);
  color: #fff7ef;
}

body.briefs-card-page .product-actions {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
  z-index: 3;
}

body.briefs-card-page .action-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(138, 90, 43, 0.12);
  border-radius: 50%;
  background: rgba(255, 251, 245, 0.96);
  color: var(--briefs-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 14px 26px rgba(35, 21, 11, 0.12);
  backdrop-filter: blur(12px);
}

body.briefs-card-page .action-btn:hover {
  background: var(--briefs-accent);
  color: var(--briefs-white);
  border-color: var(--briefs-accent);
  transform: translateY(-1px);
}

body.briefs-card-page .action-btn.active {
  background: #c23d3d;
  color: var(--briefs-white);
  border-color: #c23d3d;
}

body.briefs-card-page .action-btn svg {
  width: 18px;
  height: 18px;
}

body.briefs-card-page .btn-add-cart {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  min-height: 48px;
  padding: 0 16px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--briefs-primary), #3f2d1f 52%, #8a5a2b 100%);
  color: var(--briefs-white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  opacity: 0;
  transform: translateY(12px);
  box-shadow: 0 16px 30px rgba(35, 21, 11, 0.18);
  z-index: 3;
}

body.briefs-card-page .btn-add-cart:hover {
  background: linear-gradient(135deg, var(--briefs-accent), var(--briefs-accent-dark));
  transform: translateY(-1px);
}

body.briefs-card-page .btn-add-cart.added {
  background: linear-gradient(135deg, var(--briefs-success), #2ea37d);
  opacity: 1;
  transform: translateY(0);
}

body.briefs-card-page .product-info {
  padding: 18px 18px 20px;
}

body.briefs-card-page .product-brand {
  font-size: 11px;
  font-weight: 800;
  color: var(--briefs-accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

body.briefs-card-page .product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--briefs-text-dark);
  margin-bottom: 10px;
  line-height: 1.42;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}

body.briefs-card-page .product-name a {
  color: inherit;
  text-decoration: none;
}

body.briefs-card-page .product-name a:hover {
  color: var(--briefs-accent);
}

body.briefs-card-page .product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

body.briefs-card-page .stars {
  display: inline-flex;
  gap: 2px;
}

body.briefs-card-page .star {
  width: 14px;
  height: 14px;
  color: var(--briefs-star-color);
}

body.briefs-card-page .rating-text {
  font-size: 12px;
  color: var(--briefs-text-muted);
  font-weight: 700;
}

body.briefs-card-page .product-pricing {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

body.briefs-card-page .current-price {
  font-size: 20px;
  font-weight: 800;
  color: var(--briefs-text-dark);
  letter-spacing: -0.02em;
}

body.briefs-card-page .original-price {
  font-size: 13px;
  color: var(--briefs-text-muted);
  text-decoration: line-through;
}

body.briefs-card-page .discount-percent,
body.briefs-card-page .save-amount {
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

body.briefs-card-page .discount-percent {
  background: rgba(31, 140, 104, 0.1);
  color: var(--briefs-success);
}

body.briefs-card-page .save-amount {
  background: rgba(138, 90, 43, 0.1);
  color: var(--briefs-accent);
}

body.briefs-card-page .product-colors {
  display: flex;
  gap: 6px;
  margin-top: 14px;
}

body.briefs-card-page .color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(138, 90, 43, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

body.briefs-card-page .quick-view-modal {
  position: fixed;
  inset: 0;
  background: rgba(18, 12, 9, 0.7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  padding: 24px;
}

body.briefs-card-page .quick-view-modal.active {
  opacity: 1;
  visibility: visible;
}

body.briefs-card-page .quick-view-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 243, 236, 0.98));
  border-radius: 30px;
  border: 1px solid rgba(138, 90, 43, 0.12);
  box-shadow: 0 32px 90px rgba(18, 12, 9, 0.24);
  max-width: 980px;
  width: min(100%, 980px);
  max-height: min(92vh, 840px);
  overflow-y: auto;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
}

body.briefs-card-page .quick-view-modal.active .quick-view-content {
  transform: translateY(0) scale(1);
}

body.briefs-card-page .quick-view-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(138, 90, 43, 0.12);
  border-radius: 50%;
  background: rgba(255, 250, 244, 0.94);
  color: var(--briefs-primary);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 14px 28px rgba(18, 12, 9, 0.12);
}

body.briefs-card-page .quick-view-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.02fr) minmax(320px, 0.98fr);
}

body.briefs-card-page .quick-view-visuals {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(180deg, #f5eadb 0%, #efe2d3 46%, #f8f1e8 100%);
}

body.briefs-card-page .quick-view-image {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--briefs-overlay);
  box-shadow: 0 22px 46px rgba(35, 21, 11, 0.12);
}

body.briefs-card-page .quick-view-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.briefs-card-page .qv-thumb-rail {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

body.briefs-card-page .qv-thumb-btn {
  width: 72px;
  height: 90px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1.5px solid rgba(138, 90, 43, 0.14);
  background: rgba(255, 252, 248, 0.86);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.briefs-card-page .qv-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.briefs-card-page .qv-thumb-btn.active,
body.briefs-card-page .qv-thumb-btn:hover {
  border-color: var(--briefs-accent);
  box-shadow: 0 14px 26px rgba(35, 21, 11, 0.12);
  transform: translateY(-1px);
}

body.briefs-card-page .quick-view-details {
  padding: 30px 30px 32px;
}

body.briefs-card-page .qv-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

body.briefs-card-page .qv-brand {
  font-size: 12px;
  font-weight: 800;
  color: var(--briefs-accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

body.briefs-card-page .qv-chip {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(138, 90, 43, 0.08);
  color: var(--briefs-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.briefs-card-page .qv-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--briefs-text-dark);
  margin-bottom: 16px;
}

body.briefs-card-page .qv-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

body.briefs-card-page .qv-sale {
  font-size: 32px;
  font-weight: 800;
  color: var(--briefs-text-dark);
  letter-spacing: -0.03em;
}

body.briefs-card-page .qv-original {
  font-size: 18px;
  color: var(--briefs-text-muted);
  text-decoration: line-through;
}

body.briefs-card-page .qv-rating-row {
  margin-bottom: 16px;
}

body.briefs-card-page .qv-desc {
  font-size: 14px;
  color: var(--briefs-text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

body.briefs-card-page .qv-sizes {
  margin-bottom: 24px;
}

body.briefs-card-page .qv-size-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

body.briefs-card-page .qv-size-caption,
body.briefs-card-page .qv-size-selected {
  font-size: 13px;
  font-weight: 700;
  color: var(--briefs-text-dark);
}

body.briefs-card-page .qv-size-selected {
  color: var(--briefs-accent);
}

body.briefs-card-page .qv-size-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

body.briefs-card-page .qv-size-btn {
  min-width: 48px;
  min-height: 46px;
  padding: 0 14px;
  border: 1.5px solid rgba(138, 90, 43, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  color: var(--briefs-text-dark);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

body.briefs-card-page .qv-size-btn:hover {
  border-color: var(--briefs-accent);
  transform: translateY(-1px);
}

body.briefs-card-page .qv-size-btn.active {
  background: linear-gradient(135deg, var(--briefs-primary), #3f2d1f 52%, #8a5a2b 100%);
  border-color: var(--briefs-primary);
  color: var(--briefs-white);
}

body.briefs-card-page .qv-actions {
  display: grid;
  gap: 14px;
}

body.briefs-card-page .quick-view-modal .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.briefs-card-page .quick-view-modal .btn-primary {
  background: linear-gradient(135deg, var(--briefs-primary), #3f2d1f 52%, #8a5a2b 100%);
  color: var(--briefs-white);
  border: none;
  box-shadow: 0 16px 30px rgba(35, 21, 11, 0.16);
}

body.briefs-card-page .quick-view-modal .btn-primary:hover {
  background: linear-gradient(135deg, var(--briefs-accent), var(--briefs-accent-dark));
  transform: translateY(-1px);
}

body.briefs-card-page .quick-view-modal .btn-full {
  width: 100%;
}

body.briefs-card-page .quick-view-secondary-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.briefs-card-page .qv-secondary-btn {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(138, 90, 43, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--briefs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

body.briefs-card-page .qv-secondary-btn:hover {
  transform: translateY(-1px);
  border-color: var(--briefs-accent);
  box-shadow: 0 14px 28px rgba(35, 21, 11, 0.1);
}

body.briefs-card-page .qv-secondary-btn.active {
  background: rgba(194, 61, 61, 0.08);
  color: #b03535;
  border-color: rgba(194, 61, 61, 0.28);
}

body.briefs-card-page .qv-secondary-btn svg {
  width: 16px;
  height: 16px;
}

body.briefs-card-page .toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

body.briefs-card-page .toast {
  background: rgba(25, 17, 12, 0.96);
  color: var(--briefs-white);
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--briefs-shadow-lg);
  transform: translateX(120%);
  animation: briefsToastIn 0.36s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  pointer-events: all;
}

body.briefs-card-page .toast.success {
  background: rgba(31, 140, 104, 0.96);
}

body.briefs-card-page .toast.error {
  background: rgba(176, 53, 53, 0.96);
}

body.briefs-card-page .toast.removing {
  animation: briefsToastOut 0.28s ease forwards;
}

body.briefs-card-page .toast svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@keyframes briefsToastIn {
  to {
    transform: translateX(0);
  }
}

@keyframes briefsToastOut {
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes briefsFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

body.briefs-card-page .briefs-products-grid .product-card:nth-child(1),
body.briefs-card-page #productsGrid .product-card:nth-child(1),
body.briefs-card-page #productGrid .product-card:nth-child(1),
body.briefs-card-page #relatedProductsGrid .product-card:nth-child(1) {
  animation-delay: 0.04s;
}

body.briefs-card-page .briefs-products-grid .product-card:nth-child(2),
body.briefs-card-page #productsGrid .product-card:nth-child(2),
body.briefs-card-page #productGrid .product-card:nth-child(2),
body.briefs-card-page #relatedProductsGrid .product-card:nth-child(2) {
  animation-delay: 0.08s;
}

body.briefs-card-page .briefs-products-grid .product-card:nth-child(3),
body.briefs-card-page #productsGrid .product-card:nth-child(3),
body.briefs-card-page #productGrid .product-card:nth-child(3),
body.briefs-card-page #relatedProductsGrid .product-card:nth-child(3) {
  animation-delay: 0.12s;
}

body.briefs-card-page .briefs-products-grid .product-card:nth-child(4),
body.briefs-card-page #productsGrid .product-card:nth-child(4),
body.briefs-card-page #productGrid .product-card:nth-child(4),
body.briefs-card-page #relatedProductsGrid .product-card:nth-child(4) {
  animation-delay: 0.16s;
}

body.briefs-card-page .briefs-products-grid .product-card:nth-child(5),
body.briefs-card-page #productsGrid .product-card:nth-child(5),
body.briefs-card-page #productGrid .product-card:nth-child(5),
body.briefs-card-page #relatedProductsGrid .product-card:nth-child(5) {
  animation-delay: 0.2s;
}

body.briefs-card-page .briefs-products-grid .product-card:nth-child(6),
body.briefs-card-page #productsGrid .product-card:nth-child(6),
body.briefs-card-page #productGrid .product-card:nth-child(6),
body.briefs-card-page #relatedProductsGrid .product-card:nth-child(6) {
  animation-delay: 0.24s;
}

body.briefs-card-page .briefs-products-grid .product-card:nth-child(7),
body.briefs-card-page #productsGrid .product-card:nth-child(7),
body.briefs-card-page #productGrid .product-card:nth-child(7),
body.briefs-card-page #relatedProductsGrid .product-card:nth-child(7) {
  animation-delay: 0.28s;
}

body.briefs-card-page .briefs-products-grid .product-card:nth-child(8),
body.briefs-card-page #productsGrid .product-card:nth-child(8),
body.briefs-card-page #productGrid .product-card:nth-child(8),
body.briefs-card-page #relatedProductsGrid .product-card:nth-child(8) {
  animation-delay: 0.32s;
}

@media (max-width: 1120px) {
  body.briefs-card-page .briefs-products-grid,
  body.briefs-card-page #productsGrid,
  body.briefs-card-page #productGrid,
  body.briefs-card-page #relatedProductsGrid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
}

@media (max-width: 860px) {
  body.briefs-card-page .briefs-products-grid,
  body.briefs-card-page #productsGrid,
  body.briefs-card-page #productGrid,
  body.briefs-card-page #relatedProductsGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  body.briefs-card-page .product-actions,
  body.briefs-card-page .btn-add-cart {
    opacity: 1;
    transform: translateY(0);
  }

  body.briefs-card-page .product-info {
    padding: 14px 14px 16px;
  }

  body.briefs-card-page .product-name {
    font-size: 14px;
    min-height: 40px;
  }

  body.briefs-card-page .current-price {
    font-size: 18px;
  }

  body.briefs-card-page .quick-view-grid {
    grid-template-columns: 1fr;
  }

  body.briefs-card-page .quick-view-visuals {
    padding: 20px 20px 14px;
  }

  body.briefs-card-page .quick-view-details {
    padding: 0 20px 22px;
  }

  body.briefs-card-page .qv-title {
    font-size: 24px;
  }

  body.briefs-card-page .qv-sale {
    font-size: 28px;
  }

  body.briefs-card-page .quick-view-secondary-actions {
    grid-template-columns: 1fr;
  }

  body.briefs-card-page .toast-container {
    bottom: 100px;
    right: 16px;
    left: 16px;
  }

  body.briefs-card-page .toast {
    width: 100%;
  }
}

@media (max-width: 560px) {
  body.briefs-card-page .product-image {
    aspect-ratio: 4 / 5.3;
  }

  body.briefs-card-page .action-btn {
    width: 38px;
    height: 38px;
  }

  body.briefs-card-page .btn-add-cart {
    left: 12px;
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    font-size: 11px;
  }

  body.briefs-card-page .product-pricing {
    gap: 6px;
  }

  body.briefs-card-page .quick-view-modal {
    padding: 12px;
  }

  body.briefs-card-page .quick-view-content {
    border-radius: 24px;
  }

  body.briefs-card-page .quick-view-close {
    top: 12px;
    right: 12px;
  }

  body.briefs-card-page .qv-thumb-btn {
    width: 60px;
    height: 74px;
    border-radius: 14px;
  }
}
