@charset "UTF-8";
.wrap {
  max-width: 100%;
  padding: 20px;
}
.wrap h1 {
  margin-bottom: 20px;
}
.wrap h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.afflink-admin-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 1rem;
}
.afflink-admin-form h2 {
  margin: 0;
  font-size: 16px;
}
.afflink-admin-form input.afflink-admin-input,
.afflink-admin-form select {
  padding: 6px 10px;
  height: 40px;
  min-width: 200px;
}
.afflink-admin-form button {
  align-self: center;
}

.afflink-admin-margin {
  margin-bottom: 20px;
}
.afflink-admin-margin button {
  margin-right: 10px;
}
.afflink-admin-margin .afflink-admin-status {
  margin-left: 15px;
  font-weight: 500;
}

.wp-list-table {
  width: 100%;
  border-collapse: collapse;
}
.wp-list-table thead th {
  padding: 12px 10px;
  text-align: left;
  background: #f9f9f9;
  border-bottom: 2px solid #ccc;
}
.wp-list-table tbody td {
  padding: 12px 10px;
  vertical-align: top;
  border-bottom: 1px solid #eee;
}
.wp-list-table tbody tr:hover {
  background: #f7f7f7;
}
.wp-list-table .afflink-admin-image {
  max-width: 120px;
  height: auto;
  border-radius: 4px;
  display: block;
}
.wp-list-table .afflink-admin-icon-success {
  color: #46b450;
}
.wp-list-table .afflink-admin-icon-error {
  color: #dc3232;
}
.wp-list-table .button {
  margin: 2px 2px;
}

.notice {
  margin-top: 20px;
}

.tablenav-pages {
  margin-top: 20px;
}
.tablenav-pages a.button {
  margin-right: 5px;
}
.tablenav-pages .tablenav-pages-navspan {
  display: inline-block;
  margin-right: 5px;
  font-weight: bold;
}

input.edit-title {
  min-width: 400px;
  width: 100%;
  max-width: 600px;
  padding: 4px 6px;
  box-sizing: border-box;
}

input.edit-price,
input.edit-rating,
input.edit-reviews {
  width: 100%;
  padding: 6px 8px;
  border: 1px solid #8c8f94;
  border-radius: 4px;
  font-size: 14px;
}
input.edit-price:focus,
input.edit-rating:focus,
input.edit-reviews:focus {
  border-color: #2271b1;
  outline: none;
  box-shadow: 0 0 0 1px #2271b1;
}
input.edit-price::placeholder,
input.edit-rating::placeholder,
input.edit-reviews::placeholder {
  color: #8c8f94;
  opacity: 0.7;
}

select.edit-stock,
select.edit-prime {
  width: 100%;
  padding: 4px 6px;
}

.afflink-products-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}
.afflink-products-list.afflink-layout-2 {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .afflink-products-list.afflink-layout-2 {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    overflow-x: hidden !important;
    justify-content: flex-start !important;
    padding: 8px !important;
  }
}

.afflink-numbered-list .afflink-product-card {
  padding-left: 50px;
}

