/**
 * Customer Estimate Styles
 * 
 * Implements STYLE.md design system
 * Uses BEM-like naming conventions with ca- prefix
 */
/**
 * 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-custom-estimate {
  max-width: 1536px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (max-width: 768px) {
  .ca-custom-estimate {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media (max-width: 768px) {
  .ca-custom-estimate {
    padding: 0.75rem;
  }
}
.ca-custom-estimate__login-required {
  text-align: center;
  padding: 2.5rem;
  background-color: #f6f6f6;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  color: #666666;
}
@media (max-width: 768px) {
  .ca-custom-estimate__login-required {
    padding: 1.5rem;
    font-size: 1rem;
  }
}
.ca-custom-estimate__saved-list {
  margin-top: 3rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .ca-custom-estimate__saved-list {
    margin-top: 2rem;
  }
}
.ca-custom-estimate__saved-list__title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
}
.ca-custom-estimate__saved-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding: 1rem;
  background-color: #f6f6f6;
  border-radius: 0.75rem;
}
@media (max-width: 768px) {
  .ca-custom-estimate__saved-list__header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
}
.ca-custom-estimate__saved-list__header__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
}
.ca-custom-estimate__saved-list__header__actions {
  display: flex;
  gap: 0.5rem;
}
.ca-custom-estimate__saved-list__header__bulk-delete {
  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;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  background-color: #ffffff;
  color: #666666;
  border: 1px solid #666666;
  transition: all 0.3s ease;
}
.ca-custom-estimate__saved-list__header__bulk-delete:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__saved-list__header__bulk-delete:hover:not(:disabled) {
  background-color: #666666;
  color: #ffffff;
}
.ca-custom-estimate__saved-list__header__bulk-delete:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f5f5f5;
  border-color: #dddddd;
  color: #999999;
}
.ca-custom-estimate-convert-admin, .button.ca-custom-estimate-convert-admin {
  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;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  background-color: #333333;
  color: #ffffff;
  border: 2px solid #333333;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}
.ca-custom-estimate-convert-admin:disabled, .button.ca-custom-estimate-convert-admin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate-convert-admin:hover:not(:disabled), .button.ca-custom-estimate-convert-admin:hover:not(:disabled) {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-custom-estimate-convert-admin:focus, .button.ca-custom-estimate-convert-admin:focus {
  outline: 2px solid #333333;
  outline-offset: 2px;
}
.ca-custom-estimate__notification {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.ca-custom-estimate__notification--success {
  background-color: #d9eeda;
  color: #4CAF50;
  border: 1px solid #92cf94;
}
.ca-custom-estimate__notification--error {
  background-color: #fae3e5;
  color: #dc3545;
  border: 1px solid #eb8c95;
}
.ca-custom-estimate__notification--info {
  background-color: #77d3ff;
  color: #0073aa;
  border: 1px solid #11b2ff;
}
.ca-custom-estimate__single-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f6f6f6;
  border-radius: 0.75rem;
}
@media (max-width: 768px) {
  .ca-custom-estimate__single-header {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}
.ca-custom-estimate__single-header__left {
  flex: 1;
}
.ca-custom-estimate__single-header__right {
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .ca-custom-estimate__single-header__right {
    margin-left: 0;
  }
}
.ca-custom-estimate__single-header__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
  margin-bottom: 0.5rem;
}
.ca-custom-estimate__single-header__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #666666;
}
@media (max-width: 768px) {
  .ca-custom-estimate__single-header__meta {
    flex-direction: column;
  }
}
.ca-custom-estimate__single-header__admin-import-btn {
  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;
  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;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  white-space: nowrap;
}
.ca-custom-estimate__single-header__admin-import-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__single-header__admin-import-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__single-header__admin-import-btn:hover:not(:disabled) {
  background-color: #222222;
}
.ca-custom-estimate__single-header__admin-import-btn:active:not(:disabled) {
  background-color: #111111;
}
@media (max-width: 768px) {
  .ca-custom-estimate__single-header__admin-import-btn {
    width: 100%;
  }
}
.ca-custom-estimate__list-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
}
.ca-custom-estimate__list-table__header {
  background-color: #f6f6f6;
  padding: 0.75rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #eeeeee;
  font-size: 0.875rem;
  color: #333333;
}
.ca-custom-estimate__list-table__header--checkbox {
  width: 48px;
  text-align: center;
  padding: 0.75rem 0.5rem;
}
.ca-custom-estimate__list-table__header--product {
  min-width: 300px;
}
@media (max-width: 768px) {
  .ca-custom-estimate__list-table__header--product {
    min-width: 200px;
  }
}
.ca-custom-estimate__list-table__header--date {
  width: 160px;
}
@media (max-width: 768px) {
  .ca-custom-estimate__list-table__header--date {
    width: 120px;
  }
}
.ca-custom-estimate__list-table__header--amount {
  width: 140px;
  text-align: right;
}
@media (max-width: 768px) {
  .ca-custom-estimate__list-table__header--amount {
    width: 100px;
  }
}
.ca-custom-estimate__list-table__header--actions {
  width: 240px;
  text-align: center;
}
@media (max-width: 768px) {
  .ca-custom-estimate__list-table__header--actions {
    width: 160px;
  }
}
.ca-custom-estimate__list-table__cell {
  padding: 0.75rem;
  border-bottom: 1px solid #eeeeee;
  font-size: 0.875rem;
  vertical-align: middle;
}
.ca-custom-estimate__list-table__cell--checkbox {
  text-align: center;
  padding: 0.75rem 0.5rem;
}
.ca-custom-estimate__list-table__cell--product__info__name {
  font-weight: 500;
  color: #333333;
  margin-bottom: 0.25rem;
}
.ca-custom-estimate__list-table__cell--product__info__items {
  font-size: 0.75rem;
  color: #666666;
  line-height: 1.2;
}
.ca-custom-estimate__list-table__cell--product__info__items__item {
  display: block;
  margin-bottom: 0.125rem;
}
.ca-custom-estimate__list-table__cell--product__info__items__item:last-child {
  margin-bottom: 0;
}
.ca-custom-estimate__list-table__cell--date {
  color: #666666;
}
.ca-custom-estimate__list-table__cell--amount {
  text-align: right;
  font-weight: 600;
  color: #333333;
}
.ca-custom-estimate__list-table__cell--actions {
  text-align: center;
}
.ca-custom-estimate__list-table__cell--actions__buttons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.ca-custom-estimate__list-table__row {
  transition: background-color 0.2s ease-in-out;
}
.ca-custom-estimate__list-table__row:hover {
  background-color: #fafafa;
}
.ca-custom-estimate__list-table__row--selected {
  background-color: #91dbff;
}
.ca-custom-estimate__list-table__row--selected:hover {
  background-color: #77d3ff;
}
.ca-custom-estimate__list-table__row:last-child .ca-custom-estimate__list-table__cell {
  border-bottom: none;
}
.ca-custom-estimate__list-table__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  border: 2px solid #d9d9d9;
  border-radius: 0.25rem;
  transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.ca-custom-estimate__list-table__checkbox:checked {
  background-color: #333333;
  border-color: #333333;
}
.ca-custom-estimate__list-table__checkbox:hover:not(:disabled) {
  border-color: #333333;
}
.ca-custom-estimate__list-table__checkbox:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__list-table__checkbox--all {
  margin: 0;
}
.ca-custom-estimate__list-table__action-btn {
  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;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
}
.ca-custom-estimate__list-table__action-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__list-table__action-btn--view {
  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;
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
}
.ca-custom-estimate__list-table__action-btn--view:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__list-table__action-btn--view:hover:not(:disabled) {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
.ca-custom-estimate__list-table__action-btn--delete {
  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;
  background-color: #ffffff;
  color: #666666;
  border-color: #666666;
}
.ca-custom-estimate__list-table__action-btn--delete:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__list-table__action-btn--delete:hover:not(:disabled) {
  background-color: #666666;
  color: #ffffff;
}
.ca-custom-estimate__list-table__action-btn--download {
  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;
  background-color: #f5f5f5;
  color: #333333;
  border-color: #dddddd;
}
.ca-custom-estimate__list-table__action-btn--download:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__list-table__action-btn--download:hover:not(:disabled) {
  background-color: #e8e8e8;
  border-color: #cccccc;
}
.ca-custom-estimate__category-tabs {
  margin-bottom: 1.25rem;
}
.ca-custom-estimate__category-tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #f6f6f6;
  border-radius: 0.75rem;
}
@media (max-width: 768px) {
  .ca-custom-estimate__category-tabs__list {
    gap: 0.25rem;
    padding: 0.75rem;
  }
}
.ca-custom-estimate__category-tabs__tab {
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 9999px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.2s ease-in-out;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333333;
}
.ca-custom-estimate__category-tabs__tab:hover {
  background-color: #f6f6f6;
}
.ca-custom-estimate__category-tabs__tab--active {
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
}
.ca-custom-estimate__category-tabs__tab--additional {
  background-color: #f0f8ff;
  border-color: #0073aa;
  color: #0073aa;
}
.ca-custom-estimate__category-tabs__tab--additional:hover {
  background-color: #e6f2ff;
}
.ca-custom-estimate__category-tabs__tab--additional.ca-custom-estimate__category-tabs__tab--active {
  background-color: #0073aa;
  color: #ffffff;
  border-color: #0073aa;
}
@media (max-width: 768px) {
  .ca-custom-estimate__category-tabs__tab {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
  }
}
.ca-custom-estimate__category-tabs__separator {
  width: 1px;
  height: 24px;
  background-color: #d9d9d9;
  margin: 0 0.5rem;
}
@media (max-width: 768px) {
  .ca-custom-estimate__category-tabs__separator {
    margin: 0 0.25rem;
  }
}
.ca-custom-estimate__main-content {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 400px;
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .ca-custom-estimate__main-content {
    gap: 0.75rem;
  }
}
@media (max-width: 992px) {
  .ca-custom-estimate__main-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.ca-custom-estimate__left-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;
  overflow: hidden;
}
.ca-custom-estimate__left-section:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-custom-estimate__left-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background-color: #f6f6f6;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 768px) {
  .ca-custom-estimate__left-header {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
}
.ca-custom-estimate__left-header__count {
  font-weight: 600;
  font-size: 0.875rem;
  color: #666666;
}
.ca-custom-estimate__left-header__count__number {
  color: #333333;
  font-size: 1.125rem;
  font-weight: 700;
}
.ca-custom-estimate__left-header__search {
  flex: 1;
}
.ca-custom-estimate__left-header__search__input {
  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;
  font-size: 0.875rem;
}
.ca-custom-estimate__left-header__search__input:focus {
  outline: 0;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}
.ca-custom-estimate__left-header__search__input::placeholder {
  color: #999999;
}
.ca-custom-estimate__left-header__search__input:disabled {
  background-color: #f6f6f6;
  cursor: not-allowed;
}
.ca-custom-estimate__left-header__sort__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;
  width: auto;
  min-width: 120px;
  font-size: 0.875rem;
}
.ca-custom-estimate__left-header__sort__select:focus {
  outline: 0;
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}
.ca-custom-estimate__left-header__sort__select::placeholder {
  color: #999999;
}
.ca-custom-estimate__left-header__sort__select:disabled {
  background-color: #f6f6f6;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .ca-custom-estimate__left-header__sort__select {
    width: 100%;
  }
}
.ca-custom-estimate__product-list {
  padding: 1rem;
  max-height: 600px;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .ca-custom-estimate__product-list {
    padding: 0.75rem;
    max-height: 400px;
  }
}
.ca-custom-estimate__product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border: 1px solid #eeeeee;
  border-radius: 0.5rem;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.ca-custom-estimate__product-item:hover {
  border-color: #666666;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ca-custom-estimate__product-item:last-child {
  margin-bottom: 0;
}
.ca-custom-estimate__product-item__image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 1rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ca-custom-estimate__product-item__image {
    width: 50px;
    height: 50px;
    margin-right: 0.75rem;
  }
}
.ca-custom-estimate__product-item__info {
  flex: 1;
  min-width: 0;
}
.ca-custom-estimate__product-item__info__name {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #333333;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ca-custom-estimate__product-item__info__sku {
  font-size: 0.75rem;
  color: #999999;
  margin-bottom: 0.25rem;
}
.ca-custom-estimate__product-item__info__price {
  font-weight: 600;
  color: #333333;
  font-size: 0.875rem;
}
.ca-custom-estimate__product-item__add-btn {
  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;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
  transition: all 0.3s ease;
}
.ca-custom-estimate__product-item__add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__product-item__add-btn:hover:not(:disabled) {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
.ca-custom-estimate__product-item__add-btn--added {
  background-color: #666666;
  border-color: #666666;
}
.ca-custom-estimate__product-item__add-btn--added:hover {
  background-color: #555555;
  border-color: #555555;
}
.ca-custom-estimate__product-item__add-btn:disabled {
  background-color: #cccccc;
  border-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
}
.ca-custom-estimate__right-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;
  position: sticky;
  top: 1.25rem;
  height: fit-content;
}
.ca-custom-estimate__right-section:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 992px) {
  .ca-custom-estimate__right-section {
    position: static;
    top: auto;
  }
}
.ca-custom-estimate__right-header {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #f6f6f6;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 768px) {
  .ca-custom-estimate__right-header {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.ca-custom-estimate__right-header__save-btn {
  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;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  flex: 1;
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
  transition: all 0.3s ease;
}
.ca-custom-estimate__right-header__save-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__right-header__save-btn:hover:not(:disabled) {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
.ca-custom-estimate__right-header__save-btn:disabled {
  background-color: #cccccc;
  border-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
}
.ca-custom-estimate__right-header__print-btn {
  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;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  flex: 1;
  background-color: #f5f5f5;
  color: #333333;
  border-color: #dddddd;
  transition: all 0.3s ease;
}
.ca-custom-estimate__right-header__print-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__right-header__print-btn:hover:not(:disabled) {
  background-color: #e8e8e8;
  border-color: #cccccc;
}
.ca-custom-estimate__right-header__inquiry-btn {
  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;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  flex: 1;
  background-color: #ffffff;
  color: #333333;
  border: 2px solid #333333;
  transition: all 0.3s ease;
}
.ca-custom-estimate__right-header__inquiry-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__right-header__inquiry-btn:hover:not(:disabled) {
  background-color: #333333;
  color: #ffffff;
}
.ca-custom-estimate__right-header__add-all-btn {
  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;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
  flex: 1;
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
  transition: all 0.3s ease;
}
.ca-custom-estimate__right-header__add-all-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__right-header__add-all-btn:hover:not(:disabled) {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
.ca-custom-estimate__right-header__add-all-btn:disabled {
  background-color: #cccccc;
  border-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
}
.ca-custom-estimate__cart {
  padding: 1rem;
  min-height: 200px;
}
.ca-custom-estimate__cart--empty {
  text-align: center;
  padding: 2.5rem;
  color: #999999;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .ca-custom-estimate__cart--empty {
    padding: 1.5rem;
  }
}
.ca-custom-estimate__cart-items__item {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #eeeeee;
  gap: 0.75rem;
}
.ca-custom-estimate__cart-items__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.ca-custom-estimate__cart-items__item__info {
  flex: 1;
  min-width: 0;
}
.ca-custom-estimate__cart-items__item__info__name {
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #333333;
  font-size: 0.875rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ca-custom-estimate__cart-items__item__info__price {
  font-size: 0.75rem;
  color: #666666;
}
.ca-custom-estimate__cart-items__item__quantity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-right: 0.75rem;
}
.ca-custom-estimate__cart-items__item__quantity__btn {
  width: 24px;
  height: 24px;
  border: 1px solid #d9d9d9;
  background-color: #ffffff;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease-in-out;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ca-custom-estimate__cart-items__item__quantity__btn:hover {
  background-color: #f6f6f6;
}
.ca-custom-estimate__cart-items__item__quantity__input {
  width: 40px;
  text-align: center;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  padding: 0.25rem;
  font-size: 0.75rem;
}
.ca-custom-estimate__cart-items__item__remove {
  color: #999999;
  cursor: pointer;
  font-size: 1.125rem;
  transition: color 0.2s ease-in-out;
}
.ca-custom-estimate__cart-items__item__remove:hover {
  color: #dc3545;
}
.ca-custom-estimate__cart-summary {
  padding-top: 1rem;
  border-top: 2px solid #333333;
}
.ca-custom-estimate__cart-summary__shipping {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eeeeee;
}
.ca-custom-estimate__cart-summary__shipping__amount {
  font-weight: 600;
  color: #333333;
}
.ca-custom-estimate__cart-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333333;
}
.ca-custom-estimate__cart-summary__total__amount {
  color: #333333;
  font-weight: 700;
}
.ca-custom-estimate__shipping-address {
  padding: 1rem;
  border-bottom: 1px solid #eeeeee;
}
.ca-custom-estimate__shipping-address-button {
  margin-bottom: 0.75rem;
}
.ca-custom-estimate__shipping-address-info {
  font-size: 0.875rem;
  color: #333333;
}
.ca-custom-estimate__shipping-address-info div {
  margin-bottom: 0.25rem;
}
.ca-custom-estimate__shipping-address-info div:last-child {
  margin-bottom: 0;
}
.ca-custom-estimate__shipping-address-info span {
  font-weight: 500;
  color: #333333;
}
.ca-custom-estimate__action-buttons {
  padding: 1rem;
  border-top: 1px solid #eeeeee;
}
.ca-custom-estimate__action-buttons-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.ca-custom-estimate__action-buttons-row:last-child {
  margin-bottom: 0;
}
.ca-custom-estimate__action-buttons-row button {
  flex: 1;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.ca-custom-estimate__single-view {
  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: 2rem;
}
.ca-custom-estimate__single-view:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .ca-custom-estimate__single-view {
    padding: 1.25rem;
  }
}
.ca-custom-estimate__single-header {
  margin-bottom: 2rem;
}
.ca-custom-estimate__single-header__title {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333333;
}
.ca-custom-estimate__single-header__meta {
  display: flex;
  gap: 1.25rem;
  color: #666666;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .ca-custom-estimate__single-header__meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.ca-custom-estimate-items-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
.ca-custom-estimate-items-table th, .ca-custom-estimate-items-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}
.ca-custom-estimate-items-table th {
  background: #f8f8f8;
  font-weight: 600;
}
.ca-custom-estimate-items-table tfoot th {
  background: none;
  font-size: 16px;
  padding-top: 20px;
}
.ca-custom-estimate__single-actions {
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .ca-custom-estimate__single-actions {
    flex-direction: column;
  }
}
.ca-custom-estimate__single-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;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  background-color: #f5f5f5;
  color: #333333;
  border-color: #dddddd;
  transition: all 0.3s ease;
}
.ca-custom-estimate__single-actions__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__single-actions__button:hover:not(:disabled) {
  background-color: #e8e8e8;
  border-color: #cccccc;
}
.ca-custom-estimate__single-actions__button--primary {
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
}
.ca-custom-estimate__single-actions__button--primary:hover:not(:disabled) {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
.ca-custom-estimate__loading {
  position: relative;
}
.ca-custom-estimate__loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  background: linear-gradient(90deg, #eeeeee 25%, #f6f6f6 50%, #eeeeee 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}
.ca-custom-estimate__product-name {
  cursor: pointer;
  color: #333333;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.ca-custom-estimate__product-name:hover {
  color: #0073aa;
  text-decoration: underline;
}
.ca-custom-estimate__product-name:focus-visible {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}
.ca-custom-estimate__product-option {
  display: inline-block;
  background-color: #f6f6f6;
  color: #666666;
  padding: 0.25rem 0.5rem;
  margin: 0.25rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}
.ca-custom-estimate__product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.ca-custom-estimate__product-modal--active {
  opacity: 1;
}
.ca-custom-estimate__product-modal--active .ca-custom-estimate__modal-content {
  transform: translate(-50%, -50%) scale(1);
}
.ca-custom-estimate__modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  width: 90%;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease-in-out;
}
@media (max-width: 768px) {
  .ca-custom-estimate__modal-content {
    padding: 1.25rem;
    margin: 0.5rem;
    width: calc(100% - 1rem);
    max-height: calc(100vh - 2.5rem);
  }
}
.ca-custom-estimate__modal-content__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
  color: #666666;
  line-height: 1;
  transition: color 0.2s ease-in-out;
  border-radius: 0.25rem;
}
.ca-custom-estimate__modal-content__close:hover {
  color: #333333;
  background-color: #f6f6f6;
}
.ca-custom-estimate__modal-content__close:focus-visible {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}
.ca-custom-estimate__modal-content__body {
  padding: 1.25rem 0;
  min-height: 200px;
  max-height: 60vh;
  overflow-y: auto;
}
.ca-custom-estimate__modal-content__body h2 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #333333;
}
.ca-custom-estimate__modal-content__body p {
  margin-bottom: 1em;
  line-height: 1.6;
}
.ca-custom-estimate__modal-content__body img {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border-radius: 0.5rem;
}
.ca-custom-estimate__modal-content__body ul, .ca-custom-estimate__modal-content__body ol {
  margin: 1rem 0;
  padding-left: 1.25rem;
}
.ca-custom-estimate__modal-content__footer {
  margin-top: 1.25rem;
  text-align: center;
  padding-top: 1.25rem;
  border-top: 1px solid #eeeeee;
}
.ca-custom-estimate__modal-content__footer__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;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  display: inline-block;
  background-color: #333333;
  color: #ffffff;
  border-color: #333333;
  transition: all 0.3s ease;
}
.ca-custom-estimate__modal-content__footer__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__modal-content__footer__button:hover:not(:disabled) {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}
.ca-custom-estimate__empty-state {
  text-align: center;
  padding: 2.5rem;
  background-color: #fafafa;
  border-radius: 0.75rem;
  border: 2px dashed #d9d9d9;
}
@media (max-width: 768px) {
  .ca-custom-estimate__empty-state {
    padding: 1.5rem;
  }
}
.ca-custom-estimate__empty-state__icon {
  font-size: 2.25rem;
  color: #d9d9d9;
  margin-bottom: 0.75rem;
}
.ca-custom-estimate__empty-state__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #666666;
  margin-bottom: 0.5rem;
}
.ca-custom-estimate__empty-state__text {
  font-size: 0.875rem;
  color: #999999;
}
@media (max-width: 768px) {
  .ca-custom-estimate__list-table {
    font-size: 0.75rem;
  }
  .ca-custom-estimate__list-table__header {
    padding: 0.5rem;
    font-size: 0.75rem;
  }
  .ca-custom-estimate__list-table__cell {
    padding: 0.5rem;
    font-size: 0.75rem;
  }
  .ca-custom-estimate__list-table__cell--product__info__items {
    display: none;
  }
  .ca-custom-estimate__list-table__action-btn {
    font-size: 10px;
    padding: 0.125rem 0.5rem;
  }
}
.ca-custom-estimate__list-container--loading {
  position: relative;
  pointer-events: none;
}
.ca-custom-estimate__list-container--loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ca-custom-estimate__product-group {
  border: 1px solid #eeeeee;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.ca-custom-estimate__product-group:hover {
  border-color: #333333;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ca-custom-estimate__product-group--expanded {
  border-color: #333333;
}
.ca-custom-estimate__product-group--expanded .ca-custom-estimate__product-group__header {
  background-color: #fafafa;
}
.ca-custom-estimate__product-group__header {
  display: flex;
  align-items: center;
  padding: 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.ca-custom-estimate__product-group__header:hover {
  background-color: #fafafa;
}
.ca-custom-estimate__product-group__image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 1rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
  border: 1px solid #eeeeee;
}
.ca-custom-estimate__product-group__info {
  flex: 1;
  min-width: 0;
}
.ca-custom-estimate__product-group__name {
  font-weight: 600;
  color: #333333;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.4;
}
.ca-custom-estimate__product-group__count {
  font-size: 0.875rem;
  color: #666666;
  font-weight: 500;
}
.ca-custom-estimate__product-group__toggle {
  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;
  width: 32px;
  height: 32px;
  padding: 0;
  background-color: #f6f6f6;
  border: 1px solid #d9d9d9;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ca-custom-estimate__product-group__toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate__product-group__toggle:hover {
  background-color: #eeeeee;
}
.ca-custom-estimate__product-group__toggle:focus {
  outline: 2px solid #333333;
  outline-offset: 2px;
}
.ca-custom-estimate__product-group__toggle-icon {
  font-size: 0.75rem;
  color: #666666;
  transition: transform 0.2s ease-in-out;
}
.ca-custom-estimate__product-group__variations {
  background-color: #fafafa;
  padding: 0.75rem;
  border-top: 1px solid #eeeeee;
}
.ca-custom-estimate__product-variation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background-color: #ffffff;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
  border: 1px solid #f6f6f6;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.ca-custom-estimate__product-variation:last-child {
  margin-bottom: 0;
}
.ca-custom-estimate__product-variation:hover {
  border-color: #eeeeee;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ca-custom-estimate__product-variation__info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-right: 0.75rem;
  min-width: 0;
}
.ca-custom-estimate__product-variation__options {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  align-items: center;
}
.ca-custom-estimate__product-variation__price {
  font-weight: 600;
  color: #333333;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.ca-custom-estimate__product-option {
  display: inline-block;
  padding: 0.125rem 0.25rem;
  background-color: #f6f6f6;
  color: #666666;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
}
.ca-custom-estimate__product-badge {
  display: inline-block;
  padding: 0.125rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.ca-custom-estimate__product-badge--additional {
  background-color: #77d3ff;
  color: #0073aa;
  border: 1px solid #11b2ff;
}
.ca-custom-estimate__product-group__related-section {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #eeeeee;
}
.ca-custom-estimate__product-group__related-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #666666;
  margin-bottom: 0.5rem;
}
.ca-custom-estimate__product-related {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background-color: #ffffff;
  border-radius: 0.25rem;
  margin-bottom: 0.5rem;
  border: 1px solid #f6f6f6;
  transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.ca-custom-estimate__product-related:last-child {
  margin-bottom: 0;
}
.ca-custom-estimate__product-related:hover {
  border-color: #eeeeee;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.ca-custom-estimate__product-related__info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-right: 0.75rem;
  min-width: 0;
}
.ca-custom-estimate__product-related__name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}
.ca-custom-estimate__product-related__name .ca-custom-estimate__product-name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ca-custom-estimate__product-related__name .ca-custom-estimate__product-badge {
  flex-shrink: 0;
}
.ca-custom-estimate__product-related__price {
  font-weight: 600;
  color: #333333;
  font-size: 0.875rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.ca-custom-estimate__empty-state, .ca-custom-estimate__error-state {
  text-align: center;
  padding: 2rem 1rem;
  color: #666666;
  font-style: italic;
}
.ca-custom-estimate__error-state {
  color: #dc3545;
  background-color: #fef9f9;
  border: 1px solid #f3b7bd;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .ca-custom-estimate__product-group__header {
    padding: 0.5rem;
  }
  .ca-custom-estimate__product-group__image {
    width: 50px;
    height: 50px;
    margin-right: 0.75rem;
  }
  .ca-custom-estimate__product-group__name {
    font-size: 0.875rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .ca-custom-estimate__product-group__count {
    font-size: 0.75rem;
  }
  .ca-custom-estimate__product-group__variations {
    padding: 0.5rem;
  }
  .ca-custom-estimate__product-variation {
    padding: 0.5rem;
  }
  .ca-custom-estimate__product-variation__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .ca-custom-estimate__product-variation__options {
    order: 2;
  }
  .ca-custom-estimate__product-variation__price {
    font-size: 0.75rem;
    order: 1;
  }
  .ca-custom-estimate__product-option {
    font-size: 10px;
    padding: 2px 6px;
  }
  .ca-custom-estimate__product-related {
    padding: 0.5rem;
  }
  .ca-custom-estimate__product-related__info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .ca-custom-estimate__product-related__name .ca-custom-estimate__product-badge {
    font-size: 10px;
    padding: 2px 6px;
  }
  .ca-custom-estimate__product-related__price {
    font-size: 0.75rem;
  }
  .ca-custom-estimate__product-group__related-title {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }
}
/**
 * Additional component styles can be added here
 * following the established BEM naming convention
 */
.ca-custom-estimate-convert-admin, .button.ca-custom-estimate-convert-admin {
  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;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  background-color: #333333;
  color: #ffffff;
  border: 2px solid #333333;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.ca-custom-estimate-convert-admin:disabled, .button.ca-custom-estimate-convert-admin:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.ca-custom-estimate-convert-admin:hover:not(:disabled), .button.ca-custom-estimate-convert-admin:hover:not(:disabled) {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.ca-custom-estimate-convert-admin:active, .button.ca-custom-estimate-convert-admin:active {
  transform: translateY(0);
}
.ca-custom-estimate-convert-admin:focus, .button.ca-custom-estimate-convert-admin:focus {
  outline: 2px solid #333333;
  outline-offset: 2px;
}
.ca-custom-estimate-convert-admin:disabled, .button.ca-custom-estimate-convert-admin:disabled {
  background-color: #d9d9d9;
  border-color: #d9d9d9;
  cursor: not-allowed;
  opacity: 0.6;
}
.ca-custom-estimate-convert-admin:disabled:hover, .button.ca-custom-estimate-convert-admin:disabled:hover {
  transform: none;
  box-shadow: none;
}
