* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: var(--primary-font);
}

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  background: #f9fafb;
  font-family: var(--primary-font);
}

:root {
  --primary-font: "Inter", sans-serif;
  --secondary-font: "Bricolage Grotesque", sans-serif;
  --green-color: #bff100;
  --black-color: #06030d;
  --white-color: #ffffff;
  --dark-green: #1a2b1c;
  --orange-color: #e17100;
  --light-text: #06030d99;
}

a {
  text-decoration: none;
  display: block;
}
ul,
ol {
  list-style: none;
}

.btn-orange {
  padding: 8px 30px;
  background-color: var(--orange-color);
  color: var(--white-color);
  border-radius: 100px;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition:
    opacity 0.2s,
    transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trp-btn {
  border: 1px solid var(--black-color);
  background: transparent;
  padding: 7px 15px;
  border-radius: 100px;
  color: var(--black-color);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.trp-btn:hover {
  background: var(--green-color);
  color: var(--black-color);
  border-color: var(--green-color);
}
.green-btn {
  border: 1px solid var(--dark-green);
  background: var(--dark-green);
  padding: 7px 15px;
  border-radius: 100px;
  color: var(--white-color);
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* HEADER */

.site-header {
  padding: 20px;
}
.site-header:focus-visible, .woocommerce-error:focus-visible {
  outline: unset;
}
.woocommerce-password-strength {
    font-size: 15px;
}
/* Registration */

.pbr-main-title {
  font-size: 26px;
  font-family: var(--secondary-font);
  font-weight: 700;
  margin: 0 0 6px;
  color: #111827;
}
.pbr-header {
  text-align: center;
  margin-bottom: 30px;
}
.pbr-main-sub {
  font-size: 16px;
  color: #6b7280;
  margin: 0;
  font-family: var(--primary-font);
}

.pbr-wrap {
  padding: 40px 16px 60px;
}
.pbr-card {
  border: 1px solid #e5e7eb;
  box-shadow: 0px 1px 2px 0px #0000000d;
  background: #fff;
  border-radius: 12px;
  max-width: 510px;
  padding: 30px;
  margin: 0 auto;
}
.pbr-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 32px;
  gap: 10px;
}
.pbr-step-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin-top: 19px;
  min-width: 40px;
  transition: background 0.3s;
}
.pbr-step-item.active .pbr-step-bubble,
.pbr-step-item.complete .pbr-step-bubble {
  background: var(--green-color);
  color: #06030d;
}
.pbr-step-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.3s,
    color 0.3s;
  font-family: var(--primary-font);
}

.pbr-step-label {
  font-size: 11px;
  font-weight: 500;
  font-family: var(--primary-font);
  color: #9ca3af;
  white-space: nowrap;
}

.pbr-step-item.active .pbr-step-label,
.pbr-step-item.complete .pbr-step-label {
  color: #06030d;
}

.pbr-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.pbr-panel-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
  font-family: var(--primary-font);
}

.pbr-panel-sub {
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 24px;
  font-family: var(--primary-font);
}

.pbr-field {
  margin-bottom: 20px;
}
.pbr-field label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #374151;
  font-family: var(--primary-font);
}
.pbr-req {
  color: #ef4444;
  margin-left: 2px;
}
.pbr-field input,
.pbr-field select {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 11px 14px;
  line-height: 1.5;
  font-size: 14px;
  color: #111;
  background: #fff;
  box-sizing: border-box;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  font-family: var(--primary-font);
  -webkit-appearance: none;
}
.pbr-error {
  display: block;
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
  min-height: 16px;
  position: absolute;
}
.pbr-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition:
    opacity 0.2s,
    transform 0.1s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pbr-btn:active {
  transform: scale(0.97);
}
.pbr-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.pbr-btn-primary {
  background: var(--dark-green);
  color: #fff;
}
.pbr-btn-primary:hover {
  background: var(--green-color);
  color: var(--black-color);
}
.pbr-btn-outline {
  background: transparent;
  color: var(--black-color);
  border: 2px solid var(--black-color);
}
.pbr-btn-outline:hover {
  background: var(--green-color);
  border-color: var(--green-color);
}

.pbr-signin-footer {
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.pbr-signin-footer a {
  color: #000000;
  font-weight: 500;
  text-decoration: none;
}
.pbr-signin-footer a:hover {
  text-decoration: underline;
}

.pbr-nav {
  display: flex;
  margin-top: 32px;
}
.pbr-nav-right {
  justify-content: flex-end;
}
.pbr-nav-split {
  justify-content: space-between;
}

/* Terms */
.pbr-field-terms {
  margin-bottom: 20px;
}
.pbr-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  padding: 12px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  background: #fafafa;
}
.pbr-field-terms .pbr-checkbox-label {
  display: flex;
  align-items: center;
  padding: 17px;
  background: #f9fafb;
}

.pbr-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--green-color);
  cursor: pointer;
  padding: 0;
  border-radius: 5px;
  appearance: auto;
  -webkit-appearance: auto;
}
.pbr-checkbox-label a {
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
}
.pbr-checkbox-label a:hover {
  text-decoration: underline;
}

.pbr-success-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--green-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 40px;
  color: #1a2400;
}
.pbr-success-icon svg {
  width: 34px;
  height: 34px;
}
.pbr-success-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #111827;
  font-family: var(--secondary-font);
}
.pbr-field-terms span a {
  display: inline-block;
}

/* ALL PDP */

