/*
 * CatWalk Theme - Account Pages CSS
 * Dashboard, Profile, Order History styling
 * Version: 1.0.0
 */

/* ============================================
   ACCOUNT PAGE LAYOUT
   ============================================ */
.catwalk-account-section {
  background: #fafafa;
  padding: 60px 0;
  min-height: calc(100vh - 200px);
}

/* Account Banner - consistent with cart/checkout */
.catwalk-account-banner {
  background: linear-gradient(135deg, #fdf5f9 0%, #fce4ec 100%);
  padding: 50px 0;
  text-align: center;
}

.catwalk-account-banner h1 {
  font-family: "futura-pt", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--catwalk-text-primary, #151515);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.catwalk-account-banner .breadcrumb-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 14px;
}

.catwalk-account-banner .breadcrumb-nav a {
  color: #888;
  transition: color 0.2s;
}

.catwalk-account-banner .breadcrumb-nav a:hover {
  color: var(--catwalk-primary, #fc8dcf);
}

.catwalk-account-banner .breadcrumb-nav span {
  color: var(--catwalk-text-primary, #151515);
}

/* ============================================
   ACCOUNT SIDEBAR
   ============================================ */
.catwalk-account-sidebar {
  background: #fff;
  border: 1px solid #eee;
  padding: 0;
}

.catwalk-account-sidebar .sidebar-header {
  padding: 25px;
  border-bottom: 1px solid #eee;
  text-align: center;
}

.catwalk-account-sidebar .sidebar-header .user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catwalk-account-sidebar .sidebar-header .user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catwalk-account-sidebar .sidebar-header .user-avatar i {
  font-size: 32px;
  color: #ccc;
}

.catwalk-account-sidebar .sidebar-header h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px;
  color: var(--catwalk-text-primary, #151515);
}

.catwalk-account-sidebar .sidebar-header p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.catwalk-account-sidebar .sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catwalk-account-sidebar .sidebar-menu li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 25px;
  font-size: 14px;
  color: var(--catwalk-text-primary, #151515);
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.2s;
}

.catwalk-account-sidebar .sidebar-menu li a:hover,
.catwalk-account-sidebar .sidebar-menu li a.active {
  background: #fdf5f9;
  color: var(--catwalk-primary, #fc8dcf);
}

.catwalk-account-sidebar .sidebar-menu li a i {
  font-size: 18px;
  width: 24px;
  text-align: center;
}

.catwalk-account-sidebar .sidebar-menu .logout-link {
  color: #dc3545;
}

.catwalk-account-sidebar .sidebar-menu .logout-link:hover {
  background: #fff5f5;
}

/* ============================================
   ACCOUNT CONTENT
   ============================================ */
.catwalk-account-content {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
}

.catwalk-account-content .content-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.catwalk-account-content .content-header h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--catwalk-text-primary, #151515);
}

.catwalk-account-content .content-header p {
  font-size: 14px;
  color: #888;
  margin: 10px 0 0;
}

/* ============================================
   DASHBOARD STATS
   ============================================ */
.catwalk-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.catwalk-stat-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  text-align: center;
  transition: all 0.3s;
}

.catwalk-stat-card:hover {
  border-color: var(--catwalk-primary, #fc8dcf);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(252, 141, 207, 0.15);
}

.catwalk-stat-card i {
  font-size: 32px;
  color: var(--catwalk-primary, #fc8dcf);
  margin-bottom: 15px;
}

.catwalk-stat-card .stat-value {
  font-size: 28px;
  font-weight: 600;
  color: var(--catwalk-text-primary, #151515);
  display: block;
}

.catwalk-stat-card .stat-label {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   FORM SECTION
   ============================================ */
.catwalk-form-section {
  margin-bottom: 30px;
}

.catwalk-form-section .section-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--catwalk-text-primary, #151515);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

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

.catwalk-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.catwalk-form-group input,
.catwalk-form-group select,
.catwalk-form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: none;
  border-bottom: 1px solid #ddd;
  background: transparent;
  font-size: 15px;
  color: var(--catwalk-text-primary, #151515);
  transition: border-color 0.3s;
}

.catwalk-form-group input:focus,
.catwalk-form-group select:focus,
.catwalk-form-group textarea:focus {
  outline: none;
  border-bottom-color: var(--catwalk-primary, #fc8dcf);
}

.catwalk-form-group input[disabled] {
  background: #f9f9f9;
  color: #999;
}

.catwalk-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ============================================
   FILE UPLOAD WITH PREVIEW
   ============================================ */
.catwalk-file-upload {
  position: relative;
  border: 2px dashed #ddd;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
}

.catwalk-file-upload:hover {
  border-color: var(--catwalk-primary, #fc8dcf);
}

.catwalk-file-upload.has-files {
  border-color: var(--catwalk-primary, #fc8dcf);
  background: #fdf9fb;
}

.catwalk-file-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.catwalk-file-upload i {
  font-size: 24px;
  color: #888;
  margin-bottom: 10px;
}

.catwalk-file-upload .upload-text {
  display: block;
  font-size: 14px;
  color: #888;
}

.catwalk-file-upload .file-list {
  margin-top: 15px;
  text-align: left;
}

.catwalk-file-upload .file-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #eee;
  margin-bottom: 8px;
  font-size: 13px;
}

.catwalk-file-upload .file-item i {
  font-size: 18px;
  color: var(--catwalk-primary, #fc8dcf);
  margin: 0;
}

.catwalk-file-upload .file-item .file-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}

.catwalk-file-upload .file-item .file-size {
  color: #888;
  font-size: 12px;
}

/* ============================================
   CHAT / MESSAGE STYLES
   ============================================ */
.catwalk-chat-container {
  max-height: 500px;
  overflow-y: auto;
  padding: 20px 0;
}

.catwalk-message {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.catwalk-message.sent {
  flex-direction: row-reverse;
}

.catwalk-message .message-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.catwalk-message .message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catwalk-message .message-avatar i {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 20px;
}

.catwalk-message .message-content {
  max-width: 70%;
}

.catwalk-message .message-bubble {
  padding: 15px 20px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.6;
}

.catwalk-message.received .message-bubble {
  background: #f5f5f5;
  border-bottom-left-radius: 5px;
}

.catwalk-message.sent .message-bubble {
  background: #fdf5f9;
  border-bottom-right-radius: 5px;
}

.catwalk-message .message-time {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}

.catwalk-message.sent .message-time {
  text-align: right;
}

.catwalk-message .message-attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.catwalk-message .attachment-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #eee;
  font-size: 12px;
  color: #666;
  transition: all 0.2s;
}

.catwalk-message .attachment-item:hover {
  border-color: var(--catwalk-primary, #fc8dcf);
  color: var(--catwalk-primary, #fc8dcf);
}

.catwalk-message .attachment-item i {
  font-size: 16px;
}

/* Reply Form */
.catwalk-reply-form {
  border-top: 1px solid #eee;
  padding-top: 25px;
  margin-top: 25px;
}

.catwalk-reply-form textarea {
  width: 100%;
  min-height: 100px;
  padding: 15px;
  border: 1px solid #eee;
  background: #fafafa;
  font-size: 14px;
  resize: vertical;
  transition: all 0.3s;
}

.catwalk-reply-form textarea:focus {
  outline: none;
  border-color: var(--catwalk-primary, #fc8dcf);
  background: #fff;
}

.catwalk-reply-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}

/* ============================================
   SUBMIT BUTTON
   ============================================ */
.catwalk-submit-btn {
  display: inline-block;
  padding: 14px 40px;
  background: var(--catwalk-primary, #fc8dcf);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.catwalk-submit-btn:hover {
  background: var(--catwalk-primary-hover, #fa73c4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(252, 141, 207, 0.3);
}

/* ============================================
   INFO CARDS
   ============================================ */
.catwalk-info-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  margin-top: 20px;
}

.catwalk-info-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.catwalk-info-card .card-header h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--catwalk-text-primary, #151515);
}

.catwalk-info-card .card-header a {
  font-size: 13px;
  color: var(--catwalk-primary, #fc8dcf);
}

.catwalk-info-card table {
  width: 100%;
}

.catwalk-info-card table tr td {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}

.catwalk-info-card table tr td:first-child {
  color: #888;
  width: 120px;
}

.catwalk-info-card table tr:last-child td {
  border-bottom: none;
}

/* ============================================
   ORDER TABLE
   ============================================ */
.catwalk-orders-table {
  width: 100%;
  border-collapse: collapse;
}

.catwalk-orders-table thead {
  background: #fafafa;
  border-bottom: 2px solid #eee;
}

.catwalk-orders-table th {
  padding: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  text-align: left;
}

.catwalk-orders-table td {
  padding: 18px 15px;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.catwalk-orders-table tbody tr:hover {
  background: #fdf9fb;
}

.order-code {
  font-weight: 600;
  color: var(--catwalk-primary, #fc8dcf);
  cursor: pointer;
}

.order-code:hover {
  text-decoration: underline;
}

.order-actions {
  display: flex;
  gap: 8px;
}

.order-action-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}

.order-action-btn:hover {
  background: var(--catwalk-primary, #fc8dcf);
  color: #fff;
}

/* ============================================
   STATUS BADGES
   ============================================ */
.status-badge {
  display: inline-block;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
}

.status-badge.paid,
.status-badge.solved,
.status-badge.delivered {
  background: #d4edda;
  color: #155724;
}

.status-badge.unpaid {
  background: #f8d7da;
  color: #721c24;
}

.status-badge.pending {
  background: #fff3cd;
  color: #856404;
}

.status-badge.open {
  background: #e2e3e5;
  color: #383d41;
}

/* ============================================
   WISHLIST GRID
   ============================================ */
.catwalk-wishlist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.catwalk-wishlist-item {
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s;
  position: relative;
}

.catwalk-wishlist-item:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.wishlist-item-image {
  position: relative;
  padding-top: 120%;
  background: #f7f7f7;
  overflow: hidden;
}

.wishlist-item-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.catwalk-wishlist-item:hover .wishlist-item-image img {
  transform: scale(1.05);
}

.wishlist-remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all 0.2s;
}

.wishlist-remove-btn:hover {
  background: #dc3545;
  color: #fff;
}

.wishlist-item-info {
  padding: 20px;
  text-align: center;
}

.wishlist-item-info h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1.4;
}

.wishlist-item-info h3 a {
  color: var(--catwalk-text-primary, #151515);
  transition: color 0.2s;
}

.wishlist-item-info h3 a:hover {
  color: var(--catwalk-primary, #fc8dcf);
}

.wishlist-item-price {
  margin-bottom: 15px;
}

.wishlist-item-price .current-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--catwalk-text-primary, #151515);
}

.wishlist-item-price .old-price {
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
  margin-left: 8px;
}

.wishlist-add-cart-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--catwalk-text-primary, #151515);
  color: #fff;
  border: none;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
}

.wishlist-add-cart-btn:hover {
  background: var(--catwalk-primary, #fc8dcf);
}

/* ============================================
   TICKET HEADER & DETAIL
   ============================================ */
.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.ticket-header h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--catwalk-text-primary, #151515);
}

.ticket-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: #888;
}

.ticket-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ticket-status {
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
}

.ticket-status.pending {
  background: #fff3cd;
  color: #856404;
}
.ticket-status.open {
  background: #e2e3e5;
  color: #383d41;
}
.ticket-status.solved {
  background: #d4edda;
  color: #155724;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--catwalk-primary, #fc8dcf);
  margin-bottom: 20px;
}

.back-link:hover {
  text-decoration: underline;
}

/* ============================================
   TICKETS TABLE
   ============================================ */
.catwalk-tickets-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.catwalk-tickets-header h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.create-ticket-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: var(--catwalk-primary, #fc8dcf);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.create-ticket-btn:hover {
  background: var(--catwalk-primary-hover, #fa73c4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(252, 141, 207, 0.3);
}

.catwalk-tickets-table {
  width: 100%;
  border-collapse: collapse;
}

.catwalk-tickets-table thead {
  background: #fafafa;
  border-bottom: 2px solid #eee;
}

.catwalk-tickets-table th {
  padding: 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  text-align: left;
}

.catwalk-tickets-table td {
  padding: 18px 15px;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.catwalk-tickets-table tbody tr:hover {
  background: #fdf9fb;
}

.ticket-id {
  font-weight: 600;
  color: var(--catwalk-text-primary, #151515);
}

.ticket-subject {
  max-width: 200px;
}

.view-ticket-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--catwalk-primary, #fc8dcf);
  font-weight: 500;
  font-size: 13px;
}

.view-ticket-link:hover {
  text-decoration: underline;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state i {
  font-size: 64px;
  color: #ddd;
  margin-bottom: 20px;
}

.empty-state h3 {
  font-size: 18px;
  color: #888;
  margin-bottom: 10px;
}

.empty-state p {
  color: #aaa;
  margin-bottom: 20px;
}

/* ============================================
   MODAL STYLING
   ============================================ */
#ticket_modal .modal-content,
#order_details .modal-content {
  border: none;
  border-radius: 0;
}

#ticket_modal .modal-header {
  border-bottom: 1px solid #eee;
  padding: 20px 25px;
}

#ticket_modal .modal-body {
  padding: 25px;
}

#ticket_modal .modal-footer {
  border-top: 1px solid #eee;
  padding: 15px 25px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

#ticket_modal .btn-cancel {
  padding: 12px 25px;
  background: #f5f5f5;
  color: #666;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

#ticket_modal .btn-cancel:hover {
  background: #eee;
}

/* ============================================
   ORDER DETAILS MODAL
   ============================================ */
#order_details.show {
  padding-left: 0 !important;
}

#order_details .modal-dialog {
  max-width: 1000px;
  margin: 30px auto;
}

#order_details .modal-dialog.modal-dialog-centered {
  min-height: calc(100% - 60px);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

#order_details .modal-content {
  border: none;
  border-radius: 0;
  max-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
}

#order_details .modal-header {
  background: linear-gradient(135deg, #fdf5f9 0%, #fce4ec 100%);
  border-bottom: none;
  padding: 20px 25px;
  flex-shrink: 0;
}

#order_details .modal-header .modal-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--catwalk-text-primary, #151515);
}

#order_details .modal-header .close {
  color: #666;
  opacity: 1;
}

#order_details .modal-body {
  padding: 25px;
  background: #fafafa;
  overflow-y: auto;
  flex: 1;
}

/* Order Progress Steps */
.catwalk-order-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 30px;
  padding: 0 20px;
}

.catwalk-order-progress::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 60px;
  right: 60px;
  height: 3px;
  background: #eee;
  z-index: 0;
}

.catwalk-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.catwalk-progress-step .step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: #999;
  margin-bottom: 10px;
  transition: all 0.3s;
}

