/**
 * My Page styles
 * User dashboard and profile management
 */
/**
 * 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
 */
/**
 * Additional variables for this module
 */
/**
 * Component mixins
 */
/* Previous color-map moved to _variables.scss */
.ca-login-limit-container {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background-color: #333333;
}
.ca-login-limit-container .ca-success-message, .ca-login-limit-container .ca-error-message, .ca-login-limit-container .ca-info-message, .ca-login-limit-container .ca-warning-message {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
}
.ca-login-limit-container p {
  margin: 0px;
}
.ca-registered-devices-list {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #f6f6f6;
  border-radius: 10px;
  background-color: #333333;
}
.ca-registered-devices-list h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.1em;
  border-bottom: 1px solid #f6f6f6;
  padding-bottom: 10px;
}
.ca-registered-devices-list ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.ca-registered-devices-list ul li {
  padding: 10px 0;
  border-bottom: 1px dashed #f6f6f6;
}
.ca-registered-devices-list ul li:last-child {
  border-bottom: none;
}
.ca-registered-devices-list ul li.current-device {
  font-weight: bold;
}
.ca-registered-devices-list ul li.current-device strong {
  margin-left: 5px;
  font-weight: normal;
}
.ca-registered-devices-list ul li .device-details {
  font-size: 0.9em;
  margin-left: 5px;
}
.ca-order-container {
  width: 100%;
}
.ca-order-item {
  background-color: #222222;
  border: 1px solid #707070;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease-in-out;
  margin: 12px 0;
}
.ca-order-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.ca-order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.ca-order-order-info {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.ca-order-view-detail a {
  color: #80abd3;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.ca-order-view-detail a:hover {
  color: #5a92c6;
}
.ca-order-status-price {
  margin-bottom: 1rem;
}
.ca-order-status-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.ca-order-status-wrapper .refunded-price {
  color: #da002e !important;
  text-decoration: line-through;
}
.ca-order-status-wrapper .final-price {
  color: #f6f6f6;
}
.ca-order-items-container {
  width: 100%;
}
.ca-order-product-item {
  border: 1px solid #707070;
  margin: 4px 0;
  padding: 16px;
  border-radius: 8px;
  background-color: #181818;
}
.ca-order-product-info {
  display: flex;
  gap: 1rem;
}
.ca-order-product-thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 0.25rem;
  overflow: hidden;
}
.ca-order-product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ca-order-product-name {
  margin: 1rem 0;
  padding: 0.75rem;
  background-color: #222222;
  border-radius: 4px;
  font-weight: 500;
  color: #f6f6f6;
}
.ca-order-product-details {
  flex-grow: 1;
}
.ca-order-product-meta {
  color: #d9d9d9;
}
.ca-order-product-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 12px;
  gap: 12px;
}
.ca-order-product-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #ffffff;
  background-color: #333333;
}
.ca-order-product-actions button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-order-product-actions button:active:not(:disabled) {
  background-color: #181818;
}
.ca-order-product-actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 500;
}
.ca-modal-content {
  position: relative;
  background-color: #333333;
  margin: 15vh auto;
  padding: 1.25rem;
  width: 90%;
  max-width: 500px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-modal-close {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #333333;
  transition: color 0.2s ease-in-out;
}
.ca-modal-close:hover {
  color: #ffffff;
}
.ca-modal-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 16px 0;
  padding: 12px;
  background-color: #222222;
  border-radius: 4px;
  color: #f6f6f6;
}
.ca-modal-product-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 0.25rem;
  overflow: hidden;
}
.ca-modal-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ca-modal-product-name {
  flex-grow: 1;
  font-weight: 500;
}
.ca-modal form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ca-modal .rating-container select {
  width: 100%;
  padding: 12px 16px;
  font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #f6f6f6;
  background-color: #181818;
  border: 1px solid #707070;
  border-radius: 8px;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23f6f6f6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 32px;
}
.ca-modal .rating-container select:focus {
  outline: 0;
  border-color: #80abd3;
  box-shadow: 0 0 0 3px rgba(128, 171, 211, 0.2);
}
.ca-modal textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #f6f6f6;
  background-color: #181818;
  border: 1px solid #707070;
  border-radius: 8px;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  min-height: 100px;
  resize: vertical;
}
.ca-modal textarea:focus {
  outline: 0;
  border-color: #80abd3;
  box-shadow: 0 0 0 3px rgba(128, 171, 211, 0.2);
}
.ca-modal textarea::placeholder {
  color: #707070;
}
.ca-modal .refund-amount-display {
  padding: 12px;
  background-color: #222222;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  color: #f6f6f6;
}
.ca-modal .ca-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #ffffff;
  background-color: #333333;
}
.ca-modal .ca-button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-modal .ca-button:active:not(:disabled) {
  background-color: #181818;
}
.ca-modal .ca-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-order-detail {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 1.25rem;
}
.ca-order-detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #707070;
}
.ca-order-detail-header a {
  color: #80abd3;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.ca-order-detail-header a:hover {
  color: #5a92c6;
}
.ca-order-detail-section {
  background-color: #222222;
  border: 1px solid #707070;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease-in-out;
  margin-bottom: 20px;
}
.ca-order-detail-section:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.ca-order-detail-section h2 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #707070;
  color: #f6f6f6;
}
.ca-order-detail-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ca-order-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0;
}
.ca-order-detail-row.total {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid #707070;
}
.ca-order-detail-row .refunded-price {
  color: #da002e;
  text-decoration: line-through;
}
.ca-order-detail .ca-order-items-container {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .ca-order-detail {
    padding: 12px;
  }
  .ca-order-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .ca-order-detail-row.total {
    flex-direction: row;
    align-items: center;
  }
}
.ca-mypage-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem;
}
.ca-mypage-section {
  background-color: #222222;
  border: 1px solid #707070;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.2s ease-in-out;
  margin: 12px 0 40px;
  overflow: hidden;
}
.ca-mypage-section:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.ca-mypage-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f6f6f6;
  color: #f6f6f6;
}
.ca-mypage-section-content {
  padding: 0;
}
.ca-mypage-section-action {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #707070;
}
.ca-mypage-error {
  padding: 1.25rem;
  background-color: #ffc1ce;
  border-left: 4px solid #da002e;
  margin-bottom: 20px;
  color: #f6f6f6;
}
.ca-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f6f6f6;
  color: #f6f6f6;
}
.ca-section-content {
  padding: 0;
}
.ca-section-action {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #707070;
}
.ca-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #ffffff;
  background-color: #333333;
}
.ca-button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-button:active:not(:disabled) {
  background-color: #181818;
}
.ca-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-order-progress {
  margin-bottom: 2rem;
}
.ca-order-status-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  gap: 12px;
  flex-wrap: wrap;
}
.ca-order-status-list::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #707070;
  z-index: 1;
}
.ca-order-status-item {
  text-align: center;
  z-index: 2;
  flex: 1;
  min-width: 80px;
}
.ca-status-dot {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  background-color: #707070;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 12px;
  color: #f6f6f6;
  position: relative;
  font-weight: 700;
}
.ca-status-label {
  font-size: 0.875rem;
  color: #d9d9d9;
}
.ca-status-count {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 100px;
  background-color: #da002e;
  color: #ffffff;
  font-size: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}