.logged-in .site-header {
  display: none;
}
.admin-wrapper {
  display: flex;
}
.custom-sidebar {
  width: 100%;
  max-width: 260px;
  border-right: 1px solid var(--black-color);
  height: 100vh;
  position: sticky;
  top: 0px;
  background: var(--white-color);
}
.main-content {
  width: 100%;
  padding: 40px;
}
.custom-sidebar .sidebar-logo {
  padding: 20px;
  border-bottom: 1px solid var(--black-color);
}
.custom-sidebar .sidebar-logo .site-logo {
  display: flex;
}
.sidebar-menu {
  padding: 20px;
  display: grid;
  gap: 5px;
}
.sidebar-menu li a {
  color: var(--black-color);
  display: block;
  padding: 10px 16px;
  font-weight: 500;
  border-radius: 12px;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-menu li.active a {
  background: var(--green-color);
}
.main-content .page-title {
  font-size: 48px;
  font-family: var(--secondary-font);
  font-weight: 700;
  color: var(--black-color);
}
.main-content .top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.main-content .form-cart {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 375px;
  position: relative;
}
.main-content .form-cart .product-search-form input {
  padding: 13px 40px;
  background: var(--white-color);
  border: 1px solid var(--black-color);
  border-radius: 12px;
  outline: 0;
  width: 100%;
  font-size: 16px;
  line-height: 1;
  color: #06030d99;
  font-family: var(--primary-font);
}
.main-content .form-cart .product-search-form {
  width: 100%;
}
.main-content .form-cart .product-search-form svg {
  position: absolute;
  top: 15px;
  left: 12px;
}
.main-content .cart-icon {
  position: absolute;
  right: -17px;
  top: -20px;
}

.main-content .cart-icon .cart-count {
  position: absolute;
  right: 0;
  background: var(--green-color);
  color: var(--black-color);
  width: 18px;
  height: 18px;
  border-radius: 100%;
  font-size: 12px;
  text-align: center;
  line-height: 1.5;
}
.main-content .category-filter {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
}
.main-content .category-filter button {
  background: transparent;
  border: 1px solid var(--black-color);
  padding: 7px 17px;
  border-radius: 100px;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  font-family: var(--primary-font);
  color: var(--black-color);
  cursor: pointer;
}
.main-content .category-filter button.active {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: var(--white-color);
}
.main-content .product-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(4, 1fr);
}
.main-content .product-grid .product-card {
  border: 1px solid var(--black-color);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}
.main-content .product-grid .product-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.main-content .product-grid .product-card .product-info {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-content .product-grid .product-card .product-info h3 {
  font-family: var(--secondary-font);
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  text-transform: capitalize;
}
.main-content .product-grid .product-card .product-info .discount {
  display: block;
  background: var(--green-color);
  color: var(--dark-green);
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0;
  line-height: 16px;
  font-size: 12px;
  font-weight: 600;
}
.custom-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #fff;
  padding: 25px;
  width: 650px;
  border-radius: 12px;
  position: relative;
  max-height: 80vh;
  overflow: auto;
}

/* width */
.modal-content::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.modal-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Handle */
.modal-content::-webkit-scrollbar-thumb {
  background: var(--green-color);
  border-radius: 10px;
}

/* Handle on hover */
.modal-content::-webkit-scrollbar-thumb:hover {
  background: var(--dark-green);
}

.close-modal {
  float: right;
  cursor: pointer;
}

.qty-box {
  display: flex;
  gap: 10px;
  margin: 12px 0;
  align-items: center;
}

.qty-box button {
  width: 35px;
  height: 35px;
  border: 1px solid var(--black-color);
  outline: 0;
  background: var(--dark-green);
  color: var(--white-color);
  border-radius: 100px;
  line-height: 1;
  font-size: 17px;
  cursor: pointer;
}

.qty-box span {
  line-height: 1;
  display: block;
  min-width: 40px;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
}

.bottom-uploadForm {
  padding: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
.bottom-uploadForm #uploadForm {
  background: #fffbeb;
  border: 1px solid #ffd230;
  border-radius: 12px;
  padding: 17px;
}

.upload-box {
  border: 2px solid #b4b3b6;
  padding: 25px;
  text-align: center;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.upload-box:hover {
  border-color: var(--green-color);
}

.upload-box.dragover {
  background: #f0fff4;
  border-color: #4caf50;
}

.upload-box .browse {
  color: var(--dark-green);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.custom-modal .modal-content #modal-title {
  font-size: 40px;
  font-family: var(--secondary-font);
  font-weight: 700;
  margin-bottom: 16px;
}
.custom-modal .modal-text {
  color: #06030d99;
  margin: 15px 0;
}
.custom-modal .select-title {
  font-weight: 500;
  font-family: var(--primary-font);
  color: #06030d99;
  margin-bottom: 6px;
}
#gift-value {
  width: 100%;
  border: 1px solid var(--black-color);
  outline: 0;
  border-radius: 12px;
  padding: 15px;
  appearance: none;
  color: var(--black-color);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  background-image: url("/wp-content/uploads/2026/05/Vector-2.svg");
  background-repeat: no-repeat;
  background-position: 97%;
}
.custom-modal .quantity-section {
  margin: 20px 0;
}
.quantity-section .qty-title {
  font-size: 16px;
  font-weight: 600;
}
.subtotal-section {
  background: #f2fccc;
  padding: 16px;
  border-radius: 16px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: self-start;
}
.subtotal-section .subtotal-label .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.subtotal-value {
  display: grid;
  text-align: right;
  gap: 4px;
}
.subtotal-value #total-price {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--secondary-font);
  line-height: 1.5;
}
.subtotal-value #discount-text {
  font-family: var(--secondary-font);
  font-weight: 600;
}
.popup-uploadForm {
  background: #fffbeb;
  border: 1px solid #ffd230;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.popup-uploadForm .popup-alert {
  width: 100%;
  max-width: 350px;
  display: grid;
  gap: 4px;
}
.popup-uploadForm .popup-alert strong {
  color: #7b3306;
  font-family: var(--secondary-font);
}
.popup-uploadForm .popup-alert p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #973c00;
  line-height: 1.5;
}
.sidebar-uploaddocuments {
  background: #fffbeb;
  border: 1px solid #ffd230;
  border-radius: 12px;
  padding: 10px;
  width: calc(100% - 40px);
  margin: 0 auto;

  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
}
.sidebar-uploaddocuments .verification-text p {
  display: flex;
  gap: 10px;
  font-size: 12px;
}
.sidebar-uploaddocuments .verification-text p strong {
  color: #7b3306;
  font-family: var(--secondary-font);
}
.sidebar-uploaddocuments .verification-text {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.modal-actions {
  text-align: right;
  display: flex;
  justify-content: end;
  gap: 10px;
  align-items: center;
}
.recipients-title {
  font-size: 40px;
  font-family: var(--secondary-font);
  font-weight: 700;
  margin-bottom: 8px;
}
.modal-content #summary-text {
  color: #06030d99;
  font-weight: 400;
}
.modal-content .tabs {
  margin: 20px 0;
}
.modal-content .tabs .tab-btn {
  border: 1px solid var(--black-color);
  background: transparent;
  padding: 12px 17px;
  border-radius: 100px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.modal-content .tabs {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;

  position: relative;
}
.modal-content .tabs .tab-btn.active {
  background: var(--dark-green);
  color: var(--white-color);
}
.modal-content .tabs .tab-btn.active svg path {
  stroke: var(--white-color);
}
#recipients {
  display: grid;
  gap: 15px;
}
.recipient {
  border: 1px solid var(--black-color);
  padding: 20px;
  border-radius: 16px;
}
.recipient h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.recipient h4 span {
  border: 1px solid var(--dark-green);
  border-radius: 16px;
  display: inline-flex;
  background: var(--dark-green);
  color: var(--white-color);
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
}
.recipient .fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.recipient .fields label {
  font-size: 12px;
  line-height: 18px;
  color: #06030d99;
}
.recipient .fields label input {
  width: 100%;
  border: 1px solid var(--black-color);
  outline: 0;
  border-radius: 12px;
  padding: 12px 14px;
  line-height: 1;
  font-size: 16px;
  color: var(--black-color);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
  margin-top: 7px;
}
.recipient-actions button {
  background: transparent;
  border: 0;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}