.catwalk-progress-step .step-title {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.catwalk-progress-step.active .step-icon {
  border-color: var(--catwalk-primary, #fc8dcf);
  background: var(--catwalk-primary, #fc8dcf);
  color: #fff;
}

.catwalk-progress-step.active .step-title {
  color: var(--catwalk-primary, #fc8dcf);
  font-weight: 600;
}

.catwalk-progress-step.done .step-icon {
  border-color: #28a745;
  background: #28a745;
  color: #fff;
}

.catwalk-progress-step.done .step-icon::after {
  content: "✓";
}

/* Order Detail Cards */
.catwalk-order-card {
  background: #fff;
  border: 1px solid #eee;
  margin-bottom: 20px;
}

.catwalk-order-card .card-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  margin: 0;
  background: #fafafa;
}

.catwalk-order-card .card-content {
  padding: 20px;
}

.catwalk-detail-table {
  width: 100%;
}

.catwalk-detail-table tr td {
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}

.catwalk-detail-table tr:last-child td {
  border-bottom: none;
}

.catwalk-detail-table tr td:first-child {
  font-weight: 500;
  color: #666;
  width: 40%;
}

.catwalk-detail-table tr td:last-child {
  color: var(--catwalk-text-primary, #151515);
}

/* Order Products Table */
.catwalk-products-table {
  width: 100%;
  border-collapse: collapse;
}

.catwalk-products-table thead th {
  background: #fafafa;
  padding: 12px 15px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  border-bottom: 2px solid #eee;
}

.catwalk-products-table tbody td {
  padding: 15px;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.catwalk-products-table tbody tr:hover {
  background: #fdf9fb;
}

.catwalk-products-table .product-name a {
  color: var(--catwalk-text-primary, #151515);
  font-weight: 500;
}

.catwalk-products-table .product-name a:hover {
  color: var(--catwalk-primary, #fc8dcf);
}

.catwalk-products-table .product-variant {
  font-size: 12px;
  color: #888;
  margin-top: 5px;
}

/* Order Summary Box */
.catwalk-order-summary {
  background: #fff;
  border: 1px solid #eee;
}

.catwalk-order-summary .summary-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}

.catwalk-order-summary .summary-row:last-child {
  border-bottom: none;
}

.catwalk-order-summary .summary-row.total {
  font-weight: 600;
  font-size: 16px;
  background: #fdf5f9;
  color: var(--catwalk-text-primary, #151515);
}

/* ============================================
   TRACK ORDER PAGE
   ============================================ */
.catwalk-track-form {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto;
}

.catwalk-track-form .form-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.catwalk-track-result {
  margin-top: 40px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-list {
  margin-top: 25px;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #fdf5f9 0%, #fce4ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 22px;
  color: var(--catwalk-primary, #fc8dcf);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-text .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
}

.contact-text .value {
  font-size: 15px;
  color: var(--catwalk-text-primary, #151515);
}

.contact-text a.value:hover {
  color: var(--catwalk-primary, #fc8dcf);
}

.contact-map {
  border: 1px solid #eee;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: none;
}

/* ============================================
   BLOG STYLES
   ============================================ */
.catwalk-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.catwalk-blog-card {
  background: #fff;
  border: 1px solid #eee;
  transition: all 0.3s;
}

.catwalk-blog-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.blog-card-image {
  position: relative;
  padding-top: 65%;
  background: #f7f7f7;
  overflow: hidden;
}

.blog-card-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.catwalk-blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: #888;
  margin-bottom: 12px;
}

.blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-card-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.4;
}

.blog-card-content h3 a {
  color: var(--catwalk-text-primary, #151515);
  transition: color 0.2s;
}

.blog-card-content h3 a:hover {
  color: var(--catwalk-primary, #fc8dcf);
}

.blog-card-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--catwalk-primary, #fc8dcf);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-read-more:hover {
  gap: 8px;
}

/* Blog Detail */
.catwalk-blog-detail {
  max-width: 800px;
  margin: 0 auto;
}

.blog-detail-header {
  margin-bottom: 30px;
}

.blog-detail-header h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}

.blog-detail-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #888;
}

.blog-detail-image {
  margin-bottom: 30px;
}

.blog-detail-image img {
  width: 100%;
  height: auto;
}

.blog-detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.blog-detail-content p {
  margin-bottom: 20px;
}

.blog-detail-content h2,
.blog-detail-content h3 {
  margin: 30px 0 15px;
  color: var(--catwalk-text-primary, #151515);
}

/* ============================================
   FAQ STYLES
   ============================================ */
.catwalk-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.catwalk-faq-item {
  background: #fff;
  border: 1px solid #eee;
  margin-bottom: 15px;
}

.catwalk-faq-question {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.catwalk-faq-question:hover {
  background: #fdf9fb;
}

.catwalk-faq-question h3 {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: var(--catwalk-text-primary, #151515);
}

.catwalk-faq-question i {
  font-size: 20px;
  color: var(--catwalk-primary, #fc8dcf);
  transition: transform 0.3s;
}

.catwalk-faq-item.active .catwalk-faq-question i {
  transform: rotate(180deg);
}

.catwalk-faq-answer {
  padding: 0 25px 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  display: none;
}

.catwalk-faq-item.active .catwalk-faq-answer {
  display: block;
}

/* ============================================
   COMPARE PAGE
   ============================================ */
.catwalk-compare-table {
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
}

.catwalk-compare-table th,
.catwalk-compare-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

.catwalk-compare-table th {
  background: #fafafa;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  width: 150px;
}

.catwalk-compare-table td {
  font-size: 14px;
}

.compare-product-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  background: #f7f7f7;
}

.compare-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.compare-product-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}

.compare-product-name a {
  color: var(--catwalk-text-primary, #151515);
}

.compare-product-name a:hover {
  color: var(--catwalk-primary, #fc8dcf);
}

.compare-product-price {
  font-size: 18px;
  font-weight: 600;
  color: var(--catwalk-primary, #fc8dcf);
}

.compare-remove-btn {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.2s;
}

.compare-remove-btn:hover {
  color: #dc3545;
}

/* ============================================
   BRANDS & CATEGORIES GRID
   ============================================ */
.catwalk-brands-grid,
.catwalk-categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.catwalk-brand-card,
.catwalk-category-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 25px;
  text-align: center;
  transition: all 0.3s;
}

.catwalk-brand-card:hover,
.catwalk-category-card:hover {
  border-color: var(--catwalk-primary, #fc8dcf);
  box-shadow: 0 5px 15px rgba(252, 141, 207, 0.1);
}

.brand-logo,
.category-icon {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.brand-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.category-icon i {
  font-size: 36px;
  color: var(--catwalk-primary, #fc8dcf);
}

.catwalk-brand-card h4,
.catwalk-category-card h4 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: var(--catwalk-text-primary, #151515);
}

/* ============================================
   WALLET PAGE
   ============================================ */
.catwalk-wallet-balance {
  background: linear-gradient(135deg, #fdf5f9 0%, #fce4ec 100%);
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
}

.catwalk-wallet-balance .balance-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin-bottom: 10px;
}

.catwalk-wallet-balance .balance-amount {
  font-size: 42px;
  font-weight: 600;
  color: var(--catwalk-text-primary, #151515);
}

.wallet-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 25px;
}

/* ============================================
   POLICY PAGES
   ============================================ */
.catwalk-policy-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border: 1px solid #eee;
}

.catwalk-policy-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 30px 0 15px;
  color: var(--catwalk-text-primary, #151515);
}

.catwalk-policy-content h2:first-child {
  margin-top: 0;
}

.catwalk-policy-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.catwalk-policy-content ul,
.catwalk-policy-content ol {
  margin: 15px 0 15px 25px;
}

.catwalk-policy-content li {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 8px;
}

/* ============================================
   RESPONSIVE - ADDITIONAL
   ============================================ */
@media (max-width: 991px) {
  .catwalk-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catwalk-brands-grid,
  .catwalk-categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .catwalk-blog-grid {
    grid-template-columns: 1fr;
  }

  .catwalk-brands-grid,
  .catwalk-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-detail-header h1 {
    font-size: 24px;
  }

  .catwalk-wallet-balance .balance-amount {
    font-size: 32px;
  }

  .wallet-actions {
    flex-direction: column;
  }

  .catwalk-policy-content {
    padding: 25px;
  }
}

/* ============================================
   CONVERSATIONS LIST
   ============================================ */
.conversation-list {
  background: #fff;
  border: 1px solid #eee;
}

.conversation-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
  text-decoration: none;
}

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

.conversation-item:hover {
  background: #fdf9fb;
}

.conversation-item.unread {
  background: #fef7fa;
}

.conversation-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

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

.conversation-avatar i {
  font-size: 24px;
  color: #ccc;
}

.conversation-content {
  flex: 1;
  min-width: 0;
}

.conversation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.conversation-header h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: var(--catwalk-text-primary, #151515);
}

.conversation-header .new-badge {
  display: inline-block;
  padding: 2px 8px;
  background: var(--catwalk-primary, #fc8dcf);
  color: #fff;
  font-size: 10px;
  border-radius: 10px;
  margin-left: 8px;
}

.conversation-time {
  font-size: 12px;
  color: #999;
}

.conversation-title {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  margin: 0 0 5px;
}

.conversation-preview {
  font-size: 13px;
  color: #888;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Outline Button */
.btn-outline-catwalk {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid var(--catwalk-primary, #fc8dcf);
  color: var(--catwalk-primary, #fc8dcf);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-outline-catwalk:hover {
  background: var(--catwalk-primary, #fc8dcf);
  color: #fff;
}

/* Menu Section Headers */
.sidebar-menu .menu-section {
  padding: 15px 20px 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  list-style: none;
}

.sidebar-menu .menu-section:first-child {
  padding-top: 0;
}

@media (max-width: 991px) {
  .catwalk-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catwalk-form-row {
    grid-template-columns: 1fr;
  }

  .catwalk-message .message-content {
    max-width: 85%;
  }

  .catwalk-wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .catwalk-account-section {
    padding: 30px 0;
  }

  .catwalk-stats-grid {
    grid-template-columns: 1fr;
  }

  .catwalk-account-content {
    padding: 20px;
  }

  .catwalk-account-banner {
    padding: 30px 0;
  }

  .catwalk-account-banner h1 {
    font-size: 24px;
  }

  .catwalk-message .message-content {
    max-width: 90%;
  }

  .catwalk-wishlist-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .catwalk-tickets-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .catwalk-orders-table thead,
  .catwalk-tickets-table thead {
    display: none;
  }

  .catwalk-orders-table tbody tr,
  .catwalk-tickets-table tbody tr {
    display: block;
    padding: 15px;
    margin-bottom: 15px;
    background: #fff;
    border: 1px solid #eee;
  }

  .catwalk-orders-table td,
  .catwalk-tickets-table td {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border: none;
  }

  .catwalk-orders-table td::before,
  .catwalk-tickets-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #888;
  }

  .ticket-header {
    flex-direction: column;
    gap: 15px;
  }
}