.ca-active .ca-status-dot {
  background-color: #f6f6f6;
  color: #181818;
}
.ca-active .ca-status-label {
  color: #f6f6f6;
  font-weight: 600;
}
.ca-order-summary {
  margin-top: 32px;
}
.ca-no-orders {
  padding: 32px;
  text-align: center;
  background-color: #222222;
  border-radius: 8px;
  color: #d9d9d9;
}
.ca-order-info span {
  margin-right: 12px;
}
.ca-order-status {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #222222;
}
.ca-status-pending {
  background-color: #fefcf9;
  color: #b07b15;
}
.ca-status-processing {
  background-color: white;
  color: #3d79b0;
}
.ca-status-on-hold {
  background-color: #ffe8cc;
  color: #cc7000;
}
.ca-status-completed {
  background-color: #e5f9ef;
  color: #1f8d58;
}
.ca-status-refunded {
  background-color: #ffa7ba;
  color: #740018;
}
.ca-status-cancelled {
  background-color: #707070;
  color: #f6f6f6;
}
.ca-product-info {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.ca-product-thumb {
  width: 60px;
  height: 60px;
  margin-right: 16px;
}
.ca-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.ca-product-detail {
  flex: 1;
}
.ca-product-name {
  font-weight: 500;
  margin-bottom: 4px;
  color: #f6f6f6;
}
.ca-product-meta {
  color: #d9d9d9;
  font-size: 0.875rem;
}
.ca-coupon-container {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 0;
}
.ca-coupon-container h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #f6f6f6;
}
.ca-coupon-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ca-coupon-item {
  background-color: #222222;
  border: 1px solid #707070;
  border-radius: 8px;
  padding: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.ca-coupon-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}