.recipient-actions button span {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.recipient-actions {
  display: flex;
  gap: 20px;
  margin: 15px 0 30px;
}
.download-template {
  display: flex;
  gap: 5px;
  align-items: center;
  color: var(--black-color);
  font-weight: 500;
  position: absolute;
  right: 0;
}
/* mainaccount-content */

.mainaccount-content {
  max-width: 900px;
  margin: 0 auto;
}
.mainaccount-content .page-subtitle {
  font-size: 18px;
  color: var(--light-text);
  margin: 8px 0 32px;
}

.mainaccount-content .inner-card {
  border: 1px solid var(--black-color);
  padding: 25px;
  border-radius: 16px;
  background: var(--white-color);
  margin-bottom: 24px;
}
.mainaccount-content .inner-card .header-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.mainaccount-content .inner-card .header-card .header-title h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--secondary-font);
  font-size: 18px;
}
.mainaccount-content .action-btns {
  display: flex;
  gap: 10px;
}
.mainaccount-content .inner-card .fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mainaccount-content .inner-card .fields input {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  background: transparent;
  border: 0;
  color: var(--black-color);
  margin-top: 4px;
  /* padding: 9px;
  border: 1px solid var(--black-color); */
  border-radius: 12px;
  transition: all 0.3s ease-out;
}
.mainaccount-content .inner-card.editing .fields input {
  padding: 9px;
  border: 1px solid var(--black-color);
}

.mainaccount-content .inner-card.editing .fields input.non-editable {
  opacity: 0.6;
}

.mainaccount-content .inner-card .fields .field {
  font-size: 12px;
  font-weight: 600;
  color: #06030d99;
  line-height: 18px;
}
.verification-uploads .header-title h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--secondary-font);
  font-size: 18px;
  margin-bottom: 8px;
}
.verification-uploads .header-title p {
  font-size: 12px;
  color: #06030d99;
}
.verification-uploads .inner-document {
  padding: 20px;
  border: 1px solid var(--black-color);
  border-radius: 12px;
  margin-top: 20px;
}
.verification-uploads .inner-document .document-header {
  display: flex;
  align-items: center;
  gap: 8px;
}
.verification-uploads .inner-document .document-header h3 {
  font-size: 16px;
  font-weight: 600;
}
.verification-uploads .inner-document .document-info {
  margin-bottom: 12px;
}
.verification-uploads .inner-document .document-info p {
  margin-top: 5px;
  font-size: 12px;
  color: #06030d99;
}
.verification-uploads .inner-document .upload-content p {
  margin: 8px 0;
  font-size: 12px;
  font-weight: 500;
}
.verification-uploads .inner-document .upload-content .file-types {
  font-size: 12px;
  color: #06030d99;
}

/* ── File preview row (shown after upload, replaces drop zone) ── */
.file-preview {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 0;
}

.file-preview-icon {
  width: 36px;
  height: 36px;
  background: rgba(191, 241, 0, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.file-preview-name {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #1a2b1c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Approved state — locked, no controls */
.file-preview--locked {
  cursor: default;
}

/* Download link inside file preview */
a.file-preview-link {
  color: inherit;
  text-decoration: none;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

a.file-preview-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #1a7a3b;
}

/* Trash delete button */
.delete-file {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  flex-shrink: 0;
  border-radius: 4px;
  transition: background 0.2s;
}

.delete-file:hover {
  background: #fef2f2;
}

.delete-file:hover svg path {
  stroke: #dc2626;
}
.notification-block .header-title h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--secondary-font);
  font-size: 18px;
  margin-bottom: 24px;
}

.notification-preferences {
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 20px;
  background: #fff;
}

.notification-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.notification-title h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #111;
}

.notification-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.notification-toggle:last-child {
  margin-bottom: 0;
}

.notification-info label {
  display: block;
  font-weight: 500;
  color: var(--black-color);
  margin-bottom: 4px;
  font-size: 16px;
}

.notification-info p {
  margin: 0;
  font-size: 12px;
  color: #06030d99;
}

/* Toggle Switch */
.notification-toggle input {
  display: none;
}

.switch {
  position: relative;
  width: 42px;
  height: 22px;
  background: #ddd;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
  flex: 0 0 auto;
}

.switch::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  right: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.notification-toggle input:not(:checked) + .switch::before {
  right: 23px;
}

.notification-toggle input:checked + .switch {
  background: #1d3325;
}

.verification-uploads .inner-document .document-header .status {
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  
    width: max-content;
}
.verification-uploads .inner-document .document-header .status--not-uploaded {
  background: #504e551a;
  color: #06030d99;
  border: 1px solid var(--black-color);
}
.verification-uploads .inner-document .document-header .status.status--pending {
  background: #fffbeb;
  border: 1px solid #fee685;
  color: #bb4d00;
}
.verification-uploads
  .inner-document
  .document-header
  .status.status--approved {
  background: #ebffeb;
  border: 1px solid #00bb4b;
  color: #00bb4b;
}

