/**
* 2007-2024 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2024 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
.cdc-request-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cdc-request-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
/* Workflow Banner */
.workflow-banner {
  background-color: #fff3e0;
  border-bottom: 1px solid #ffe0b2;
  padding: 12px 16px;
}

.workflow-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .workflow-content {
    flex-direction: row;
  }
}

.info-message {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .info-message {
    margin-bottom: 0;
  }
}

.info-icon {
  color: #ff5500;
  margin-right: 8px;
}

.workflow-steps {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.step {
  display: flex;
  align-items: center;
}

.step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ff5500;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.step-inactive .step-number {
  background-color: #ccc;
}

.step-label {
  font-size: 12px;
  margin-left: 4px;
}

.step-active .step-label {
  font-weight: bold;
}

.step-divider {
  width: 32px;
  height: 2px;
  background-color: #ffe0b2;
  margin: 0 4px;
}

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 992px) {
  .main-content {
    flex-direction: row;
  }
}

.left-column {
  width: 100%;
}

@media (min-width: 992px) {
  .left-column {
    width: 66.666667%;
  }
}

.right-column {
  width: 100%;
}

@media (min-width: 992px) {
  .right-column {
    width: 33.333333%;
  }
}

.page-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}

/* Cart Table */
.cart-table {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 24px;
}

.table-container {
  overflow-x: auto;
}

table {
  min-width: 100%;
  border-collapse: collapse;
}

thead {
  background-color: #f9fafb;
}

th {
  padding: 12px 24px;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

td {
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
}

.product-cell {
  display: flex;
  align-items: center;
}

.product-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 10px;
}

.product-details {
  margin-left: 16px;
}

.product-title {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
}

.product-description {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}

.quantity-input {
  display: flex;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}

.quantity-input input {
  width: 40px;
  text-align: center;
  border: none;
  outline: none;
}

.quantity-buttons {
  display: flex;
  flex-direction: column;
}

.quantity-button {
  border-left: 1px solid #e5e7eb;
  padding: 0 4px;
  font-size: 12px;
  cursor: pointer;
}

.quantity-button:first-child {
  border-bottom: 1px solid #e5e7eb;
}

.delete-button {
  color: #6b7280;
  cursor: pointer;
}

.delete-button:hover {
  color: #111827;
}

/* Continue Shopping Button */
.continue-shopping {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
}

.button {
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.button-dark {
  background-color: #1f2937;
  color: white;
  border: none;
}

.button-dark:hover {
  background-color: #374151;
}

.button-primary {
  background-color: #ff5500;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  font-weight: 500;
}

.button-primary:hover {
  background-color: #e64a00;
}

/* FAQs Section */
.faqs-section {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 24px;
  margin-bottom: 24px;
}

.faqs-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.faqs-icon {
  color: #ff5500;
  margin-right: 8px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 16px;
  margin-bottom: 16px;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-question {
  font-weight: 500;
  color: #ff5500;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.check-icon {
  margin-right: 8px;
}

.faq-answer {
  font-size: 14px;
  color: #6b7280;
}

/* Request Form */
.request-form {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 24px;
  position: sticky;
  top: 16px;
}

.form-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.notice-box {
  background-color: #fff3e0;
  border: 1px solid #ffe0b2;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
}

.notice-text {
  font-size: 14px;
}

.notice-text strong {
  font-weight: 600;
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 4px;
}

.form-textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  padding: 8px;
  font-size: 14px;
  resize: vertical;
}

.checkbox-label {
  display: flex;
  align-items: center;
}

.checkbox-input {
  height: 16px;
  width: 16px;
  color: #ff5500;
  border-radius: 4px;
  border: 1px solid #d1d5db;
}

.checkbox-text {
  margin-left: 8px;
  font-size: 14px;
  font-weight: 500;
}

.checkbox-description {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
  margin-left: 24px;
}

.summary {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.summary-row.total {
  font-weight: bold;
  font-size: 16px;
}

.disclaimer {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  margin-top: 16px;
}
.page-title-wrapper {
  display: none;
}
.forced-full-width {
  position: relative;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
}
.empty-state {
  border: 2px dashed #e5e7eb;
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 24px 0;
}

.icon-circle {
  width: 64px;
  height: 64px;
  background-color: #fff3e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-circle svg {
  width: 32px;
  height: 32px;
  color: #ff5500;
}

.empty-state h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.empty-state p {
  color: #6b7280;
  margin-bottom: 24px;
  max-width: 400px;
}

.button {
  background-color: #ff5500;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.2s;
}

.button:hover {
  background-color: #e64a00;
  color: white;
}

/* Main Content */
.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px;
}

.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
}
/* Navigation */
.ct-nav {
  background-color: #ff5500;
  color: white;
  padding: 16px;
}

