@import url("https://fonts.googleapis.com/css2?family=Caprasimo&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jua&display=swap");
/* =========================================
   1. VARIABLES & GLOBAL STYLES
   ========================================= */
:root {
  --primary-red: #d50946;
  --dark-maroon: #5d0e26;
  --cream-bg: #f8f5eb;
  --main-font: "Jua", sans-serif;
  --heading-font: "Caprasimo", sans-serif;
  --admin-accent: #7d3f5b;
  --admin-hover: #6a3450;
  --admin-gray: #999999;
}

body {
  background-color: var(--cream-bg);
  font-family: var(--main-font);
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
}

/* =========================================
   2. TYPOGRAPHY
   ========================================= */
.text1 {
  text-shadow: 0px 5.21px 5.21px #00000040;
  color: #000000;
  font-size: 41.7px;
  font-family: "Hind-SemiBold", Helvetica;
  font-weight: 500;
}

.text2 {
  color: #757575;
  font-size: 20px;
  font-family: "Hind-regular", Helvetica;
  font-weight: 300;
}

.text3 {
  font-family: "Hind-SemiBold", Helvetica;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.25rem);
}

.caprasimo {
  font-family: var(--heading-font);
}
.jua {
  font-family: "Jua", sans-serif;
}

.caps {
  font-family: "Caprasimo", system-ui;
}

.text-primary-custom {
  color: var(--primary-red) !important;
}

.term-custom {
  color: var(--admin-accent) !important;
}

/* =========================================
   3. SIDEBAR NAVIGATION
   ========================================= */
.navcontainer {
  min-width: 0;
  height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(93, 14, 38, 1) 0%,
    rgba(195, 29, 80, 1) 100%
  ) !important;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-x: hidden !important;
}

@media (min-width: 992px) and (max-width: 1119.98px) {
  .navcontainer {
    min-width: 0 !important;
  }

  .navcontainer .row.ps-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .navcontainer .img-fluid {
    width: 100% !important;
    max-width: 200px;
    height: auto;
  }

  .nav-item {
    padding: 10px 14px !important;
    gap: 10px;
  }

  .dt-search {
    width: 100%;
  }

  .dt-search .dt-input {
    min-width: 0 !important;
    width: 100% !important;
  }

  #actual_wrapper .dt-layout-row {
    flex-wrap: wrap !important;
    row-gap: 10px;
  }
}

@media (min-width: 992px) {
  .navcontainer {
    position: sticky;
    top: 0;
  }
}

.sidebar-logo-section {
  padding: 40px 20px;
  text-align: center;
}

.sidebar-logo-section img {
  max-width: 150px;
  height: auto;
}

.nav-links-group {
  flex-grow: 1;
}

.nav-item {
  display: flex !important;
  align-items: center !important;
  padding: 10px 25px !important;
  width: 100%;
  color: #ffffff !important;
  text-decoration: none !important;
  transition: background 0.3s ease;
  gap: 15px;
  border: none !important;
  background: transparent;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.nav-item i {
  width: 25px;
  font-size: 1.2rem;
  text-align: center;
}

/* Logout Section Fixes */
.navlogout {
  margin-top: auto;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* =========================================
   4. DATA TABLES & OVERFLOW
   ========================================= */
#actual {
  border: none !important;
  background-color: transparent !important;
  border-collapse: separate !important;
  border-spacing: 0 10px !important;
  width: 100% !important;
  text-align: center;
  table-layout: fixed !important;
}


#actual tbody tr.selected > * {
    background-color: #212529 !important;
    color: #ffffff !important;      
    box-shadow: none !important;    
}

#actual tbody tr.selected {
    border-left: 4px solid #7d3f5b !important;
}


#actual tbody tr.selected:hover > * {
    background-color: #1a1e21 !important; 
    color: #ffffff !important;
}

.table-custom thead th {
  background-color: var(--admin-accent) !important;
  color: white !important;
  border: none !important;
  text-transform: uppercase;
  font-size: 12px;
  position: relative !important;
  padding: 15px !important;
  text-align: center !important;
  white-space: nowrap !important;
  position: relative;
}

.table-custom thead th .dt-column-order {
  position: absolute !important;
  right: 5px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

#actual th, #actual td {
        white-space: normal !important; 
        word-break: break-word;       
        vertical-align: middle;
    }

#actual td.action-cell {
    white-space: nowrap !important;
    width: 1%;
    padding-right: 15px;
}

.action-cell {
        white-space: normal !important; 
        min-width: 120px;
    }
    
    .action-cell button {
        display: inline-block;
        margin: 2px 0;
        width: 100%;
    }

.table-img-sm {
    max-width: 100% !important;
    height: auto !important;
}

.wrap-text {
    min-width: 120px;
    max-width: 160px;
    word-wrap: break-word;
}