/* ── Out-of-stock product card ─────────────────────────────────────── */
.main-content .product-grid .product-card.product-out-of-stock {
  opacity: 0.72;
  cursor: default;
}
.main-content .product-grid .product-card.product-out-of-stock .product-img {
  position: relative;
}
.product-oos-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 0;
}
.product-oos-badge {
  background: #fff;
  color: #06030d;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.main-content .product-grid .product-card .product-info .out-of-stock-label {
  display: block;
  background: #f3f4f6;
  color: #6b7280;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}
/* Cart page */

.main-content.cart-page .cart-icon {
  position: relative;
  right: 0;
  top: 0;
}
.main-content.cart-page .top-bar {
  justify-content: end;
  margin-bottom: 0;
}
.cc-cart-title {
  font-size: 48px;
  font-family: var(--secondary-font);
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--black-color);
}
.cc-cart-meta {
  color: #06030d99;
  font-size: 18px;
}
.cc-cart-header {
  margin-bottom: 32px;
}
.cc-items-col {
  border: 1px solid var(--black-color);
  border-radius: 15px;
  padding: 20px;
  background: var(--white-color);
  display: grid;
  gap: 30px;
  position: relative;
}
.cc-cart-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 30px;
  align-items: flex-start;
}
.cc-summary-card {
  border: 1px solid var(--black-color);
  border-radius: 15px;
  padding: 20px;
  background: var(--white-color);
  position: sticky;
  top: 60px;
}
.cc-summary-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-color);
  font-family: var(--secondary-font);
  margin-bottom: 20px;
}
.cart_totals.calculated_shipping h2 {
  display: none;
}

.cc-item-product {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
}
.cc-item-product .cc-item-thumb img {
  border-radius: 12px;
  height: 64px;
  object-fit: cover;
}
.cc-item-sku {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cc-item-sku-val .cc-item-name a {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--secondary-font);
  color: var(--black-color);
  line-height: 1.5;
}
.cc-item-price-qty {
  color: #06030d99;
  font-size: 13px;
}
.cc-item-sku {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--black-color);
  margin-bottom: 12px;
}
.cc-item-sku-remove {
  display: flex;
  gap: 20px;
  align-items: center;
}
.cc-item-sku-remove .price-val bdi {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 18px;
}
.variation .variation-Recipient {
  font-size: 12px;
  color: #06030d99;
}
.variation .variation-Recipient p {
  background: #bff1001a;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 100px;
  font-size: 12px;
  color: #1a2b1c;
  margin-top: 4px;
}
.cc-continue-btn {
  display: inline-block;
  position: absolute;
  bottom: -60px;
  border: 1px solid var(--black-color);
  border-radius: 25px;
  padding: 8px 13px;
  background: var(--white-color);
  color: var(--black-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.woocommerce .cc-summary-col table.shop_table th {
  padding: 0;
  border-top: 0;
  color: #06030d99;
  font-weight: 400;
}
.woocommerce .cc-summary-col table.shop_table td {
  padding: 0;
  border-top: 0;
  color: var(--black-color);
  font-weight: 500;
  text-align: right;
}
.woocommerce .cc-summary-col table.shop_table {
  border: 0;
  margin: 0;
}
body .woocommerce .cc-summary-col .order-total th {
  border-top: 1px solid;
  padding-top: 12px;
  color: var(--black-color);
  font-weight: 600;
}
body .woocommerce .cc-summary-col .order-total td {
  border-top: 1px solid;
  padding-top: 12px;
}
body .wc-proceed-to-checkout .checkout-button {
  background-color: var(--dark-green) !important;
  padding: 10px !important;
  font-size: 14px !important;
  line-height: 1.5;
  border-radius: 30px;
  font-weight: 500;
  border: none !important;
  color: #fff !important;
}
.woocommerce .cc-summary-col table.shop_table .cart-subtotal th, .woocommerce .cc-summary-col table.shop_table .fee th {
  padding-bottom: 12px;
}

body .woocommerce a.remove:hover {
  background: var(--green-color);
}

.woocommerce .cc-summary-col table.shop_table .cart-subtotal td {
  padding-bottom: 10px;
}
.cc-invoice-note {
  color: #06030d99;
  font-size: 12px;
  text-align: center;
}
.cc-summary-col .cart_totals .wc-proceed-to-checkout {
  padding-bottom: 0 !important;
}

.cart-page .cart_totals h2 {
  display: none;
}

body .woocommerce-error,
body .woocommerce-info,
body .woocommerce-message {
  background-color: var(--white-color);
}
body .woocommerce-message {
  border-top-color: var(--green-color);
  display: flex;
  gap: 10px;
}
body .woocommerce-message:focus-visible {
  outline: unset;
}
body .woocommerce-info {
  border-top-color: var(--green-color);
}
body .woocommerce-info::before {
  color: var(--green-color);
}

body .woocommerce-message .restore-item {
  color: var(--dark-green);
  font-weight: 700;
}

body .woocommerce-message::before {
  content: "\e015";
  color: var(--green-color);
}

body .woocommerce-notices-wrapper {
  margin-top: 20px;
}

/* Checkout */

body.woocommerce-checkout .woocommerce-notices-wrapper {
  display: none;
}

.main-layout.checkout-page .cart-icon {
  position: relative;
  right: 0;
  top: 0;
}
.main-layout.checkout-page .top-bar {
  justify-content: end;
  margin-bottom: 0;
}

body.woocommerce-checkout .woocommerce-info::before {
  color: var(--green-color);
  top: 16px;
  left: 16px;
}
.co-coupon-wrapper .woocommerce-form-coupon {
  padding: 20px;
  background: var(--green-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.co-coupon-wrapper .woocommerce-form-coupon .co-coupon-field-row input {
  padding: 14px;
  border: 1px solid #06030d;
  border-radius: 12px;
  background: #f2f2f2;
  font-size: 16px;
  line-height: 1;
  outline: 0;
}
.co-coupon-wrapper .woocommerce-form-coupon .co-coupon-field-row .green-btn {
  background: var(--dark-green);
  color: #fff;
  border: 0;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
/* =====================================================================
   ORDERS PAGE
===================================================================== */

.orders-top-bar {
  margin-bottom: 24px;
}
.orders-top-bar .page-subtitle {
  color: var(--light-text);
  font-size: 14px;
  margin-top: 4px;
}

.export-csv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--black-color);
  background: transparent;
  padding: 10px 20px;
  border-radius: 100px;
  color: var(--black-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.export-csv-btn:hover {
  background: var(--green-color);
  border-color: var(--green-color);
}

/* Stats row */
.orders-stats-row {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.orders-stat-card {
  flex: 1;
  min-width: 200px;
  background: var(--white-color);
  border: 1px solid var(--black-color);
  border-radius: 16px;
  padding: 20px 28px;
}
.orders-stat-card.orders-stat-active {
  background: #d2f54c;
}
.orders-stat-label {
  font-size: 13px;
  color: #06030d99;
  margin-bottom: 6px;
}
.orders-stat-active .orders-stat-label {
  color: var(--black-color);
}
.orders-stat-value {
  font-size: 40px;
  font-weight: 700;
  color: var(--black-color);
  font-family: var(--secondary-font);
}

/* Orders table */
.orders-table-wrap {
  background: var(--white-color);
  border: 1px solid var(--black-color);
  border-radius: 16px;
     overflow: auto;
    width: 100%;
}
.orders-table-wrap table {
  border-radius: 16px;
     white-space: nowrap;
}
.orders-table thead tr:first-child th:first-child {
  border-top-left-radius: 16px;
}
.orders-table thead tr:first-child th:last-child {
  border-top-right-radius: 16px;
}
.orders-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}
.orders-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}
.orders-table {
  width: 100%;
  border-collapse: collapse;
}
.orders-table thead tr {
  border-bottom: 1px solid var(--black-color);
}
.orders-table th {
  padding: 10px 10px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  color: var(--black-color);
}
.orders-table-row {
  border-bottom: 1px solid var(--black-color);
  transition: background 0.15s;
}
.orders-table-row:last-child {
  border-bottom: none;
}
.orders-table-row:hover {
  background: #fafafa;
}
.orders-table td {
  padding: 14px 10px;
  font-size: 16px;
  color: var(--black-color);
}

.orders-table td.orders-td-actions {
  text-align: right;
}

.orders-table td.orders-td-id strong {
  font-weight: 500;
}
.orders-table td.orders-td-date {
  color: #06030d99;
}

/* Status badges */
.order-status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
}
.status-completed {
  background: var(--green-color);
  color: var(--black-color);
}
.status-processing {
  background: var(--black-color);
  color: #fff;
}
.status-delivered {
  background: transparent;
  border: 1px solid #6b7280;
  color: #374151;
}
.status-onhold {
  background: #fef3c7;
  color: #92400e;
}
.status-pending {
  background: #e0e7ff;
  color: #3730a3;
}
.status-cancelled {
  background: #fee2e2;
  color: #991b1b;
}
.status-refunded {
  background: #f3f4f6;
  color: #6b7280;
}
.status-failed {
  background: #fee2e2;
  color: #991b1b;
}
.status-default {
  background: #f3f4f6;
  color: #374151;
}

/* 3-dot action dropdown */
.orders-action-wrap {
  position: relative;
  display: inline-block;
}
.orders-dots-btn {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  transform: rotate(90deg);
}
.orders-dots-btn:hover {
  background: #f3f4f6;
}
.orders-dropdown {
  display: none;
  position: fixed;
  background: #fff;
  border: 1px solid var(--black-color);
  border-radius: 12px;
  min-width: 200px;
  z-index: 9999;
  padding: 6px;
}
.orders-dropdown.dd-open {
  display: block;
}
.orders-dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 16px;
  color: var(--black-color);
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  text-decoration: none;
  transition: background 0.15s;
}
.orders-dd-item:hover {
  background: #f3f4f6;
}

/* =====================================================================
   ORDER DETAIL PAGE
===================================================================== */

.order-detail-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
      flex-wrap: wrap;
    gap: 20px;
}
.order-detail-topbar .order-header-right .cart-icon {
  position: absolute;
  right: 0;
  top: -20px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  background: #fff;
  text-decoration: none;
  transition: background 0.15s;
}
.back-btn:hover {
  background: #f3f4f6;
}
.order-header-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.order-detail-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
  margin-top: 15px;
}
.order-detail-number {
  font-size: 40px;
  font-weight: 700;
  font-family: var(--secondary-font);
  color: var(--black-color);
  margin: 0;
}
.order-detail-date {
  color: #06030d99;
  font-size: 18px;
  margin-bottom: 0;
}

