/**
 * Banner component 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-main-banner-slider {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  .ca-main-banner-slider {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.ca-main-banner-slider .splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ca-main-banner-slider .ca-main-banner-slide-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
  width: 100%;
  height: 100%;
}
.ca-main-banner-slider .ca-main-banner-slide-image:hover {
  transform: scale(1.02);
}
.ca-main-banner-slider .splide__progress {
  background: rgba(255, 255, 255, 0.3);
  height: 0.25rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
  display: block;
  border-radius: 0.25rem;
}
.ca-main-banner-slider .splide__progress__bar {
  background: rgba(255, 255, 255, 0.8);
  height: 100%;
  width: 0;
  display: block;
  position: relative;
  transition: width 0.15s ease-in-out linear;
  border-radius: 0.25rem;
}
.ca-single-banner {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease-in-out;
  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;
  width: 100%;
  border-radius: 0.75rem;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 768px) {
  .ca-single-banner {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
.ca-single-banner:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-single-banner .ca-single-banner-link {
  display: flex;
  align-items: center;
  justify-content: center;
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease-in-out;
}
.ca-single-banner .ca-single-banner-link:focus-visible {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}
.ca-single-banner .ca-single-banner-link:hover {
  transform: translateY(-0.25rem);
}
@media (hover: none) {
  .ca-single-banner .ca-single-banner-link:active {
    transform: scale(0.98);
    background-color: rgba(51, 51, 51, 0.05);
  }
}
.ca-single-banner .ca-single-banner-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
  aspect-ratio: 5;
  border-radius: 0.75rem;
}
@media (max-width: 768px) {
  .ca-single-banner .ca-single-banner-image {
    aspect-ratio: 1.3;
  }
}
.ca-single-banner .ca-single-banner-pc {
  display: block;
}
@media (max-width: 768px) {
  .ca-single-banner .ca-single-banner-pc {
    display: none;
  }
}
.ca-single-banner .ca-single-banner-mb {
  display: none;
}
@media (max-width: 768px) {
  .ca-single-banner .ca-single-banner-mb {
    display: block;
  }
}
.ca-banner-loading {
  background: linear-gradient(90deg, #eeeeee 25%, #f6f6f6 50%, #eeeeee 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  aspect-ratio: 5;
  border-radius: 0.75rem;
}
@media (max-width: 768px) {
  .ca-banner-loading {
    aspect-ratio: 1.3;
  }
}
.ca-banner-error {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5;
  background-color: #f6f6f6;
  color: #999999;
  border: 1px solid #eeeeee;
  border-radius: 0.75rem;
}
@media (max-width: 768px) {
  .ca-banner-error {
    aspect-ratio: 1.3;
  }
}
.ca-banner-error::before {
  content: "Image not available";
  font-size: 0.875rem;
  font-weight: 500;
}
