@charset "UTF-8";
.survey-form {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}
.survey-form .survey-personal-data {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 2px solid #f0f0f0;
}
@media (max-width: 768px) {
  .survey-form .survey-personal-data {
    flex-direction: column;
    gap: 1rem;
  }
}
.survey-form .survey-personal-data .personal-data-field {
  flex: 1;
  min-width: 200px;
}
.survey-form .survey-personal-data .personal-data-field .question-label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #2d2d2d;
}
.survey-form .survey-personal-data .personal-data-field .input-with-unit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.survey-form .survey-personal-data .personal-data-field .input-with-unit input[type=number] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.survey-form .survey-personal-data .personal-data-field .input-with-unit input[type=number]:focus {
  outline: none;
  border-color: #f78da7;
  box-shadow: 0 0 0 4px rgba(247, 141, 167, 0.1);
}
.survey-form .survey-personal-data .personal-data-field .input-with-unit .unit {
  font-size: 0.9rem;
  color: #777;
  white-space: nowrap;
}
.survey-form .survey-question {
  margin-bottom: 2.5rem;
}
.survey-form .survey-question > label {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0;
  color: #2d2d2d;
  line-height: 1.4;
}
.survey-form .survey-question .question-label {
  font-weight: 700;
}
.survey-form .survey-question .question-label .required-mark {
  color: #f78da7;
  margin-left: 0.25rem;
}
.survey-form .survey-question .question-description {
  font-size: 0.9rem;
  color: #777;
  margin: 0.5rem 0 1rem 0;
  line-height: 1.5;
}
.survey-form .survey-question input[type=text],
.survey-form .survey-question textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}
.survey-form .survey-question input[type=text]:focus,
.survey-form .survey-question textarea:focus {
  outline: none;
  border-color: #f78da7;
  box-shadow: 0 0 0 4px rgba(247, 141, 167, 0.1);
}
.survey-form .survey-question textarea {
  min-height: 140px;
  resize: vertical;
}
.survey-form .survey-question label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  color: #555;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.survey-form .survey-question label input[type=radio],
.survey-form .survey-question label input[type=checkbox] {
  margin-right: 0.75rem;
  cursor: pointer;
  width: 20px;
  height: 20px;
  accent-color: #f78da7;
}
.survey-form .survey-question label:hover {
  background: #f9f9f9;
  color: #f78da7;
}
.survey-form .survey-question input[type=text][name$=_other] {
  margin-top: 0.75rem;
  margin-left: 2rem;
}
.survey-form .survey-question.has-error .question-label {
  color: #dc3545;
}
.survey-form .survey-question.has-error label {
  color: #dc3545;
  background-color: #fff5f5;
}
.survey-form .personal-data-field.has-error .question-label {
  color: #dc3545;
}
.survey-form input.has-error,
.survey-form textarea.has-error {
  border-color: #dc3545 !important;
  background-color: #fff5f5 !important;
  animation: shake 0.3s;
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
.survey-form .survey-upload {
  margin-bottom: 2.5rem;
}
.survey-form .survey-upload .question-label {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #2d2d2d;
  line-height: 1.4;
}
.survey-form .survey-upload .dropzone {
  border: 2px dashed #f78da7;
  border-radius: 12px;
  background: #fafafa;
  padding: 2rem;
  transition: all 0.3s ease;
  min-height: 200px;
}
.survey-form .survey-upload .dropzone:hover {
  border-color: #B42F45;
  background: #f9f9f9;
}
.survey-form .survey-upload .dropzone .dz-message {
  font-size: 1rem;
  color: #555;
}
.survey-form .survey-upload .dropzone a,
.survey-form .survey-upload .dropzone .dz-remove {
  color: #f78da7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}
.survey-form .survey-upload .dropzone a:hover,
.survey-form .survey-upload .dropzone .dz-remove:hover {
  color: #B42F45;
}
.survey-form button[type=submit] {
  display: block;
  width: 100%;
  padding: 1.25rem;
  background: linear-gradient(135deg, #f78da7 0%, #B42F45 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(247, 141, 167, 0.3);
}
.survey-form button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 141, 167, 0.4);
}
.survey-form button[type=submit]:active {
  transform: translateY(0);
}
.survey-form button[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}
.survey-form .survey-message {
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}
.survey-form .survey-message-success {
  background-color: #d4edda;
  color: #155724;
  border: 2px solid #c3e6cb;
}
.survey-form .survey-message-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 2px solid #f5c6cb;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 2rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  margin: 0;
  border-bottom: 1px solid #f0f0f0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 1rem 1.5rem;
  color: #2d2d2d;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #B42F45;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  background: #fef5f7;
  color: #B42F45;
  padding-left: 2rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover::before {
  transform: scaleX(1);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  background: linear-gradient(135deg, #B42F45 0%, #9a2737 100%);
  color: white;
  font-weight: 600;
  padding-left: 2rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a::before {
  transform: scaleX(1);
  background: white;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a:hover {
  background: linear-gradient(135deg, #9a2737 0%, #7d1f2c 100%);
  color: white;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--dashboard a::after {
  content: "🏠";
  margin-left: auto;
  float: right;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--orders a::after {
  content: "📦";
  margin-left: auto;
  float: right;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--downloads a::after {
  content: "⬇️";
  margin-left: auto;
  float: right;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-address a::after {
  content: "📍";
  margin-left: auto;
  float: right;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--payment-methods a::after {
  content: "💳";
  margin-left: auto;
  float: right;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--edit-account a::after {
  content: "⚙️";
  margin-left: auto;
  float: right;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.woocommerce-MyAccount-navigation-link--customer-logout a::after {
  content: "🚪";
  margin-left: auto;
  float: right;
}
.woocommerce-account .survey-link {
  margin-top: 10px;
}
.woocommerce-account .survey-link.completed {
  padding: 8px 12px;
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
  border-radius: 4px;
  color: #2e7d32;
  font-weight: 600;
  display: inline-block;
}
.woocommerce-account .survey-link a.button {
  background: #B42F45;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(155, 81, 224, 0.3);
}
.woocommerce-account .survey-link a.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 81, 224, 0.4);
  background: #8a40cf;
  color: white;
}
.woocommerce-account .survey-link a.button:active {
  transform: translateY(0);
}
.woocommerce-account .woocommerce-order-details .woocommerce-table .survey-link {
  margin-top: 8px;
}
.woocommerce-account .woocommerce-MyAccount-content h1 {
  color: #2d2d2d;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.woocommerce-account .woocommerce-MyAccount-content h1:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #B42F45;
  margin-top: 1rem;
  border-radius: 2px;
}
.woocommerce-account .woocommerce-MyAccount-content h2 {
  color: #666;
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.woocommerce-order-received .woocommerce-order-overview {
  background: #B42F45;
  border-radius: 12px;
  padding: 2rem;
  color: white;
}
.woocommerce-order-received .woocommerce-order-overview li {
  color: white;
}
.woocommerce-order-received .woocommerce-order-overview li strong {
  color: white;
}

.woocommerce-order-survey-notice {
  background: linear-gradient(135deg, #fff5f7 0%, #fef9fa 100%);
  border: 2px solid #B42F45;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 12px rgba(180, 47, 69, 0.1);
}
.woocommerce-order-survey-notice h2 {
  color: #B42F45;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.woocommerce-order-survey-notice h2::before {
  content: "📋 ";
  margin-right: 0.5rem;
}
.woocommerce-order-survey-notice > p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.woocommerce-order-survey-notice .survey-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.woocommerce-order-survey-notice .survey-item {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}
.woocommerce-order-survey-notice .survey-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: #B42F45;
}
.woocommerce-order-survey-notice .survey-item .survey-item-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}
.woocommerce-order-survey-notice .survey-item .survey-item-content .survey-icon {
  font-size: 2rem;
  line-height: 1;
}
.woocommerce-order-survey-notice .survey-item .survey-item-content .survey-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.woocommerce-order-survey-notice .survey-item .survey-item-content .survey-details strong {
  color: #2d2d2d;
  font-size: 1rem;
  font-weight: 600;
}
.woocommerce-order-survey-notice .survey-item .survey-item-content .survey-details .survey-status {
  color: #B42F45;
  font-size: 0.875rem;
  font-weight: 500;
}
.woocommerce-order-survey-notice .survey-item .survey-button {
  background: #B42F45;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.woocommerce-order-survey-notice .survey-item .survey-button:hover {
  background: #9a2737;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 47, 69, 0.3);
  color: white;
}
.woocommerce-order-survey-notice .survey-item .survey-button:active {
  transform: translateY(0);
}
.woocommerce-order-survey-notice .survey-notice-info {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin: 0;
  color: #856404;
  font-size: 0.9rem;
  line-height: 1.5;
}
.woocommerce-order-survey-notice .survey-notice-info strong {
  color: #664d03;
}
@media (max-width: 768px) {
  .woocommerce-order-survey-notice {
    padding: 1.5rem;
  }
  .woocommerce-order-survey-notice .survey-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .woocommerce-order-survey-notice .survey-item .survey-button {
    width: 100%;
    text-align: center;
  }
}

.woocommerce button.button.alt,
.woocommerce a.button.alt,
.woocommerce input.button.alt {
  background: #B42F45;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(155, 81, 224, 0.3);
}
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 81, 224, 0.4);
  background: #8a40cf;
  color: white;
}
.woocommerce button.button.alt:active,
.woocommerce a.button.alt:active,
.woocommerce input.button.alt:active {
  transform: translateY(0);
}
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
  border-top-color: #B42F45;
}
.woocommerce .woocommerce-info:before,
.woocommerce .woocommerce-message:before {
  color: #B42F45;
}

.single-product .woocommerce-variation-add-to-cart .single_add_to_cart_button {
  background: #B42F45;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(155, 81, 224, 0.3);
  font-size: 1.1rem;
}
.single-product .woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 81, 224, 0.4);
  background: #8a40cf;
  color: white;
}
.single-product .woocommerce-variation-add-to-cart .single_add_to_cart_button:active {
  transform: translateY(0);
}
.single-product .cart .single_add_to_cart_button {
  background: #B42F45;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(155, 81, 224, 0.3);
  font-size: 1.1rem;
}
.single-product .cart .single_add_to_cart_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 81, 224, 0.4);
  background: #8a40cf;
  color: white;
}
.single-product .cart .single_add_to_cart_button:active {
  transform: translateY(0);
}

.woocommerce {
  margin-bottom: 6rem;
}
.woocommerce .price {
  color: #B42F45;
  font-weight: 700;
}
.woocommerce .price ins {
  color: #B42F45;
}

.woocommerce-button,
.woocommerce .button,
button.button {
  background-color: #B42F45 !important;
  color: #fff !important;
  border: none !important;
  padding: 0.875rem 2rem !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-block !important;
  text-align: center !important;
}
.woocommerce-button:hover, .woocommerce-button:focus,
.woocommerce .button:hover,
.woocommerce .button:focus,
button.button:hover,
button.button:focus {
  background-color: #9a2737 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(180, 47, 69, 0.3) !important;
  color: #fff !important;
}
.woocommerce-button:active,
.woocommerce .button:active,
button.button:active {
  transform: translateY(0) !important;
}
.woocommerce-button:disabled, .woocommerce-button.disabled,
.woocommerce .button:disabled,
.woocommerce .button.disabled,
button.button:disabled,
button.button.disabled {
  background-color: #ccc !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}
.woocommerce-button:disabled:hover, .woocommerce-button.disabled:hover,
.woocommerce .button:disabled:hover,
.woocommerce .button.disabled:hover,
button.button:disabled:hover,
button.button.disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

.woocommerce-form-login__submit,
.woocommerce-form-register__submit,
.woocommerce-Button {
  background-color: #B42F45 !important;
  color: #fff !important;
}
.woocommerce-form-login__submit:hover, .woocommerce-form-login__submit:focus,
.woocommerce-form-register__submit:hover,
.woocommerce-form-register__submit:focus,
.woocommerce-Button:hover,
.woocommerce-Button:focus {
  background-color: #9a2737 !important;
  color: #fff !important;
}

.survey-pending-notice {
  background: linear-gradient(135deg, #fff5f7 0%, #ffe8ec 100%);
  border-left: 4px solid #B42F45;
  padding: 20px 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(180, 47, 69, 0.1);
}
.survey-pending-notice h3 {
  margin: 0 0 15px 0;
  color: #B42F45;
  font-size: 18px;
  font-weight: 700;
}
.survey-pending-notice p {
  margin: 0 0 15px 0;
  color: #333;
  line-height: 1.6;
}

.pending-surveys-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pending-survey-item {
  background: white;
  padding: 15px;
  margin-bottom: 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.survey-item-info {
  flex: 1;
  min-width: 200px;
  margin-left: 15px;
}

.survey-item-product {
  font-weight: 600;
  color: #333;
  margin-bottom: 4px;
}

.survey-item-meta {
  font-size: 13px;
  color: #666;
}

.survey-item-action {
  flex-shrink: 0;
}
.survey-item-action .button {
  background-color: #B42F45 !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  white-space: nowrap;
}
.survey-item-action .button:hover {
  background-color: #9a2737 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 47, 69, 0.3);
}

@media (max-width: 600px) {
  .pending-survey-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .survey-item-action {
    width: 100%;
  }
  .survey-item-action .button {
    width: 100%;
    text-align: center;
  }
}
.woocommerce-orders-table,
.shop_table {
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-collapse: separate;
  border-spacing: 0;
}
.woocommerce-orders-table thead,
.shop_table thead {
  background: linear-gradient(135deg, #B42F45 0%, #9a2737 100%);
}
.woocommerce-orders-table thead tr th,
.shop_table thead tr th {
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}
.woocommerce-orders-table tbody tr,
.shop_table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s ease;
}
.woocommerce-orders-table tbody tr:last-child,
.shop_table tbody tr:last-child {
  border-bottom: none;
}
.woocommerce-orders-table tbody tr:hover,
.shop_table tbody tr:hover {
  background: #fef5f7;
}
.woocommerce-orders-table tbody tr td,
.woocommerce-orders-table tbody tr th,
.shop_table tbody tr td,
.shop_table tbody tr th {
  padding: 1.25rem 1.5rem;
  vertical-align: middle;
  border: none;
}
.woocommerce-orders-table tbody tr td[data-title]::before,
.woocommerce-orders-table tbody tr th[data-title]::before,
.shop_table tbody tr td[data-title]::before,
.shop_table tbody tr th[data-title]::before {
  content: attr(data-title) ": ";
  font-weight: 600;
  display: none;
}
.woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-number a,
.shop_table tbody tr .woocommerce-orders-table__cell-order-number a {
  color: #B42F45;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-number a:hover,
.shop_table tbody tr .woocommerce-orders-table__cell-order-number a:hover {
  color: #9a2737;
  text-decoration: underline;
}
.woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-status,
.shop_table tbody tr .woocommerce-orders-table__cell-order-status {
  font-weight: 600;
  color: #666;
}
.woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-total,
.shop_table tbody tr .woocommerce-orders-table__cell-order-total {
  font-weight: 600;
}
.woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-total .woocommerce-Price-amount,
.shop_table tbody tr .woocommerce-orders-table__cell-order-total .woocommerce-Price-amount {
  color: #B42F45;
  font-size: 1.1em;
}
.woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-actions .button,
.shop_table tbody tr .woocommerce-orders-table__cell-order-actions .button {
  background-color: #B42F45 !important;
  color: #fff !important;
  border: none !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
}
.woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-actions .button:hover,
.shop_table tbody tr .woocommerce-orders-table__cell-order-actions .button:hover {
  background-color: #9a2737 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 47, 69, 0.3);
}
@media (max-width: 768px) {
  .woocommerce-orders-table,
  .shop_table {
    border-radius: 8px;
  }
  .woocommerce-orders-table thead,
  .shop_table thead {
    display: none;
  }
  .woocommerce-orders-table tbody tr,
  .shop_table tbody tr {
    display: block;
    margin-bottom: 1.5rem;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
  }
  .woocommerce-orders-table tbody tr:hover,
  .shop_table tbody tr:hover {
    border-color: #B42F45;
  }
  .woocommerce-orders-table tbody tr td,
  .woocommerce-orders-table tbody tr th,
  .shop_table tbody tr td,
  .shop_table tbody tr th {
    display: block;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f9f9f9;
  }
  .woocommerce-orders-table tbody tr td:last-child,
  .woocommerce-orders-table tbody tr th:last-child,
  .shop_table tbody tr td:last-child,
  .shop_table tbody tr th:last-child {
    border-bottom: none;
  }
  .woocommerce-orders-table tbody tr td[data-title]::before,
  .woocommerce-orders-table tbody tr th[data-title]::before,
  .shop_table tbody tr td[data-title]::before,
  .shop_table tbody tr th[data-title]::before {
    display: inline;
    color: #666;
    margin-right: 0.5rem;
  }
  .woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-number,
  .shop_table tbody tr .woocommerce-orders-table__cell-order-number {
    background: #fef5f7;
    font-size: 1.1em;
    padding: 1rem;
  }
  .woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-actions,
  .shop_table tbody tr .woocommerce-orders-table__cell-order-actions {
    padding: 1rem;
    background: #f9f9f9;
  }
  .woocommerce-orders-table tbody tr .woocommerce-orders-table__cell-order-actions .button,
  .shop_table tbody tr .woocommerce-orders-table__cell-order-actions .button {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1.5rem !important;
  }
}

.wp-block-woocommerce-cart {
  margin-left: 0;
  margin-right: 0;
  padding: 5px;
  padding-bottom: 30px;
}

.woocommerce a {
  color: #5C2E2E;
}
.woocommerce form.login,
.woocommerce form.register,
.woocommerce form.lost_reset_password {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.woocommerce form.login .form-row,
.woocommerce form.register .form-row,
.woocommerce form.lost_reset_password .form-row {
  width: 100%;
}
.woocommerce .ss-login {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

.wc-block-checkout a {
  color: #5C2E2E;
}

.sylwiaszostak-checkout-checkboxes {
  margin: 20px 0;
  padding: 20px;
  background: linear-gradient(135deg, #fff5f7 0%, #fef9fa 100%);
  border: 2px solid #B42F45;
  border-radius: 12px;
}
.sylwiaszostak-checkout-checkboxes .form-row {
  margin: 0;
  padding: 0;
}
.sylwiaszostak-checkout-checkboxes label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin: 0;
}
.sylwiaszostak-checkout-checkboxes label input[type=checkbox] {
  margin: 4px 0 0 0;
  min-width: 18px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #B42F45;
  flex-shrink: 0;
}
.sylwiaszostak-checkout-checkboxes label .woocommerce-terms-and-conditions-checkbox-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.sylwiaszostak-checkout-checkboxes label .woocommerce-terms-and-conditions-checkbox-text .required {
  color: #B42F45;
  font-weight: bold;
  text-decoration: none;
}
.sylwiaszostak-checkout-checkboxes label:hover .woocommerce-terms-and-conditions-checkbox-text {
  color: #B42F45;
}
@media (max-width: 768px) {
  .sylwiaszostak-checkout-checkboxes {
    padding: 15px;
  }
  .sylwiaszostak-checkout-checkboxes label .woocommerce-terms-and-conditions-checkbox-text {
    font-size: 13px;
  }
}

.wc-block-checkout .wp-block-woocommerce-checkout-additional-information-block {
  margin-bottom: 0 !important;
}
.wc-block-checkout .wp-block-woocommerce-checkout-additional-information-block .wc-block-components-checkout-step__heading {
  display: none;
}
.wc-block-checkout .cooperation-terms {
  padding-left: 35px;
  font-size: 12px;
}
.wc-block-checkout .wc-block-components-checkbox#sylwiaszostak-health-data-consent {
  margin: 20px 0;
  padding: 20px;
  background: linear-gradient(135deg, #fff5f7 0%, #fef9fa 100%);
  border: 2px solid #B42F45;
  border-radius: 12px;
}
.wc-block-checkout .wc-block-components-checkbox#sylwiaszostak-health-data-consent .wc-block-components-checkbox__label {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}
.wc-block-checkout .wc-block-components-checkbox#sylwiaszostak-health-data-consent .wc-block-components-checkbox__input[type=checkbox] {
  min-width: 18px;
  width: 18px;
  height: 18px;
  accent-color: #B42F45;
  margin-top: 4px;
  flex-shrink: 0;
}
.wc-block-checkout .wc-block-components-checkbox#sylwiaszostak-health-data-consent:hover .wc-block-components-checkbox__label {
  color: #B42F45;
}
.wc-block-checkout [id*=health-data-consent] input[type=checkbox] {
  accent-color: #B42F45;
}
@media (max-width: 768px) {
  .wc-block-checkout .wc-block-components-checkbox#sylwiaszostak-health-data-consent {
    padding: 15px;
  }
  .wc-block-checkout .wc-block-components-checkbox#sylwiaszostak-health-data-consent .wc-block-components-checkbox__label {
    font-size: 13px;
  }
}

/*# sourceMappingURL=main.css.map */