.badge {
    white-space: normal !important;
    line-height: 1.2;
    max-width: 100px; 
    display: inline-block;
}

.table-custom tbody tr td {
  background-color: white !important;
  border-top: 1px solid #dee2e6 !important;
  border-bottom: 1px solid #dee2e6 !important;
  padding: 12px !important;
  text-align: center !important;
  vertical-align: middle !important;
  white-space: nowrap;
}

.table-custom tfoot tr td {
  background-color: white !important;
  border-top: 1px solid #dee2e6 !important;
  border-bottom: 1px solid #dee2e6 !important;
  padding: 12px !important;
  text-align: center !important;
  vertical-align: middle !important;
  white-space: nowrap;
}

.table-custom tbody tr td:first-child {
  border-left: 1px solid #dee2e6 !important;
  border-top-left-radius: 8px !important;
  border-bottom-left-radius: 8px !important;
}

.table-custom tbody tr td:last-child {
  border-right: 1px solid #dee2e6 !important;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}

.truncate-text {
  max-width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-text:hover {
  overflow: visible;
  white-space: normal;
  word-break: break-all;
  background-color: #fff !important;
  position: relative;
  z-index: 10;
  cursor: help;
}

.table-img-sm {
  width: 45px !important;
  height: 45px !important;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #ddd;
}

/* Ensure the select inside the button looks like the button text */
.filter-btn select {
  color: white;
  outline: none;
  font-weight: 500;
}

.filter-btn select option {
  background-color: white; /* Makes options readable */
  color: black;
}

/* Search input design */
.dt-search {
  position: relative !important;
  display: inline-flex !important;
  align-items: center;
  margin-bottom: 15px;
}

.dt-search label {
  display: none !important;
}

.dt-search .dt-input {
  background-color: #ffffff !important;
  border: 1px solid #d1d5db !important;
  border-radius: 20px !important;
  padding: 8px 15px 8px 35px !important;
  min-width: 200px !important;
  outline: none !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05) !important;
  color: #2d3748 !important;
  font-size: 14px !important;
  transition: all 0.3s ease;
}

.dt-search .dt-input:focus {
  border-color: var(--admin-accent) !important;
  box-shadow: 0 0 0 3px rgba(125, 63, 91, 0.2) !important;
}

.dt-search::before {
  content: "\f52a";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 15px;
  pointer-events: none;
  z-index: 10;
}

/* =========================================
   5. MODAL & IMAGE PREVIEW FIXES
   ========================================= */
.modal-dialog {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  border-radius: 15px;
  border: none;
  overflow: hidden;
}

.modal-header {
  background-color: var(--dark-maroon);
  color: white;
}

.modal button {
  border-radius: 20px !important;
  padding: 10px 25px !important;
}

.btn-close {
  filter: brightness(0) invert(1); /* Makes close button white */
}

.image-preview-container {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  border: 1px dashed #ddd;
  border-radius: 8px;
  padding: 10px;
  min-height: 150px;
  overflow: hidden;
}

.image-preview {
  max-height: 200px; /* Forces bouquet image to stay inside modal */
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.modal-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* =========================================
   6. BUTTONS & PAGINATION
   ========================================= */
.action-btn {
  border: none !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-size: 12px !important;
  font-weight: 500;
  transition: 0.3s;
}

.edit-btn {
  background-color: var(--admin-accent) !important;
  color: white !important;
}
.delete-btn {
  background-color: var(--admin-gray) !important;
  color: white !important;
  margin-left: 5px;
}

.btn-primary-custom {
  background-color: var(--admin-accent) !important;
  color: white !important;
  border-radius: 20px !important;
  padding: 10px 25px !important;
  border: none !important;
}

.btn-address {
  background-color: transparent !important;
  color: var(--primary-red) !important;
  border: 1px solid var(--primary-red) !important;
  border-radius: 20px !important;
  transition: all 0.3s ease;
  font-weight: 500;
}

.btn-address:hover {
  background-color: var(--primary-red) !important;
  color: #ffffff !important;
}

div.dt-buttons button.filter-btn {
  background-color: var(--admin-accent) !important;
  color: white !important;
  border-radius: 20px !important;
  border: none !important;
  font-size: 13px !important;
}

.filter-btn {
  background-color: var(--admin-accent) !important;
  color: white !important;
  border-radius: 20px !important;
  padding: 8px 16px !important;
  border: none !important;
}

.filter-btn-view-archive {
  background-color: #ffc107 !important;
  color: white !important;
  border-radius: 20px !important;
  padding: 8px 16px !important;
  border: none !important;
}

.filter-btn-view-active {
  background-color: #198754 !important;
  color: white !important;
  border-radius: 20px !important;
  padding: 8px 16px !important;
  border: none !important;
}

.dt-container .dt-paging .dt-paging-button:not(.current):hover {
  background: var(
    --admin-hover
  ) !important; /* Wipes out the default grey gradient */
  background-color: var(--admin-hover) !important;
  color: white !important;
  border: 1px solid var(--admin-hover) !important;
  outline: none !important;
  box-shadow: none !important;
}

.dt-container .dt-paging .dt-paging-button.current,
.dt-container .dt-paging .dt-paging-button.current:hover {
  background: var(--admin-accent) !important;
  background-color: var(--admin-accent) !important;
  color: white !important;
  border: 1px solid var(--admin-accent) !important;
}

.dt-container .dt-paging .dt-paging-button:hover *,
.dt-container .dt-paging .dt-paging-button.current * {
  color: white !important;
}

#actual_wrapper .dt-paging-button.current {
  color: white !important;
}

.swal2-actions .swal2-styled {
  border-radius: 20px !important;
}

/* =========================================
   9. ADMIN PROFILE STYLES
   ========================================= */
.main-content-profile {
  background-color: white;
  min-height: 100vh;
}

.profile-picture-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #eee;
}