/* Detail stats row */
.order-detail-stats {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.od-stat-card {
  flex: 1;
  min-width: 140px;
  background: var(--white-color);
  border: 1px solid var(--black-color);
  border-radius: 16px;
  padding: 17px;
}
.od-stat-card.od-stat-highlight {
  background: var(--green-color);
}
.od-stat-icon {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.od-stat-label {
  font-size: 12px;
  color: #06030d99;
}
.od-stat-highlight .od-stat-label {
  color: var(--black-color);
}
.od-stat-value {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--secondary-font);
  color: var(--black-color);
}

/* 2-col layout */
.order-detail-body {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.od-left {
  flex: 1.4;
}
.od-right {
  flex: 1;
  min-width: 280px;
  max-width: 360px;
}

.od-section-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--black-color);
  font-family: var(--secondary-font);
}

.od-item-card {
  background: var(--white-color);
  border: 1px solid var(--black-color);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 14px;
}
.od-item-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.od-item-thumb {
  width: 80px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.od-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.od-item-info {
  flex: 1;
}
.od-item-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--black-color);
  margin-bottom: 4px;
  font-family: var(--secondary-font);
}
.od-item-meta {
  font-size: 12px;
  color: #06030d99;
}
.od-item-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
  white-space: nowrap;
  font-family: var(--secondary-font);
}

.od-recipients {
  border-top: 1px solid #cecece;
  padding-top: 17px;
}
.od-recipients-label {
  font-size: 12px;
  font-weight: 600;
  color: #06030d99;
  margin-bottom: 10px;
}
.od-recipients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.od-recipient-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f2f2f2;
  border: 0;
  border-radius: 10px;
  padding: 10px 14px;
  flex: 1;
  min-width: 200px;
}
.od-recip-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dark-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.od-recip-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--black-color);
}
.od-recip-email {
  font-size: 12px;
  color: #06030d99;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

/* Right column cards */
.od-right-card {
  background: var(--white-color);
  border: 1px solid var(--black-color);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}
.od-card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  color: var(--black-color);
  font-family: var(--secondary-font);
}

/* Timeline */
.od-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.od-timeline-step {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 0 0 24px;
}
.od-timeline-step:last-child {
  padding-bottom: 0;
}
.od-timeline-step::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 24px;
  width: 1.5px;
  height: calc(100% - 10px);
  background: #e5e7eb;
}
.od-timeline-step:last-child::before {
  display: none;
}
.od-timeline-step.od-step-pending span {
  opacity: 0.6;
}

