/* =========================================================
   Refined Customer Portal Navbar
   ========================================================= */

/* Nav link base */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.2px;
  -webkit-transition: color 0.2s ease, background-color 0.2s ease;
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* Nav link hover */
.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

/* Nav link active */
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.12);
  font-weight: 500;
}

/* Override Bootstrap blue on active links */
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #ffffff !important;
}

/* Brand hover */
.navbar-dark .navbar-brand:hover {
  color: #ffffff;
  opacity: 0.9;
}

/* Toggler refined */
.navbar-dark .navbar-toggler {
  padding: 0.35rem 0.5rem;
  font-size: 0.85rem;
}

.navbar-dark .navbar-toggler:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
          box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.15);
}

/* Logout button hover */
.navbar .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #ffffff;
}

/* Mobile nav adjustments */
@media (max-width: 991.98px) {
  .navbar-dark .navbar-nav .nav-link {
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
  }

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

/* =========================================================
   Event Calendar - Bootstrap Style
   ========================================================= */
.calendar-card {
  border-radius: 1rem;
}

/* =========================================================
   Freelance Employees Management Styles
   ========================================================= */
.employee-avatar {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.employee-avatar-lg {
  width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.calendar-table {
  table-layout: fixed;
  margin-bottom: 0;
}

.calendar-table th {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--bs-secondary-color);
  padding: 0.6rem 0;
}

.calendar-table td {
  height: 46px;
  vertical-align: middle;
  padding: 2px;
  font-size: 0.88rem;
}

.calendar-day-cell {
  width: 36px;
  height: 36px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  font-weight: 500;
  color: var(--bs-body-color);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.calendar-day-cell.other-month {
  opacity: 0.25;
}

.calendar-day-cell.is-today {
  border-color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.calendar-day-cell.is-event {
  background-color: var(--bs-primary);
  color: #ffffff !important;
  font-weight: 700;
  -webkit-box-shadow: 0 0 8px rgba(13, 110, 253, 0.6);
          box-shadow: 0 0 8px rgba(13, 110, 253, 0.6);
}

/* =========================================================
   Quote Page Blue Card Headers & Dark Theme Styling
   ========================================================= */
body#quoterequest .card-header,
body#quoterequest .quote-panel-header,
body#quoterequest .panel-heading {
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  padding: 0.6rem 1rem !important;
  border-top-left-radius: 0.75rem !important;
  border-top-right-radius: 0.75rem !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
}

body#quoterequest .card {
  background-color: #1e2228;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
          box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  margin-bottom: 0.75rem !important;
}

body#quoterequest .card-body {
  padding: 0.85rem 1rem !important;
  color: #cbd5e1;
}

.quote-status-hero {
  background: linear-gradient(135deg, #1e242c 0%, #15181e 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 0.75rem 1.25rem;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0 4px 14px rgba(0,0,0,0.3);
          box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.calendar-day-cell.is-event {
  background-color: #0d6efd !important;
  color: #ffffff !important;
  font-weight: 700;
  -webkit-box-shadow: 0 0 12px rgba(13, 110, 253, 0.6);
          box-shadow: 0 0 12px rgba(13, 110, 253, 0.6);
  position: relative;
}

.calendar-day-cell.is-event::after {
  content: '';
  position: absolute;
  bottom: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ffc107;
}

.calendar-day-cell:hover:not(.other-month) {
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

/* Support Tickets Dropdowns */
.dropdown-menu.bg-dark .dropdown-item {
  color: var(--bs-body-color);
  -webkit-transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
}

.dropdown-menu.bg-dark .dropdown-item:hover,
.dropdown-menu.bg-dark .dropdown-item:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.dropdown-menu.bg-dark .dropdown-item.disabled,
.dropdown-menu.bg-dark .dropdown-item:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Coupon Section Styling */
.coupon-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
}

.coupon-card.applied {
  border: 1px solid var(--bs-success);
  background: linear-gradient(135deg, rgba(25, 135, 84, 0.12) 0%, rgba(25, 135, 84, 0.03) 100%);
}

.coupon-card.invalid {
  border: 1px solid var(--bs-danger);
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.12) 0%, rgba(220, 53, 69, 0.03) 100%);
}

/* Support Replies Conversation */
.reply-bubble {
  border-radius: 0.75rem;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.reply-bubble-client {
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--bs-primary);
}

.reply-bubble-admin {
  background-color: rgba(25, 135, 84, 0.12);
  border-left: 3px solid var(--bs-success);
}

/* Prevent Dropdown Menu Clipping inside Responsive Tables and Cards */
.card, .card-body, .card-header {
  overflow: visible !important;
}

.table-responsive {
  overflow: visible !important;
}

@media (max-width: 767.98px) {
  .table-responsive {
    overflow-x: auto !important;
  }
}

.table-responsive .dropdown-menu,
.btn-group .dropdown-menu,
.dropdown-menu {
  z-index: 9999 !important;
  -webkit-box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.75) !important;
          box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.75) !important;
}

select.bg-dark option,
.form-select.bg-dark option {
  background-color: #212529 !important;
  color: #ffffff !important;
}

