/**
 * MyPage Styles
 * 
 * Styles for user account pages including orders, coupons, and profile
 * Uses common variables and mixins for consistency
 */
/**
 * Global SCSS Variables
 * 
 * Implements the design system from STYLE.md
 * All design tokens are centralized here
 */
/**
 * Global SCSS Mixins
 * 
 * Reusable mixins for consistent styling patterns
 * Import variables before using these mixins
 */
/**
 * Responsive Breakpoints
 * Mobile-first approach
 */
/**
 * Button Base
 * Standard button styling foundation
 */
/**
 * Button Variants
 */
/**
 * Button Sizes
 */
/**
 * Card Component
 */
/**
 * Form Controls
 */
/**
 * Flexbox Utilities
 */
/**
 * Grid Layout
 */
/**
 * Text Utilities
 */
/**
 * Spacing Utilities
 */
/**
 * Visual Effects
 */
@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/**
 * Accessibility
 */
/**
 * Enhanced Grid System
 * Flexible grid system with responsive behavior
 */
/**
 * Card Component Enhancement
 * Consistent card styling across all pages
 */
/**
 * Overlay Pattern
 * For image overlays with gradient
 */
/**
 * Button Variations
 * Extended button styles for consistency
 */
/**
 * Form Control Variations
 * Additional form patterns
 */
/**
 * Loading States
 * Consistent loading patterns
 */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/**
 * Responsive Typography
 * Fluid type sizing
 */
/**
 * Aspect Ratio
 * Maintain aspect ratios for media
 */
/**
 * Container Query Support
 * Progressive enhancement for container queries
 */
/**
 * Dark Mode Support
 * Prepare for future dark mode implementation
 */
/**
 * Banner Base Mixin
 * Consistent banner foundation
 */
/**
 * Banner Image Mixin
 * Consistent image styling
 */
/**
 * Responsive Banner Mixin
 * Handles aspect ratio changes
 */
/**
 * Banner Loading State
 * Shows loading skeleton
 */
/**
 * Banner Error State
 * Shows error state
 */
/**
 * Product Card Base
 * Consistent product card styling
 */
/**
 * Product Image Container
 * Maintains aspect ratio for product images
 */
/**
 * Price Display
 * Consistent price formatting
 */
/**
 * Sale Price
 * Styling for discounted prices
 */
/**
 * Form Group
 * Consistent form field grouping
 */
/**
 * Table Base
 * Consistent table styling
 */
/**
 * Badge
 * Small label components
 */
/**
 * Modal Base
 * Consistent modal styling
 */
/**
 * Smooth Scroll
 * Enable smooth scrolling behavior
 */
/**
 * Custom Scrollbar
 * Styled scrollbar for webkit browsers
 */
/**
 * Tab List
 * Horizontal tab navigation
 */
/**
 * Tab Item
 * Individual tab styling
 */
/**
 * Pagination
 * Page navigation styling
 */
/**
 * Responsive Image
 * Optimized image loading with placeholder
 */
/**
 * Sticky Position
 * Cross-browser sticky positioning
 */
/**
 * Visually Hidden
 * Hide element visually but keep accessible
 */
/**
 * Reset List
 * Remove default list styling
 */
/**
 * Reset Button
 * Remove default button styling
 */
/**
 * Link Reset
 * Remove default link styling
 */