.ct-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.ct-nav-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.ct-nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Workflow Banner */
.ct-workflow-banner {
  background-color: #fff3e0;
  border-bottom: 1px solid #ffe0b2;
  padding: 12px 16px;
}

.ct-workflow-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .ct-workflow-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.ct-workflow-notice {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ct-workflow-notice-icon {
  color: #ff5500;
}

.ct-workflow-steps {
  display: flex;
  align-items: center;
}

.ct-workflow-step {
  display: flex;
  align-items: center;
}

.ct-step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ff5500;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.ct-step-inactive .ct-step-number {
  background-color: #d1d5db;
}

.ct-step-label {
  margin-left: 4px;
  font-size: 12px;
}

.ct-step-active .ct-step-label {
  font-weight: bold;
}

.ct-step-divider {
  width: 32px;
  height: 2px;
  background-color: #ffe0b2;
  margin: 0 4px;
}

/* Main Content */
.ct-main {
  max-width: 768px;
  margin: 0 auto;
  padding: 32px 0px;
}

/* Success Message */
.ct-success-header {
  text-align: center;
  margin-bottom: 48px;
}

.ct-success-icon {
  width: 64px;
  height: 64px;
  background-color: #fff3e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #ff5500;
  font-size: 32px;
}

.ct-success-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #111827;
}

.ct-success-subtitle {
  color: #6b7280;
}

/* Request Details Card */
.ct-request-card {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 32px;
  padding: 24px;
}

.ct-request-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .ct-request-header {
    flex-direction: row;
    justify-content: space-between;
  }
}

.ct-request-detail {
  flex: 1;
}

.ct-detail-label {
  font-weight: 600;
  margin-bottom: 4px;
  color: #374151;
}

.ct-detail-value {
  font-size: 18px;
  color: #111827;
}

.ct-request-timeline {
  border-top: 1px solid #e5e7eb;
  padding-top: 24px;
}