/* =========================================================
   Customer Quote Page Custom Styles
   ========================================================= */
.quote-hero-card {
  background: linear-gradient(135deg, #1e2227 0%, #121518 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.quote-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: -webkit-gradient(linear, left top, right top, from(#0d6efd), color-stop(50%, #0dcaf0), to(#198754));
  background: linear-gradient(90deg, #0d6efd 0%, #0dcaf0 50%, #198754 100%);
}

.quote-status-badge {
  font-size: 0.825rem;
  letter-spacing: 1px;
  padding: 0.6em 1.25em;
  font-weight: 700;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.quote-section-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#1d2126), to(#16191c));
  background: linear-gradient(180deg, #1d2126 0%, #16191c 100%);
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
}

.quote-section-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.quote-link-box {
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px dashed rgba(13, 202, 240, 0.3);
  border-radius: 0.75rem;
}

.quote-link-input {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 0.875rem;
  background-color: #0f1113 !important;
  color: #3dd5f3 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 0.5rem;
}

.quote-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.quote-info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

/* Responsive Brand Logo */
body#quoterequest .top-brand img {
  width: 100%;
  max-width: 320px !important;
  height: auto !important;
}

/* Support Ticket Alert on Quote Page */
.support-ticket-alert {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.18) 0%, rgba(255, 193, 7, 0.08) 100%) !important;
  border: 1px solid rgba(255, 193, 7, 0.35) !important;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  -webkit-transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
}
.support-ticket-alert:hover {
  border-color: rgba(255, 193, 7, 0.55) !important;
  -webkit-box-shadow: 0 8px 24px rgba(255, 193, 7, 0.15) !important;
          box-shadow: 0 8px 24px rgba(255, 193, 7, 0.15) !important;
}

@media (max-width: 575.98px) {
  body#quoterequest .top-brand img {
    max-width: 200px !important;
  }
}

/* =========================================================
   Gallery Image & Hover Overlay Styling
   ========================================================= */
.gallery-overlay {
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  pointer-events: none;
}

.image-container:hover .gallery-overlay,
.gallery-card:hover .gallery-overlay {
  opacity: 1;
  pointer-events: auto;
}

.gallery-img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.image-container:hover .gallery-img,
.gallery-card:hover .gallery-img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

/* =========================================================
   Coupon System Styling
   ========================================================= */

/* Coupons table styling */
.coupons-table {
  font-size: 0.95rem;
}

.coupons-table thead {
  background-color: #343a40;
  color: #ffffff;
}

.coupons-table tbody tr {
  border-bottom: 1px solid #dee2e6;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.coupons-table tbody tr:hover {
  background-color: rgba(13, 110, 253, 0.05);
}

/* Coupon code styling */
.coupon-code {
  font-family: 'Courier New', monospace;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Badge styling for discount types */
.badge-percentage {
  background-color: #0dcaf0;
  color: #ffffff;
}

.badge-fixed {
  background-color: #ffc107;
  color: #000000;
}

/* Usage progress bar */
.usage-progress {
  height: 6px;
  background-color: #e9ecef;
  border-radius: 3px;
  margin-top: 0.5rem;
  overflow: hidden;
}

.usage-progress .progress-bar {
  background-color: #198754;
  height: 100%;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.usage-progress.warning .progress-bar {
  background-color: #ffc107;
}

.usage-progress.danger .progress-bar {
  background-color: #dc3545;
}

/* Status badges */
.badge-active {
  background-color: #198754;
  color: #ffffff;
}

.badge-inactive {
  background-color: #dc3545;
  color: #ffffff;
}

.badge-expired {
  background-color: #6c757d;
  color: #ffffff;
}

/* Modal styling */
.modal-coupon {
  max-width: 700px;
}

.modal-coupon .form-label {
  font-weight: 500;
  color: #e9ecef;
}

.modal-coupon .form-control,
.modal-coupon .form-select {
  background-color: #495057;
  border-color: #666666;
  color: #ffffff;
}

.modal-coupon .form-control:focus,
.modal-coupon .form-select:focus {
  background-color: #495057;
  border-color: #0d6efd;
  color: #ffffff;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Small text in dark theme */
.modal-coupon .small {
  color: #adb5bd;
}

/* Card styling for coupon management */
.coupon-card {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
}

/* =========================================================
   Admin Events Calendar Styling
   ========================================================= */
#calendar_container .fc {
  font-family: inherit;
  color: #e9ecef;
}

#calendar_container .fc-header-title h2,
#calendar_container .fc-toolbar-title,
#calendar_container h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f8f9fa;
}

/* Modern Dark Buttons for FullCalendar (Month, Week, Day, Prev, Next, Today) */
#calendar_container .fc-button,
#calendar_container .fc-state-default {
  background: #212529 !important;
  background-image: none !important;
  border: 1px solid #495057 !important;
  color: #f8f9fa !important;
  text-shadow: none !important;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: capitalize;
  padding: 0.35rem 0.75rem !important;
  height: auto !important;
  line-height: 1.5 !important;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#calendar_container .fc-button:hover,
#calendar_container .fc-state-hover,
#calendar_container .fc-button:focus,
#calendar_container .fc-state-down {
  background: #0d6efd !important;
  background-image: none !important;
  border-color: #0d6efd !important;
  color: #ffffff !important;
  text-shadow: none !important;
}

