/**
 * Layout Styles
 * 
 * Global layout components including header, footer, sidebar, and mobile navigation
 * 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
 */
/**
 * Main Header
 */
.ca-header {
  z-index: 1030;
  background-color: #ffffff;
}
.ca-header .oxy-header-container {
  padding: 10px 20px 10px 20px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .ca-header .oxy-header-container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
}
.ca-header .oxy-header-center {
  display: none;
}
.ca-header-row {
  height: 70px;
}
@media (max-width: 768px) {
  .ca-header-row {
    height: 60px;
  }
}
.ca-header-row-l {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .ca-header-row-l {
    gap: 10px;
  }
}
.ca-header-logo {
  width: 134px;
  min-width: 134px;
}
@media (max-width: 768px) {
  .ca-header-logo {
    width: 140px;
  }
}
.ca-header-logo-img {
  width: 100%;
}
.ca-header-menu-box {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .ca-header-menu-box {
    display: none;
  }
}
.ca-header-menu-link {
  font-size: 1.125rem;
  font-weight: 500;
}
.ca-header-sidebar-box {
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
@media screen and (max-width: 992px) {
  .ca-header-sidebar-box {
    display: flex;
    width: 40px;
  }
}
.ca-header-row-r {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
}
.ca-header-account-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .ca-header-account-box {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .ca-header-account-box {
    display: none !important;
  }
}
.ca-header-account-icon {
  width: 30px;
  height: auto;
}
@media (max-width: 768px) {
  .ca-header-account-icon {
    width: 24px;
  }
}
.ca-header-account-link {
  font-size: 1rem;
  font-weight: 500;
}
/**
 * Subheader (Category Menu)
 */
.ca-subheader {
  height: 40px;
}
@media (max-width: 992px) {
  .ca-subheader {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }
  .ca-subheader::-webkit-scrollbar {
    display: none;
  }
}
.ca-subheader .oxy-header-container {
  padding: 0.25rem 1.25rem;
}
@media (max-width: 768px) {
  .ca-subheader .oxy-header-container {
    padding: 0.25rem 0.75rem;
  }
}
/**
 * Sidebar
 */
.ca-sidebar {
  width: 100%;
  height: calc(100vh - 80px);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  position: fixed;
  left: 0;
  top: 80px;
  display: none;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .ca-sidebar {
    height: calc(100vh - 60px);
    top: 60px;
  }
}
.ca-sidebar-open {
  display: none !important;
  position: fixed;
  z-index: 1030;
}
@media (max-width: 992px) {
  .ca-sidebar-open {
    display: flex !important;
  }
}
.ca-sidebar-div {
  width: 100%;
  margin: 0.75rem 0;
  padding: 0 1.25rem;
}
/**
 * Sidebar Category Menu
 */
.ca-sidebar-category-menu {
  width: 100%;
}
.ca-sidebar-main-category-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 0.75rem;
}
.ca-sidebar-main-category-item > .ca-sidebar-category-header > .ca-sidebar-category-link {
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ca-sidebar-category-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.ca-sidebar-subcategory-list, .ca-sidebar-grandchild-list {
  list-style-type: none;
  padding: 0 0 0 1rem;
  margin: 0.75rem 0 0 0;
  display: none;
}
.ca-sidebar-category-item.active > .ca-sidebar-subcategory-list, .ca-sidebar-subcategory-item.active > .ca-sidebar-grandchild-list {
  display: block;
}
.ca-sidebar-category-item, .ca-sidebar-subcategory-item, .ca-sidebar-grandchild-item {
  margin-bottom: 0.75rem;
}
.ca-sidebar-category-header, .ca-sidebar-subcategory-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 0;
}
.ca-sidebar-category-link, .ca-sidebar-subcategory-link, .ca-sidebar-grandchild-link {
  text-decoration: none;
  color: #333333;
  font-size: 1rem;
  font-weight: 500;
  flex-grow: 1;
  transition: color 0.2s ease-in-out;
}
.ca-sidebar-category-link:hover, .ca-sidebar-subcategory-link:hover, .ca-sidebar-grandchild-link:hover {
  color: #0073aa;
}
.ca-sidebar-category-toggle, .ca-sidebar-subcategory-toggle {
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  padding: 0.25rem;
}
.ca-sidebar-category-item.active > .ca-sidebar-category-header > .ca-sidebar-category-toggle, .ca-sidebar-subcategory-item.active > .ca-sidebar-subcategory-header > .ca-sidebar-subcategory-toggle {
  transform: rotate(180deg);
}
/**
 * Sidebar Deepest Category Grid
 */
