/**
 * Products styles
 * Product-related components and layouts
 */
/**
 * Design tokens for ca-custom plugin
 * Based on .example/script/_variables.scss structure
 * 
 * Centralized variables to eliminate duplication across SCSS files
 */
/**
 * Typography System
 * Migrated from $font-attributes-map
 */
/**
 * Font Sizes - Title
 */
/**
 * Font Sizes - Subtitle
 */
/**
 * Font Sizes - Text
 */
/**
 * Font Sizes - Caption
 */
/**
 * Font Weights
 */
/**
 * Font Weights - Title
 */
/**
 * Font Weights - Subtitle
 */
/**
 * Font Weights - Text
 */
/**
 * Font Weights - Caption
 */
/**
 * Line Heights
 */
/**
 * Responsive Font Sizes
 * Base font sizes for root element
 */
/**
 * Spacing Scale
 * Base unit: 8px for consistency
 */
/**
 * Legacy spacing aliases
 */
/**
 * Borders
 */
/**
 * Z-index Scale
 */
/**
 * Breakpoints
 */
/**
 * Legacy breakpoint aliases
 */
/**
 * Container Widths
 */
/**
 * Shadows
 */
/**
 * Transitions
 */
/**
 * Common transitions
 */
/**
 * WordPress Admin Sidebar
 */
/**
 * Font attributes map for backward compatibility
 * Used by front-default.scss to generate utility classes
 */
/**
 * Reusable mixins for ca-custom plugin
 * Based on .example/script/_mixins.scss patterns
 * 
 * Common patterns and utilities for consistent styling
 */
/**
 * Responsive breakpoint mixins
 * Mobile-first approach with multiple breakpoints
 */
/**
 * Legacy responsive mixins for backward compatibility
 */
/**
 * Named breakpoint mixins
 */
/**
 * Flexbox utilities
 */
/**
 * Grid Layout Mixins
 */
/**
 * Button Mixins
 */
/**
 * Card Component Mixins
 */
/**
 * Form Control Mixins
 */
/**
 * Text Utilities
 */
/**
 * Position Utilities
 */
/**
 * Aspect Ratio Mixins
 */
/**
 * Scrollbar Styling
 */
/**
 * Loading States
 */
@keyframes ca-skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/**
 * Overlay Mixins
 */
/**
 * Animation Mixins
 */
@keyframes ca-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/**
 * Utility Mixins
 */
/**
 * Container Mixins
 */
/**
 * WordPress Specific Mixins
 */
/**
 * Apply theme CSS custom properties
 * Usage: @include theme-vars;
 */
/**
 * Theme-aware property mixin
 * Usage: @include themed(background-color, "bg-primary");
 */
/**
 * Quick theme background
 */
/**
 * Quick theme text color
 */
/**
 * Quick theme border
 */
/**
 * Responsive image mixins
 */
/**
 * Background image with cover
 */
/**
 * Modal component mixins
 */
/**
 * Admin box mixin
 */
/**
 * Filter container mixin
 */
/**
 * Pagination mixin
 */
/**
 * Status badge mixin
 */
/**
 * Notice/Alert box mixin
 */
/* Previous color-map moved to _variables.scss */
/* Product Cover Box */
.ca-product-cover-box {
  padding: 20px;
  width: 100%;
}
.ca-product-cover-box-div {
  width: 100%;
  flex-direction: row;
  display: flex;
}
/* Product Info Box */
.ca-product-info-box {
  border-color: #3ed48c;
  border-width: 1px;
  border-style: solid;
  width: 100%;
  border-radius: 10px;
  position: relative;
  background-color: #f6f6f6;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ca-product-info-box-div {
  padding: 3px 10px;
  border-color: #d9d9d9;
  border-width: 1px;
  border-style: solid;
  width: 100%;
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  position: relative;
  flex-direction: row;
  border-radius: 10px;
  background-color: #f6f6f6;
}
.ca-product-add-to-cart {
  cursor: pointer;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 10px;
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333333;
}
.ca-product-info-box-title {
  font-weight: 600;
  min-width: 60px;
}
.ca-product-info-box-price {
  font-weight: 700;
}
/* Product Tag & Badge */
.ca-product-cover-tag-box {
  width: 100%;
  flex-direction: row;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ca-product-info-box-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333333;
  padding-top: 5px;
  padding-bottom: 5px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-color: #3ed48c;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.ca-product-info-box-middle {
  padding: 20px;
  width: 100%;
}
.ca-product-badge-best {
  padding: 2px 12px;
  color: #da002e;
  background-color: #da002e;
  border-radius: 50px;
  font-weight: 600;
  display: none;
}
.ca-product-badge-new {
  padding: 2px 12px;
  color: #3ed48c;
  background-color: #f6f6f6;
  border-radius: 50px;
  font-weight: 600;
  display: none;
}
/* Product Curriculum & Details */
.ca-product-curri-box {
  width: 100%;
}
.ca-product-detail-box {
  width: 100%;
}
.ca-product-detail-box-fixed {
  position: fixed;
  z-index: 999;
  width: calc(1400px * 0.3 - 27px);
}
@media (max-width: 1400px) {
  .ca-product-detail-box-fixed {
    width: calc(30vw - 27px);
  }
}
/* Product Review */
.product-review-box {
  padding: 10px;
  border-color: #d9d9d9;
  border-width: 1px;
  border-style: solid;
  display: flex;
  flex-direction: row;
  background-color: #f6f6f6;
  border-radius: 10px;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.product-review-box-l {
  width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-review-box-r {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-review-box-meta {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.product-review-rating-box-outer {
  display: inline-block;
  position: relative;
}
.product-review-rating-box-inner {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  color: #e4a70c;
}
.product-review-rating-box-under {
  color: #3ed48c;
}
/* Point System Styles */
.ca-btn--point {
  background-color: #181818;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
}
.ca-btn--point:hover {
  background-color: #323232;
}
.mycred-partial-payment-form {
  float: left;
  margin-right: 1.25rem;
}
.point-input-wrapper {
  display: flex;
  gap: 0.75rem;
}
.ca-btn--link {
  background: none;
  border: none;
  color: #80abd3;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font: inherit;
}
/* Order List Styles */
.ca-order-items-list {
  list-style-type: disc;
  padding-left: 0.75rem;
}
.ca-order-items-list li {
  font-size: 0.75rem;
}
/* Payment Container Styles */
#tosspayments-payment-container {
  margin-top: 1rem;
}
.ca-validation-message {
  display: none;
  margin-top: 0.75rem;
}
