@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  /* ── Charm Pink Palette ────────────────────────────────── */
  --color-bg-base:          #FDF0F5;   /* lightest blush — page background     */
  --color-bg-card:          #FFFFFF;   /* pure white cards                     */
  --color-bg-accent-soft:   #F2DAE2;   /* Dark Vanilla — subtle tinted areas   */
  --color-bg-accent-active: #F9E2EA;   /* hover / active backgrounds           */

  --color-accent:           #E68FAC;   /* Charm Pink ★ — main brand colour     */
  --color-accent-hover:     #D33C6E;   /* deep rose — hover/pressed state      */
  --color-secondary:        #D9A3C7;   /* Pink Pearl — complementary shade     */
  --color-secondary-hover:  #B42857;   /* dark rose — secondary hover          */
  --color-blue:             #EFB9CB;   /* soft blush — replaces blue accent    */
  --color-blue-hover:       #E68FAC;   /* charm pink hover for soft accents    */

  --color-text-main:        #3D1A28;   /* deep rose-black — primary text       */
  --color-text-muted:       #7A4058;   /* muted rose — secondary text          */
  --color-text-light:       #B07090;   /* light rose — placeholder / hints     */
  --color-border:           #F2DAE2;   /* vanilla border — soft separators     */

  --color-success:          #059669;
  --color-danger:           #EF4444;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Montserrat', sans-serif;

  --shadow-sm: 0 2px 8px  rgba(230, 143, 172, 0.14);
  --shadow-md: 0 8px 24px rgba(230, 143, 172, 0.20);
  --shadow-lg: 0 16px 40px rgba(180, 40, 87, 0.16);
  --border-radius: 12px;
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-base);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text-main);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}

/* Elegant Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--color-bg-accent-soft);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent);
}

/* App Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background-color: rgba(253, 240, 245, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  z-index: 100;
  transition: var(--transition-smooth);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  font-size: 0.8rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-text-muted);
  border-left: 1px solid var(--color-border);
  padding-left: 10px;
  margin-left: 5px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-text-main);
}

.nav-link.active::after {
  width: 100%;
}

.cart-toggle {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition-smooth);
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.cart-toggle:hover {
  background-color: var(--color-bg-accent-soft);
  transform: translateY(-2px);
}

.cart-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--color-text-main);
  stroke-width: 1.5;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: var(--color-blue);
  color: var(--color-text-main);
  font-size: 0.7rem;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Page Containers */
.container {
  max-width: 1200px;
  margin: 120px auto 60px;
  padding: 0 20px;
  min-height: calc(100vh - 180px);
}

.view-section {
  display: none;
  animation: fadeIn 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.view-section.active {
  display: block;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 60px 20px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-description {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* Filter Controls */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  background-color: var(--color-bg-accent-soft);
  border-color: var(--color-accent);
  transform: translateY(-1px);
}

.filter-btn.active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(230, 143, 172, 0.45);
}

/* Product Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.product-img-wrapper {
  position: relative;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background-color: var(--color-bg-accent-soft);
  cursor: pointer;
}

.product-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.product-name {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.product-name:hover {
  color: var(--color-accent-hover);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid var(--color-bg-base);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-text-main);
}

.btn-add-cart {
  background-color: var(--color-bg-accent-soft);
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-add-cart:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-text-light);
  transform: translateY(-1px);
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(74, 64, 58, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: var(--color-bg-card);
  width: 90%;
  max-width: 850px;
  max-height: 90vh;
  border-radius: var(--border-radius);
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid var(--color-border);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.modal-close:hover {
  background-color: var(--color-bg-accent-soft);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 14px;
  height: 14px;
  stroke: var(--color-text-main);
  stroke-width: 2;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .modal-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.modal-img-wrapper {
  background-color: var(--color-bg-accent-soft);
  aspect-ratio: 1;
}

@media (min-width: 768px) {
  .modal-img-wrapper {
    height: 100%;
    min-height: 450px;
  }
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.modal-name {
  font-size: 1.8rem;
  line-height: 1.25;
  margin-bottom: 15px;
}

.modal-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text-main);
  margin-bottom: 20px;
  display: inline-block;
}

.modal-description {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 300;
}

.modal-actions {
  display: flex;
  gap: 15px;
}

.btn-primary {
  flex-grow: 1;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  color: var(--color-text-light);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(215, 188, 176, 0.4);
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215, 188, 176, 0.5);
}

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background-color: var(--color-bg-card);
  box-shadow: var(--shadow-lg);
  z-index: 300;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--color-border);
}

.cart-drawer.active {
  right: 0;
}

.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(74, 64, 58, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 290;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cart-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-header {
  padding: 24px 30px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-title {
  font-size: 1.4rem;
}

.cart-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.cart-close:hover {
  transform: scale(1.1);
}

.cart-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--color-text-main);
  stroke-width: 2;
}

.cart-items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px 30px;
}

.cart-empty-message {
  text-align: center;
  color: var(--color-text-muted);
  margin-top: 100px;
}

.cart-empty-message svg {
  width: 48px;
  height: 48px;
  stroke: var(--color-bg-accent-active);
  stroke-width: 1.2;
  margin-bottom: 15px;
}

.cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-bg-base);
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--color-bg-accent-soft);
  border: 1px solid var(--color-border);
  flex-shrink: 0;
}

.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-name {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quantity-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--color-bg-base);
}

.quantity-btn {
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.quantity-btn:hover {
  background-color: var(--color-bg-accent-soft);
}

.quantity-val {
  font-size: 0.85rem;
  font-weight: 500;
  width: 25px;
  text-align: center;
}

.btn-remove-item {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-danger);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.btn-remove-item:hover {
  opacity: 0.7;
}

.cart-footer {
  padding: 30px;
  border-top: 1px solid var(--color-border);
  background-color: var(--color-bg-base);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.cart-summary-label {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.cart-summary-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
}

.btn-checkout {
  width: 100%;
  display: block;
}

/* Checkout View */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (min-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.checkout-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.checkout-title {
  margin-bottom: 24px;
  font-size: 1.6rem;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-base);
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-accent);
  background-color: var(--color-bg-card);
  box-shadow: 0 0 0 3px rgba(215, 188, 176, 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

.checkout-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-bg-base);
  font-size: 0.9rem;
}