.ca-coupon-amount {
  font-size: 1rem;
  font-weight: 700;
  color: #f6f6f6;
  margin-bottom: 8px;
  background-color: #181818;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
}
.ca-coupon-description {
  font-size: 0.875rem;
  margin-bottom: 8px;
  color: #f6f6f6;
  line-height: 1.5;
}
.ca-coupon-conditions {
  font-size: 0.75rem;
  color: #d9d9d9;
  margin-bottom: 8px;
}
.ca-coupon-expiry {
  font-size: 0.75rem;
  color: #d9d9d9;
}
.ca-coupon-error {
  text-align: center;
  padding: 1.25rem;
  background-color: #ffc1ce;
  border-left: 4px solid #da002e;
  margin-bottom: 20px;
  color: #f6f6f6;
}
.ca-coupon-no-coupons {
  text-align: center;
  padding: 32px;
  background-color: #222222;
  border-radius: 8px;
  color: #d9d9d9;
}
.ca-coupon-received-container {
  max-width: 768px;
  margin: 2.5rem auto;
  padding: 1.25rem;
}
.ca-coupon-received-success {
  background-color: #222222;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border: 1px solid #707070;
}
.ca-success-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #f6f6f6;
  color: #181818;
  font-size: 40px;
  border-radius: 100px;
  margin: 0 auto 20px;
}
.ca-recent-coupon {
  margin: 32px 0;
}
.ca-recent-coupon h3 {
  margin-bottom: 16px;
  font-size: 1.125rem;
  color: #f6f6f6;
}
.ca-coupon-highlight {
  border: 2px solid #f6f6f6;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-width: 500px;
  margin: 0 auto;
  padding: 16px;
  background-color: #222222;
}
.ca-coupon-highlight .ca-coupon-amount {
  font-size: 1.125rem;
  display: block;
  text-align: center;
  margin-bottom: 12px;
  background-color: #f6f6f6;
  color: #181818;
  padding: 8px;
  border-radius: 4px;
}
.ca-coupon-highlight .ca-coupon-description {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #f6f6f6;
  text-align: center;
}
.ca-coupon-highlight .ca-coupon-conditions, .ca-coupon-highlight .ca-coupon-expiry {
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 8px;
  color: #d9d9d9;
}
.ca-action-buttons {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.ca-shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #ffffff;
  background-color: #333333;
}
.ca-shop-button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-view-coupons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.5;
  border: 1px solid #707070;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #f6f6f6;
  background-color: #222222;
}
.ca-view-coupons:hover:not(:disabled) {
  background-color: #181818;
}
.ca-cart-coupons {
  margin-bottom: 20px;
}
.ca-cart-coupons h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #f6f6f6;
  color: #f6f6f6;
}
.ca-cart-coupons .ca-cart-coupon-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin-bottom: 12px;
  border: 1px solid #707070;
  border-radius: 8px;
  background-color: #333333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s ease-in-out;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item.ca-cart-coupon-applied {
  background-color: #fafefc;
  border-color: #bbf0d7;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item.ca-cart-coupon-applied .ca-cart-coupon-status {
  color: #3ed48c;
  font-weight: 700;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-info .ca-cart-coupon-code {
  font-weight: 700;
  color: #f6f6f6;
  font-size: 1rem;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-info .ca-cart-coupon-description {
  color: #d9d9d9;
  font-size: 0.875rem;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-info .ca-cart-coupon-amount {
  color: #da002e;
  font-weight: 600;
  font-size: 1rem;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-info .ca-cart-coupon-conditions, .ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-info .ca-cart-coupon-expiry {
  color: #d9d9d9;
  font-size: 0.875rem;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-action {
  flex-shrink: 0;
  margin-left: 16px;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-action .ca-cart-apply-coupon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.5;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #ffffff;
  background-color: #333333;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-action .ca-cart-apply-coupon:hover:not(:disabled) {
  background-color: #222222;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-action .ca-cart-coupon-status {
  display: inline-block;
  padding: 8px 12px;
  background-color: rgba(62, 212, 140, 0.2);
  color: #3ed48c;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
}
.ca-checkout-survey {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.ca-checkout-survey-option input[type="checkbox"] {
  display: none;
}
.ca-checkout-survey-option label {
  display: inline-block;
  padding: 12px 20px;
  border: 2px solid #707070;
  border-radius: 12px;
  background-color: #333333;
  color: #ffffff;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
  width: 100%;
  margin-top: 0 !important;
}
.ca-checkout-survey-option input[type="checkbox"]:checked + label {
  background-color: #f6f6f6;
  color: #181818;
  border-color: #f6f6f6;
}
.ca-checkout-survey-option label:hover {
  background-color: #f6f6f6;
  color: #181818;
  border-color: #f6f6f6;
}
@media (max-width: 768px) {
  .ca-order-status-item {
    flex: 0 0 calc(33.33% - 10px);
  }
  .ca-coupon-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .ca-action-buttons {
    flex-direction: column;
  }
  .ca-cart-coupons {
    padding: 16px;
  }
  .ca-cart-coupons .ca-cart-coupon-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .ca-cart-coupons .ca-cart-coupon-action {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
  }
  .ca-cart-coupons .ca-cart-coupon-action .ca-cart-apply-coupon {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .ca-order-status-item {
    flex: 0 0 calc(50% - 10px);
  }
  .ca-coupon-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
/**
 * Star Rating System
 */
.ca-star-rating {
  display: flex;
  gap: 0.25rem;
  margin: 0.75rem 0;
}
.ca-star-rating .ca-star-outer {
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}
.ca-star-rating .ca-star-outer:hover {
  transform: scale(1.1);
}
.ca-star-rating .ca-star-outer.active .ca-star-inner, .ca-star-rating .ca-star-outer.hover .ca-star-inner {
  width: 100%;
}
.ca-star-rating .ca-star-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  overflow: hidden;
  transition: width 0.2s ease;
}
.ca-star-rating .ca-star-inner .ca-star-t {
  color: #ffc107;
}
.ca-star-rating .ca-star-b {
  color: #d9d9d9;
}
.ca-star-rating .material-symbols-rounded {
  font-size: 32px;
  line-height: 1;
}
/**
 * Modal Form Groups
 */
.ca-modal-form-group {
  margin-bottom: 16px;
}
.ca-modal-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #f6f6f6;
}
.ca-modal-form-group input[type="text"], .ca-modal-form-group input[type="file"], .ca-modal-form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: "Pretendard Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #f6f6f6;
  background-color: #181818;
  border: 1px solid #707070;
  border-radius: 8px;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.ca-modal-form-group input[type="text"]:focus, .ca-modal-form-group input[type="file"]:focus, .ca-modal-form-group select:focus {
  outline: 0;
  border-color: #80abd3;
  box-shadow: 0 0 0 3px rgba(128, 171, 211, 0.2);
}
.ca-modal-form-group input[type="text"]::placeholder, .ca-modal-form-group input[type="file"]::placeholder, .ca-modal-form-group select::placeholder {
  color: #707070;
}
.ca-modal-form-group input[type="text"]:disabled, .ca-modal-form-group input[type="file"]:disabled, .ca-modal-form-group select:disabled {
  background-color: #222222;
  cursor: not-allowed;
}
.ca-modal-form-group .description {
  margin-top: 4px;
  font-size: 0.875rem;
  color: #d9d9d9;
}