.ca-sidebar-deepest-category-wrapper {
  padding: 0.75rem 0;
}
.ca-sidebar-deepest-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 0 0.75rem;
}
@media (max-width: 992px) {
  .ca-sidebar-deepest-category-grid {
    grid-template-columns: repeat(max(2, 3), 1fr);
  }
}
@media (max-width: 768px) {
  .ca-sidebar-deepest-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: calc($gap * 0.75);
  }
}
@media (max-width: 480px) {
  .ca-sidebar-deepest-category-grid {
    grid-template-columns: 1fr;
    gap: calc($gap * 0.5);
  }
}
.ca-sidebar-deepest-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #eeeeee;
  border-radius: 0.25rem;
  overflow: hidden;
  background-color: #ffffff;
  transition: box-shadow 0.2s ease-in-out;
}
.ca-sidebar-deepest-category-item:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ca-sidebar-deepest-category-link {
  text-decoration: none;
  color: inherit;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem;
}
.ca-sidebar-deepest-category-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 0.25rem;
  border-radius: 0.25rem;
}
@supports not (aspect-ratio: 1) {
  .ca-sidebar-deepest-category-image {
    position: relative;
  }
  .ca-sidebar-deepest-category-image::before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .ca-sidebar-deepest-category-image > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.ca-sidebar-deepest-category-title {
  font-size: 0.75rem;
  font-weight: 500;
  color: #333333;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: calc(0.75rem * 1.5 * 2);
}
/**
 * Main Content Area
 */
.ca-content {
  min-height: 90vh;
}
.ca-hr {
  width: 100%;
  margin: 0.75rem 0;
  min-height: 1px !important;
  height: 1px;
  border: none;
  background-color: #d9d9d9;
}
@media (max-width: 768px) {
  .ca-hr {
    margin: 0.25rem 0;
  }
}
/**
 * Footer
 */
.ca-footer {
  border-top: 1px solid #d9d9d9;
}
@media (max-width: 768px) {
  .ca-footer {
    padding-bottom: 80px;
  }
}
.ca-footer-row {
  width: 100%;
  flex-direction: row;
  display: flex;
  justify-content: space-between;
  text-align: justify;
  align-items: stretch;
  flex-wrap: nowrap;
  padding: 30px 20px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .ca-footer-row {
    flex-direction: column;
    padding: 30px 10px;
  }
}
.ca-footer-row-l {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  text-align: left;
  width: 65%;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .ca-footer-row-l {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
.ca-footer-logo {
  width: 200px;
}
@media (max-width: 768px) {
  .ca-footer-logo {
    width: 140px;
  }
}
.ca-footer-logo-img {
  width: 100%;
}
.ca-footer-info-box {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.ca-footer-info-link {
  font-size: 1rem;
  font-weight: 400;
  text-decoration: underline;
}
.ca-footer-text {
  font-size: 0.875rem;
  font-weight: 400;
}
.ca-footer-row-r {
  flex-direction: row;
  display: flex;
  width: 35%;
  align-items: stretch;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .ca-footer-row-r {
    width: 100%;
    align-items: center;
    text-align: center;
    flex-direction: column;
  }
}
.ca-footer-contact-box {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .ca-footer-contact-box {
    align-items: center;
  }
}
.ca-footer-contact-title {
  font-size: 1rem;
  font-weight: 600;
}
.ca-footer-contact-num {
  font-size: 1.5rem;
  font-weight: 700;
}
.ca-footer-contact-text {
  font-size: 0.875rem;
  font-weight: 500;
}
.ca-footer-sns-box {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.ca-footer-sns-link {
  width: 40px;
  height: auto;
}
.ca-footer-sns-img {
  width: 100%;
  height: 100%;
}
/**
 * Subfooter
 */
.ca-subfooter {
  border-top: 1px solid #d9d9d9;
}
.ca-subfooter-row {
  width: 100%;
  flex-direction: row;
  display: flex;
  justify-content: space-between;
  text-align: justify;
  align-items: stretch;
  flex-wrap: nowrap;
  padding: 10px 20px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .ca-subfooter-row {
    flex-direction: column;
    padding: 10px 10px;
  }
}
.ca-subfooter-menu-box {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.ca-subfooter-menu-link {
  font-size: 1.125rem;
  font-weight: 500;
}
/**
 * Mobile Navigation Bar
 */
.ca-mobile-navbar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  width: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 1050;
}
@media (max-width: 768px) {
  .ca-mobile-navbar {
    display: flex;
  }
}
.ca-mobile-navbar-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 10px;
}
.ca-mobile-navbar-menu-box {
  min-width: 60px;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  position: relative;
  transition: transform 0.1s ease, background-color 0.1s ease;
}
.ca-mobile-navbar-menu-box:active {
  background-color: rgba(0, 0, 0, 0.05);
  transform: scale(0.95);
}
.ca-mobile-navbar-menu-title {
  font-size: 1rem;
  font-weight: 500;
}
/**
 * Mobile Product Actions Bar
 */
.ca-mobile-product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 0;
  gap: 0;
}
.ca-mobile-product-left-actions {
  display: flex;
  gap: 0;
  align-items: center;
  height: 100%;
  width: 100px;
}
.ca-mobile-product-like-icon, .ca-mobile-product-inquiry-icon {
  min-width: 50px;
  min-height: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.ca-mobile-product-like-icon .material-symbols-rounded, .ca-mobile-product-inquiry-icon .material-symbols-rounded {
  font-size: 1.25rem;
  color: #666666;
}
.ca-mobile-product-like-icon:hover, .ca-mobile-product-inquiry-icon:hover {
  background-color: #fafafa;
  border-color: #d9d9d9;
}
.ca-mobile-product-like-icon:active, .ca-mobile-product-inquiry-icon:active {
  background-color: #eeeeee;
  transform: scale(0.95);
}
.ca-mobile-product-like-icon:focus-visible:focus-visible, .ca-mobile-product-inquiry-icon:focus-visible:focus-visible {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}
.ca-mobile-product-like-icon .ca-like-button .ca-like-button__btn {
  width: 100%;
  height: 100%;
  border: none;
  background: none;
  border-radius: 0.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ca-mobile-product-like-icon .ca-like-button .ca-like-button__btn .ca-like-button__icon {
  font-size: 1.25rem;
  color: #666666;
}
.ca-mobile-product-like-icon .ca-like-button .ca-like-button__btn .ca-like-button__count {
  display: none;
}
.ca-mobile-product-like-icon .ca-like-button .ca-like-button__btn.liked .ca-like-button__icon {
  color: #dc3545;
}
.ca-mobile-product-main-actions {
  display: flex;
  flex: 1;
  gap: 0;
  height: 100%;
}
.ca-mobile-product-cart-btn, .ca-mobile-product-checkout-btn {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
  font-weight: 600;
  font-size: 1rem;
  border: none;
}
.ca-mobile-product-cart-btn .material-symbols-rounded, .ca-mobile-product-checkout-btn .material-symbols-rounded {
  font-size: 1.25rem;
}
.ca-mobile-product-cart-btn:hover, .ca-mobile-product-checkout-btn:hover {
  opacity: 0.9;
}
.ca-mobile-product-cart-btn {
  background-color: #ffffff;
  color: #333333;
  border-right: 1px solid #eeeeee;
}
.ca-mobile-product-cart-btn:hover {
  background-color: #fafafa;
}
.ca-mobile-product-checkout-btn {
  background-color: #333333;
  color: #ffffff;
  border: 1px solid #333333;
}
.ca-mobile-product-checkout-btn:hover {
  background-color: #222222;
}
