/* 장바구니 전용 스타일 - 충돌 방지를 위해 모든 선택자에 soheemall-cart- 접두사 사용 */
    .soheemall-cart-container {
      max-width: 1280px;
      margin: 5vh auto;
      padding: 20px;
      display: flex;
      font-family: 'Noto Sans KR', sans-serif;
      color: #333;
      line-height: 1.5;
      box-sizing: border-box;
			flex-direction: column;
    }
    
    .soheemall-cart-container * {
      box-sizing: border-box;
    }

    .soheemall-cart-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .soheemall-cart-content-wrapper {
      display: flex;
      gap: 40px;
      max-width: 1280px;
    }

    .soheemall-cart-main-content {
      flex: 1;
      min-width: 0; /* 이렇게 하면 flex 아이템이 부모 너비를 초과하지 않습니다 */
    }

    .soheemall-cart-sidebar {
      width: 320px;
    }
    
    .soheemall-cart-title {
      font-size: 22px;
      font-weight: bold;
      margin-right: 8px;
    }
    
    .soheemall-cart-info-icon {
      width: 18px;
      height: 18px;
      background-color: #000;
      color: #fff;
      border-radius: 50%;
      display: none;
      justify-content: center;
      align-items: center;
      font-size: 12px;
    }
    
    .soheemall-cart-order-notice {
      background-color: #f5f5f5;
      padding: 15px;
      border-radius: 4px;
      margin-bottom: 20px;
    }
    
    .soheemall-cart-order-notice-text {
      color: #666;
      font-size: 14px;
    }
    
    .soheemall-cart-list {
      border-top: 1px solid #ddd;
      margin-bottom: 20px;
      overflow-x: auto; /* 테이블이 화면을 벗어날 경우 스크롤 허용 */
    }
    
    .soheemall-cart-list-header {
      display: flex;
      justify-content: space-between;
      padding: 15px 0;
    }
    
    .soheemall-cart-selected-count {
      font-size: 14px;
      color: #333;
    }
    
    .soheemall-cart-clear-selection {
      padding: 5px 10px;
      text-align: center;
      border: none;
      background-color: #fff;
      font-size: 14px;
      cursor: pointer;
      position: relative;
    }
    
    .soheemall-cart-table {
      width: 100%;
      border-collapse: collapse;
			border: 1px solid #ddd;
    }
    
    .soheemall-cart-table th {
      text-align: center;
      padding: 12px 0;
      border-bottom: 1px solid #eee;
      font-size: 14px;
      font-weight: normal;
      color: #666;
    }

    .soheemall-cart-table th.soheemall-cart-th-checkbox {
      padding: 12px 20px;
      padding-right: 0;
      text-align: left;
    }

    .soheemall-cart-table th.soheemall-cart-th-product {
      text-align: left;
      padding: 12px 0;
    }

    .soheemall-cart-table th.soheemall-cart-th-quantity,
    .soheemall-cart-table th.soheemall-cart-th-delivery,
    .soheemall-cart-table th.soheemall-cart-th-points {
      padding: 12px 0;
    }

    .soheemall-cart-table th.soheemall-cart-th-price {
      text-align: center;
      padding: 12px 0;
    }

    .soheemall-cart-table th.soheemall-cart-th-options {
      padding: 12px 20px;
      padding-left: 0;
    }

		#select-all-checkbox, .cart-item-checkbox {
			width: 16px;
			height: 16px;
		}

		/* 체크박스 배경색 */
		.soheemall-cart-container input[type="checkbox"] {
			accent-color: #0078D4;
		}

		.soheemall-cart-remove-btn, .soheemall-cart-th-points, .soheemall-cart-td-points, .soheemall-cart-th-options, .soheemall-cart-td-options {
			display: none;
		}
    
    .soheemall-cart-table td {
      padding: 20px 0;
      border-bottom: 1px solid #eee;
      text-align: center;
      vertical-align: middle;
      font-size: 14px;
    }

		th.soheemall-cart-th-checkbox {
			text-align: left;
		}

    .soheemall-cart-table td.soheemall-cart-td-checkbox {
      width: 30px;
      padding: 20px 20px;
      padding-right: 0;
      text-align: left;
    }

    .soheemall-cart-table td.soheemall-cart-td-product {
      text-align: left;
      position: relative;
      padding: 20px 0;
    }

    .soheemall-cart-table td.soheemall-cart-td-quantity,
    .soheemall-cart-table td.soheemall-cart-td-delivery,
    .soheemall-cart-table td.soheemall-cart-td-points {
      padding: 20px 0;
    }

    .soheemall-cart-table td.soheemall-cart-td-price {
      text-align: center;
      padding: 20px 0;
    }

    .soheemall-cart-table td.soheemall-cart-td-options {
      padding: 20px 20px;
      padding-left: 0;
    }
    
    .soheemall-cart-product-wrapper {
      display: flex;
      align-items: flex-start;
      position: relative;
    }
    
    .soheemall-cart-item-img {
      width: 80px;
      height: 80px;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    .soheemall-cart-item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .soheemall-cart-item-info {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
    }

    .soheemall-cart-item-name {
      font-size: 14px;
      margin-bottom: 5px;
      overflow: hidden;
      text-overflow: ellipsis;
			max-width: 200px;
    }

    .soheemall-cart-item-option {
      font-size: 12px;
      color: #999;
      display: block !important;
    }

    .soheemall-cart-options-list {
      display: flex;
      flex-direction: column;
    }

    /* PC에서 모바일용 정보 숨기기 */
    .soheemall-cart-product-wrapper > .soheemall-cart-item-info {
      display: none;
    }

    .soheemall-cart-remove-btn {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      background: none;
      border: none;
      color: #999;
      cursor: pointer;
      font-size: 16px;
      margin-left: 100px;
    }
    
    .soheemall-cart-buttons {
      display: flex;
      gap: 0;
      align-items: center;
    }

    .soheemall-cart-button {
      padding: 5px 10px;
      text-align: center;
      border: none;
      background-color: #fff;
      font-size: 14px;
      cursor: pointer;
      position: relative;
    }

    .soheemall-cart-buttons button:not(:last-child)::after {
      content: '|';
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      color: #000;
      font-weight: 300;
    }
    
    .soheemall-cart-button:last-child {
      margin-right: 0;
    }
    
    .soheemall-cart-original-price {
      font-size: 12px;
      color: #999;
      text-decoration: line-through;
      display: block;
    }
    
    .soheemall-cart-price {
      font-size: 14px;
      font-weight: bold;
      display: block;
    }
    
    .soheemall-cart-item-buttons {
      display: flex;
      flex-direction: column;
    }
    
    .soheemall-cart-item-button {
      border: 1px solid #ddd;
      background-color: #fff;
      padding: 6px 10px;
      font-size: 12px;
      cursor: pointer;
      margin-bottom: 5px;
    }
    
    .soheemall-cart-item-button:last-child {
      margin-bottom: 0;
    }
    
    .soheemall-cart-summary-title {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 15px;
    }
    
    .soheemall-cart-sidebar-box {
			border: 1px solid #ddd;
      padding: 20px;
      border-radius: 4px;
      margin-bottom: 20px;
    }
    
    .soheemall-cart-summary-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
			align-items: center;
    }
    
    .soheemall-cart-summary-label {
      font-size: 14px;
    }
    
    .soheemall-cart-summary-value {
      font-size: 14px;
      text-align: right;
    }
    
    .soheemall-cart-red-text {
      color: #FE4100;
    }
    
    .soheemall-cart-total-row {
			border-top: 1px solid #ddd;
			padding-top: 29px;
			font-size: 18px;
			font-weight: bold;
			margin-top: 30px;
			margin-bottom: 30px;
    }
    
    .soheemall-cart-checkout-button {
      display: block;
      width: 100%;
      padding: 15px;
      background-color: #000;
      color: #fff;
      text-align: center;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
    }
    
    .soheemall-cart-notices {
      margin: 20px 0;
      font-size: 14px;
      color: #666;
      line-height: 1.8;
    }
    
    .soheemall-cart-related-title {
      font-size: 18px;
      font-weight: bold;
      margin: 20px 0 20px 0;
    }
    
    .soheemall-cart-related-products {
      position: relative;
      margin-bottom: 15px;
      overflow: hidden;
      width: 100%;
    }
    
    .soheemall-cart-related-slider {
      display: flex;
      transition: transform 0.3s ease;
      margin: 0;
      padding: 0;
    }
    
    .soheemall-cart-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 25px auto 35px;
      gap: 16px;
    }
    
    .soheemall-cart-page-numbers {
      font-size: 16px;
      font-weight: 500;
      color: #333;
      min-width: 45px;
      text-align: center;
    }
    
    .soheemall-cart-page-arrow {
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid #ddd;
      border-radius: 4px;
      background-color: white;
      cursor: pointer;
      transition: background-color 0.2s;
    }
    
    .soheemall-cart-page-arrow:hover {
      background-color: #f5f5f5;
    }
    
    .soheemall-cart-page-arrow:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
    
    .soheemall-cart-related-product-name {
      font-size: 14px;
    }
    
    .soheemall-cart-related-product-price {
      font-size: 14px;
      font-weight: bold;
    }
    
    .soheemall-cart-gift-product {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      border: 1px solid #d7d7d7;
      border-radius: 5px;
    }
    
    .soheemall-cart-gift-image {
      width: 80px;
      margin-right: 15px;
      flex-shrink: 0;
    }
    
    .soheemall-cart-gift-info {
      font-size: 14px;
      padding: 10px;
      flex: 1;
      min-width: 0;
    }
    
    .soheemall-cart-pagination {
      display: flex;
      justify-content: center;
      margin-top: 20px;
    }
    
    .soheemall-cart-page-item {
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 5px;
      cursor: pointer;
    }
    
    .soheemall-cart-page-arrow {
      width: 30px;
      height: 30px;
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px solid #ddd;
      cursor: pointer;
    }
    
    .soheemall-cart-price-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }
    
    /* 모바일 전용 스타일 - 기본적으로 숨김 */
    .mobile-cart-wrapper {
      display: none;
    }

    .mobile-cart-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid #f0f0f0;
      background: #fff;
    }

    .mobile-cart-header-icon {
      width: 20px;
      height: 20px;
      color: #666;
    }

    .mobile-cart-logo {
      font-size: 14px;
      color: #ccc;
      font-weight: 500;
    }

    .mobile-cart-tabs {
      display: flex;
      padding: 12px 20px;
      gap: 16px;
      border-bottom: 1px solid #f0f0f0;
      background: #fff;
    }

    .mobile-cart-tab {
      font-size: 13px;
      color: #999;
      cursor: pointer;
    }

    .mobile-cart-tab.active {
      color: #000;
      font-weight: 600;
    }

    .mobile-cart-items {
      background: #f8f9fa;
    }

    .mobile-cart-shipping-section {
      padding: 16px 20px;
      background: #fff;
      border-bottom: 1px solid #f0f0f0;
    }

    .mobile-cart-shipping-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .mobile-cart-shipping-label {
      font-size: 12px;
      color: #999;
    }

    .mobile-cart-shipping-value {
      font-size: 13px;
      color: #000;
    }

    .mobile-cart-actions {
      display: flex;
      gap: 8px;
      margin-top: 12px;
    }

    .mobile-cart-action-btn {
      flex: 1;
      padding: 8px;
      border: 1px solid #e5e5e5;
      border-radius: 6px;
      font-size: 12px;
      color: #666;
      background: #fff;
      text-align: center;
      cursor: pointer;
    }

    .mobile-cart-price-summary {
      padding: 16px 20px;
      background: #fff;
      border-bottom: 8px solid #f5f5f5;
    }

    .mobile-cart-price-row {
      display: flex;
      justify-content: space-between;
      margin-bottom: 12px;
      font-size: 13px;
    }

    .mobile-cart-price-label {
      color: #666;
    }

    .mobile-cart-price-value {
      color: #000;
    }

    .mobile-cart-total-price {
      display: flex;
      justify-content: space-between;
      padding-top: 12px;
      border-top: 1px solid #e5e5e5;
      margin-top: 4px;
    }

    .mobile-cart-total-label {
      font-size: 14px;
      color: #666;
    }

    .mobile-cart-total-value {
      font-size: 18px;
      font-weight: 700;
      color: #000;
    }

    .mobile-cart-recommend-section {
      padding: 24px 20px;
      background: #fff;
    }

    .mobile-cart-recommend-title {
      font-size: 16px;
      font-weight: 700;
      color: #000;
      margin-bottom: 20px;
      line-height: 1.4;
    }

    .mobile-cart-order-buttons {
      padding: 16px 20px;
      background: #fff;
    }

    .mobile-cart-order-btn {
      width: 100%;
      padding: 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      text-align: center;
      margin-bottom: 8px;
      border: none;
      cursor: pointer;
    }

    .mobile-cart-order-btn-primary {
      background: #333;
      color: #fff;
    }

    .soheemall-cart-item-wrap {
      display: flex;
			align-items: center;
    }

    .mobile-cart-order-btn-secondary {
      background: #fff;
      color: #999;
      border: 1px solid #e5e5e5;
    }

    .soheemall-btn-wrap {
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: white;
  }

  .soheemall-btn-wrap.pc {
    display: flex !important;
  }
  .soheemall-btn-wrap.mo {
    display: none !important;
  }

  .soheemall-cart-container.pc {
    display: flex !important;
  }
  .soheemall-cart-container.mo {
    display: none !important;
  }

  .mobile-price-display {
    display: none;
  }

  .mo-soheemall-cart-buttons {
    display: none;
  }

  .mo-select-all-wrapper #select-all-checkbox-mobile {
    display: none;
  }

    /* 반응형 스타일 추가 - 미디어 쿼리 */
    @media screen and (max-width: 992px) {
      .soheemall-cart-container {
        flex-direction: column;
        gap: 0;
      }
      
      .soheemall-cart-sidebar {
        width: 100%;
      }
      
      .soheemall-cart-related-product {
        flex: 0 0 calc(33.33% - 20px);
      }
    }
    
    @media screen and (max-width: 768px) {
      .soheemall-cart-container.pc {
        display: none !important;
      }
      .soheemall-cart-container.mo {
        display: flex !important;
        background: white;
      }

      .soheemall-cart-header {
        margin-bottom: 0;
        padding: 0 16px;
      }

      .soheemall-cart-content-wrapper {
        flex-direction: column;
        gap: 0;
      }

      .soheemall-cart-sidebar {
        width: 100%;
      }

      .soheemall-cart-related-slider {
        flex-wrap: wrap;
        gap: 10px;
      }

      .soheemall-cart-related-products {
        overflow: visible;
				margin: 0;
      }

      .soheemall-cart-related-product {
        flex: 0 0 calc(50% - 5px);
        margin: 0;
        margin-bottom: 10px;
      }

      .soheemall-cart-order-notice-text {
        font-size: 13px;
      }

      .soheemall-cart-buttons {
        display: none;
      }

      .mo-soheemall-cart-buttons {
        display: flex;
        gap: 0;
        align-items: center;
      }

      .mo-soheemall-cart-buttons button {
        padding: 5px 10px;
        text-align: center;
        border: none;
        background-color: #fff;
        font-size: 14px;
        cursor: pointer;
        position: relative;
      }

      .mo-soheemall-cart-buttons button:not(:last-child)::after {
        content: '|';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        color: #000;
        font-weight: 300;
      }

      .mo-select-all-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-direction: row-reverse;
      }

      #select-all-checkbox-mobile {
        display: block !important;
        width: 16px;
        height: 16px;
        cursor: pointer;
      }

      .soheemall-cart-list-header {
        flex-direction: row !important;
        align-items: center;
      }

      /* 모바일 테이블 변환 - 가로 스크롤 대신 세로 레이아웃 */
      .soheemall-cart-list {
        overflow-x: visible;
      }

      .soheemall-cart-table,
      .soheemall-cart-table thead,
      .soheemall-cart-table tbody,
      .soheemall-cart-table tr,
      .soheemall-cart-table th,
      .soheemall-cart-table td {
        display: block;
        width: 100%;
      }
      .soheemall-cart-td-product {
        margin-left: 0 !important;
        margin-top: -15px !important;
      }
      .soheemall-cart-table td {
        display: flex;
        padding-left: 25px !important;
      }
      .soheemall-cart-table td {
        padding: 0 !important;
        border-bottom: none;
      }

      .soheemall-cart-table td.soheemall-cart-td-checkbox {
        width: auto;
        padding: 0 !important;
        padding-left: 0 !important;
        text-align: left;
      }

      .soheemall-cart-td-quantity .cart-option-change-btn {
        display: none;
      }

      .soheemall-cart-table thead {
        display: none;
      }

      .soheemall-cart-table tr {
        margin-bottom: 15px;
        position: relative;
        background: #fff;
        display: flex;
        flex-direction: column;
				padding: 0 10px;
        padding-left: 25px;
      }

      .soheemall-cart-td-checkbox {
        position: absolute;
        top: 0px;
        left: 0px;
        width: auto;
        padding: 0;
        z-index: 2;
      }

      .soheemall-cart-td-product {
        margin-left: 35px;
        padding-top: 0;
        padding-bottom: 12px;
        border-bottom: none;
      }

      .soheemall-cart-product-wrapper {
        flex-direction: column;
      }

      .soheemall-cart-item-img {
        width: 80px;
        height: 80px;
        margin-right: 0;
        margin-bottom: 10px;
      }

      .soheemall-cart-item-name {
        font-size: 14px;
        font-weight: 600;
        max-width: 100%;
        margin-bottom: 8px;
      }

      .soheemall-cart-options-list {
        margin-bottom: 12px;
      }

      .soheemall-cart-item-option {
        font-size: 12px;
        color: #666;
        background: #f8f9fa;
        padding: 6px 8px;
        border-radius: 4px;
        margin-bottom: 4px;
				width: 100%;
      }

      /* 모바일에서 PC용 정보 숨기고 모바일용 정보 보이기 */
      .soheemall-cart-item-info-wrap > .soheemall-cart-item-info {
        display: none !important;
      }

      .soheemall-cart-product-wrapper > .soheemall-cart-item-info {
        display: block !important;
      }

      .soheemall-cart-remove-btn {
        position: absolute;
        top: 16px;
        right: 16px;
        margin-left: 0;
        transform: none;
        left: auto;
        z-index: 2;
        font-size: 18px;
        color: #999;
      }

      /* 주문금액 섹션 */
      .soheemall-cart-td-price {
        padding: 12px 0;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
        order: -1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 12px;
        font-size: 14px;
        font-weight: 700;
      }

      .soheemall-cart-td-price .soheemall-cart-price {
				display: none;
      }

      .soheemall-cart-td-price .original-price,
      .soheemall-cart-td-price .discount-rate {
        display: none;
      }

      /* 상품금액, 배송비, 배송수단 세로 레이아웃 */
      .soheemall-cart-td-quantity,
      .soheemall-cart-td-delivery,
      .soheemall-cart-td-points {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 6px 0;
        text-align: left;
        border-bottom: none;
        font-size: 13px;
        color: #000;
      }

      .soheemall-cart-td-quantity::before {
        content: "상품금액";
        font-size: 13px;
        color: #666;
      }

      /* 모바일에서 데스크톱 수량 영역 숨기기 */
      .soheemall-cart-td-quantity > div {
        display: none !important;
      }

      .soheemall-cart-td-quantity .mobile-quantity-label {
        display: none !important;
      }

      .soheemall-cart-td-quantity .mobile-price-display {
        display: inline !important;
        font-size: 13px;
        color: #000;
      }

      .soheemall-cart-td-delivery::before {
        content: "배송비";
        font-size: 13px;
        color: #666;
      }

      .soheemall-cart-td-points::before {
        content: "배송수단";
        font-size: 13px;
        color: #666;
      }

      .soheemall-cart-td-quantity {
        order: 1;
      }

      .soheemall-cart-td-delivery {
        order: 2;
      }

      .soheemall-cart-td-points {
        order: 3;
        margin-bottom: 16px;
      }

      .soheemall-cart-td-options {
        padding: 0;
        order: 4;
      }

      .soheemall-cart-item-buttons {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
      }

      .container-fluid {
        max-height: unset !important;
        overflow: unset !important;
      }

      .layer_pop {
        overflow: auto;
      }

      .soheemall-cart-td-options .soheemall-cart-item-button,
      .soheemall-cart-td-options .cart-option-change-btn {
        flex: 1;
        margin: 0 !important;
        padding: 12px 16px !important;
        font-size: 13px !important;
        font-weight: 600;
        border: 1px solid #e5e5e5 !important;
        background: #fff !important;
        color: #333 !important;
        text-align: center;
        cursor: pointer;
        display: block !important;
      }

      /* 바로구매 버튼을 초록색으로 */
      .soheemall-cart-item-button {
        background: #2d5f3f !important;
        color: #fff !important;
        border-color: #2d5f3f !important;
      }

      .soheemall-cart-container {
        padding: 0;
        margin: 0;
      }

      .soheemall-cart-main-content {
        padding: 16px;
      }

      .soheemall-cart-list {
        margin-bottom: 16px;
      }

      .soheemall-cart-list-header {
        background: #fff;
        padding: 10px 0px;
        margin-bottom: 12px;
        display: flex;
        flex-direction: column;
        gap: 12px;
      }

      .soheemall-cart-selected-count {
        order: -1;
      }


      /* 사이드바 스타일 */
      .soheemall-cart-sidebar {
        padding: 16px 0;
        padding-bottom: 0;
        background: #f8f9fa;
      }

      .soheemall-cart-sidebar-box {
        background: #fff;
        padding: 16px;
        margin-bottom: 0;
				border: none;
      }

			.soheemall-cart-table {
				border: none;
			}

      .soheemall-cart-summary-title {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 12px;
      }

      .soheemall-cart-summary-row {
        font-size: 13px;
        margin-bottom: 8px;
      }

      .soheemall-cart-checkout-button {
        padding: 14px;
        font-size: 14px;
      }

      .soheemall-btn-wrap.pc {
        display: none !important;
      }

      .soheemall-btn-wrap.mo {
        display: flex !important;
        padding: 0 16px;
        margin-bottom: 20px;
        background: white;
    }

      /* 관련 상품 섹션 숨기기 */
      .soheemall-cart-related-title {
        padding: 0 16px;
      }
      .soheemall-cart-related-products, .no-related-products {
        padding: 0 16px;
        margin-top: 0 !important;
      }

      .soheemall-cart-notices {
        display: none;
      }
    }
    
    @media screen and (max-width: 576px) {
      .soheemall-cart-buttons {
        flex-direction: column;
        margin-bottom: 0;
      }
      
      .soheemall-cart-button {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
      }
      
      .soheemall-cart-related-product {
      }
      
      .soheemall-cart-title {
        font-size: 18px;
      }
      
      .soheemall-cart-checkout-button {
        font-size: 14px;
        padding: 12px;
      }
      
      .soheemall-cart-item-img {
        width: 60px;
        height: 60px;
      }
    }
    
    @media screen and (max-width: 576px) {
      .soheemall-cart-related-slider {
	  gap : 10px;
	}
	  
	  .soheemall-cart-buttons {
        flex-direction: column;
      }
      
      .soheemall-cart-clear-selection {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
      }
      
      .soheemall-cart-button {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
      }
      
      .soheemall-cart-title {
        font-size: 18px;
      }
      
      .soheemall-cart-checkout-button {
        font-size: 14px;
        padding: 12px;
      }
      .soheemall-cart-item-img {
        width: 60px;
        height: 60px;
      }
      .soheemall-cart-item-wrap {
        gap: 10px;
      }
      .soheemall-cart-item-info {
        width: 100%;
      }
    }

    /* 수량 컨트롤 스타일 추가 */
.quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-control button {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quantity-control button:hover {
  background: #f5f5f5;
}

.quantity-control input {
  width: 50px;
  height: 30px;
  text-align: center;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  outline: none;
  font-size: 14px;
}

/* 모바일에서 수량 컨트롤 스타일 */
@media screen and (max-width: 768px) {
  .quantity-control {
    justify-content: flex-start;
    margin-left: 5px;
  }
  
  .quantity-control button {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  
  .quantity-control input {
    width: 40px;
    height: 25px;
    font-size: 12px;
  }
}

/* 모달 스타일 */
.form-select-wrap {
  position: relative;
  margin-bottom: 15px;
}

.dropdown-toggle {
  display: block;
  width: 100%;
  padding: 10px 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

.form-select-wrap:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-item:last-child {
  border-bottom: none;
}

.dropdown-item a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
}

.dropdown-item a:hover {
  background-color: #f8f9fa;
}

.opt_block {
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 10px;
  background: #fff;
}

.opt_product_area {
  padding: 15px;
  background: #f8f9fa;
}

.area_tit {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 10px;
}

.area_count {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.option_btn_tools {
  display: flex;
  align-items: center;
  gap: 0;
}

.option_btn_tools a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  background: #fff;
  text-decoration: none;
  color: #333;
}

.option_btn_tools input {
  width: 50px;
  height: 30px;
  border: 1px solid #ddd;
  border-left: none;
  border-right: none;
  text-align: center;
  outline: none;
}

.absolute {
  position: absolute;
}

.absolute_right {
  right: 0;
}

.absolute_middle {
  top: 50%;
  transform: translateY(-50%);
}

.opt_block.total {
  display: flex;
  align-items: center;
  padding: 15px;
}

.col-xs-4 {
  flex: 0 0 33.33%;
}

.col-xs-8 {
  flex: 0 0 66.67%;
}

.align_r {
  text-align: right;
}

.text-brand {
  color: #e74c3c;
  font-weight: bold;
}

.btl {
  font-style: normal;
}

.bt-times-circle:before {
  content: "×";
}

.bt-minus:before {
  content: "-";
}

.bt-plus:before {
  content: "+";
}

.webblock-option-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.webblock-size-select {
    width: 100%;
    padding: 12px 40px 12px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background: white;
    margin-bottom: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.webblock-selected-options {
    margin-bottom: -20px;
    display: block;
}

.webblock-selected-options.visible {
    display: block;
}

.webblock-option-item {
    background: #f8f8f8;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 20px;
}

.webblock-option-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.webblock-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.webblock-option-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.webblock-option-remove {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webblock-option-remove:hover {
    color: #333;
}

.webblock-option-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.webblock-quantity-control {
    display: flex;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #ddd;
    width: fit-content;
}

.webblock-quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
}

.webblock-quantity-btn:hover {
    background: #f5f5f5;
}

.webblock-quantity-btn:disabled {
    background: #f9f9f9;
    color: #ccc;
    cursor: not-allowed;
}

.webblock-quantity-input {
    width: 50px;
    height: 32px;
    border: none;
    text-align: center;
    font-size: 14px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.webblock-option-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.webblock-total-section {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-bottom: 20px;
}

.webblock-total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    gap: 10px;
}

.webblock-total-label {
    color: #666;
}

.webblock-total-amount {
    font-weight: 700;
    color: #333;
    font-size: 18px;
}

.webblock-btn {
    flex: 1;
    padding: 10px 40px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.webblock-btn-primary {
    background: #4a5d23;
    color: white;
}

.webblock-btn-primary:hover {
    background: #3a4a1b;
}

.webblock-btn-secondary {
    background: #F4F4F4;
    color: #000000;
}

.webblock-btn-secondary:hover {
    background: #f5f7f2;
}

.webblock-input-option {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.webblock-color-options {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.webblock-color-option {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid #ddd;
    position: relative;
}

.webblock-color-option.active {
    border-color: #000000;
}

.webblock-color-option.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

/* 색상 옵션 툴팁 스타일 */
.webblock-color-option .color-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 8px;
    padding: 6px 10px;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    pointer-events: none;
    z-index: 100;
}

.webblock-color-option .color-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
}

.webblock-color-option:hover .color-tooltip {
    opacity: 1;
    visibility: visible;
}