.od-step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.od-step-done .od-step-dot {
  background: var(--green-color);
}
.od-step-done::before {
  background: var(--green-color) !important;
}
.od-step-pending .od-step-dot {
  background: #fff;
  border: 1px solid var(--black-color);
}
.od-timeline-step span {
  font-size: 16px;
  font-weight: 500;
  color: var(--black-color);
}

/* Payment rows */
.od-payment-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.od-payment-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.od-payment-row svg {
  margin-top: 2px;
  flex-shrink: 0;
}
.od-pay-label {
  font-size: 12px;
  color: #06030d99;
  margin-bottom: 2px;
}
.od-pay-value {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--black-color);
}
.od-invoice-ref {
  display: flex;
  align-items: center;
  gap: 8px;
}
.od-paid-badge {
  background: var(--green-color);
  color: var(--black-color);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 8px;
  border-radius: 100px;
  line-height: 1;
}

/* Total rows */
.od-total-rows {
  display: flex;
  flex-direction: column;
}
.od-total-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 16px;
  color: #06030d99;
  border-bottom: 0;
}
.od-total-row:last-child {
  border-bottom: none;
}
.od-total-final {
  font-size: 18px;
  border-top: 1px solid #b4b3b6 !important;
  margin-top: 4px;
  padding-top: 12px;
  border-bottom: none !important;
  color: #06030d;
  font-weight: 600;
}
.od-total-row span:last-child {
  font-weight: 500;
  color: var(--black-color);
}
.od-total-final strong {
  font-weight: 600;
}
.od-total-final strong:last-child {
  font-family: var(--secondary-font);
}
.woocommerce-NoticeGroup ul.woocommerce-error {
    flex-direction: column;
}
.woocommerce-NoticeGroup ul.woocommerce-error a, .woocommerce-NoticeGroup ul.woocommerce-error li{
    color: var(--green) !important;
    margin-left: 10px !important;
}
.testmode-info a{
  display: inline;
}
.woocommerce-SavedPaymentMethods-token label:before,
.woocommerce-SavedPaymentMethods-new label:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 2px var(--green);
    background: #fff;
    margin-left: 0px;
    margin-right: 15px;
    border-radius: 100%;
    transform: translateY(2px);
}
.woocommerce-SavedPaymentMethods-tokenInput:checked+label::before {
    background: var(--green);
}
.woocommerce-SavedPaymentMethods-token input,
.woocommerce-SavedPaymentMethods-new input {
    display: none;
}
.woocommerce-billing-fields__field-wrapper .address-field {
  position: relative;
}
@media (max-width: 900px) {
  .order-detail-body {
    flex-direction: column;
  }
  .od-right {
    max-width: 100%;
  }
}

/* =====================================================================
   INVOICE STATUS BADGES
===================================================================== */
.inv-status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.inv-badge-paid {
  background: var(--green-color);
  color: var(--black-color);
}
.inv-badge-pending {
  background: transparent;
  border: 1px solid #9ca3af;
  color: #374151;
}
.inv-badge-overdue {
  background: #fee2e2;
  color: #991b1b;
}
.inv-badge-cancelled {
  background: #f3f4f6;
  color: #6b7280;
}

.invoices-top-bar {
  margin-bottom: 24px;
}
.invoices-top-bar .page-subtitle {
  color: var(--light-text);
  font-size: 14px;
  margin-top: 4px;
}

.inv-export-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--black-color);
  background: transparent;
  padding: 7px 20px;
  border-radius: 100px;
  color: var(--black-color);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.inv-export-btn:hover {
  background: var(--green-color);
  border-color: var(--green-color);
}

.inv-download-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Order page */

.main-content.orders-page-content .orders-top-bar {
  position: relative;
}
.main-content.orders-page-content .cart-icon {
  position: absolute;
  right: -10px;
  top: -10px;
}
.main-content .top-bar.invoices-top-bar {
  position: relative;
}
.main-content .top-bar.invoices-top-bar .cart-icon {
  position: absolute;
  right: 0px;
  top: -10px;
}
.main-content.cart-empty-page .return-to-shop .green-btn {
  background: var(--dark-green);
  color: var(--white-color);
  border-radius: 30px;
  font-weight: 500;
}
.payment_box.payment_method_stripe fieldset {
  border: 0px;
}
ul.wc_payment_methods.payment_methods.methods {
  border: 0px !important;
}
.mobile-only {
  display: none;
}

body.woocommerce-cart .pp-oos-notice {
  display: none;
}
.cc-summary-col .cart_totals .wc-proceed-to-checkout .checkout-button{
  display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

/*Lost Password Page CSS*/
.woocommerce-lost-password  .entry-content {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
    box-sizing: border-box;
}
.woocommerce-lost-password  .woocommerce {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e6ea;
    padding: 40px 40px 32px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    animation: pbl-fadein 0.25s ease;
}
form.woocommerce-ResetPassword.lost_reset_password .woocommerce form .form-row-first, 
form.woocommerce-ResetPassword.lost_reset_password .woocommerce form .form-row-last, 
form.woocommerce-ResetPassword.lost_reset_password .form-row-first, 
form.woocommerce-ResetPassword.lost_reset_password .form-row-last{
    width: 100%;
}

form.woocommerce-ResetPassword.lost_reset_password input#password_1, 
input#password_2 {
    width: 100%;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    padding: 11px 14px;
    line-height: 1.5;
    font-size: 14px;
    color: #111;
    background: #fff;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
    -webkit-appearance: none;
}

form.woocommerce-ResetPassword.lost_reset_password .button.woocommerce-Button.button {
    width: 100%;
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a2b1c;
    color: #fff;
    transition: all 0.5s ease;
    justify-content: center;
    margin-top: 6px;
}
form.woocommerce-ResetPassword.lost_reset_password button.woocommerce-Button.button:hover{
    background: #bff100;
    color: #06030d;
}

form.woocommerce-ResetPassword.lost_reset_password .woocommerce-form-row {
    margin-bottom: 18px;
    padding: 0px;
}

form.woocommerce-ResetPassword.lost_reset_password p:nth-child(1) {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #111;
    margin-bottom: 28px;
}
.woocommerce-error{
  margin-bottom: 10px;
  background: #e8e9ea8f !important;
}
body .woocommerce-notices-wrapper {
    margin-top: 0px;
}

/* Policy page */

.privacy-policy.logged-in .site-header{
  display: block;
}

.privacy-policy .site-content{
      max-width: 1200px;
    margin: 0 auto 70px;
    padding: 0 20px;
}