.ca-order-container {
  width: 100%;
}
.ca-order-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease-in-out;
  margin: 0.75rem 0;
  padding: 1rem;
}
.ca-order-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.ca-order-order-info {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.ca-order-view-detail a {
  color: #0073aa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease-in-out;
}
.ca-order-view-detail a:hover {
  color: #005177;
}
.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: #dc3545 !important;
  text-decoration: line-through;
}
.ca-order-status-wrapper .final-price {
  color: #000000;
}
.ca-order-items-container {
  width: 100%;
}
.ca-order-product-item {
  border: 1px solid #eeeeee;
  margin: 0.25rem 0;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #fafafa;
}
.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: #f6f6f6;
  border-radius: 0.25rem;
  font-weight: 500;
}
.ca-order-product-details {
  flex-grow: 1;
}
.ca-order-product-meta {
  color: #333333;
}
.ca-order-product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  justify-content: flex-end;
  margin-top: 0.75rem;
  gap: 0.75rem;
}
.ca-order-product-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.ca-order-product-actions button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-order-product-actions button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-order-product-actions button:active:not(:disabled) {
  background-color: #111111;
}
.ca-order-product-actions button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
}
.ca-modal-content {
  position: relative;
  background-color: #ffffff;
  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: #000000;
}
.ca-modal-product {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
  padding: 0.75rem;
  background-color: #f6f6f6;
  border-radius: 0.25rem;
}
.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: 1rem;
}
.ca-modal .rating-container select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  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' fill='none' viewBox='0 0 24 24' stroke='%23666'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3e%3c/path%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 20px;
  padding-right: 2.5rem;
}
.ca-modal .rating-container select:focus {
  outline: 0;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}
.ca-modal .rating-container select::placeholder {
  color: #999999;
}
.ca-modal .rating-container select:disabled {
  background-color: #f6f6f6;
  cursor: not-allowed;
}
.ca-modal textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 0.5rem;
  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: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}