.ct-timeline-title {
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.ct-timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ct-timeline-step {
  display: flex;
  gap: 16px;
}

.ct-step-icon {
  width: 32px;
  height: 32px;
  background-color: #fff3e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ff5500;
}

.ct-step-content {
  flex: 1;
}

.ct-step-title {
  font-weight: 500;
  margin-bottom: 4px;
  color: #111827;
}

.ct-step-description {
  font-size: 14px;
  color: #6b7280;
}

/* Action Buttons */
.ct-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

@media (min-width: 640px) {
  .ct-actions {
    flex-direction: row;
    justify-content: center;
  }
}

.ct-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

.ct-button-outline {
  border: 1px solid #d1d5db;
  background-color: white;
  color: #374151;
}

.ct-button-outline:hover {
  background-color: #f9fafb;
}

.ct-button-primary {
  background-color: #ff5500;
  color: white;
  border: none;
}

.ct-button-primary:hover {
  background-color: #e64a00;
}
/* Navigation */
.ct-nav {
  background-color: #ff5500;
  color: white;
  padding: 16px;
}

.ct-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.ct-nav-links {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.ct-nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Workflow Banner */
.ct-workflow-banner {
  background-color: #fff3e0;
  border-bottom: 1px solid #ffe0b2;
  padding: 12px 16px;
}

.ct-workflow-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .ct-workflow-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.ct-workflow-notice {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ct-workflow-steps {
  display: flex;
  align-items: center;
}

.ct-step {
  display: flex;
  align-items: center;
}

.ct-step-number {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ff5500;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.ct-step-inactive .ct-step-number {
  background-color: #d1d5db;
}

.ct-step-label {
  margin-left: 4px;
  font-size: 12px;
}

.ct-step-active .ct-step-label {
  font-weight: bold;
}

.ct-step-divider {
  width: 32px;
  height: 2px;
  background-color: #ffe0b2;
  margin: 0 4px;
}

/* Main Content */
.ct-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0px;
}

/* Request Header */
.ct-request-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .ct-request-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.ct-request-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.ct-request-date {
  color: #6b7280;
}

.ct-request-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ct-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
}

.ct-status-review {
  background-color: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.ct-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

.ct-button-outline {
  border: 1px solid #d1d5db;
  background-color: white;
  color: #374151;
}

.ct-button-outline:hover {
  background-color: #f9fafb;
}

/* Status Notice */
.ct-status-notice {
  background-color: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 32px;
  display: flex;
  gap: 12px;
}

.ct-status-notice-icon {
  flex-shrink: 0;
  color: #92400e;
}

.ct-status-notice-title {
  font-weight: 600;
  color: #92400e;
  margin-bottom: 4px;
}

.ct-status-notice-text {
  color: #92400e;
  font-size: 14px;
}

/* Grid Layout */
.ct-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .ct-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Card Styles */
.ct-card {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.ct-card-header {
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.ct-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.ct-card-body {
  padding: 24px;
}

/* Product List */
.ct-product {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.ct-product:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ct-product-image {
  width: 100px;
  height: 100px;
  background-color: #f3f4f6;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 12px;
}

.ct-product-details {
  flex: 1;
}

.ct-product-name {
  font-weight: 500;
  margin-bottom: 8px;
}

.ct-product-attributes {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 8px;
}

.ct-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.ct-product-quantity {
  color: #6b7280;
}

.ct-product-price {
  font-weight: 500;
}

/* Request Details */
.ct-details-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .ct-details-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ct-details-section {
  margin-bottom: 24px;
}

.ct-details-title {
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.ct-details-content {
  font-size: 14px;
  color: #6b7280;
}

/* Summary Sidebar */
.ct-summary {
  position: sticky;
  top: 24px;
}

.ct-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.ct-summary-label {
  color: #6b7280;
}

.ct-summary-value {
  font-weight: 500;
}

.ct-summary-total {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-top: 16px;
  font-weight: 600;
}

.ct-info-box {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 12px;
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ct-info-box-icon {
  flex-shrink: 0;
  color: #6b7280;
}

.ct-info-box-content {
  font-size: 14px;
}

.ct-info-box-title {
  font-weight: 500;
  margin-bottom: 2px;
}

.ct-info-box-text {
  color: #6b7280;
}

.ct-ready-box {
  background-color: #f0fdf4;
  color: #166534;
}

.ct-ready-box .ct-info-box-icon {
  color: #166534;
}

.ct-ready-box .ct-info-box-text {
  color: #166534;
}

.ct-button-primary {
  display: block;
  width: 100%;
  background-color: #ff5500;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  cursor: not-allowed;
  opacity: 0.7;
  margin-top: 24px;
}
.size-6 {
  width: 24px;
  height: 24px;
}
.ctt-heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.ctt-subheading {
  color: #6b7280;
}

.ctt-header-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.ctt-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 500;
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* Success Message */
.ctt-success-panel {
  background-color: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
}

.ctt-success-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.ctt-success-symbol {
  width: 48px;
  height: 48px;
  background-color: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  font-size: 24px;
}

.ctt-success-heading {
  font-size: 18px;
  font-weight: 600;
  color: #065f46;
  margin-bottom: 4px;
}

.ctt-success-message {
  color: #047857;
}

.ctt-order-box {
  background-color: white;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ctt-order-details {
  font-size: 14px;
}

.ctt-order-id {
  font-weight: 500;
  margin-top: 4px;
}

.ctt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

.ctt-btn-primary {
  background-color: #ff5500;
  color: white;
  border: none;
}

.ctt-btn-primary:hover {
  background-color: #e64a00;
}

/* Layout Grid */
.ctt-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .ctt-layout {
    grid-template-columns: 2fr 1fr;
  }
}

/* Panel Styles */
.ctt-panel {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.ctt-panel-header {
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.ctt-panel-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.ctt-panel-body {
  padding: 24px;
}

/* Timeline */
.ctt-history {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ctt-history-item {
  display: flex;
  gap: 16px;
}

.ctt-history-marker {
  width: 32px;
  height: 32px;
  background-color: #d1fae5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #059669;
  flex-shrink: 0;
}

.ctt-history-content {
  flex: 1;
}

.ctt-history-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.ctt-history-title {
  font-weight: 500;
}

.ctt-history-desc {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 4px;
}

.ctt-history-time {
  font-size: 14px;
  color: #9ca3af;
}

/* Summary Sidebar */
.ctt-summary {
  position: sticky;
  top: 16px;
}

.ctt-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}

.ctt-summary-label {
  color: #6b7280;
}

.ctt-summary-value {
  font-weight: 500;
}

.ctt-summary-total {
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
  margin-top: 16px;
  font-weight: 600;
}

.ctt-status-box {
  background-color: #ecfdf5;
  border-radius: 8px;
  padding: 12px;
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ctt-status-icon {
  color: #059669;
}

.ctt-status-content {
  font-size: 14px;
}

.ctt-status-title {
  font-weight: 500;
  color: #065f46;
  margin-bottom: 2px;
}

.ctt-status-text {
  color: #047857;
}
/* Filters Section */
.ctt-filters {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ctt-filters-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ctt-filters-grid {
    flex-direction: row;
    align-items: center;
  }
}

.ctt-search-wrapper {
  flex: 1;
  position: relative;
}

.ctt-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.ctt-search-input {
  width: 100%;
  padding: 0.5rem 0.75rem 0.5rem 2.5rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.ctt-filters-actions {
  display: flex;
  gap: 1rem;
}

.ctt-select {
  position: relative;
  min-width: 180px;
}

.ctt-select select {
  width: 100%;
  padding: 0.5rem 2.5rem 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  background-color: white;
  font-size: 0.875rem;
  appearance: none;
}

/* Request Cards */
.ctt-requests-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ctt-request-card {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.ctt-request-card:hover {
  border-color: #ff5500;
}

.ctt-request-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .ctt-request-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.ctt-request-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ctt-request-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.ctt-request-id {
  font-weight: 600;
}

.ctt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.ctt-badge-completed {
  background-color: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.ctt-badge-pending {
  background-color: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.ctt-badge-review {
  background-color: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

.ctt-request-meta {
  font-size: 0.875rem;
  color: #6b7280;
}

.ctt-request-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ctt-price-info {
  text-align: right;
}

.ctt-price-label {
  font-size: 0.875rem;
  color: #6b7280;
}

.ctt-price-value {
  font-weight: 600;
}

/* Empty State */
.ctt-empty-state {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 3rem;
  text-align: center;
}

.ctt-empty-icon {
  width: 4rem;
  height: 4rem;
  background-color: #f3f4f6;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #9ca3af;
}

.ctt-empty-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.ctt-empty-text {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Icons */
.ctt-icon {
  width: 1rem;
  height: 1rem;
}

.ctt-icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.ctt-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s;
}

.ctt-button-primary {
  background-color: #ff5500;
  color: white;
  border: none;
}

.ctt-button-primary:hover {
  background-color: #e64a00;
  color: white;
}

.ctt-button-outline {
  background-color: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.ctt-button-outline:hover {
  background-color: #f9fafb;
}
.size-4 {
  width: 16px;
  height: 16px;
}
/* Modal Overlay */
.ctt-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}

/* Modal Container */
.ctt-modal {
  background-color: white;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 500px;
  overflow: hidden;
  position: relative;
}

/* Modal Header */
.ctt-modal-header {
  padding: 1.25rem;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ctt-modal-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ctt-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  transition: background-color 0.2s;
}

.ctt-modal-close:hover {
  background-color: #f3f4f6;
  color: #111827;
}

/* Modal Content */
.ctt-modal-content {
  padding: 1.5rem;
}

/* Product Info */
.ctt-product-added {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.ctt-product-image {
  width: 5rem;
  height: 5rem;
  border-radius: 0.375rem;
  object-fit: cover;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  flex-shrink: 0;
}

.ctt-product-details {
  flex: 1;
}

.ctt-product-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #111827;
}

.ctt-product-meta {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.ctt-product-price {
  font-weight: 600;
  color: #111827;
}

/* Request Summary */
.ctt-request-summary {
  background-color: #f9fafb;
  border-radius: 0.375rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.ctt-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.ctt-summary-row:last-child {
  margin-bottom: 0;
}

.ctt-summary-label {
  color: #6b7280;
}

.ctt-summary-value {
  font-weight: 500;
  color: #111827;
}

.ctt-summary-total {
  font-weight: 600;
  color: #111827;
  font-size: 1rem;
}

/* Success Message */
.ctt-success-message {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  background-color: #ecfdf5;
  padding: 1rem;
  border-radius: 0.375rem;
}

.ctt-success-icon {
  color: #059669;
  flex-shrink: 0;
}

.ctt-success-text {
  font-size: 0.875rem;
  color: #065f46;
}

/* Modal Actions */
.ctt-modal-actions {
  display: flex;
  gap: 1rem;
}

@media (max-width: 480px) {
  .ctt-modal-actions {
    flex-direction: column;
  }
}

.ctt-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  flex: 1;
  text-align: center;
}

.ctt-button-primary {
  background-color: #ff5500;
  color: white;
  border: none;
}

.ctt-button-primary:hover {
  background-color: #e64a00;
}

.ctt-button-outline {
  background-color: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.ctt-button-outline:hover {
  background-color: #f9fafb;
}

/* Icons */
.ctt-icon {
  width: 1rem;
  height: 1rem;
}

.ctt-icon-lg {
  width: 1.25rem;
  height: 1.25rem;
}

/* Demo button to show modal - not needed in real implementation */
.ctt-demo-button {
  background-color: #ff5500;
  color: white;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
}

/* Hide modal by default - toggle with JavaScript */
.ctt-modal-overlay.ctt-hidden {
  display: none;
}
#wrapper {
  padding-top: 20px;
}
#blockcart-modal .modal-dialog {
  width: 100%;
  max-width: 600px;
}