.privacy-policy .site-content h2{
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--black-color); 
}

.privacy-policy .site-content p{
  margin-bottom: 20px;
  color: var(--black-color);
  font-size: 16px;
  line-height: 1.6;
}
.privacy-policy p a{
  color: var(--dark-green);
  text-decoration: underline;
  display: inline-block;
}




.page-id-53.logged-in .site-header{
  display: block;
}

.page-id-53 .site-content{
      max-width: 1200px;
    margin: 0 auto 70px;
    padding: 0 20px;
}

.page-id-53 .site-content h2{
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--black-color); 
}

.page-id-53 .site-content p{
  margin-bottom: 20px;
  color: var(--black-color);
  font-size: 16px;
  line-height: 1.6;
}
.page-id-53 p a{
  color: var(--dark-green);
  text-decoration: underline;
  display: inline-block;
}

/* RESPONSIVE */

@media (max-width: 1299px) {
  .main-content .product-grid .product-card .product-info h3 {
    font-size: 16px;
  }
  .admin-wrapper {
    display: block;
  }
  .custom-sidebar {
    height: auto;
    position: relative;
    border-right: 0;
    max-width: unset;
  }
  .sidebar-menu {
    position: fixed;
    bottom: 10px;
    width: calc(100% - 40px);
    background: #fff;
    z-index: 9999;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--black-color);
    margin: 0 auto;
    left: 0;
    right: 0;
    border-radius: 10px;
    padding: 10px;
  }
  .sidebar-menu li a {
    justify-content: center;
  }
  :root {
    --sidebar-bottom-space: 0px;
  }

  .admin-wrapper {
    padding-bottom: calc(var(--sidebar-bottom-space) + 20px);
  }
  .mainaccount-content {
    max-width: 100%;
  }
  .main-content {
    padding: 20px;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
    cursor: pointer;
  }
  .custom-sidebar .sidebar-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }
  .sidebar-logo .cart-icon {
    position: relative;
  }
  .sidebar-logo .cart-icon .cart-count {
    position: absolute;
    right: 0;
    background: var(--green-color);
    color: var(--black-color);
    width: 18px;
    height: 18px;
    border-radius: 100%;
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
  }
  .main-content .page-title,
  .cc-cart-title {
    font-size: 38px;
  }

  .category-filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    max-width: 85%;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    padding: 70px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
  }

  .category-filter.is-open {
    transform: translateX(0);
  }

  .main-content .category-filter button {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 18px;
    line-height: 28px;
    width: 100%;
    text-align: left;
    color: var(--light-text);
  }
  .main-content .category-filter button.active {
    background: transparent;
    border-color: var(--dark-green);
    color: var(--black-text);
  }
  .main-content .category-filter button.filter-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: 0;
    background: var(--dark-green);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-weight: 400;
  }

  .filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
  }

  .filter-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }

  body.filter-sidebar-open {
    overflow: hidden;
  }
  .main-content .form-cart {
    gap: 20px;
  }
  .main-content .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .order-detail-topbar{
    align-items: end;
  }
  .od-left{
        flex: 1;
    width: 100%;
  }
  .od-right{
            width: 100%;
  }
  .order-detail-body{
    gap: 10px;
  }
  .sidebar-uploaddocuments{
    position: relative;
    bottom: -10px;
  }
}

@media (max-width: 991px) {
  .main-content .page-title,
  .cc-cart-title {
    font-size: 30px;
  }
  .main-content .form-cart .product-search-form input {
    padding: 7px 40px;
  }
  .main-content .form-cart .product-search-form svg {
    top: 10px;
  }
  .main-content .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .sidebar-menu li a {
    flex-direction: column;
    gap: 4px;
    line-height: 24px;
    font-size: 14px;
  }
  .cc-cart-layout {
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: flex-start;
  }
  .cc-cart-header {
    margin-bottom: 22px;
  }
  .co-confirm-title {
    font-size: 30px !important;
  }
  .sidebar-logo .cart-icon svg {
        width: 34px;
    height: 34px;

  }
  .sidebar-logo .cart-icon .cart-count{
            right: -5px;
        top: -5px;
  }
}
@media (max-width: 767px) {
  .modal-content{
    margin-bottom: 80px;
  }
  .main-content .product-grid .product-card .product-info{
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
    gap: 15px;
  }
  .main-content .top-bar {
    flex-wrap: wrap;
    gap: 20px;
  }
  .main-content .page-title,
  .cc-cart-title {
    font-size: 25px;
  }
  .sidebar-menu li a {
    line-height: 1.2;
    font-size: 11px;
    text-align: center;
    padding: 10px 5px;
  }
  .sidebar-menu {
    gap: 0px;
  }
  .custom-modal .modal-content #modal-title {
    font-size: 25px;
  }
  .custom-modal .modal-text {
    font-size: 14px;
  }
  .custom-modal {
    padding: 20px;
  }
  .recipients-title {
    font-size: 25px;
  }
  .modal-content .tabs .tab-btn {
    flex: 1;
    padding: 10px;
    font-size: 14px;
    justify-content: center;
  }
  .modal-content {
    padding: 20px;
  }
  .modal-content #summary-text {
    font-size: 14px;
  }
  .recipient .fields label input {
    padding: 9px;
    line-height: 1;
    font-size: 14px;
  }
  .recipient-actions button {
    font-size: 14px;
  }
  .recipient .fields {
    align-items: end;
    grid-template-columns: 1fr 1fr;
  }
  button.download-template {
    margin-top: 0 !important;
  }
  .cart-success-title {
    font-size: 25px !important;
  }
  .main-content .form-cart {
    width: 100%;
  }
  #gift-value {
    padding: 10px;
  }
  .cc-item-product {
    grid-template-columns: 60px 1fr;
  }
  .cc-item-product .cc-item-thumb img {
    height: 54px;
  }
  .cc-item-sku-val .cc-item-name a {
    font-size: 16px;
  }
  .cc-item-sku-remove .price-val bdi {
    font-size: 16px;
  }
  .cc-item-sku-remove {
    gap: 10px;
  }
  .co-card {
    padding: 20px !important;
  }
  .co-summary-card {
    padding: 20px;
  }
  .co-confirm-actions {
    grid-template-columns: 1fr !important;
  }
  .co-confirm-subtitle {
    font-size: 14px !important;
    margin: 0 0 22px;
  }
  .co-confirm-icon {
    width: 44px !important;
    height: 44px !important;
  }
  .co-confirm-card {
    padding: 20px !important;
  }
  .co-confirm-title {
    font-size: 25px !important;
  }
  .co-order-details-grid {
    grid-template-columns: 1fr !important;
    padding: 10px !important;
  }
  .order-detail-number{
        font-size: 25px;
  }
  .order-detail-date{
          font-size: 16px;
  }
  .od-item-thumb{
    width: 60px;
    height: 54px;
  }
  .order-header-right{
        flex-wrap: wrap;
  }
  .orders-stat-value{
    font-size: 25px;
  }
  .orders-stat-card{
    padding: 20px;
  }
  .orders-table td{
        padding: 8px;
    font-size: 14px;
  }
  .orders-stats-row{
        margin-bottom: 20px;
  }
  .export-csv-btn{
    padding: 8px 12px;
        font-size: 12px;
  }
  .orders-dd-item{
        padding: 7px;
    font-size: 14px;
  }
  .mainaccount-content .inner-card .header-card{
        margin-bottom: 20px;
                flex-wrap: wrap;
        gap: 10px;
  }
  .mainaccount-content .page-subtitle{
        font-size: 16px;
  }
  .verification-uploads .inner-document .document-header{
        justify-content: space-between;
  }
  .mainaccount-content .inner-card{
        padding: 20px;
  }
  .verification-uploads .inner-document{
    padding: 0px;
    border: 0;
  }
  .verification-uploads .inner-document{
        padding: 0px;
    border: 0;
  }
  .verification-uploads .inner-document .document-header h3{
        font-size: 14px;
  }
  .mainaccount-content .inner-card .header-card .header-title h3{
    font-size: 16px;
  }
  .mainaccount-content .inner-card .fields{
        gap: 10px;
  }
  .mainaccount-content .inner-card .fields input{
        font-size: 14px;
    line-height: 20px;
  }
  .verification-uploads .header-title h3{
        font-size: 16px;
  }
  .notification-block .header-title h3{
        font-size: 16px;
  }
  .notification-info label{
        font-size: 14px;
  }
  .upload-box{
    border: 1px solid #b4b3b6;
    padding: 20px;
  }
  .popup-uploadForm{
    flex-wrap: wrap;
  }
}