.ca-modal textarea::placeholder {
  color: #999999;
}
.ca-modal textarea:disabled {
  background-color: #f6f6f6;
  cursor: not-allowed;
}
.ca-modal .refund-amount-display {
  padding: 0.75rem;
  background-color: #f6f6f6;
  border-radius: 0.25rem;
  text-align: center;
  font-weight: 500;
}
.ca-modal .ca-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}
.ca-modal .ca-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-modal .ca-button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-modal .ca-button:active:not(:disabled) {
  background-color: #111111;
}
.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: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eeeeee;
}
.ca-order-detail-header a {
  color: #0073aa;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.ca-order-detail-header a:hover {
  color: #005177;
}
.ca-order-detail-section {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease-in-out;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.ca-order-detail-section:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-order-detail-section h2 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eeeeee;
}
.ca-order-detail-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ca-order-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.125rem 0;
}
.ca-order-detail-row.total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid #eeeeee;
}
.ca-order-detail-row .refunded-price {
  color: #dc3545;
  text-decoration: line-through;
}
.ca-order-detail .ca-order-items-container {
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .ca-order-detail {
    padding: 0.75rem;
  }
  .ca-order-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .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: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease-in-out;
  margin: 0.75rem 0 2.5rem;
  padding: 1rem;
  overflow: hidden;
}
.ca-mypage-section:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-mypage-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #333333;
  color: #333333;
}
.ca-mypage-section-content {
  padding: 0;
}
.ca-mypage-section-action {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #eeeeee;
}
.ca-mypage-error {
  padding: 1.25rem;
  background-color: #fef9f9;
  border-left: 4px solid #dc3545;
  margin-bottom: 1.25rem;
  color: #333333;
}
.ca-mypage-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  display: inline-block;
  text-decoration: none;
}
.ca-mypage-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-mypage-button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-mypage-button:active:not(:disabled) {
  background-color: #111111;
}
.ca-section-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #333333;
  color: #333333;
}
.ca-section-content {
  padding: 0;
}
.ca-section-action {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #eeeeee;
}
.ca-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  display: inline-block;
  text-decoration: none;
}
.ca-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-button:active:not(:disabled) {
  background-color: #111111;
}
.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: 0.75rem;
  flex-wrap: wrap;
}
.ca-order-status-list::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #eeeeee;
  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: 9999px;
  background-color: #eeeeee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: #333333;
  position: relative;
  font-weight: 700;
}
.ca-status-label {
  font-size: 0.875rem;
  color: #333333;
}
.ca-status-count {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background-color: #dc3545;
  color: #ffffff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.ca-active .ca-status-dot {
  background-color: #333333;
  color: #ffffff;
}
.ca-active .ca-status-label {
  color: #333333;
  font-weight: 600;
}
.ca-order-summary {
  margin-top: 2rem;
}
.ca-no-orders {
  padding: 2rem;
  text-align: center;
  background-color: #fafafa;
  border-radius: 0.5rem;
  color: #333333;
}
.ca-order-info span {
  margin-right: 0.75rem;
}
.ca-order-status {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: #f6f6f6;
}
.ca-status-pending {
  background-color: #fefcf9;
  color: #b07b15;
}
.ca-status-processing {
  background-color: #77d3ff;
  color: #002e44;
}
.ca-status-on-hold {
  background-color: #ffe8cc;
  color: #cc7000;
}
.ca-status-completed {
  background-color: #d9eeda;
  color: #2d682f;
}
.ca-status-refunded {
  background-color: #fae3e5;
  color: #921925;
}
.ca-status-cancelled {
  background-color: #eeeeee;
  color: #333333;
}
.ca-product-info {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.ca-product-thumb {
  width: 60px;
  height: 60px;
  margin-right: 1rem;
}
.ca-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.25rem;
}
.ca-product-detail {
  flex: 1;
}
.ca-product-name {
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.ca-product-meta {
  color: #333333;
  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: 1.25rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
}
.ca-coupon-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 992px) {
  .ca-coupon-list {
    grid-template-columns: repeat(max(2, 2), 1fr);
  }
}
@media (max-width: 768px) {
  .ca-coupon-list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc($gap * 0.75);
  }
}
@media (max-width: 480px) {
  .ca-coupon-list {
    grid-template-columns: 1fr;
    gap: calc($gap * 0.5);
  }
}
.ca-coupon-item {
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease-in-out;
  padding: 0.75rem;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.ca-coupon-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-coupon-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.ca-coupon-amount {
  font-size: 1rem;
  font-weight: 700;
  color: #333333;
  margin-bottom: 0.5rem;
  background-color: #fafafa;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  display: inline-block;
}
.ca-coupon-description {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: #333333;
  line-height: 1.5;
}
.ca-coupon-conditions {
  font-size: 0.75rem;
  color: #333333;
  margin-bottom: 0.5rem;
}
.ca-coupon-expiry {
  font-size: 0.75rem;
  color: #333333;
}
.ca-coupon-error {
  text-align: center;
  padding: 1.25rem;
  background-color: #fef9f9;
  border-left: 4px solid #dc3545;
  margin-bottom: 1.25rem;
  color: #333333;
}
.ca-coupon-no-coupons {
  text-align: center;
  padding: 2rem;
  background-color: #fafafa;
  border-radius: 0.5rem;
  color: #333333;
}
.ca-coupon-received-container {
  max-width: 768px;
  margin: 2.5rem auto;
  padding: 1.25rem;
}
.ca-coupon-received-success {
  background-color: #fafafa;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #d9d9d9;
}
.ca-success-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background-color: #333333;
  color: #ffffff;
  font-size: 40px;
  border-radius: 9999px;
  margin: 0 auto 1.25rem;
}
.ca-recent-coupon {
  margin: 2rem 0;
}
.ca-recent-coupon h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #333333;
}
.ca-coupon-highlight {
  border: 2px solid #333333;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  margin: 0 auto;
  padding: 1rem;
}
.ca-coupon-highlight .ca-coupon-amount {
  font-size: 1.125rem;
  display: block;
  text-align: center;
  margin-bottom: 0.75rem;
  background-color: #333333;
  color: #ffffff;
  padding: 0.5rem;
  border-radius: 0.25rem;
}
.ca-coupon-highlight .ca-coupon-description {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-align: center;
}
.ca-coupon-highlight .ca-coupon-conditions, .ca-coupon-highlight .ca-coupon-expiry {
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 0.5rem;
}
.ca-action-buttons {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.ca-shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  display: inline-block;
  text-decoration: none;
}
.ca-shop-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-shop-button:hover:not(:disabled) {
  background-color: #222222;
}
.ca-shop-button:active:not(:disabled) {
  background-color: #111111;
}
.ca-view-coupons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #333333;
  background-color: #ffffff;
  border-color: #d9d9d9;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.ca-view-coupons:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-view-coupons:hover:not(:disabled) {
  background-color: #f6f6f6;
}
.ca-cart-coupons {
  margin-bottom: 1.25rem;
}
.ca-cart-coupons h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #333333;
  color: #333333;
}
.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: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid #eeeeee;
  border-radius: 0.5rem;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  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: #eaf6eb;
  border-color: #b5dfb7;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item.ca-cart-coupon-applied .ca-cart-coupon-status {
  color: #4CAF50;
  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: 0.25rem;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-info .ca-cart-coupon-code {
  font-weight: 700;
  color: #333333;
  font-size: 1rem;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-info .ca-cart-coupon-description {
  color: #333333;
  font-size: 0.875rem;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-info .ca-cart-coupon-amount {
  color: #dc3545;
  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: #666666;
  font-size: 0.875rem;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-action {
  flex-shrink: 0;
  margin-left: 1rem;
}
.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;
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-decoration: none;
  color: #ffffff;
  background-color: #333333;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-action .ca-cart-apply-coupon:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.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-apply-coupon:active:not(:disabled) {
  background-color: #111111;
}
.ca-cart-coupons .ca-cart-coupon-list .ca-cart-coupon-item .ca-cart-coupon-action .ca-cart-coupon-status {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  background-color: #eaf6eb;
  color: #4CAF50;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.ca-checkout-survey {
  margin-bottom: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
}
@media (max-width: 992px) {
  .ca-checkout-survey {
    grid-template-columns: repeat(max(2, 2), 1fr);
  }
}
@media (max-width: 768px) {
  .ca-checkout-survey {
    grid-template-columns: repeat(2, 1fr);
    gap: calc($gap * 0.75);
  }
}
@media (max-width: 480px) {
  .ca-checkout-survey {
    grid-template-columns: 1fr;
    gap: calc($gap * 0.5);
  }
}
.ca-checkout-survey-option input[type="checkbox"] {
  display: none;
}
.ca-checkout-survey-option label {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 2px solid #d9d9d9;
  border-radius: 0.75rem;
  background-color: #ffffff;
  color: #333333;
  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: #333333;
  color: #ffffff;
  border-color: #333333;
}
.ca-checkout-survey-option label:hover {
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
}
@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: 1rem;
  }
  .ca-action-buttons {
    flex-direction: column;
  }
  .ca-cart-coupons {
    padding: 1rem;
  }
  .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: 0.75rem;
    width: 100%;
  }
  .ca-cart-coupons .ca-cart-coupon-action .ca-cart-apply-coupon {
    width: 100%;
  }
}
@media (max-width: 768px) and (max-width: 992px) {
  .ca-coupon-list {
    grid-template-columns: repeat(max(2, 1), 1fr);
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .ca-coupon-list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc($gap * 0.75);
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .ca-coupon-list {
    grid-template-columns: 1fr;
    gap: calc($gap * 0.5);
  }
}
@media (max-width: 480px) {
  .ca-order-status-item {
    flex: 0 0 calc(50% - 10px);
  }
  .ca-coupon-list {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 480px) and (max-width: 992px) {
  .ca-coupon-list {
    grid-template-columns: repeat(max(2, 0), 1fr);
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .ca-coupon-list {
    grid-template-columns: repeat(2, 1fr);
    gap: calc($gap * 0.75);
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .ca-coupon-list {
    grid-template-columns: 1fr;
    gap: calc($gap * 0.5);
  }
}
