@font-face {
  font-family: "AvertaStd-Regular";
  src: url("../font/AvertaStd-Regular.ttf") format("truetype"); }
@font-face {
  font-family: "AvertaStd-Bold";
  src: url("../font/AvertaStd-Bold.ttf") format("truetype"); }
@font-face {
  font-family: "AvertaStd-Semibold";
  src: url("../font/AvertaStd-Semibold.ttf") format("truetype"); }
@font-face {
  font-family: "Satoshi-Medium";
  src: url("../font/Satoshi-Medium.otf") format("truetype"); }
@font-face {
  font-family: "Satoshi-Bold";
  src: url("../font/Satoshi-Bold.otf") format("truetype"); }
@font-face {
  font-family: "Satoshi-Light";
  src: url("../font/Satoshi-Light.otf") format("truetype"); }
.primary-btn {
  padding: 0.7rem 1.5rem;
  border-radius: 0.5rem;
  background-color: black;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  color: white;
  line-height: 1;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: center; }
  .disabled.primary-btn {
    opacity: 0.6;
    cursor: not-allowed; }
  .primary-btn:hover {
    text-decoration: none;
    background-color: white;
    color: black; }

.badge {
  background-color: #49c5b6;
  font-size: 0.75rem;
  padding: 0.5rem;
  margin-bottom: 0.5rem; }
  .badge.out-of-stock {
    background-color: #E74C3C; }

.invoice-list .invoice-card {
  border: 1px solid #bdc3c7;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 1rem; }
  .invoice-list .invoice-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px); }
  .invoice-list .invoice-card .invoice-header {
    background: #ecf0f1;
    padding: 1rem;
    border-bottom: 1px solid #bdc3c7; }
    .invoice-list .invoice-card .invoice-header .invoice-number {
      font-weight: 600;
      color: #2c3e50;
      font-size: 1.1rem; }
    .invoice-list .invoice-card .invoice-header .invoice-date {
      color: #7f8c8d;
      font-size: 0.9rem; }
  .invoice-list .invoice-card .invoice-body {
    padding: 1rem; }
    .invoice-list .invoice-card .invoice-body .customer-info .customer-name {
      font-weight: 600;
      margin-bottom: 0.25rem; }
    .invoice-list .invoice-card .invoice-body .customer-info .customer-contact {
      color: #7f8c8d;
      font-size: 0.9rem; }
    .invoice-list .invoice-card .invoice-body .invoice-amount {
      text-align: right; }
      .invoice-list .invoice-card .invoice-body .invoice-amount .amount {
        font-size: 1.25rem;
        font-weight: 600;
        color: #2c3e50; }
      .invoice-list .invoice-card .invoice-body .invoice-amount .status {
        display: inline-block;
        padding: 0.25rem 0.75rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase; }
        .invoice-list .invoice-card .invoice-body .invoice-amount .status.status-draft {
          background: #f8f9fa;
          color: #6c757d;
          border: 1px solid #dee2e6; }
        .invoice-list .invoice-card .invoice-body .invoice-amount .status.status-sent {
          background: #fff3cd;
          color: #856404;
          border: 1px solid #ffeaa7; }
        .invoice-list .invoice-card .invoice-body .invoice-amount .status.status-paid {
          background: #d1edff;
          color: #0c5460;
          border: 1px solid #bee5eb; }
        .invoice-list .invoice-card .invoice-body .invoice-amount .status.status-overdue {
          background: #f8d7da;
          color: #721c24;
          border: 1px solid #f5c6cb; }
  .invoice-list .invoice-card .invoice-actions {
    padding: 1rem;
    border-top: 1px solid #bdc3c7;
    background: #f8f9fa; }
    .invoice-list .invoice-card .invoice-actions .btn-group .btn {
      padding: 0.375rem 0.75rem;
      font-size: 0.875rem; }
      .invoice-list .invoice-card .invoice-actions .btn-group .btn i {
        margin-right: 0.25rem; }

.invoice-form .form-section {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #bdc3c7; }
  .invoice-form .form-section .section-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ecf0f1; }
    .invoice-form .form-section .section-title i {
      margin-right: 0.5rem; }
.invoice-form .items-table .table th {
  background: #2c3e50;
  color: white;
  border: none;
  font-weight: 600;
  padding: 1rem; }
.invoice-form .items-table .table td {
  padding: 1rem;
  vertical-align: middle; }
  .invoice-form .items-table .table td .form-control {
    border: 1px solid #bdc3c7; }
    .invoice-form .items-table .table td .form-control:focus {
      border-color: #2c3e50;
      box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25); }
  .invoice-form .items-table .table td .total-price {
    background: #ecf0f1;
    font-weight: 600;
    text-align: center; }
.invoice-form .items-table .table .item-row:hover {
  background: #f8f9fa; }
.invoice-form .totals-section {
  background: #ecf0f1;
  border-radius: 8px;
  padding: 1.5rem; }
  .invoice-form .totals-section .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #bdc3c7; }
    .invoice-form .totals-section .total-row:last-child {
      border-bottom: none;
      font-weight: 600;
      font-size: 1.1rem;
      color: #2c3e50; }

.invoice-view .invoice-header {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid #bdc3c7; }
  .invoice-view .invoice-header .company-info h1 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem; }
  .invoice-view .invoice-header .company-info p {
    margin-bottom: 0.25rem;
    color: #7f8c8d; }
  .invoice-view .invoice-header .invoice-meta {
    text-align: right; }
    .invoice-view .invoice-header .invoice-meta h2 {
      color: #2c3e50;
      font-weight: 700;
      margin-bottom: 1rem; }
.invoice-view .customer-section {
  background: #ecf0f1;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem; }
  .invoice-view .customer-section h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem; }
.invoice-view .items-section .table th {
  background: #2c3e50;
  color: white;
  border: none;
  font-weight: 600;
  padding: 1rem; }
.invoice-view .items-section .table td {
  padding: 1rem;
  border-color: #bdc3c7; }
.invoice-view .items-section .table tbody tr:last-child td {
  border-bottom: 1px solid #bdc3c7; }
.invoice-view .bank-details {
  background: #ecf0f1;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0; }
  .invoice-view .bank-details h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1rem; }

@media (max-width: 768px) {
  .invoice-list .invoice-card .invoice-body .invoice-amount {
    text-align: left;
    margin-top: 1rem; }

  .invoice-form .items-table .table {
    display: block;
    overflow-x: auto; }
    .invoice-form .items-table .table th,
    .invoice-form .items-table .table td {
      white-space: nowrap; }

  .invoice-view .invoice-header {
    text-align: center; }
    .invoice-view .invoice-header .invoice-meta {
      text-align: center;
      margin-top: 1rem; } }
@media print {
  .invoice-view .invoice-header,
  .invoice-view .customer-section,
  .invoice-view .items-section,
  .invoice-view .bank-details {
    border: none;
    box-shadow: none; }
  .invoice-view .no-print {
    display: none !important; } }
.invoice-status {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase; }
  .invoice-status.draft {
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6; }
  .invoice-status.sent {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7; }
  .invoice-status.paid {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb; }
  .invoice-status.overdue {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb; }

.amount-positive {
  color: #27ae60;
  font-weight: 600; }

.amount-negative {
  color: #e74c3c;
  font-weight: 600; }

/* Mobile responsiveness */
.invoice-form .form-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid #dee2e6; }
.invoice-form .section-title {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e9ecef; }

.items-table th {
  background: #2c3e50 !important;
  color: white;
  border: none;
  font-weight: 600; }
.items-table td {
  vertical-align: middle; }

.totals-section {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid #dee2e6; }

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid #dee2e6; }
  .total-row:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50; }

@media (max-width: 768px) {
  .table-responsive {
    font-size: 0.875rem; }

  .items-table th {
    padding: 0.5rem; }
  .items-table td {
    padding: 0.5rem; }

  .btn-group {
    flex-direction: column;
    gap: 0.25rem; }
    .btn-group .btn {
      margin: 0 !important; }

  .d-block.d-md-none .space-y-3 > * + * {
    margin-top: 1rem; }

  .item-description-head {
    display: none; } }
#invoice_view .card-body address img {
  width: 6rem;
  margin-bottom: 0.7rem; }

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
span,
label,
button {
  margin: 0;
  font-weight: 400;
  color: #222;
  line-height: 1.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "AvertaStd-regular"; }

body {
  background-color: #f8f9fa;
  font-family: "AvertaStd-Regular"; }

.section-title {
  margin-bottom: 2rem;
  font-family: "AvertaStd-Semibold"; }

.section {
  margin-bottom: 3rem; }

.content-wrapper {
  position: relative;
  max-width: 25rem;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 2rem; }
  .content-wrapper p {
    font-size: 1.2rem; }

#login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; }
  #login .logo {
    margin-bottom: 0.7rem; }
    #login .logo img {
      width: 8rem; }

nav {
  background-color: #fff;
  border-bottom: 1px solid #ebebeb;
  height: 80px;
  position: relative;
  z-index: 2;
  position: sticky;
  top: 0; }
  nav[aria-label="breadcrumb"] {
    background-color: unset;
    height: unset;
    z-index: 1; }
  nav .nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between; }
  nav .nav-mobile-burger {
    background: 0 0;
    border: 0;
    float: right;
    margin-top: 1.4rem;
    padding-left: 2px;
    padding-right: 2px;
    background-image: url("../img/icon/burger-menu.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 2rem;
    height: 2rem;
    display: none; }
  nav .nav-header {
    height: 100%; }
    nav .nav-header img {
      width: 6rem; }
    nav .nav-header .nav-site {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: #222;
      display: block;
      float: left;
      font-size: 1.5rem;
      font-weight: 500;
      letter-spacing: -0.01em;
      line-height: 1;
      padding: 8px;
      text-decoration: none;
      text-rendering: optimizeLegibility;
      font-family: "AvertaStd-Semibold";
      margin-left: 0.3rem; }
  nav .nav-menu-container {
    display: flex; }
    nav .nav-menu-container ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: center;
      align-items: center; }
      nav .nav-menu-container ul li {
        font-size: 1.3rem;
        padding: 10px 12px;
        cursor: pointer; }
        nav .nav-menu-container ul li a {
          color: black;
          text-decoration: none;
          padding: 10px 12px; }
          nav .nav-menu-container ul li a:hover {
            background-color: #f2f2f2;
            color: #000;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            border-radius: 8px;
            display: block;
            font-weight: 500;
            padding: 10px 12px;
            line-height: 1.25;
            position: relative;
            text-decoration: none;
            text-rendering: optimizeLegibility; }

#offcanvas ul.nav-menu-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: left;
  align-items: initial;
  flex-direction: column; }
  #offcanvas ul.nav-menu-list li {
    font-size: 1.3rem;
    padding: 10px 12px;
    cursor: pointer; }
    #offcanvas ul.nav-menu-list li:hover {
      background-color: #f2f2f2;
      color: #000;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      border-radius: 8px;
      display: block;
      font-weight: 500;
      padding: 10px 12px;
      line-height: 1.25;
      position: relative;
      text-decoration: none;
      text-rendering: optimizeLegibility; }
    #offcanvas ul.nav-menu-list li a {
      color: black;
      text-decoration: none;
      padding: 10px 12px; }

@media screen and (max-width: 767.98px) {
  nav .nav-mobile-burger {
    display: block; }
  nav .nav-menu-container {
    display: none; } }
#main {
  min-height: 70vh; }

footer {
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  padding-bottom: 24px;
  padding-top: 24px; }
  footer .footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center; }
    footer .footer-copyright span {
      font-weight: 200; }
    footer .footer-copyright .footer-social-media a {
      text-decoration: none;
      color: black;
      margin-left: 0.3rem; }
      footer .footer-copyright .footer-social-media a img {
        width: 1.3rem; }
        footer .footer-copyright .footer-social-media a img[alt="youtube"] {
          width: 1.5rem; }
        footer .footer-copyright .footer-social-media a img[alt="threads"] {
          width: 1.5rem; }

@media screen and (max-width: 538.98px) {
  footer .footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column-reverse;
    gap: 0.5rem; } }
@media screen and (max-width: 360px) {
  footer .footer-copyright {
    text-align: center; } }
