.big-card {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 0 40px;
}

.big-card-page .main {
  background: #EAEDF6;
}

.big-card__container {
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  max-width: 1300px;
  width: 100%;
  column-gap: 24px;
  padding: 24px;
  flex-wrap: wrap;
  background: #EAEDF6;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.big-card__left {
  flex: 0 0 55%;
  background: #e9ecf3;
  border-radius: 12px;
  overflow: hidden;
}

.big-card__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.big-card__image {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.big-card__right {
  flex: 1 1 0;  
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.big-card__license-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.big-card__license-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #222;
  cursor: pointer;
  padding: 4px 0;
  font-weight: 500;
  user-select: none;
  position: relative;
}

.big-card__license-radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.big-card__license-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #008FA1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
  box-sizing: border-box;
  margin-right: 2px;
}

.big-card__license-option--active .big-card__license-radio {
  border-color: #008FA1;
}

.big-card__license-radio::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
}

.big-card__license-option--active .big-card__license-radio::after {
  background: #008FA1;
}

.big-card__license-title {
  font-weight: 700;
  color: #111;
  margin-right: 4px;
}

.big-card__license-desc {
  font-weight: 400;
}

.big-card__license-link {
  font-size: 13px;
  color: #0000FF;
  text-decoration: underline;
  margin-top: 2px;
  align-self: flex-start;
}

.big-card__sizes {  
  align-items: center;
  gap: 12px;
  margin: 12px 0 0 0;
  flex-wrap: wrap;
}

.big-card__size-buttons {
  background-color: #f5f5f5;
  display: flex;
  padding: 4px;
  border-radius: 8px;
  position: relative;
  gap: 0;
}

/* Sliding background indicator */
.big-card__size-buttons::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: var(--indicator-left, 4px);
  width: var(--indicator-width, calc(25% - 8px));
  background: #008FA1;
  border-radius: 6px;
  transition: left 0.3s ease, width 0.3s ease;
  pointer-events: none;
  z-index: 0;
  box-shadow: 0 2px 8px rgba(0, 143, 161, 0.2);
}

/* Position the sliding background based on active button using CSS variables */
.big-card__size-buttons:has(.big-card__size-btn[data-size="small"].big-card__size-btn--active)::before {
  --indicator-left: var(--left-small, 4px);
}

.big-card__size-buttons:has(.big-card__size-btn[data-size="medium"].big-card__size-btn--active)::before {
  --indicator-left: var(--left-medium, calc(25% + 4px));
}

.big-card__size-buttons:has(.big-card__size-btn[data-size="large"].big-card__size-btn--active)::before {
  --indicator-left: var(--left-large, calc(50% + 4px));
}

.big-card__size-buttons:has(.big-card__size-btn[data-size="original"].big-card__size-btn--active)::before {
  --indicator-left: var(--left-original, calc(75% + 4px));
}

.big-card__size-btn {
  background: none;
  border: none;
  border-radius: 6px;
  padding: 7px 18px;
  font-size: 15px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
}

.big-card__size-btn--active {
  color: #fff;
  font-weight: 600;
}

.big-card__size-btn:hover {
  color: #008FA1;
}

.big-card__size-btn--active:hover {
  color: #fff;
}

.big-card__size-btn:disabled,
.big-card__size-btn--disabled {
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}

.big-card__size-btn:disabled:hover,
.big-card__size-btn--disabled:hover {
  color: #ccc;
}

.big-card__size-info {
  flex-direction: column;
  font-size: 13px;
  color: #888;
  margin: 12px 0;
  gap: 2px;
}
.big-card__size-info span {
  color: #0E1320;
}

.big-card__megapixels {
  color: #4CAF50 !important;
  font-weight: 600;
  margin-left: 4px;
}

.big-card__size-link {
  font-size: 13px;
  color: #0000FF;
  text-decoration: underline;  
}

.big-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 0 0;
}