#calendar_container .fc-button-active,
#calendar_container .fc-state-active {
  background-color: #0d6efd !important;
  background-image: none !important;
  border-color: #0d6efd !important;
  color: #ffffff !important;
  text-shadow: none !important;
  -webkit-box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.3) !important;
          box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.3) !important;
}

#calendar_container .fc-state-disabled {
  background: #1a1d20 !important;
  border-color: #343a40 !important;
  color: #6c757d !important;
  opacity: 0.6;
  cursor: not-allowed;
}

/* Left / Right Arrow Glyphs */
#calendar_container .fc-text-arrow {
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
  vertical-align: middle;
  color: inherit;
}

/* Table Borders & Backgrounds in Dark Mode */
#calendar_container .fc-widget-header,
#calendar_container .fc-widget-content,
#calendar_container table,
#calendar_container td,
#calendar_container th {
  border-color: #373b3e !important;
}

#calendar_container .fc-theme-standard td,
#calendar_container .fc-theme-standard th,
#calendar_container .fc-theme-standard .fc-scrollgrid {
  border-color: #373b3e !important;
}

#calendar_container .fc-widget-header {
  background-color: #1a1d20 !important;
  color: #adb5bd !important;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 0 !important;
}

#calendar_container .fc-day-number {
  color: #adb5bd !important;
  font-weight: 600;
  padding: 4px 6px !important;
  font-size: 0.85rem;
}

#calendar_container .fc-col-header-cell-cushion,
#calendar_container .fc-daygrid-day-number {
  color: #adb5bd;
  text-decoration: none;
}

#calendar_container .fc-state-highlight,
#calendar_container .fc-daygrid-day.fc-day-today,
#calendar_container .fc-today {
  background-color: rgba(13, 110, 253, 0.12) !important;
}

#calendar_container .fc-other-month {
  opacity: 0.35;
}

/* =========================================================
   Admin Sidebar Navigation Styling
   ========================================================= */
.admin-sidebar {
  font-size: 0.875rem;
}

.admin-sidebar .sidebar-section-header {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.5rem 0.75rem 0.25rem 0.75rem;
  margin-top: 0.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.admin-sidebar-nav .nav-link {
  color: rgba(255, 255, 255, 0.72);
  padding: 0.48rem 0.75rem;
  margin-bottom: 0.15rem;
  border-radius: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 450;
  -webkit-transition: background-color 0.15s ease, color 0.15s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.15s ease, color 0.15s ease, -webkit-transform 0.1s ease;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
  transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease, -webkit-transform 0.1s ease;
}

.admin-sidebar-nav .nav-link i.fa {
  width: 1.25rem;
  margin-right: 0.65rem;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.8;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

.admin-sidebar-nav .nav-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
}

.admin-sidebar-nav .nav-link:hover i.fa {
  opacity: 1;
}

.admin-sidebar-nav .nav-link.active {
  color: #ffffff !important;
  background-color: #0d6efd;
  font-weight: 600;
  -webkit-box-shadow: 0 2px 6px rgba(13, 110, 253, 0.35);
          box-shadow: 0 2px 6px rgba(13, 110, 253, 0.35);
}

.admin-sidebar-nav .nav-link.active i.fa {
  opacity: 1;
}

.admin-sidebar-nav .nav-link-logout {
  color: rgba(239, 68, 68, 0.85);
}

.admin-sidebar-nav .nav-link-logout:hover {
  color: #ffffff;
  background-color: rgba(220, 53, 69, 0.2);
}

/* Modal Form Scrollable Support */
.modal-dialog-scrollable .modal-content > form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-height: calc(100vh - 3.5rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-content > form .modal-body {
  overflow-y: auto !important;
}

/* =========================================================
   Freelancer Ratings & Performance Scorecard Styles
   ========================================================= */
.rating-stars {
  color: #ffc107;
  letter-spacing: 1px;
}

.rating-bar-track {
  background-color: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.rating-btn-group .btn-check:checked + .btn {
  background-color: #ffc107;
  color: #000000;
  font-weight: 700;
  border-color: #ffc107;
}

.value-tier-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35em 0.65em;
  border-radius: 50rem;
}

.star-icon-btn {
  cursor: pointer;
}

/* =========================================================
   Page Image Flow / Slider Carousel Styles
   ========================================================= */
.imageflow-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.imageflow-container::-webkit-scrollbar {
  height: 6px;
}

.imageflow-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

.imageflow-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 4px;
}

.imageflow-container::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.45);
}

.imageflow-card {
  -webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease, border-color 0.25s ease;
  transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease, border-color 0.25s ease;
  -webkit-transition: border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}

.imageflow-card:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
  border-color: var(--bs-primary) !important;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5) !important;
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5) !important;
}

.imageflow-card:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* =========================================================
   Shopping Cart Product Store
   ========================================================= */
.product-image-container {
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.product-image-thumb {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-image-thumb img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.product-store-card:hover .product-image-thumb img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}