.checkout-summary-name {
  color: var(--color-text-muted);
}

.checkout-summary-item.total {
  border-bottom: none;
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
}

.checkout-summary-item.total .checkout-summary-price {
  font-family: var(--font-heading);
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.btn-secondary {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: var(--color-bg-accent-soft);
  color: var(--color-text-main);
  border-color: var(--color-accent);
}

/* Order Success State */
.order-success {
  text-align: center;
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
}

.success-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #E0F2FE;
  border: 1px solid var(--color-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.success-icon {
  width: 40px;
  height: 40px;
  stroke: #0284C7;
  stroke-width: 1.5;
  fill: none;
}

.success-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.success-message {
  color: var(--color-text-muted);
  font-weight: 300;
  margin-bottom: 40px;
}

.success-ticket {
  background-color: var(--color-bg-card);
  border: 1px dashed var(--color-border);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 40px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.ticket-header {
  border-bottom: 1px solid var(--color-bg-base);
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}

.ticket-id {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.ticket-date {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.ticket-label {
  color: var(--color-text-muted);
}

.ticket-row.total {
  border-top: 1px solid var(--color-bg-base);
  padding-top: 15px;
  margin-top: 15px;
  font-size: 1.1rem;
  font-weight: 500;
}

.ticket-row.total .ticket-val {
  font-family: var(--font-heading);
}

/* Product Manager View */
.manager-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

@media (min-width: 992px) {
  .manager-container {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.manager-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.manager-title {
  margin-bottom: 20px;
  font-size: 1.4rem;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.manager-title .btn-reset {
  background: none;
  border: none;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  cursor: pointer;
  text-decoration: underline;
}

.manager-title .btn-reset:hover {
  color: var(--color-accent);
}

/* Image Upload Widget */
.upload-widget {
  border: 2px dashed var(--color-border);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  background-color: var(--color-bg-base);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.upload-widget:hover {
  border-color: var(--color-accent);
  background-color: rgba(215, 188, 176, 0.05);
}

.upload-icon {
  width: 32px;
  height: 32px;
  stroke: var(--color-text-muted);
  stroke-width: 1.2;
  margin-bottom: 10px;
}

.upload-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.upload-text span {
  color: var(--color-accent);
  font-weight: 500;
}

.upload-preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.upload-preview.active {
  display: block;
}

.upload-preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.upload-widget:hover .upload-preview-overlay {
  opacity: 1;
}

.manager-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border-bottom: 1px solid var(--color-bg-base);
  background-color: var(--color-bg-card);
  transition: var(--transition-smooth);
}

.manager-list-item:hover {
  background-color: var(--color-bg-base);
}

.manager-list-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.manager-list-img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  background-color: var(--color-bg-accent-soft);
  border: 1px solid var(--color-border);
}

.manager-list-details {
  display: flex;
  flex-direction: column;
}

.manager-list-name {
  font-size: 0.95rem;
  font-weight: 500;
}

.manager-list-meta {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.manager-list-actions {
  display: flex;
  gap: 10px;
}

.btn-icon {
  background: none;
  border: 1px solid var(--color-border);
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-icon:hover {
  background-color: var(--color-bg-accent-soft);
}

.btn-icon.edit:hover {
  border-color: var(--color-accent);
}

.btn-icon.delete:hover {
  border-color: var(--color-danger);
  background-color: rgba(214, 158, 158, 0.1);
}

.btn-icon.delete svg {
  stroke: var(--color-danger);
}

.btn-icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: var(--color-text-main);
  stroke-width: 1.5;
}

.manager-list {
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer Section */
.footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  background-color: var(--color-bg-base);
}