.big-card__download-btn {
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.big-card__download-btn--free {
  background: #dc3545;
  color: #fff;
}

.big-card__download-btn--free:hover {
  background: #e25d6b
}

.big-card__download-btn--trial {
  background: #f3f5fa;
  color: #dc3545;
  border: 1px solid #dc3545;
}

.big-card__download-btn--trial:hover {
  background: #ffeaea;
}

/* --- Buy block (BEM) --- */
.big-card__buy {
  background: #f3f5fa;
  border-radius: 8px;
  padding: 16px 24px;
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  line-height: 150%;
}

.big-card__buy-credits {
  font-size: 15px;
  font-weight: 500;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  transition: color 0.2s;
}

.big-card__buy-desc {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
  font-weight: 400;
}

.big-card__buy-price {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
}

.big-card__buy-note {
  color: #888;
  font-weight: 500;
  margin-left: 0;
  font-size: 15px;
}

/* Radio button payment method styles */
.big-card__buy--radio {
  position: relative;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.big-card__buy--radio:hover {
  border-color: #5bc3d1;
  background: #f5fbfc;
}

.big-card__radio-input {
  position: absolute !important;
  top: 16px;
  right: 16px;
  width: 0 !important;
  height: 0 !important;
  cursor: pointer;
  opacity: 0 !important;
  z-index: 1;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
}

.big-card__buy--radio:has(.big-card__radio-input:checked) {
  border-color: #008FA1;
  background: #e8f5f7;
}

/* Custom radio indicator */
.big-card__buy--radio::after {
  display: none !important;
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  background: white;
  transition: all 0.2s;
}

.big-card__buy--radio:has(.big-card__radio-input:checked)::after {
  border-color: #008FA1;
  background: #008FA1;
  box-shadow: inset 0 0 0 3px white;
}

.big-card__buy-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  line-height: 150%;
  width: 100%;
}


.big-card__add-to-cart {
  background: #008FA1;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s;
  width: calc(50% - 4px);
  display: inline-block;
  margin-right: 8px;
}

.big-card__add-to-cart:hover {
  background: #007281;
}

.big-card__buttons-wrapper {
  display: flex;
  gap: 8px;
  width: 100%;
  margin-top: 8px;
}

.big-card__buttons-wrapper .big-card__add-to-cart {
  margin-top: 0;
  margin-right: 0;
  flex: 1;
}

.big-card__buttons-wrapper .big-card__buy-now-btn {
  margin-top: 0;
  flex: 1;
}

.big-card__meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0 0;
  flex-wrap: wrap;
}

.big-card__meta-btn, .big-card__meta-id {
  background: #f3f5fa;
  border: none;
  border-radius: 8px;
  padding: 7px 14px;
  font-size: 15px;
  color: #222;  
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  line-height: 1.7;
}

.big-card__meta-btn {
  cursor: pointer;
}

.big-card__meta-btn:hover {
  background: #e0eaff;
}

.big-card__meta-id {  
  color: #fff;
  margin-left: 8px;
  background-color: #d2d9ea;  
}

.big-card__left-hr {
  border: none; 
  background: rgba(18, 25, 86, 0.15);  
  height: 1px;
  margin: 16px 0;
  
}

.big-card__author-row {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: #222;    
}

.big-card__description-row {
  font-size: 14px;
  color: #222;
  margin-top: 16px;    
}

.big-card__author-link {
  color: #008FA1;
  text-decoration: underline;
}

.big-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0 0;
}

.big-card__tag {
  background: #f3f5fa;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 14px;
  color: #222;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.big-card__tags-title {
  padding: 4px 8px 0 0;
  background: none;
}


.big-card__tag:hover {
  background: #e0eaff;
  text-decoration: none;
}

.big-card__tags-title:hover {
  background: none;
}

/* Keywords styles for big card */
.big-card__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0 0;
}

.big-card__keywords-title {
  padding: 4px 8px 0 0;
  background: none;
  font-weight: 600;
  color: #222;
}

.big-card__keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.big-card__keyword {
  background: rgba(0, 143, 161, 0.1);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 14px;
  color: #008FA1;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(0, 143, 161, 0.3);
  text-decoration: none;
  display: inline-block;
}

.big-card__keyword:hover {
  background: rgba(0, 143, 161, 0.2);
  border-color: rgba(0, 143, 161, 0.5);
  transform: translateY(-1px);
  text-decoration: none;
}

/* Unified keyword style - all keywords have the same appearance */
.big-card__keyword {
  background: rgba(0, 143, 161, 0.1);
  color: #008FA1;
  border-color: rgba(0, 143, 161, 0.3);
}