.profile-image-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e9ecef;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.profile-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--dark-maroon) 0%,
    var(--admin-accent) 100%
  );
  color: white;
  font-size: 48px;
}

.select-image-btn {
  background-color: var(--admin-accent);
  color: white !important;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.select-image-btn:hover {
  background-color: var(--admin-hover);
}

.form-group-custom {
  margin-bottom: 25px;
}

.form-label-custom {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  font-size: 14px;
  display: block;
}

.form-control-custom {
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  transition: 0.3s;
}

.form-control-custom:focus {
  border-color: var(--admin-accent);
  box-shadow: 0 0 0 3px rgba(125, 63, 91, 0.1);
  outline: none;
}

.section-title-profile {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f1f1f1;
}

.change-password-btn {
  background-color: var(--admin-accent);
  color: white !important;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.save-changes-btn {
  background-color: var(--dark-maroon);
  color: white !important;
  border: none;
  padding: 12px 40px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.save-changes-btn:hover {
  background-color: #4a0b1e;
  transform: translateY(-1px);
}

/* =========================================
   10. DATA TABLES & BUTTONS INTEGRATION
   ========================================= */

div.dt-buttons button.filter-btn {
  background-color: var(--admin-accent) !important;
  background-image: none !important;
  color: white !important;
  border: none !important;
  padding: 8px 16px !important;
  border-radius: 20px !important;
  font-size: 13px !important;
  transition: 0.3s ease;
}

div.dt-buttons button.filter-btn:hover {
  background-color: var(--admin-hover) !important;
}

.dt-paging {
  display: flex !important;
  gap: 8px !important;
  justify-content: center !important;
  margin-top: 25px !important;
  align-items: center !important;
}

.dt-paging-button {
  padding: 6px 10px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  font-size: 13px !important;
  text-decoration: none !important;
  color: #2d3748 !important;
  transition: all 0.3s ease !important;
  background-color: white !important;
}

.dt-paging-button.current {
  background-color: var(--admin-accent) !important;
  color: white !important;
  border-color: var(--admin-accent) !important;
}

.dt-paging-button:hover:not(.disabled):not(.current) {
  background-color: #e5e5e5 !important;
  border-color: var(--admin-accent) !important;
}

.log-activity-cell {
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.log-activity-cell:hover {
  white-space: normal;
  overflow: visible;
  background-color: #fff !important;
  position: relative;
  z-index: 5;
}

/* =========================================
   11. CUSTOMER PAGE - ARRANGEMENTS
   ========================================= */

.arrangement-hero-section {
  background:
    linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("images/1775446159_lilies.jpg");
  background-size: cover;
  background-position: center;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.arrangement-hero-title {
  color: white;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-family: var(--heading-font);
  font-weight: 800;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.category-section-header {
  font-family: var(--heading-font);
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--primary-red);
}

.nav-pills {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
}

.nav-pills .nav-link.text-colors {
    color: var(--primary-red);
    padding: 8px 20px;
    display: inline-block;
    text-decoration: none;
    background-color: transparent;
    border-radius: 50px !important;  
    transition: all 0.3s ease-in-out;
}

/* Hover state */
.nav-pills .nav-link.text-colors:hover {
    background-color: var(--primary-red) !important;
    color: white !important;
    border-radius: 50px !important;
}

.category-divider {
  border-top: 2px solid #e0d5c1;
  margin-bottom: 32px;
}



.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: none;
    transition: box-shadow 0.3s ease;
}

@media (max-width: 576px) {
    .featured-img-container {
        height: 200px;
    }
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card .img-container {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.product-card .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .img-container img {
  transform: scale(1.05);
}

.product-info {
    text-align: center;
    padding-top: 15px;
    width: 100%;
}

.product-name {
  font-family: "Jua", sans-serif;
  font-weight: 400;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--primary-red);
}

.product-description {
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 8px;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-family: "Hind-SemiBold", Helvetica;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-maroon);
}

@media (max-width: 768px) {
  .product-card .img-container {
    height: 280px;
  }
  .arrangement-hero-section {
    height: 180px;
  }
}

.listterms {
  color: var(--primary-red);
}

/* =========================================
   12. CUSTOMER HEADER & NAV
   ========================================= */
.primary-header {
  background-color: var(--primary-red);
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-logo {
  max-height: 65px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.nav-profile {
  width: 42px !important;
  height: 42px !important;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.secondary-nav {
  background-color: var(--dark-maroon);
}

.secondary-nav .nav-link {
  color: white !important;
  font-family: "Hind-SemiBold", Helvetica;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 8px 20px !important;
  transition: opacity 0.3s;
}

.secondary-nav .nav-link:hover {
  opacity: 0.8;
}

.search-form input {
  height: 40px;
  border: none;
  font-size: 14px;
}

.search-form .btn {
  border: none;
  background: transparent;
  color: #999;
}

body {
  overflow-x: hidden;
}

/* =========================================
   13. CUSTOMER PAGE SPECIFIC FIXES
   ========================================= */

.secondary-nav .nav-item {
  display: block !important;
  width: auto !important;
  padding: 0 !important;
  background: transparent !important;
}

.secondary-nav .nav-link {
  display: inline-block;
  color: white !important;
  font-weight: 600;
  padding: 10px 20px !important;
  text-transform: uppercase;
}

.footer {
  background-color: #da0746;
}

.footer-logo {
  display: block;
  margin-left: 0 !important;
  margin-right: auto !important;
  max-width: 150px;
  height: auto;
}

@media (max-width: 575.98px) {
  .footer .col-12.col-sm-6.col-lg-3:first-child {
    text-align: center;
  }

  .footer .col-12.col-sm-6.col-lg-3:first-child .clearfix {
    display: flex;
    justify-content: center;
  }

  .footer .col-12.col-sm-6.col-lg-3:first-child .footer-logo {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

.footer a {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #cccccc !important;
  text-decoration: none !important;
}

.footer a:focus,
.footer a:active,
.footer a:visited {
  color: #ffffff !important;
  text-decoration: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* =========================================
   14. FAQ PAGE STYLES
   ========================================= */
.faq-section h2 {
  font-family: var(--heading-font);
  color: var(--primary-red);
}

.faq-text-cell {
    white-space: normal !important;
    word-wrap: break-word;
    min-width: 200px;
    max-width: 400px;
}

.faq-accordion .accordion-item {
  margin-bottom: 20px;
  border: none;
  background-color: transparent;
}

.faq-accordion .accordion-button {
  background-color: white;
  color: var(--dark-maroon);
  font-family: "Hind-SemiBold", Helvetica;
  font-weight: 600;
  border-radius: 50px !important;
  padding: 15px 30px;
 box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--primary-red);
  color: white;
  box-shadow: none;
}

.faq-accordion .accordion-button:after {
  filter: sepia(100%) hue-rotate(300deg) saturate(500%);
}
.faq-accordion .accordion-button:not(.collapsed):after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-collapse {
  border: none;
  background-color: white;
  margin-top: -10px;
  padding-top: 10px;
  border-radius: 0 0 25px 25px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-body {
  padding: 20px 30px;
  font-family: var(--main-font);
  color: #555;
  line-height: 1.6;
}

/* =========================================
   15. AUTH PAGES (FORGOT PASSWORD / LOGIN)
   ========================================= */
.auth-content-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.auth-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  max-width: 500px;
  width: 90%;
  padding: 3rem !important;
}

.welcome-line {
  width: 70px;
  height: 6px;
  margin: 15px auto;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    #ff2e6f 0%,
    var(--primary-red) 50%,
    var(--dark-maroon) 100%
  );
}

.submit-btn-grad {
  background: linear-gradient(
    90deg,
    #ff2e6f 0%,
    var(--primary-red) 45%,
    var(--dark-maroon) 100%
  );
  color: white !important;
  border: none !important;
  border-radius: 25px !important;
  padding: 12px !important;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.submit-btn-grad:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(213, 9, 70, 0.3);
}

.bottom-bar {
  width: 100%;
  height: 50px;
  background-color: var(--primary-red);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  margin-top: auto;
}

/* =========================================
   16. HOMEPAGE SPECIFIC STYLES
   ========================================= */

.hero {
  height: 600px;
  position: relative;
  overflow: hidden;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.featured-products .product-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background-color: white;
  border: none !important;
}

.featured-products .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.featured-img-container {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f8f9fa;
}

.featured-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    transition: transform 0.3s ease;
}

.product-card:hover .featured-img-container img {
    transform: scale(1.05);
}

.pre-order {
  position: relative;
  padding: 100px 0;
}

.pre-order-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; 
  z-index: 0;
}

.pre-order .container {
  position: relative;
  z-index: 1;
}

.ig-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  transition: opacity 0.3s;
}

.welcome h2 {
  font-family: var(--heading-font);
  color: var(--primary-red);
}

.product-card a {
  text-decoration: none !important;
  color: inherit !important;
  display: block;
}

.product-card h5.text-primary-custom {
  color: var(--primary-red) !important;
  transition: 0.3s;
}

.product-card:hover h5.text-primary-custom {
  color: var(--dark-maroon) !important;
}

.btn-primary-homepage,
.btn-primary-homepage.disabled {
  background-color: var(--primary-red) !important;
  color: white !important;
  border-radius: 20px !important;
  padding: 10px 25px !important;
  border: none !important;
  opacity: 1 !important;
}

/* =========================================
   17. LOGIN PAGE SPECIFIC STYLES
   ========================================= */

.login-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  padding: 3rem !important;
}

.submit-btn {
  background: #ff2e6f;
  background: linear-gradient(
    90deg,
    #ff2e6f 0%,
    var(--primary-red) 45%,
    var(--dark-maroon) 100%
  );
  border: none !important;
  border-radius: 10px !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(211, 0, 61, 0.3);
}

.google-btn {
  transition: all 0.3s ease;
  border: 1px solid #ced4da !important;
  border-radius: 10px !important;
}

.google-btn:hover {
  color: white !important;
  border: none !important;
  background: linear-gradient(
    90deg,
    #ff2e6f 0%,
    var(--primary-red) 45%,
    var(--dark-maroon) 100%
  );
  box-shadow: 0 10px 20px rgba(214, 10, 58, 0.25);
}

.google-btn:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .login-card {
    padding: 2rem 1.5rem !important;
  }
}

/* =========================================
   18. ORDER & BOOKING PAGE
   ========================================= */
.product-img-display {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .product-img-display {
    height: 280px;
  }
}

.order-form-container {
  padding-left: 40px;
}

@media (max-width: 992px) {
  .order-form-container {
    padding-left: 0;
    margin-top: 30px;
  }
}

.form-control-pill {
  border-radius: 50px !important;
  padding: 12px 25px !important;
  border: 2px solid #f1f1f1 !important;
}

.form-control-pill:focus {
  border-color: var(--primary-red) !important;
  box-shadow: 0 0 0 0.25rem rgba(213, 9, 70, 0.1) !important;
}

.calendar-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark-maroon);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.cal-cell {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid #f8f9fa;
  cursor: pointer;
  transition: 0.2s;
  font-size: 14px;
}

.cal-cell:hover:not(.past-date, .bg-red) {
  background-color: #fff0f3;
}

.past-date {
  background-color: #f8f9fa;
  color: #ccc !important;
  cursor: not-allowed !important;
}

.bg-yellow {
  background-color: rgba(255, 224, 102, 0.6) !important;
  color: #333 !important;
}

.cal-cell.bg-red {
  background-color: rgba(255, 77, 77, 0.4) !important;
  color: #333 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

.cal-cell.selected-cell {
  background-color: rgba(40, 167, 69, 0.6) !important;
  color: #111 !important;
  font-weight: bold !important;
  border-radius: 5px !important;
}

.btn-proceed {
  background-color: var(--dark-maroon) !important;
  border-radius: 50px !important;
  padding: 12px !important;
  font-weight: 600;
  transition: 0.3s;
}

.addToCart-btn {
  background-color: var(--primary-red) !important;
  color: white !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 15px 20px !important;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    opacity 0.2s;
  display: block;
  width: 100%;
}

.addToCart-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
  color: white !important;
}

.addToCart-btn:active {
  transform: scale(0.98);
}

/* =========================================
   19. CONSISTENT BACK BUTTONS
   ========================================= */
.btn-back {
  background-color: transparent !important;
  border: 2px solid #ccc !important;
  color: #666 !important;
  border-radius: 50px !important;
  padding: 12px 30px !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-back:hover {
  border-color: var(--dark-maroon) !important;
  color: var(--dark-maroon) !important;
  background-color: #f8f9fa !important;
  transform: translateX(-5px);
}

.btn-container {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* =========================================
   20. OTP PAGE STYLES
   ========================================= */
.otp-input {
  text-align: center;
  letter-spacing: 5px;
  font-size: 24px;
  font-weight: 700;
  border: 2px solid #eee !important;
}

.otp-input:focus {
  border-color: var(--primary-red) !important;
}

@media (max-width: 576px) {
  .auth-content-wrapper {
    padding: 20px 10px;
  }

  .auth-card {
    width: 100%;
    padding: 1.5rem 1rem !important;
  }

  .auth-card .text1 {
    font-size: clamp(1.6rem, 7vw, 2rem) !important;
    line-height: 1.2;
  }

  .auth-card .text2 {
    font-size: 0.95rem !important;
  }

  .auth-card .otp-input {
    font-size: 1.25rem;
    letter-spacing: 3px;
  }
}

/* =========================================
   21. REGISTRATION PAGE STYLES
   ========================================= */

.register-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  padding: 3rem !important;
}

.register-line {
  width: 70px;
  height: 6px;
  margin: 15px auto;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    #ff2e6f 0%,
    var(--primary-red) 50%,
    var(--dark-maroon) 100%
  );
}

.createAccount-btn {
  background: #ff2e6f;
  background: linear-gradient(
    90deg,
    #ff2e6f 0%,
    var(--primary-red) 45%,
    var(--dark-maroon) 100%
  );
  border: none !important;
  border-radius: 10px !important;
  padding: 12px !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.createAccount-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(211, 0, 61, 0.3);
}

.password-requirements {
  list-style: none;
  padding-left: 0;
  color: #6c757d;
}

.password-requirements li::before {
  content: "• ";
  color: var(--primary-red);
  font-weight: bold;
}

@media (max-width: 768px) {
  .register-card {
    padding: 2rem 1.5rem !important;
    width: 95% !important;
  }
}

@media (max-width: 576px) {
  .auth-content-wrapper {
    padding: 20px 10px;
  }

  .register-card {
    width: 100% !important;
    padding: 1.25rem 0.9rem !important;
  }
}

/* =========================================
   22. PASSWORD RESET PAGE STYLES
   ========================================= */

.reset-card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  max-width: 600px;
  width: 90%;
  padding: 3rem !important;
}

.reset-line {
  width: 70px;
  height: 6px;
  margin: 15px auto;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    #ff2e6f 0%,
    var(--primary-red) 50%,
    var(--dark-maroon) 100%
  );
}