.afflink-product-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.afflink-product-card a.afflink-title-link {
  text-decoration: none;
  color: inherit;
}
.afflink-product-card a.afflink-btn {
  text-decoration: none;
}
.afflink-product-card {
  overflow: visible;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper {
  position: absolute;
  top: 0.5rem;
  left: -11px;
  z-index: 500;
  margin-bottom: 0;
}
.afflink-product-card.afflink-product-card-2 {
  padding: 8px 12px 12px;
}
.afflink-product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
  border-color: #2e7d32;
  border-width: 2px;
}
.afflink-product-card .afflink-image-box {
  width: 140px;
  height: 140px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.25s ease;
}
.afflink-product-card .afflink-image-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}
.afflink-product-card:hover .afflink-image-box {
  transform: scale(1.1);
}
.afflink-product-card .afflink-card-content {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 16px;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) .afflink-card-content {
  padding-left: 60px;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
.afflink-product-card .afflink-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.afflink-product-card .afflink-product-info .afflink-product-title {
  font-size: 1.05rem;
  color: #222;
  margin: 0 0 6px;
  font-weight: 600;
  line-height: 1.3;
  display: block;
}
.afflink-product-card .afflink-product-info .afflink-product-meta-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.afflink-product-card .afflink-product-info .afflink-product-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.afflink-product-card .afflink-product-info .afflink-product-meta .afflink-in-stock {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #2e7d32;
}
.afflink-product-card .afflink-product-info .afflink-product-meta .afflink-in-stock svg {
  margin-right: 4px;
  width: 16px;
  height: 16px;
}
.afflink-product-card .afflink-product-info .afflink-product-meta .afflink-prime {
  display: flex;
  align-items: center;
}
.afflink-product-card .afflink-product-info .afflink-product-meta .afflink-prime img {
  height: 24px;
  vertical-align: middle;
}
.afflink-product-card .afflink-product-info .afflink-product-meta-rating .afflink-rating {
  color: #f39c12;
  font-size: 0.95rem;
  margin: 0;
}
.afflink-product-card .afflink-product-info .afflink-product-meta-rating .afflink-rating span {
  margin-left: 5px;
  font-size: 0.85rem;
  color: #555;
}
.afflink-product-card .afflink-btn-box {
  flex-shrink: 0;
  max-width: 100%;
}
.afflink-product-card .afflink-btn-box .afflink-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #0066c0;
  border: 1px solid #0066c0;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  cursor: pointer;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
  vertical-align: middle;
  max-width: 100%;
  box-sizing: border-box;
}
.afflink-product-card .afflink-btn-box .afflink-btn:hover {
  background: #0052a3;
  border-color: #0052a3;
  color: #fff;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.afflink-product-card .afflink-btn-box .afflink-btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 192, 0.5);
}
.afflink-product-card .afflink-btn-box .afflink-btn:active {
  background: #004085;
  border-color: #004085;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.afflink-product-card .afflink-number-badge {
  position: absolute;
  left: 15px;
  top: 20px;
  transform: none;
  background: #2e7d32;
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
}
.afflink-product-card .afflink-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.3px;
  border-radius: 4px;
  margin-bottom: 6px;
  z-index: 10;
}
.afflink-product-card .afflink-badge.afflink-badge-default {
  background: #2e7d32;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-flagship {
  background: #ffd700;
  color: #000;
}
.afflink-product-card .afflink-badge.afflink-badge-best-value {
  background: #dc3545;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-adventure-pro {
  background: #0066cc;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-editors-choice {
  background: #6c63ff;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-top-pick {
  background: #ff6b35;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-premium {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-top-choice {
  background: #28a745;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-best-beginner {
  background: #17a2b8;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-budget-pick {
  background: #28a745;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-most-popular {
  background: #ff6b6b;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-new {
  background: #e74c3c;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-sale {
  background: #ff4757;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-limited-time {
  background: #ff6348;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-recommended {
  background: #5f27cd;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-expert-pick {
  background: #2d3436;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-best-for-pros {
  background: #0984e3;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-upgrade-pick {
  background: #fd79a8;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-runner-up {
  background: #a29bfe;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-great-value {
  background: #00b894;
  color: #fff;
}
.afflink-product-card .afflink-badge.afflink-badge-staff-favorite {
  background: #fdcb6e;
  color: #000;
}
.afflink-product-card .afflink-badge.afflink-badge-amazons-choice {
  background: #232f3e;
  color: #ff9900;
  font-weight: 700;
}
.afflink-product-card .afflink-badge.afflink-badge-best-seller {
  background: #28a745;
  color: #fff;
}
.afflink-product-card .afflink-badge::before {
  content: "";
  display: inline-block;
  margin-right: 4px;
  font-size: 0.9em;
  line-height: 1;
}
.afflink-product-card .afflink-badge.afflink-badge-best-seller::before {
  content: "★";
  color: #ffa500;
}
.afflink-product-card .afflink-badge.afflink-badge-flagship::before {
  content: "⭐";
}
.afflink-product-card .afflink-badge.afflink-badge-best-value::before {
  content: "💰";
}
.afflink-product-card .afflink-badge.afflink-badge-top-pick::before {
  content: "🏆";
}
.afflink-product-card .afflink-badge.afflink-badge-top-choice::before {
  content: "✓";
}
.afflink-product-card .afflink-badge.afflink-badge-editors-choice::before {
  content: "✎";
}
.afflink-product-card .afflink-badge.afflink-badge-premium::before {
  content: "💎";
}
.afflink-product-card .afflink-badge.afflink-badge-amazons-choice::before {
  content: "✓";
}
.afflink-product-card .afflink-badge.afflink-badge-staff-favorite::before {
  content: "❤";
}
.afflink-product-card .afflink-badge.afflink-badge-best-beginner::before {
  content: "🌱";
}
.afflink-product-card .afflink-badge.afflink-badge-best-for-pros::before {
  content: "⚡";
}
.afflink-product-card .afflink-badge.afflink-badge-expert-pick::before {
  content: "🎯";
}
.afflink-product-card .afflink-badge.afflink-badge-upgrade-pick::before {
  content: "⬆";
}
.afflink-product-card .afflink-badge.afflink-badge-budget-pick::before {
  content: "💵";
}
.afflink-product-card .afflink-badge.afflink-badge-most-popular::before {
  content: "🔥";
}
.afflink-product-card .afflink-badge.afflink-badge-new::before {
  content: "🆕";
}
.afflink-product-card .afflink-badge.afflink-badge-sale::before {
  content: "🏷";
}
.afflink-product-card .afflink-badge.afflink-badge-limited-time::before {
  content: "⏰";
}
.afflink-product-card .afflink-badge.afflink-badge-recommended::before {
  content: "👍";
}
.afflink-product-card .afflink-badge.afflink-badge-runner-up::before {
  content: "🥈";
}
.afflink-product-card .afflink-badge.afflink-badge-great-value::before {
  content: "💎";
}
.afflink-product-card .afflink-badge.afflink-badge-adventure-pro::before {
  content: "⚙";
}
.afflink-product-card .afflink-badge.afflink-badge-default::before {
  content: "✓";
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  z-index: 500;
  padding: 8px 12px;
  font-size: 0.9rem;
  line-height: 0.9rem;
  font-weight: 700;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.14);
  text-transform: none;
  border-radius: 0;
  gap: 4px;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge::before {
  display: inline-block;
  margin-right: 4px;
  font-size: 0.9em;
  line-height: 1;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge::after {
  content: " ";
  display: block;
  position: absolute;
  bottom: -7px;
  left: -10px;
  border-width: 0 10px 7px;
  border-style: inset solid inset inset;
  filter: brightness(50%);
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-flagship::after {
  border-color: transparent #ffd700 transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-best-value::after {
  border-color: transparent #dc3545 transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-adventure-pro::after {
  border-color: transparent #0066cc transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-premium::after {
  border-color: transparent #667eea transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-editors-choice::after {
  border-color: transparent #6c63ff transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-top-pick::after {
  border-color: transparent #ff6b35 transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-top-choice::after {
  border-color: transparent #28a745 transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-best-beginner::after {
  border-color: transparent #17a2b8 transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-budget-pick::after {
  border-color: transparent #28a745 transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-most-popular::after {
  border-color: transparent #ff6b6b transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-new::after {
  border-color: transparent #e74c3c transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-sale::after {
  border-color: transparent #ff4757 transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-limited-time::after {
  border-color: transparent #ff6348 transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-recommended::after {
  border-color: transparent #5f27cd transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-expert-pick::after {
  border-color: transparent #2d3436 transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-best-for-pros::after {
  border-color: transparent #0984e3 transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-upgrade-pick::after {
  border-color: transparent #fd79a8 transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-runner-up::after {
  border-color: transparent #a29bfe transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-great-value::after {
  border-color: transparent #00b894 transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-staff-favorite::after {
  border-color: transparent #fdcb6e transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-amazons-choice::after {
  border-color: transparent #232f3e transparent transparent;
}
.afflink-product-card:not(.afflink-product-card-2):not(.afflink-product-card-3):not(.afflink-product-card-4) > .afflink-badge-wrapper .afflink-badge-best-seller::after {
  border-color: transparent #28a745 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 {
  display: flex !important;
  flex-direction: column !important;
  width: calc(33.333% - 14px);
  max-width: 380px;
  min-height: 520px;
  position: relative;
  overflow: visible;
  padding: 8px 12px 12px;
}
.afflink-product-card.afflink-product-card-2 > .afflink-badge-wrapper {
  position: absolute;
  top: 0.5rem;
  left: -11px;
  z-index: 500;
  margin-bottom: 0;
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  flex: 1;
  padding: 4px 0 0;
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 280px;
  height: 280px;
  margin: 0 auto 4px;
  overflow: visible;
  transition: transform 0.3s ease;
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 16px 12px;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  z-index: 500;
  padding: 8px 12px;
  font-size: 0.9rem;
  line-height: 0.9rem;
  font-weight: 700;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.14);
  text-transform: none;
  border-radius: 0;
  gap: 4px;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge::before {
  display: inline-block;
  margin-right: 4px;
  font-size: 0.9em;
  line-height: 1;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge::after {
  content: " ";
  display: block;
  position: absolute;
  bottom: -7px;
  left: -10px;
  border-width: 0 10px 7px;
  border-style: inset solid inset inset;
  filter: brightness(50%);
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-flagship::after {
  border-color: transparent #ffd700 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-best-value::after {
  border-color: transparent #dc3545 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-adventure-pro::after {
  border-color: transparent #0066cc transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-premium::after {
  border-color: transparent #667eea transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-editors-choice::after {
  border-color: transparent #6c63ff transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-top-pick::after {
  border-color: transparent #ff6b35 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-top-choice::after {
  border-color: transparent #28a745 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-best-beginner::after {
  border-color: transparent #17a2b8 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-budget-pick::after {
  border-color: transparent #28a745 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-most-popular::after {
  border-color: transparent #ff6b6b transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-new::after {
  border-color: transparent #e74c3c transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-sale::after {
  border-color: transparent #ff4757 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-limited-time::after {
  border-color: transparent #ff6348 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-recommended::after {
  border-color: transparent #5f27cd transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-expert-pick::after {
  border-color: transparent #2d3436 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-best-for-pros::after {
  border-color: transparent #0984e3 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-upgrade-pick::after {
  border-color: transparent #fd79a8 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-runner-up::after {
  border-color: transparent #a29bfe transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-great-value::after {
  border-color: transparent #00b894 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-staff-favorite::after {
  border-color: transparent #fdcb6e transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-amazons-choice::after {
  border-color: transparent #232f3e transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-badge-best-seller::after {
  border-color: transparent #28a745 transparent transparent;
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  transition: color 0.2s ease;
  cursor: pointer;
  text-align: center;
  width: 100%;
  line-height: 1.4;
  min-height: 2.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-title:hover, .afflink-product-card.afflink-product-card-2 .afflink-layout-2-title:focus-visible {
  color: #0066c0;
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 4px 0;
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-meta .afflink-prime {
  display: flex;
  align-items: center;
  justify-content: center;
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-meta .afflink-prime img {
  height: 20px;
  width: auto;
}
.afflink-product-card.afflink-product-card-2 .afflink-rating {
  text-align: center;
  margin: 0;
  font-size: 1.1rem;
  color: #f39c12;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 500;
}
.afflink-product-card.afflink-product-card-2 .afflink-rating span {
  color: #555;
  font-size: 0.9rem;
  font-weight: 600;
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-button {
  margin-top: auto;
  text-align: center;
  width: 100%;
  padding-top: 8px;
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-button .afflink-btn {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.85rem;
  white-space: normal;
  line-height: 1.2;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-button .afflink-btn:hover {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-button .afflink-btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 102, 192, 0.5);
}
.afflink-product-card.afflink-product-card-2 .afflink-layout-2-button .afflink-btn:active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.afflink-product-card.afflink-product-card-2 {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.afflink-product-card.afflink-product-card-2:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: #2e7d32;
}
.afflink-product-card.afflink-product-card-2:hover .afflink-layout-2-image {
  transform: scale(1.1);
}
@media (max-width: 1050px) {
  .afflink-product-card:not(.afflink-product-card-2) {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .afflink-product-card.afflink-product-card-2 {
    display: block !important;
    flex-direction: unset !important;
    align-items: unset !important;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-layout-2-content {
    display: flex !important;
    flex-direction: row !important;
    text-align: left;
    align-items: flex-start !important;
    gap: 20px !important;
    flex-wrap: nowrap !important;
  }
  .afflink-product-card .afflink-card-content {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .afflink-product-card .afflink-btn-box {
    margin-top: 15px;
  }
  .afflink-product-card .afflink-btn-box .afflink-btn {
    width: 100%;
    max-width: 300px;
  }
  .afflink-product-card .afflink-number-badge {
    left: 50%;
    transform: translateX(-50%);
  }
  .afflink-product-card .afflink-badge-wrapper {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .afflink-product-card:not(.afflink-product-card-2) {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 12px;
  }
  .afflink-product-card.afflink-product-card-2 {
    width: 100% !important;
    max-width: 100% !important;
    min-height: unset !important;
    padding: 2px !important;
    margin: 0 !important;
    gap: 0 !important;
    border-radius: 4px !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-layout-2-content {
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-layout-2-image {
    width: 100% !important;
    max-width: 90px !important;
    height: 90px !important;
    margin: 0 auto 2px !important;
    overflow: hidden !important;
    order: 1 !important;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-layout-2-info {
    text-align: center !important;
    width: 100% !important;
    padding: 0 1px 1px !important;
    gap: 1px !important;
    margin: 0 !important;
    order: 2 !important;
    display: flex !important;
    flex-direction: column !important;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-badge-wrapper {
    position: absolute;
    top: 0.2rem;
    left: -11px;
    text-align: left;
    z-index: 10;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-badge {
    padding: 6px 10px !important;
    font-size: 0.75rem !important;
    line-height: 0.75rem !important;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-badge::before {
    font-size: 0.75rem !important;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-layout-2-meta {
    margin: 2px 0;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-layout-2-meta .afflink-prime img {
    height: 12px;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-layout-2-title {
    font-size: 0.65rem;
    min-height: unset;
    margin-bottom: 1px;
    line-height: 1.2;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-rating {
    font-size: 0.65rem;
    margin: 0.5px 0;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-layout-2-button {
    width: 100%;
    padding: 4px 0 0;
    margin-top: auto;
  }
  .afflink-product-card.afflink-product-card-2 .afflink-layout-2-button .afflink-btn {
    width: 100%;
    max-width: 100%;
    padding: 6px 8px;
    font-size: 0.7rem;
    white-space: nowrap;
    text-align: center;
    display: block;
    line-height: 1.2;
  }
  .afflink-product-card.afflink-product-card-2:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    border-color: #e0e0e0 !important;
  }
  .afflink-product-card.afflink-product-card-2:hover .afflink-layout-2-image {
    transform: none !important;
  }
  .afflink-product-card.afflink-product-card-2:hover .afflink-layout-2-image img {
    transform: none !important;
  }
  .afflink-product-card .afflink-image-box {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
  .afflink-product-card .afflink-card-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .afflink-product-card .afflink-product-info .afflink-product-title {
    font-size: 1rem;
  }
  .afflink-product-card .afflink-product-info .afflink-rating {
    font-size: 0.9rem;
  }
  .afflink-product-card .afflink-btn-box {
    width: 100%;
    margin-top: 12px;
  }
  .afflink-product-card .afflink-btn-box .afflink-btn {
    width: 100%;
    max-width: none;
    font-size: 0.85rem;
    padding: 12px 20px;
  }
  .afflink-product-card .afflink-product-meta {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
  }
  .afflink-product-card .afflink-number-badge {
    left: 50%;
    transform: translateX(-50%);
    top: 6px;
  }
  .afflink-product-card > .afflink-badge-wrapper {
    position: absolute;
    top: 0.2rem;
    left: -11px;
    text-align: left;
    z-index: 10;
    margin-bottom: 0;
    width: auto;
  }
  .afflink-product-card .afflink-badge {
    font-size: 0.75rem !important;
    padding: 6px 10px !important;
    display: inline-flex;
    margin: 0;
    line-height: 0.75rem !important;
  }
  .afflink-product-card .afflink-badge::before {
    font-size: 0.75rem !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-default {
    background: #2e7d32 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-flagship {
    background: #ffd700 !important;
    color: #000 !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-best-value {
    background: #dc3545 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-adventure-pro {
    background: #0066cc !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-editors-choice {
    background: #6c63ff !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-top-pick {
    background: #ff6b35 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-top-choice {
    background: #28a745 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-best-beginner {
    background: #17a2b8 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-budget-pick {
    background: #28a745 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-most-popular {
    background: #ff6b6b !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-new {
    background: #e74c3c !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-sale {
    background: #ff4757 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-limited-time {
    background: #ff6348 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-recommended {
    background: #5f27cd !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-expert-pick {
    background: #2d3436 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-best-for-pros {
    background: #0984e3 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-upgrade-pick {
    background: #fd79a8 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-runner-up {
    background: #a29bfe !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-great-value {
    background: #00b894 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-staff-favorite {
    background: #fdcb6e !important;
    color: #000 !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-amazons-choice {
    background: #232f3e !important;
    color: #ff9900 !important;
    font-weight: 700 !important;
  }
}
@media (max-width: 480px) {
  .afflink-product-card {
    padding: 12px;
  }
  .afflink-product-card .afflink-image-box {
    width: 100px;
    height: 100px;
  }
  .afflink-product-card .afflink-product-info .afflink-product-title {
    font-size: 0.95rem;
  }
  .afflink-product-card .afflink-btn-box .afflink-btn {
    font-size: 0.8rem;
    padding: 10px 16px;
  }
  .afflink-product-card > .afflink-badge-wrapper {
    position: absolute;
    top: 0.2rem;
    left: -11px;
    text-align: left;
    z-index: 10;
    margin-bottom: 0;
    width: auto;
  }
  .afflink-product-card .afflink-badge {
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
    line-height: 0.65rem !important;
  }
  .afflink-product-card .afflink-badge::before {
    font-size: 0.65rem !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-default {
    background: #2e7d32 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-flagship {
    background: #ffd700 !important;
    color: #000 !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-best-value {
    background: #dc3545 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-adventure-pro {
    background: #0066cc !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-editors-choice {
    background: #6c63ff !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-top-pick {
    background: #ff6b35 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-premium {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-top-choice {
    background: #28a745 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-best-beginner {
    background: #17a2b8 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-budget-pick {
    background: #28a745 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-most-popular {
    background: #ff6b6b !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-new {
    background: #e74c3c !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-sale {
    background: #ff4757 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-limited-time {
    background: #ff6348 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-recommended {
    background: #5f27cd !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-expert-pick {
    background: #2d3436 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-best-for-pros {
    background: #0984e3 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-upgrade-pick {
    background: #fd79a8 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-runner-up {
    background: #a29bfe !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-great-value {
    background: #00b894 !important;
    color: #fff !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-staff-favorite {
    background: #fdcb6e !important;
    color: #000 !important;
  }
  .afflink-product-card .afflink-badge.afflink-badge-amazons-choice {
    background: #232f3e !important;
    color: #ff9900 !important;
    font-weight: 700 !important;
  }
}

.afflink-button-link {
  display: inline-block;
  transition: opacity 0.2s ease;
}
.afflink-button-link:hover {
  opacity: 0.9;
}

.afflink-button-layout {
  display: inline-block;
}
.afflink-button-layout .afflink-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #0066c0;
  border: 1px solid #0066c0;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
  box-sizing: border-box;
}
.afflink-button-layout .afflink-btn:hover {
  background: #0052a3;
  border-color: #0052a3;
}

.afflink-products-list.afflink-layout-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.afflink-products-list.afflink-layout-4 .afflink-button-link {
  display: inline-block;
}

@media (max-width: 768px) {
  .afflink-button-layout .afflink-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}
.afflink-products-list.afflink-layout-3 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.afflink-product-card-3 {
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}
.afflink-product-card-3 > .afflink-badge-wrapper {
  position: absolute;
  top: 0.5rem;
  left: -11px;
  z-index: 500;
  margin-bottom: 0;
}
.afflink-product-card-3 .afflink-layout-3-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  width: 100%;
}
.afflink-product-card-3 .afflink-layout-3-image {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.afflink-product-card-3 .afflink-layout-3-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.afflink-product-card-3 .afflink-layout-3-info {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  min-width: 0;
}
.afflink-product-card-3 .afflink-layout-3-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.afflink-product-card-3 .afflink-layout-3-left .afflink-layout-3-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dc3545 !important;
  color: #fff !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 0.9rem;
  margin: 40px 0 8px 0;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  align-self: center;
}
.afflink-product-card-3 .afflink-layout-3-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #fff;
  z-index: 500;
  padding: 8px 12px;
  font-size: 0.9rem;
  line-height: 0.9rem;
  font-weight: 700;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.14);
  text-transform: none;
  border-radius: 0;
  gap: 4px;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge::before {
  display: inline-block;
  margin-right: 4px;
  font-size: 0.9em;
  line-height: 1;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge::after {
  content: " ";
  display: block;
  position: absolute;
  bottom: -7px;
  left: -10px;
  border-width: 0 10px 7px;
  border-style: inset solid inset inset;
  filter: brightness(50%);
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-flagship::after {
  border-color: transparent #ffd700 transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-best-value::after {
  border-color: transparent #dc3545 transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-adventure-pro::after {
  border-color: transparent #0066cc transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-premium::after {
  border-color: transparent #667eea transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-editors-choice::after {
  border-color: transparent #6c63ff transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-top-pick::after {
  border-color: transparent #ff6b35 transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-top-choice::after {
  border-color: transparent #28a745 transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-best-beginner::after {
  border-color: transparent #17a2b8 transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-budget-pick::after {
  border-color: transparent #28a745 transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-most-popular::after {
  border-color: transparent #ff6b6b transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-new::after {
  border-color: transparent #e74c3c transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-sale::after {
  border-color: transparent #ff4757 transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-limited-time::after {
  border-color: transparent #ff6348 transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-recommended::after {
  border-color: transparent #5f27cd transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-expert-pick::after {
  border-color: transparent #2d3436 transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-best-for-pros::after {
  border-color: transparent #0984e3 transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-upgrade-pick::after {
  border-color: transparent #fd79a8 transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-runner-up::after {
  border-color: transparent #a29bfe transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-great-value::after {
  border-color: transparent #00b894 transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-staff-favorite::after {
  border-color: transparent #fdcb6e transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-amazons-choice::after {
  border-color: transparent #232f3e transparent transparent;
}
.afflink-product-card-3 > .afflink-badge-wrapper .afflink-badge-best-seller::after {
  border-color: transparent #28a745 transparent transparent;
}
.afflink-product-card-3 .afflink-layout-3-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #222;
  text-align: center;
}
.afflink-product-card-3 .afflink-layout-3-meta-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.afflink-product-card-3 .afflink-layout-3-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
}
.afflink-product-card-3 .afflink-layout-3-meta-rating .afflink-rating {
  font-size: 0.9rem;
  margin: 0;
  text-align: center;
}
.afflink-product-card-3 .afflink-layout-3-button {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.afflink-product-card-3 .afflink-layout-3-button .afflink-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #0066c0 !important;
  border: 1px solid #0066c0 !important;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}
.afflink-product-card-3 .afflink-layout-3-button .afflink-btn:hover {
  background: #0052a3 !important;
  border-color: #0052a3 !important;
  color: #fff !important;
}
.afflink-product-card-3 {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.afflink-product-card-3:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border-color: #2e7d32;
}
.afflink-product-card-3:hover .afflink-layout-3-image {
  transform: scale(1.05);
}
.afflink-product-card-3 .afflink-layout-3-image {
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .afflink-product-card-3 {
    padding: 8px !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .afflink-product-card-3 .afflink-layout-3-content {
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100%;
  }
  .afflink-product-card-3 .afflink-layout-3-image {
    width: 100% !important;
    max-width: 120px !important;
    height: 120px !important;
    flex-shrink: 0;
    order: 1 !important;
    margin: 0 auto !important;
  }
  .afflink-product-card-3 .afflink-layout-3-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    order: 2 !important;
  }
  .afflink-product-card-3 .afflink-layout-3-left {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .afflink-product-card-3 .afflink-layout-3-number {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
    margin-bottom: 6px;
  }
  .afflink-product-card-3 > .afflink-badge-wrapper {
    position: absolute;
    top: 0.3rem;
    left: -11px;
    z-index: 10;
    text-align: left;
  }
  .afflink-product-card-3 .afflink-layout-3-right {
    width: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    order: 3 !important;
  }
  .afflink-product-card-3 .afflink-layout-3-title {
    font-size: 0.75rem;
    line-height: 1.2;
    text-align: center;
    margin: 0;
  }
  .afflink-product-card-3 .afflink-layout-3-meta-rating {
    flex-direction: column !important;
    align-items: center !important;
    gap: 4px !important;
    width: 100%;
  }
  .afflink-product-card-3 .afflink-layout-3-meta {
    font-size: 0.75rem;
    gap: 8px;
    justify-content: center;
  }
  .afflink-product-card-3 .afflink-layout-3-meta-rating .afflink-rating {
    font-size: 0.75rem;
    text-align: center;
  }
  .afflink-product-card-3 .afflink-layout-3-button {
    width: 100%;
  }
  .afflink-product-card-3 .afflink-layout-3-button .afflink-btn {
    width: 100%;
    max-width: 280px;
    padding: 10px 16px;
    font-size: 0.85rem;
    white-space: normal;
  }
  .afflink-product-card-3:hover {
    transform: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-color: #e0e0e0;
  }
  .afflink-product-card-3:hover .afflink-layout-3-image {
    transform: none !important;
  }
}