.big-card__keyword:hover {
  background: rgba(0, 143, 161, 0.2);
  border-color: rgba(0, 143, 161, 0.5);
}

/* AI Content category styling */
.big-card__keyword.ai-content-category {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border-color: rgba(220, 38, 38, 0.3);
  font-weight: 600;
}

.big-card__keyword.ai-content-category:hover {
  background: rgba(220, 38, 38, 0.2);
  border-color: rgba(220, 38, 38, 0.5);
}

.big-card__manual-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0 0;
}

.big-card__manual-keywords-title {
  padding: 4px 8px 0 0;
  background: none;
  font-weight: 600;
  color: #222;
}

.big-card__manual-keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.big-card__modal {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 34, 45, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: big-card__modal-fadein 0.2s;
}

@keyframes big-card__modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}

.big-card__modal-content {
  position: relative;
  background: transparent;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  padding: 0;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-card__modal-image {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  background: #fff;
}

.big-card__modal-close {
  position: absolute;
  top: -32px;
  right: 0;
  background: #fff;
  color: #222;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 28px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.big-card__modal-close:hover {
  background: #e0eaff;
  color: #0099e5;
}

@media (max-width: 600px) {
  .big-card__modal-image {
    max-width: 98vw;
    max-height: 60vh;
  }
  .big-card__modal-content {
    max-width: 98vw;
    max-height: 70vh;
  }
  .big-card__modal-close {
    top: -24px;
    right: -4px;
    width: 32px;
    height: 32px;
    font-size: 22px;
  }
} 

.big-card__dev-save-btn {
  position: fixed;
  top: 24px;
  right: 32px;
  z-index: 2000;
  background: #008FA1;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
}

.big-card__dev-save-btn:hover {
  background: #25a5b6;
  color: #fff;
  opacity: 1;
  box-shadow: 0 4px 18px rgba(0,0,0,0.16);
} 

.big-card__lists {
  width: 100%;    
  box-sizing: border-box;
  display: block;
  flex: 0 0 100%;
  max-width: 100%;
} 


.big-card__related {
  margin-top: 32px;
  width: 100%;
}

.big-card__h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 12px 0 14px 0;
  color: #222;
}

.big-card__related-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.big-card__related-card {
  width: 160px;
  height: 118px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-card__related-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.16);
}

.big-card__related-img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  opacity: 0.8;
  transition: all 0.18s;
}

.big-card__related-card:hover .big-card__related-img {
  opacity: 1;
}

.big-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.big-card__show-all {
  color: #008FA1;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.18s, text-decoration 0.18s;
}
.big-card__show-all:hover {
  color: #005e6b;
  text-decoration: underline;
} 

.big-card__loader {
  text-align: center;
  padding: 32px;
  font-size: 18px;
  color: #008FA1;
  opacity: 0.8;
}

.catalog-page__big-card-error {
  text-align: center;
  padding: 32px;
  color: #c00;
  font-size: 16px;
  background: #fff0f0;
  border-radius: 8px;
}

/* SVG Background Controls */
.big-card__svg-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.big-card__svg-controls {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.big-card__bg-btn {
  padding: 8px 16px;
  border: 2px solid #ddd;
  background: #fff;
  color: #333;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.big-card__bg-btn:hover {
  border-color: #008FA1;
  background: #f8f9fa;
}

.big-card__bg-btn.active {
  border-color: #008FA1;
  background: #008FA1;
  color: #fff;
}

.big-card__svg-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 500px;
  border-radius: 8px;
}

/* Big card cart button states */
.big-card__add-to-cart.cart-loading {
  opacity: 0.7;
  pointer-events: none;
  cursor: not-allowed;
}

.big-card__add-to-cart.cart-in-cart {
  background: #28a745;
}

.big-card__add-to-cart.cart-in-cart:hover {
  background: #218838;
}

/* Recommendations Section Styles */
.big-card__recommendations {
  width: 100%;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(18, 25, 86, 0.15);
}

.big-card__recommendations-section {
  margin-top: 32px;
  margin-bottom: 24px;
  flex: 0 0 100%;
  width: 100%;
}

.big-card__recommendations-section:last-child {
  margin-bottom: 0;
}

.big-card__recommendations-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.big-card__title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.big-card__show-all {
  color: #008FA1;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.18s, text-decoration 0.18s;
}