/* ======================================================================
   HOW TO REDEEM PAGE
   ====================================================================== */

/* Page layout */
.htr-page .htr-top-bar {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 24px;
}
.htr-subtitle {
  color: var(--light-text);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 4px;
}

/* Search bar */
.htr-search-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white-color);
  border: 1px solid rgba(6, 3, 13, 0.15);
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 24px;
  max-width: 520px;
}
.htr-search-wrap svg {
  flex-shrink: 0;
  opacity: 0.5;
}
#htr-search {
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-family: var(--primary-font);
  color: var(--black-color);
  flex: 1;
  min-width: 0;
}
#htr-search::placeholder {
  color: var(--light-text);
}
.htr-count {
  flex-shrink: 0;
  font-size: 12px;
  color: var(--light-text);
  white-space: nowrap;
}

/* Accordion list */
.htr-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Individual accordion item */
.htr-item {
  background: var(--white-color);
  border: 1px solid rgba(6, 3, 13, 0.12);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.htr-item:hover {
  box-shadow: 0 2px 12px rgba(6, 3, 13, 0.07);
}
.htr-item--open {
  border-color: var(--dark-green);
  box-shadow: 0 2px 16px rgba(26, 43, 28, 0.10);
}

/* Trigger button */
.htr-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
}
.htr-trigger:hover {
  background: #f6f7f5;
}
.htr-item--open .htr-trigger {
  background: #f0f5f0;
}
.htr-trigger-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

/* Product thumbnail */
.htr-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(6, 3, 13, 0.08);
}
.htr-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  color: rgba(6, 3, 13, 0.3);
}

/* Product title in trigger */
.htr-product-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--black-color);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Chevron icon */
.htr-chevron {
  flex-shrink: 0;
  color: var(--light-text);
  transition: transform 0.25s ease;
  display: flex;
  align-items: center;
}
.htr-item--open .htr-chevron {
  transform: rotate(180deg);
  color: var(--dark-green);
}

/* Animated panel */
.htr-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.htr-panel-inner {
  padding: 0 20px 20px;
  border-top: 1px solid rgba(6, 3, 13, 0.08);
}

/* Action row (copy link) */
.htr-panel-actions {
  display: flex;
  justify-content: flex-end;
  padding: 12px 0 14px;
}
.htr-copy-link {
  font-size: 12px;
  padding: 6px 14px;
  gap: 6px;
}

/* WYSIWYG content styles */
.htr-content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--black-color);
}
.htr-content h1, .htr-content h2, .htr-content h3,
.htr-content h4, .htr-content h5, .htr-content h6 {
  font-family: var(--secondary-font);
  font-weight: 700;
  margin: 16px 0 8px;
  color: var(--black-color);
}
.htr-content h2 { font-size: 18px; }
.htr-content h3 { font-size: 16px; }
.htr-content p {
  margin: 0 0 10px;
}
.htr-content ul, .htr-content ol {
  padding-left: 20px;
  margin: 0 0 10px;
}
.htr-content ul { list-style: disc; }
.htr-content ol { list-style: decimal; }
.htr-content li {
  margin-bottom: 4px;
}
.htr-content a {
  color: var(--dark-green);
  text-decoration: underline;
  display: inline;
}
.htr-content strong { font-weight: 700; }
.htr-content em { font-style: italic; }
.htr-content img {
  max-width: 100%;
  border-radius: 8px;
  margin: 8px 0;
}
.htr-content blockquote {
  border-left: 3px solid var(--green-color);
  padding-left: 14px;
  color: var(--light-text);
  margin: 12px 0;
}

/* Empty / no-results state */
.htr-empty,
.htr-no-results {
  padding: 48px 20px;
  text-align: center;
  color: var(--light-text);
  font-size: 14px;
  background: var(--white-color);
  border: 1px dashed rgba(6, 3, 13, 0.15);
  border-radius: 14px;
}

.discount-applied{
      margin-left: 10px;
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .htr-product-title {
    font-size: 14px;
    white-space: normal;
  }
  .htr-search-wrap {
    max-width: 100%;
  }
  .htr-trigger {
    padding: 14px 16px;
  }
  .htr-panel-inner {
    padding: 0 16px 16px;
  }
}
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
}