.reset-requirements {
  list-style: none;
  padding-left: 0;
  color: #6c757d;
}

.reset-requirements li::before {
  content: "• ";
  color: var(--primary-red);
  font-weight: bold;
}

/* =========================================
   23. CUSTOMER DASHBOARD (PROFILE & ORDERS)
   ========================================= */

.dashboard-container {
  display: flex !important;
  background-color: white !important;
  min-height: 700px;
  border-radius: 20px;
  overflow: hidden;
}

.dashboard-sidebar {
  background-color: #7b112b !important;
  width: 280px !important;
  min-height: 100vh;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}

.profile-content {
  flex-grow: 1;
  padding: 40px 50px;
  background-color: white;
  max-width: calc(100% - 280px);
  overflow-x: hidden;
}

.sidebar-inner {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.sidebar-profile-img {
  width: 90px !important;
  height: 90px !important;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.online-indicator {
  position: absolute;
  bottom: 12px;
  right: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #7b112b;
}

.user-role-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.sidebar-link,
.sidebar-item,
.sidebar-logout-link {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.sidebar-link:hover,
.sidebar-item:hover {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(3px);
}

.sidebar-link.active,
.sidebar-item.active-item {
  color: #ffffff !important;
  font-weight: bold !important;
  background-color: rgba(255, 255, 255, 0.2);
}

.sidebar-logout-link:hover {
  color: #ff6b6b !important;
  background-color: rgba(255, 255, 255, 0.05);
}

.filter-pill {
  background-color: #5d0e26;
  color: white !important;
  border-radius: 50px;
  padding: 6px 25px;
  font-size: 13px;
  border: none;
  opacity: 0.8;
}

.filter-pill.active {
  background-color: #5d0e26 !important;
  opacity: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.search-input {
  border-radius: 8px !important;
  padding: 10px 10px 10px 45px !important;
  border: 1.5px solid #ccc !important;
  font-size: 14px;
}

.order-card-final {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eee !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.order-img-large {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
}

.pagination-custom .page-link {
  border: none;
  color: #666;
  background: transparent;
  padding: 8px 15px;
  margin: 0 5px;
}

.pagination-custom .active .page-link {
  background-color: transparent !important;
  border: 1.5px solid #333 !important;
  border-radius: 8px;
  color: #333 !important;
  font-weight: bold;
}

.text-warning {
  color: #d4af37 !important;
}
.text-success {
  color: #28a745 !important;
}
.text-danger {
  color: #d50946 !important;
}

.filter-ongoing {
  background-color: #0d6efd !important;
  color: white !important;
}
.filter-ongoing:hover,
.filter-ongoing.active {
  background-color: #0d6efd !important;
  color: white !important;
  opacity: 1;
}

.filter-pending {
  background-color: #ffc107 !important;
  color: #000 !important;
}
.filter-pending:hover,
.filter-pending.active {
  background-color: #ffc107 !important;
  color: #000 !important;
  opacity: 1;
}

.filter-completed {
  background-color: #198754 !important;
  color: white !important;
}
.filter-completed:hover,
.filter-completed.active {
  background-color: #198754 !important;
  color: white !important;
  opacity: 1;
}

.filter-cancelled {
  background-color: #dc3545 !important;
  color: white !important;
}
.filter-cancelled:hover,
.filter-cancelled.active {
  background-color: #dc3545 !important;
  color: white !important;
  opacity: 1;
}

.filter-all {
  color: white !important;
  background-color: var(--admin-accent) !important;
  border: 1px solid var(--admin-accent) !important;
  transition: all 0.3s ease;
}

.filter-all.active,
.filter-all:hover {
  background-color: var(--admin-hover) !important;
  color: white !important;
  border-color: var(--admin-hover) !important;
}

@media (max-width: 991.98px) {
  .dashboard-container {
    min-height: auto;
    flex-direction: column !important;
  }

  .dashboard-sidebar {
    width: 100% !important;
    min-height: auto;
    padding: 20px 16px !important;
  }

  .sidebar-inner {
    padding: 20px 16px !important;
  }

  .profile-content {
    padding: 20px 16px;
    max-width: 100%;
  }

  .order-card-final {
    padding: 14px;
  }
}

/* =========================================
   24. PROFILE PAGE ENHANCEMENTS
   ========================================= */

.profile-main-flex {
  display: flex;
  gap: 50px;
  width: 100%;
}

.input-group-custom {
  position: relative;
  max-width: 650px;
}

.edit-link {
  position: absolute;
  right: 20px;
  top: 38px;
  color: var(--primary-red);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.edit-link:hover {
  color: var(--dark-maroon);
}

.photo-section {
  width: 280px;
  padding: 30px;
  border-left: 1px solid #f1f1f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.big-profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.auth-section-title {
  color: #888;
  font-size: 1.8rem;
  font-weight: 300;
  margin-top: 40px;
  margin-bottom: 25px;
}

.btn-save {
  background-color: var(--dark-maroon);
  color: white;
  padding: 12px 45px;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  transition: var(--transition);
  margin-top: 30px;
}

.btn-save:hover {
  background-color: #3d0918;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .profile-main-flex {
    flex-direction: column-reverse;
  }
  .photo-section {
    border-left: none;
    border-bottom: 1px solid #eee;
    width: 100%;
  }
}

.custom-card-color {
  background-color: transparent !important;

  background-image: linear-gradient(
    135deg,
    #d50946 0%,
    #5d0e26 100%
  ) !important;

  color: white !important;
  border: none !important;
  border-radius: 15px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* =========================================
   25. PASSWORD FIELD WITH EYE ICON (GLOBAL)
   ========================================= */

.pass-group {
  display: flex !important;
  width: 100%;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
}

.pass-input {
  border: 1px solid #e2e8f0 !important;
  border-radius: 4px 0 0 4px !important;
  border-right: none !important;
  padding: 10px 12px;
  font-size: 14px;
  flex: 1;
  min-width: 0;
  transition: border-color 0.3s;
  background-color: #ffffff;
}

.pass-icon-append {
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-left: none !important;
  border-radius: 0 4px 4px 0 !important;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: 0 12px;
  color: #6c757d;
  cursor: pointer;
  transition: border-color 0.3s;
}

.pass-input:focus {
  border-color: var(--admin-accent) !important;
  box-shadow: 0 0 0 3px rgba(125, 63, 91, 0.1);
  outline: none;
  box-shadow: none !important;
}

.pass-group:focus-within {
  box-shadow: 0 0 0 3px rgba(125, 63, 91, 0.1) !important;
}

.pass-group:focus-within .pass-input,
.pass-group:focus-within .pass-icon-append {
  border-color: var(--admin-accent) !important;
}

.pass-group:focus-within .pass-input,
.pass-group:focus-within .pass-icon-append {
  border-color: var(--admin-accent) !important;
  box-shadow: 0 0 0 3px rgba(125, 63, 0, 0);
}

.frosted-div {
  background-color: rgba(255, 255, 255, 0.4);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px;
}

/* =========================================
   26. ADMIN DASHBOARD ENHANCEMENTS
   ========================================= */

/* Button: Generate Report */
.button-report {
  background-color: var(--admin-accent);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: "Hind-SemiBold", Helvetica;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-report:hover {
  background-color: var(--admin-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.button-report .text4 {
  color: white !important;
}

#timelineDropdownWrapper .dropdown-item.active {
  background-color: var(--admin-accent) !important;
  color: white !important;
}

#timelineDropdownWrapper .dropdown-item.active i {
  color: white !important;
}

fieldset {
  border-radius: 5px;
  border: 1px solid #ccc;
}

#salesTimeframePills .btn-outline-primary {
  color: #d50946;
  border-color: #d50946;
}

#salesTimeframePills .btn-outline-primary:hover,
#salesTimeframePills .btn-outline-primary:active,
#salesTimeframePills .btn-outline-primary.active {
  background-color: #d50946 !important;
  border-color: #d50946 !important;
  color: #ffffff !important;
}

.dashboard-hr {
  border: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.5);
  margin: 20px 0 30px 0;
}

.noti-dropdown {
  min-width: 320px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 0;
  margin-top: 10px !important;
}
.noti-header {
  padding: 12px 15px 0;
  position: relative;
}
.noti-tabs {
  border-bottom: 1px solid #dee2e6;
  display: flex;
  gap: 15px;
}
.noti-tab-link {
  padding: 8px 5px;
  font-family: "Jua", sans-serif;
  font-size: 0.9rem;
  color: #6c757d;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.noti-tab-link.active {
  color: #000;
  border-bottom-color: #0056b3;
}
.noti-body {
  padding: 40px 20px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

.header-icon-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 1.4rem;
  padding: 8px;
  border-radius: 5px;
  transition: background 0.2s;
}
.header-icon-btn:hover {
  background: rgba(213, 9, 70, 0.05);
  color: var(--primary-red);
}

/* =========================================
   26. ANNOUNCEMENTS
   ========================================= */

.announcement-banner {
  background-color: var(--admin-accent);
  padding: 10px 0;
  z-index: 1050;
  position: relative;
}
.promo-btn {
  background-color: var(--cream-bg);
  color: var(--admin-accent);
  border: 2px solid transparent;
  transition: all 0.2s ease-in-out;
}
.promo-btn:hover {
  background-color: transparent;
  color: var(--cream-bg);
  border-color: var(--cream-bg);
}

/* ========================================================
   LOGOUT HOVER SPECIFICITY OVERRIDE
   ======================================================== */

.sidebar-inner .mt-auto a.sidebar-logout-link:hover {
  color: #ffffff !important;
}

.sidebar-inner .mt-auto a.sidebar-logout-link:hover i {
  color: var(--primary-red) !important;
}

/* ========================================================
   27. MOBILE RESPONSIVE FOOTER OVERRIDES (MAX-WIDTH: 575.98px)
   ======================================================== */
@media (max-width: 575.98px) {
  /* 1. Shrink overall wrapper padding */
  .footer {
    padding-top: 2rem !important;  /* Reduced from pt-5 */
    padding-bottom: 1.5rem !important; /* Reduced from pb-4 */
  }

  /* 2. Force columns to full width and center text content */
  .footer .col-12 {
    text-align: center !important;
    margin-bottom: 1rem; /* Tighter spacing between sections */
  }

  /* 3. Center and downscale the brand logo */
  .footer .clearfix,
  .footer .d-flex {
    display: flex !important;
    justify-content: center !important;
    clear: both;
  }

  .footer .footer-logo,
  .footer .main-logo {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    max-height: 45px !important; /* Scales down the logo on mobile */
  }

  /* 4. Downscale typography sizing */
  .footer p.jua {
    font-size: 13px !important; /* Smaller tagline */
    margin-bottom: 1rem !important;
  }

  .footer h5.jua {
    display: inline-block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: fit-content;
    min-width: 100px;
    font-size: 14px !important; /* Smaller section headings */
    margin-bottom: 0.5rem !important;
    padding-bottom: 4px !important;
  }

  /* 5. Tighten line height and font sizing for standard link items */
  .footer ul.list-unstyled {
    margin-bottom: 1rem;
  }

  .footer ul.list-unstyled li {
    font-size: 13px !important; /* Compact link/text size */
    margin-bottom: 4px !important; /* Closer vertical stack gaps */
  }

  /* 6. Shrink bottom border bar and copyright node */
  .footer hr {
    margin-top: 1.5rem !important;
    margin-bottom: 1rem !important;
  }

  .footer .small {
    font-size: 11px !important; /* Miniature copyright text */
  }
}

/* =========================================
   MOBILE HORIZONTAL SUB-NAV
   ========================================= */
.mobile-sub-nav {
  background-color: #7b112b; /* Matches your dashboard card maroon */
  padding: 0;
  width: 100%;
}

.nav-scroll-wrapper {
  display: flex;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* Butter-smooth momentum scrolling on iOS */
  padding: 10px 15px;
  gap: 10px;
}

/* Hide standard scrollbars across browsers */
.nav-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.nav-scroll-wrapper {
  -ms-overflow-style: none;  /* IE/Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Tab styling */
.sub-nav-link {
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
  font-family: "Jua", sans-serif;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

/* Active tab highlighted state (matches your "My Orders" selection style) */
.sub-nav-link.active {
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: bold;
}

.sub-nav-link:active {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-danger-custom {
  color: #ff8787 !important;
}