.big-card__show-all:hover {
  color: #005e6b;
  text-decoration: underline;
}

.big-card__recommendations-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 8px 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.big-card__recommendations-scroll::-webkit-scrollbar {
  height: 6px;
}

.big-card__recommendations-scroll::-webkit-scrollbar-track {
  background: #f3f5fa;
  border-radius: 3px;
}

.big-card__recommendations-scroll::-webkit-scrollbar-thumb {
  background: #c5cad9;
  border-radius: 3px;
}

.big-card__recommendations-scroll::-webkit-scrollbar-thumb:hover {
  background: #a8afc4;
}

.big-card__recommendation-item {
  position: relative;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  background: #fff;
  flex-shrink: 0;
  max-width: 500px;
}

.big-card__recommendation-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
  transform: translateY(-2px);
}

.big-card__recommendation-image-wrapper {
  position: relative;
  max-width: 500px;
  height: 113px;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big-card__recommendation-image {
  width: auto;
  height: 113px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.big-card__recommendation-item:hover .big-card__recommendation-image {
  opacity: 0.9;
}

/* Video badge for recommendations */
.video-badge--small {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.2s ease;
  width: 32px;
  height: 32px;
}

.video-badge--small svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.big-card__recommendation-item:hover .video-badge--small {
  opacity: 0.9;
}

/* File type indicators for recommendations */
.big-card__file-type {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.big-card__file-type--video {
  background: rgba(220, 38, 38, 0.85);
}

.big-card__file-type--vector {
  background: rgba(34, 86, 197, 0.85);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .big-card__container {
    flex-direction: column;
    padding: 16px;
  }

  .big-card__left {
    flex: 1 1 100%;
    width: 100%;
  }

  .big-card__right {
    flex: 1 1 100%;
    width: 100%;
  }

  .big-card__image-wrapper {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .big-card {
    padding: 16px 0 24px;
  }

  .big-card__container {
    padding: 12px;
    gap: 16px;
  }

  .big-card__image-wrapper {
    min-height: 300px;
  }

  .big-card__image {
    max-height: 300px;
  }

  .big-card__right {
    gap: 14px;
  }

  .big-card__license-option {
    font-size: 14px;
    padding: 6px 0;
  }

  .big-card__size-option {
    padding: 10px 14px;
    font-size: 14px;
  }

  .big-card__price-amount {
    font-size: 20px;
  }

  .big-card__buy-now-btn {
    padding: 14px 20px;
    font-size: 16px;
  }

  .big-card__add-to-cart-btn {
    padding: 14px 20px;
    font-size: 16px;
  }

  .big-card__recommendation-item {
    max-width: 140px;
  }

  .big-card__recommendation-image-wrapper {
    max-width: 140px;
    height: 93px;
  }

  .big-card__recommendation-image {
    height: 93px;
  }

  .video-badge--small {
    width: 28px;
    height: 28px;
  }

  .big-card__info-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .big-card__tags {
    flex-wrap: wrap;
  }

  .big-card__tag {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .big-card__container {
    padding: 8px;
    gap: 12px;
  }

  .big-card__image-wrapper {
    min-height: 250px;
  }

  .big-card__image {
    max-height: 250px;
  }

  .big-card__license-option {
    font-size: 13px;
  }

  .big-card__size-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .big-card__size-option {
    padding: 8px 12px;
    font-size: 13px;
  }

  .big-card__price-amount {
    font-size: 18px;
  }

  .big-card__buy-now-btn {
    padding: 12px 16px;
    font-size: 15px;
  }

  .big-card__add-to-cart-btn {
    padding: 12px 16px;
    font-size: 15px;
  }

  .big-card__recommendation-item {
    max-width: 120px;
  }

  .big-card__recommendation-image-wrapper {
    max-width: 120px;
    height: 80px;
  }

  .big-card__recommendation-image {
    height: 80px;
  }
}

/* Buy Now Button - direct purchase */
.big-card__buy-now-btn {
  background: #008FA1;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 600;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.big-card__buy-now-btn:hover {
  background: #007281;
}

.big-card__buy-now-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

/* License Selected Styles */
.big-card__license-selected {
  margin-top: 0;
}

.big-card__license-selected-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-bottom: 0;
}
