/**
 * 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
 */
/**
 * Color System
 * Migrated from $color-map found in all feature files
 * Maintains backward compatibility with numbered system
 */
/**
 * Semantic color aliases for better maintainability
 */
/**
 * 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
 */
/* Previous color-map moved to _variables.scss */
/* Product Cover Box */
.ca-product-cover-box {
  padding: 20;
  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: 1;
  border-style: solid;
  width: 100%;
  border-radius: 10;
  position: relative;
  background-color: #272727;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ca-product-info-box-div {
  padding: 3 10;
  border-color: #3ed48c;
  border-width: 1;
  border-style: solid;
  width: 100%;
  display: flex;
  margin-bottom: 5;
  align-items: center;
  position: relative;
  flex-direction: row;
  border-radius: 10;
  background-color: #333333;
}
.ca-product-add-to-cart {
  cursor: pointer;
  padding-left: 20;
  padding-right: 20;
  border-radius: 10;
  position: absolute;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #222222;
}
.ca-product-info-box-title {
  font-weight: 600;
  min-width: 60;
}
.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: 5;
}
.ca-product-info-box-top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #333333;
  padding-top: 5;
  padding-bottom: 5;
  border-top-left-radius: 10;
  border-top-right-radius: 10;
  border-bottom-color: #3ed48c;
  border-bottom-width: 1;
  border-bottom-style: solid;
}
.ca-product-info-box-middle {
  padding: 20;
  width: 100%;
}
.ca-product-badge-best {
  padding: 2 12;
  color: #da002e;
  background-color: #da002e;
  border-radius: 50;
  font-weight: 600;
  display: none;
}
.ca-product-badge-new {
  padding: 2 12;
  color: #3ed48c;
  background-color: #272727;
  border-radius: 50;
  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: 10;
  border-color: #878787;
  border-width: 1;
  border-style: solid;
  display: flex;
  flex-direction: row;
  background-color: #333333;
  border-radius: 10;
  gap: 10;
  margin-top: 20;
  margin-bottom: 20;
}
.product-review-box-l {
  width: 110;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-review-box-r {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5;
}
.product-review-box-meta {
  display: flex;
  flex-direction: row;
  gap: 10;
}
.product-review-rating-box-outer {
  display: inline-block;
  position: relative;
}
.product-review-rating-box-inner {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  color: #ffc328;
}
.product-review-rating-box-under {
  color: #3ed48c;
}
