/**
 * Like button and likes list styles.
 */
/**
 * 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
 */
/**
 * Estimate Table Layout
 * Fixed layout table with customizable column widths
 * Supports responsive design
 */
.ca-likes-container {
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
}
.ca-likes-tabs {
  display: flex;
  border-bottom: 1px solid #eeeeee;
  background: #fafafa;
}
.ca-likes-tab {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666666;
  transition: 0.2s ease-in-out;
}
.ca-likes-tab:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333333;
}
.ca-likes-tab-active {
  color: #111111;
  background: #ffffff;
  border-bottom: 2px solid #111111;
}
.ca-likes-list {
  max-height: 400px;
  overflow-y: auto;
}
.ca-likes-item {
  display: flex;
  padding: 1rem;
  border-bottom: 1px solid #f6f6f6;
  transition: background 0.2s ease-in-out;
}
.ca-likes-item:hover {
  background: #fafafa;
}
.ca-likes-item:last-child {
  border-bottom: none;
}
.ca-likes-item-image {
  flex-shrink: 0;
  margin-right: 0.75rem;
}
.ca-likes-item-image img {
  border-radius: 0.25rem;
  object-fit: cover;
}
.ca-no-image {
  width: 80px;
  height: 80px;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  color: #999999;
}
.ca-likes-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ca-likes-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ca-likes-item-type {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #666666;
}
.ca-likes-item-type .material-symbols-rounded {
  font-size: 1rem;
}
.ca-likes-item-date {
  font-size: 0.75rem;
  color: #999999;
}
.ca-likes-item-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
.ca-likes-item-title a {
  color: #333333;
  text-decoration: none;
}
.ca-likes-item-title a:hover {
  color: #111111;
}
.ca-likes-item-price {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #111111;
}
.ca-likes-item-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.ca-likes-view-btn {
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  transition: background 0.2s ease-in-out;
}
.ca-likes-view-btn:hover {
  background: #0073aa;
  color: #ffffff;
  text-decoration: none;
}
.ca-likes-toggle-btn .ca-like-button__btn {
  min-width: auto;
  padding: 0.25rem;
  border: 1px solid #eeeeee;
  background: #ffffff;
}
.ca-no-likes {
  padding: 2.5rem 1.25rem;
  text-align: center;
  color: #666666;
}
@media (max-width: 768px) {
  .ca-likes-item {
    flex-direction: column;
    gap: 0.75rem;
  }
  .ca-likes-item-image {
    margin-right: 0;
    align-self: center;
  }
  .ca-likes-item-actions {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }
}
.ca-like-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.ca-like-button__btn {
  background: none;
  border: 2px solid #eeeeee;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: 0.2s ease-in-out;
  font-size: 0.875rem;
  font-weight: 500;
  color: #666666;
}
.ca-like-button__btn:hover {
  border-color: #ff4757;
  color: #ff4757;
  transform: translateY(-1px);
}
.ca-like-button--liked .ca-like-button__btn {
  border-color: #ff4757;
  background-color: #ff4757;
  color: #ffffff;
}
.ca-like-button--liked .ca-like-button__btn:hover {
  background-color: #ff3838;
  border-color: #ff3838;
}
.ca-like-button__icon {
  display: flex;
  align-items: center;
  font-size: 1.125rem;
}
.ca-like-button__icon--filled, .ca-like-button__icon--outline {
  color: inherit;
}
.ca-like-button__count {
  font-size: 0.75rem;
  font-weight: 600;
  min-width: 16px;
  text-align: center;
}
.ca-like-button__loading {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0.5rem;
}
.ca-like-button__loading .material-symbols-rounded {
  animation: ca-like-loading 1s infinite linear;
  font-size: 1rem;
  color: #666666;
}
@keyframes ca-like-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ca-like-button--small .ca-like-button__btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}
.ca-like-button--small .ca-like-button__icon {
  font-size: 1rem;
}
.ca-like-button--large .ca-like-button__btn {
  padding: 0.75rem 1rem;
  font-size: 1rem;
}
.ca-like-button--large .ca-like-button__icon {
  font-size: 1.375rem;
}
.ca-like-button--minimal .ca-like-button__btn {
  border: none;
  padding: 0.25rem;
  background: none;
}
.ca-like-button--minimal .ca-like-button__btn:hover {
  background: rgba(255, 71, 87, 0.1);
}
.ca-like-button--minimal.ca-like-button--liked .ca-like-button__btn {
  background: none;
  color: #ff4757;
}
.ca-product-like-button {
  margin-left: auto;
}
.ca-brand-like-button {
  margin-left: 1rem;
}
