/* Luscio風パステルテーマ & グラスモーフィズム デザインシステム */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Outfit:wght@500;700&display=swap');

:root {
  --primary-pink: #ffb7c5;    /* 桜色・パステルピンク */
  --secondary-mint: #a8e6cf;   /* パステルミント */
  --accent-blue: #dcedc1;      /* パステルイエローグリーン */
  --bg-gradient: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  --text-dark: #2d3436;        
  --text-light: #636e72;
  --radius: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: 'Outfit', sans-serif;
  color: #ff7675;
  letter-spacing: -0.5px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Glassmorphism Card Utility */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 30px;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

/* Gorgeous Buttons */
.btn-primary {
  background: linear-gradient(45deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 154, 158, 0.4);
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 154, 158, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #ff7675;
  border: 2px solid #ff9a9e;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: #ff9a9e;
  color: #fff;
}

.btn-danger {
  background: transparent;
  color: #e74c3c;
  border: 2px solid #e74c3c;
  border-radius: 50px;
  padding: 10px 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}
.btn-danger:hover {
  background: #e74c3c;
  color: #fff;
}

/* Flex Utilities */
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Grid Layouts */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

/* Navbar */
.navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--glass-shadow);
}
.navbar .brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: -webkit-linear-gradient(45deg, #ff9a9e, #a18cd1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}
.navbar-links a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition);
}
.navbar-links a:hover {
  color: #ff7675;
}

/* Badges */
.badge {
  background: var(--secondary-mint);
  color: #2d3436;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Avatars */
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animated {
  animation: slideUp 0.6s ease-out forwards;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 15px;
    flex-direction: column;
    gap: 15px;
  }
  .navbar-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
  .navbar-links a {
    margin-left: 0;
    font-size: 0.9rem;
  }
  .container {
    padding: 20px 15px;
  }
  
  /* Override inline grid columns for mobile */
  body [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  
  /* Specific flex adjustments for mobile */
  .container[style*="display: flex; gap: 40px;"] {
    flex-direction: column !important;
  }
  .sidebar { 
    position: static !important; 
    width: 100% !important; 
    margin-bottom: 20px; 
  }
  
  .glass-card {
    padding: 20px;
  }
  h1 {
    font-size: 1.8rem !important;
  }
  
  .grid-container {
    grid-template-columns: 1fr !important;
  }
}
/* --- UI COMPONENTS FROM PHASE 1 (Buyer Flow) --- */

/* Sidebar Layout */
.sidebar {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius);
  padding: 25px 20px;
  box-shadow: var(--glass-shadow);
  align-self: start;
}

/* Profiles */
.profile-area { text-align: center; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 1px dashed rgba(0,0,0,0.1); }
.profile-name { margin: 0; font-size: 1.1rem; font-weight: bold; color: #333; }

/* Menu */
.menu-title { font-size: 0.75rem; color: #aaa; font-weight: bold; margin: 15px 0 5px 5px; text-transform: uppercase; letter-spacing: 1px; }
.menu-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 5px; }
.menu-link { display: flex; align-items: center; gap: 12px; padding: 10px 15px; border-radius: 12px; text-decoration: none; color: #444; font-weight: bold; font-size: 0.95rem; transition: var(--transition); }
.menu-link:hover { background: rgba(255,118,117,0.05); color: var(--primary-pink); }
.menu-link.active { background: rgba(255,118,117,0.1); color: var(--primary-pink); border-left: 4px solid var(--primary-pink); }
.icon { font-size: 1.2rem; }
.sub-menu { list-style: none; padding-left: 40px; margin: 0 0 10px 0; display: flex; flex-direction: column; gap: 8px; font-size: 0.85rem; }
.sub-menu a { text-decoration: none; color: #666; font-weight: bold; transition: var(--transition); }
.sub-menu a:hover { color: var(--primary-pink); }

/* Tables */
.order-table { width: 100%; border-collapse: collapse; margin-top: 20px; min-width: 600px; }
.order-table th { text-align: left; padding: 15px; color: #888; font-size: 0.85rem; border-bottom: 2px solid #eee; }
.order-table td { padding: 15px; font-size: 0.95rem; border-bottom: 1px solid #eee; vertical-align: middle; }
.order-table tr:hover { background: rgba(255,255,255,0.5); }

/* Badges extended */
.badge.warning { background: #f1c40f; color: #fff; }
.badge.danger { background: #e74c3c; color: #fff; }
.badge.info { background: #3498db; color: #fff; }
.badge.success { background: #2ecc71; color: #fff; }

/* Grid & Cards */
.grid-layout { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 25px; }
.item-card { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.9); box-shadow: var(--glass-shadow); transition: var(--transition); text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.item-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.item-img { width: 100%; aspect-ratio: 3/4; background-size: cover; background-position: center; position: relative; }
.item-badge { position: absolute; top: 12px; right: 12px; padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; color: #fff; box-shadow: 0 4px 10px rgba(0,0,0,0.2); }
.item-info { padding: 15px; flex: 1; display: flex; flex-direction: column; }
.item-title { margin: 0 0 10px 0; font-size: 1rem; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.item-seller { font-size: 0.8rem; color: var(--text-light); display: flex; align-items: center; gap: 6px; margin-bottom: auto; }
.item-price { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.4rem; color: var(--primary-pink); margin: 15px 0 0 0; }

/* Filters */
.filter-group { margin-bottom: 25px; border-bottom: 1px dashed rgba(0,0,0,0.1); padding-bottom: 20px; }
.filter-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-group h4 { margin: 0 0 15px 0; font-size: 1.05rem; color: #333; display: flex; align-items: center; gap: 8px; }
.filter-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.filter-list label { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: #555; cursor: pointer; transition: 0.2s; }
.filter-list label:hover { color: var(--primary-pink); }
.filter-list input[type="checkbox"], .filter-list input[type="radio"] { accent-color: var(--primary-pink); width: 16px; height: 16px; cursor: pointer; }

/* Main Header */
.main-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; background: var(--glass-bg); padding: 15px 25px; border-radius: 15px; box-shadow: var(--glass-shadow); border: 1px solid rgba(255,255,255,0.9); }
.main-header h1 { margin: 0; font-size: 1.5rem; color: #333; }
.sort-select { padding: 8px 15px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: #fff; font-family: 'Inter', sans-serif; font-size: 0.9rem; cursor: pointer; }

/* Profile Elements */
.profile-grid { display: grid; grid-template-columns: 350px 1fr; gap: 40px; margin-bottom: 40px; }
.profile-image-container { position: relative; border-radius: 20px; aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #a8edea 100%); box-shadow: var(--glass-shadow); padding: 4px; }
.profile-image { width: 100%; height: 100%; background-size: cover; background-position: center; border-radius: 16px; }
.stats-box { display: flex; gap: 30px; margin: 25px 0; background: rgba(255,255,255,0.5); padding: 20px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.8); }
.stat-item p { margin:0; font-size:1.6rem; font-family:'Outfit',sans-serif; font-weight:900; color:var(--primary-pink); }
.stat-item span { font-size:0.8rem; font-weight:bold; color:var(--text-light); }

/* Details Toggle */
details { margin-bottom: 5px; }
summary { font-size: 0.9rem; font-weight: bold; color: #444; cursor: pointer; padding: 8px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.2rem; color: #999; }
details[open] summary::after { content: '−'; }
.details-content { padding-left: 10px; padding-top: 5px; border-left: 2px solid #feeef0; margin-left: 5px; }

/* Request Board Elements */
.request-card { background: #fff; border-radius: 15px; padding: 20px; margin-bottom: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); border: 1px solid #eee; display: flex; gap: 20px; transition: var(--transition); }
.request-card:hover { border-color: var(--primary-pink); box-shadow: 0 8px 20px rgba(255,118,117,0.1); }
.req-avatar { width: 50px; height: 50px; border-radius: 50%; background: #ccc; }
.req-body { flex: 1; }
.req-title { font-size: 1.15rem; font-weight: bold; margin: 0 0 10px 0; color: #333; }
.req-reward { font-family: 'Outfit'; font-weight: 800; font-size: 1.3rem; color: var(--primary-pink); }

/* Forms & Chat (cart_checkout) */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: rgba(255,255,255,0.8); box-sizing: border-box; }
.chat-bubble { padding: 15px; border-radius: 20px; margin-bottom: 15px; max-width: 70%; }
.chat-left { background: #fff; align-self: flex-start; border-bottom-left-radius: 5px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.chat-right { background: var(--primary-pink); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

/* Item Card New (Profile) */
.item-card-new { background: rgba(255,255,255,0.7); backdrop-filter: blur(10px); border-radius: 16px; overflow: hidden; transition: 0.3s; border: 1px solid rgba(255,255,255,0.8); box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.item-card-new:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

@media (max-width: 768px) {
  .profile-grid { grid-template-columns: 1fr; }
}

/* --- UI COMPONENTS FROM PHASE 2 (Seller Flow) --- */

/* Settings Layout */
.settings-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .settings-layout { grid-template-columns: 1fr; }
}

/* Form Group overrides for Settings/Seller */
.form-group textarea { resize: vertical; min-height: 100px; }
.section-title { padding-bottom: 10px; border-bottom: 2px dashed #ffb7c5; margin-bottom: 20px; color: var(--primary-pink); font-size: 1.1rem; }

/* Status Labels */
.status { padding: 4px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; }
.status-pending { background: #f1c40f; color: #fff; }
.status-shipped { background: #3498db; color: #fff; }

/* Form inputs for Identity / Upload */
.form-select { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: #fff; }
.upload-area { border: 2px dashed #ddd; border-radius: 15px; padding: 40px 20px; text-align: center; background: #fafafa; cursor: pointer; transition: var(--transition); }
.upload-area:hover { border-color: var(--primary-pink); background: #fff0f3; }
.upload-icon { font-size: 2.5rem; color: #ccc; margin-bottom: 10px; }

/* Sub Image Upload Container */
.sub-image-upload-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
}
.sub-image-upload-container .upload-area {
  padding: 20px 0;
  font-size: 1.5rem;
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- REFACTORING UTILITIES (PHASE 9) --- */

/* Layout & Flex */
.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-xs { gap: 5px; }
.gap-sm { gap: 10px; }
.gap-md { gap: 15px; }
.gap-lg { gap: 20px; }
.gap-xl { gap: 25px; }

/* Spacing (Margin Bottom) */
.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: 5px; }
.mb-sm { margin-bottom: 10px; }
.mb-md { margin-bottom: 15px; }
.mb-lg { margin-bottom: 20px; }
.mb-xl { margin-bottom: 30px; }
.mb-xxl { margin-bottom: 40px; }

/* Spacing (Margin Top) */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: 10px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 30px; }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.85rem; }
.text-md { font-size: 1rem; }
.text-lg { font-size: 1.2rem; }
.text-xl { font-size: 1.5rem; }
.font-bold { font-weight: bold; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* Colors */
.text-primary { color: var(--primary-pink); }
.text-muted { color: var(--text-light); }
.text-gold { color: #8b6508; }
.text-blue { color: #0984e3; }
.text-red { color: #d63031; }

/* Containers & Sizing */
.w-100 { width: 100%; }
.layout-main-col { flex: 2; min-width: 300px; }
.container-sm { max-width: 800px; margin: 0 auto; }
.container-md { max-width: 900px; margin: 0 auto; }

/* Large Action Buttons (Dashboard) */
.btn-action {
  border-radius: 20px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-action:hover {
  transform: translateY(-3px);
}
.btn-action-gold {
  background: linear-gradient(135deg, #fdf6e3, #e1c699);
  color: #8b6508;
  border: 2px solid #8b6508;
  box-shadow: 0 4px 15px rgba(139, 101, 8, 0.2);
}
.btn-action-blue {
  background: linear-gradient(135deg, #f0f8ff, #74b9ff);
  color: #0984e3;
  border: 2px solid #0984e3;
  box-shadow: 0 4px 15px rgba(9, 132, 227, 0.2);
}
.btn-action-red {
  background: linear-gradient(135deg, #fff0f3, #ff9a9e);
  color: #d63031;
  border: 2px solid #ff7675;
  box-shadow: 0 4px 15px rgba(214, 48, 49, 0.2);
}

/* Icon Box */
.icon-box-lg {
  font-size: 2.5rem;
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.btn-action-gold .icon-box-lg { box-shadow: 0 4px 10px rgba(139, 101, 8, 0.15); }
.btn-action-blue .icon-box-lg { box-shadow: 0 4px 10px rgba(9, 132, 227, 0.15); }
.btn-action-red .icon-box-lg { box-shadow: 0 4px 10px rgba(214, 48, 49, 0.15); }


/* Flex utilities */
.flex-1 { flex: 1; }
.flex-2 { flex: 2; }
.flex-shrink-0 { flex-shrink: 0; }

/* --- Extracted from index.php --- */
html { scroll-behavior: smooth; }
        /* Ticker */
        .ticker-wrap { background: #fff0f3; border-bottom: 1px solid var(--glass-border); padding: 8px 15px; font-size: 0.85rem; color: var(--primary-pink); display:flex; align-items:center; }
        .ticker-label { font-weight: bold; background: var(--primary-pink); color: #fff; padding: 3px 8px; border-radius: 4px; margin-right: 15px; font-size:0.75rem; white-space:nowrap; }
        
        /* Hero Banner */
        .hero { position: relative; width: 100%; height: 350px; border-radius: 20px; overflow: hidden; margin-bottom: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
        .hero-bg { width: 100%; height: 100%; background: url('../images/hero.png') center/cover no-repeat; }
        .hero-overlay { position: absolute; top:0; left:0; width:100%; height:100%; background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.6) 50%, transparent 100%); display:flex; flex-direction:column; justify-content:center; padding: 35px; }
        .hero-title { font-size: 2rem; color: var(--primary-pink); margin: 0 0 10px 0; font-weight: 800; }
        
        /* Girl Profile Scroll (Horizontal) */
        .girls-scroll { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 15px; margin-bottom: 40px; -ms-overflow-style: none; scrollbar-width: none; }
        .girls-scroll::-webkit-scrollbar { display: none; }
        .girl-card { flex: 0 0 auto; width: calc((100% - 75px) / 6); min-width: 110px; max-width: 200px; aspect-ratio: 3/4; border-radius:18px; text-decoration:none; color:#fff; position:relative; overflow:hidden; background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #a8edea 100%); box-shadow:var(--glass-shadow); transition:0.3s; }
        .girl-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(255,183,197,0.4); }
        .girl-avatar { position:absolute; top:4px; left:4px; width:calc(100% - 8px); height:calc(100% - 8px); border-radius:14px; background-size:cover; background-position:center; z-index:1; }
        .girl-info { position:absolute; bottom:4px; left:4px; width:calc(100% - 8px); padding:40px 10px 15px 10px; border-bottom-left-radius:14px; border-bottom-right-radius:14px; background:linear-gradient(transparent, rgba(0,0,0,0.85)); z-index:2; text-align:left; }
        .girl-info h4 { margin:0 0 3px 0; font-size:1.2rem; font-weight:800; text-shadow:0 2px 4px rgba(0,0,0,0.5); }
        .girl-info p { margin:0; font-size:0.8rem; color:#f1f2f6; text-shadow:0 1px 3px rgba(0,0,0,0.5); }
        .status-dot { width:12px; height:12px; border-radius:50%; background:#2ecc71; position:absolute; top:10px; right:10px; border:2px solid #fff; z-index:3; box-shadow:0 2px 5px rgba(0,0,0,0.3); }

        /* Responsive Items Overlay (PC Grid / Mobile Flex Scroll) */
        .items-responsive { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; margin-bottom: 40px; }
        .items-responsive .item-card { width: 100%; max-width: none; min-width: unset; flex: none; }
        @media (max-width: 768px) {
            .items-responsive { display: flex; flex-wrap: nowrap; overflow-x: auto; padding-bottom: 15px; -ms-overflow-style: none; scrollbar-width: none; margin-bottom: 30px; }
            .items-responsive::-webkit-scrollbar { display: none; }
            .items-responsive .item-card { flex: 0 0 auto; width: calc((100vw - 40px) / 2.5); min-width: 130px; max-width: 180px; }
            /* スマホ版では10列(10個)までに制限 */
            .items-responsive .item-card:nth-child(n+11) { display: none !important; }
        }

        /* Items Scroll (Horizontal) */
        .items-scroll { display: flex; gap: 15px; overflow-x: auto; padding-bottom: 15px; margin-bottom: 40px; -ms-overflow-style: none; scrollbar-width: none; }
        .items-scroll::-webkit-scrollbar { display: none; }
        .item-card { flex: 0 0 auto; width: calc((100% - 75px) / 6); min-width: 150px; max-width: 220px; position:relative; overflow:hidden; aspect-ratio:3/4; border-radius:18px; text-decoration:none; display:block; background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #a8edea 100%); box-shadow:var(--glass-shadow); transition:0.3s; }
        .item-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(255,183,197,0.4); }
        .item-card h3 { margin:0; font-size:0.85rem; line-height:1.2; display:-webkit-box; -webkit-line-clamp:2; line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; text-shadow:0 1px 3px rgba(0,0,0,0.8); }
        .item-card p.seller { font-size:0.75rem; color:#f1f2f6; margin:0; text-shadow:0 1px 3px rgba(0,0,0,0.8); }
        .item-card-img { position:absolute; top:4px; left:4px; width:calc(100% - 8px); height:calc(100% - 8px); border-radius:14px; background-size: cover; background-position: center; z-index:1; }
        .item-info { position:absolute; bottom:4px; left:4px; width:calc(100% - 8px); padding:30px 10px 10px 10px; border-bottom-left-radius:14px; border-bottom-right-radius:14px; background:linear-gradient(transparent, rgba(0,0,0,0.85)); z-index:2; color:#fff; }
        .section-title { font-size: 1.3rem; margin-bottom: 15px; border-left: 5px solid var(--primary-pink); padding-left: 15px; display:flex; justify-content:space-between; align-items:center; font-weight:800; }
        /* Grid for 2 columns */
        .items-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin-bottom: 40px; }
        .items-grid-2 .item-card { width: 100%; max-width: none; }
        /* Grid for 6x2 columns */
        .items-grid-6x2 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; margin-bottom: 40px; }
        .items-grid-6x2 .item-card { width: 100%; max-width: none; min-width: unset; }
        
        /* Modern Circle Play Button (Option 2) */
        .play-btn-modern {
            position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 55px; height: 55px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.6);
            border: 2px solid #fff;
            display: flex; justify-content: center; align-items: center;
            transition: all 0.3s ease;
            z-index: 3;
        }
        .play-btn-modern::after {
            content: ""; width: 0; height: 0;
            border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #fff;
            margin-left: 4px;
            transition: all 0.3s ease;
        }
        .item-card:hover .play-btn-modern { background: rgba(255, 255, 255, 0.9); border-color: #ff7675; }
        .item-card:hover .play-btn-modern::after { border-color: transparent transparent transparent #ff7675; }

        /* 女の子ブログ Diary Section */
        .diary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 40px; }
        .diary-card { display: flex; flex-direction: row; background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,0.6); box-shadow: var(--glass-shadow); transition: transform 0.25s ease, box-shadow 0.25s ease; }
        .diary-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(255,183,197,0.3); }
        .diary-card__img { flex: 0 0 130px; width: 130px; min-height: 174px; position: relative; overflow: hidden; }
        .diary-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
        .diary-card__body { flex: 1; padding: 12px 14px; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
        .diary-card__date { font-size: 0.72rem; color: #9ca3af; font-weight: 500; }
        .diary-card__name { font-size: 0.85rem; font-weight: 700; color: var(--primary-pink); }
        .diary-card__text { font-size: 0.78rem; color: #4b5563; line-height: 1.55; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; }
        @media (max-width: 1024px) { .diary-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 640px) { .diary-grid { grid-template-columns: 1fr; } .diary-card__img { flex: 0 0 110px; width: 110px; min-height: 146px; } }

        /* 公募中 Recruit Section */
        .recruit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 40px; }
        .recruit-card { position: relative; background: rgba(255,255,255,0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 14px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--glass-shadow); transition: transform 0.25s ease, box-shadow 0.25s ease; padding: 20px 20px 14px; display: flex; flex-direction: column; }
        .recruit-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(255,183,197,0.25); }
        .recruit-card__ribbon { position: absolute; top: 0; right: 0; width: 90px; height: 90px; overflow: hidden; pointer-events: none; z-index: 2; }
        .recruit-card__ribbon span { position: absolute; display: block; width: 130px; padding: 5px 0; background: linear-gradient(135deg, var(--primary-pink), #f472b6); color: #fff; text-align: center; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; transform: rotate(45deg); top: 18px; right: -32px; box-shadow: 0 2px 6px rgba(236,72,153,0.3); }
        .recruit-card__title { font-size: 1rem; font-weight: 700; color: #1f2937; line-height: 1.4; margin-bottom: 14px; padding-right: 40px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .recruit-card__info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
        .recruit-card__row { display: flex; align-items: center; font-size: 0.82rem; color: #4b5563; }
        .recruit-card__row-icon { width: 18px; text-align: center; margin-right: 6px; color: #9ca3af; font-size: 0.78rem; }
        .recruit-card__row-label { width: 72px; flex-shrink: 0; font-weight: 500; color: #6b7280; }
        .recruit-card__row-value { flex: 1; font-weight: 600; color: #1f2937; }
        .recruit-card__row-value.price { color: var(--primary-pink); }
        .recruit-card__row-value.deadline-active { color: #059669; }
        .recruit-card__divider { border: 0; border-top: 1px solid rgba(0,0,0,0.06); margin: 0 0 10px; }
        .recruit-card__footer { display: flex; align-items: center; justify-content: space-between; }
        .recruit-card__user { display: flex; align-items: center; gap: 8px; }
        .recruit-card__avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(236,72,153,0.2); }
        .recruit-card__username { font-size: 0.78rem; font-weight: 600; color: #4b5563; }
        .recruit-card__posted { font-size: 0.68rem; color: #9ca3af; }
        .recruit-card__detail-link { font-size: 0.78rem; font-weight: 600; color: var(--primary-pink); text-decoration: none; transition: color 0.2s; }
        .recruit-card__detail-link:hover { color: #be185d; }
        @media (max-width: 1024px) { .recruit-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 640px) { .recruit-grid { grid-template-columns: 1fr; } }
        .diary-card { cursor: pointer; }
        .recruit-card { cursor: pointer; }
        .recruit-card[data-status="closed"] .recruit-card__ribbon { display: none; }
        .recruit-card[data-status="closed"] { opacity: 0.6; }
/* --- End Extracted --- */

/* --- New Utility Classes for index.php --- */
.bg-gradient { background: var(--bg-gradient); }
.text-dark { color: var(--text-dark); }
.container-1200 { max-width: 1200px; margin: 0 auto; padding: 20px; }
.badge-pink { width:fit-content; background:var(--primary-pink); margin-bottom:10px; padding: 5px 15px; border-radius: 20px; color: white; font-weight: bold; }
.text-shadow-light { text-shadow: 0 2px 10px rgba(255,255,255,0.8); }
.hero-description { font-size:1rem; max-width:350px; font-weight:bold; color:#444; background:rgba(255,255,255,0.7); padding:10px; border-radius:10px; }
.divider-dashed { border:0; border-top:1px dashed #ddd; margin:30px 0; }
.text-danger { color:#e74c3c; }
.text-success { color:#2ecc71; }
.text-warning { color:#f1c40f; }
.text-pink { color:#ec4899; }
.text-muted-xs { font-size:0.72rem; color:#9ca3af; font-weight:400; }
.text-light { color:var(--text-light); }
.text-decoration-none { text-decoration:none; }
.font-bold { font-weight:bold; }
.font-normal { font-weight:normal; }
.ml-10 { margin-left:10px; }
.ml-auto { margin-left:auto; }
.section-title-pink { border-left-color:#ec4899; color:#ec4899; }
.section-title-blue { border-left-color:#74b9ff; color:#0984e3; }
.section-title-brown { border-left-color:#8b4513; color:#8b4513; }
.section-title-orange { border-left-color:#f1c40f; color:#f39c12; }
.divider-solid { border:0; border-top:1px solid #eee; margin:40px 0; }

/* --- Extracted from login.php --- */
:root {
            --primary-pink: #ff7675;
            --bg-gradient: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: 1px solid rgba(255, 255, 255, 0.9);
            --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
        }
        body.login-page { font-family: 'Inter', sans-serif; background: var(--bg-gradient); color: #333; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; position: relative; overflow-x: hidden; }
        
        /* Background decor */
        .bg-circle1 { position: absolute; width: 400px; height: 400px; background: #ff9a9e; border-radius: 50%; top: -100px; left: -100px; filter: blur(80px); opacity: 0.4; z-index: 1; }
        .bg-circle2 { position: absolute; width: 300px; height: 300px; background: #a8edea; border-radius: 50%; bottom: -50px; right: -50px; filter: blur(80px); opacity: 0.5; z-index: 1; }

        .login-card {
            background: var(--glass-bg);
            backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
            border: var(--glass-border);
            box-shadow: var(--glass-shadow);
            border-radius: 20px;
            padding: 40px;
            width: 100%;
            max-width: 400px;
            z-index: 10;
        }

        .brand-title {
            text-align: center;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            font-size: 2.5rem;
            color: var(--primary-pink);
            margin: 0 0 10px 0;
            font-style: italic;
            text-decoration: none;
            display: block;
        }

        .sub-title {
            text-align: center;
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 25px;
        }

        .auth-tabs { display: flex; margin-bottom: 25px; border-radius: 10px; overflow: hidden; border: 1px solid var(--primary-pink); }
        .auth-tab { flex: 1; padding: 12px; text-align: center; font-size: 0.9rem; font-weight: bold; cursor: pointer; transition: 0.3s; text-decoration: none; }
        .tab-buyer { background: var(--primary-pink); color: #fff; }
        .tab-seller { background: transparent; color: var(--primary-pink); }
        .tab-seller:hover { background: rgba(255,118,117,0.1); }

        .input-group { margin-bottom: 20px; }
        .input-group label { display: block; font-size: 0.85rem; font-weight: bold; margin-bottom: 8px; color: #555; }
        .input-group input { width: 100%; box-sizing: border-box; padding: 12px 15px; border-radius: 10px; border: 1px solid #ddd; background: #fff; font-size: 1rem; outline: none; transition: 0.2s; }
        .input-group input:focus { border-color: var(--primary-pink); box-shadow: 0 0 0 3px rgba(255,118,117,0.2); }

        .btn-primary {
            width: 100%; padding: 14px; background: linear-gradient(135deg, var(--primary-pink) 0%, #fecfef 100%);
            color: #fff; border: none; border-radius: 30px; font-weight: bold; font-size: 1.1rem; cursor: pointer; transition: 0.3s;
            box-shadow: 0 4px 15px rgba(255,118,117,0.3); text-decoration: none; display: flex; align-items: center; justify-content: center; box-sizing: border-box;
        }
        .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,118,117,0.4); }

        .divider { display: flex; align-items: center; text-align: center; margin: 25px 0; color: #aaa; font-size: 0.85rem; }
        .divider::before, .divider::after { content: ''; flex: 1; border-bottom: 1px solid #ddd; }
        .divider::before { margin-right: 10px; }
        .divider::after { margin-left: 10px; }

        .social-btn {
            width: 100%; padding: 12px; background: #fff; border: 1px solid #ddd; border-radius: 30px; font-weight: bold; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer; margin-bottom: 15px; transition: 0.2s; text-decoration: none; color: #333; box-sizing: border-box;
        }
        .social-btn:hover { background: #f9f9f9; border-color: #ccc; }
        
        /* Icons */
        .g-icon { width: 20px; height: 20px; background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) 73% 55%/150% 150% no-repeat; -webkit-background-clip: text; background-clip: text; color: transparent; font-weight:900; -webkit-text-fill-color: transparent;}
        .x-icon { font-weight: 900; font-size: 1.1rem; color: #000; }
/* --- End Extracted --- */

/* --- New Utility Classes for login.php --- */
.mt-30 { margin-top: 30px; }
.mt-10 { margin-top: 10px; }
.text-secondary { color: #666; }
.text-muted { color: #aaa; }
.text-center { text-align: center; }


/* --- Extracted from register.php --- */
:root {
          --primary-pink: #ff7675;
          --bg-gradient: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
          --glass-bg: rgba(255, 255, 255, 0.7);
          --glass-border: 1px solid rgba(255, 255, 255, 0.9);
          --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
      }
      body.register-page { font-family: 'Inter', sans-serif; background: var(--bg-gradient); color: #333; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; position: relative; overflow-x: hidden;}
      
      /* Background decor */
      .bg-circle1 { position: absolute; width: 400px; height: 400px; background: #ff9a9e; border-radius: 50%; top: -100px; left: -100px; filter: blur(80px); opacity: 0.4; z-index: 1; }
      .bg-circle2 { position: absolute; width: 300px; height: 300px; background: #a8edea; border-radius: 50%; bottom: -50px; right: -50px; filter: blur(80px); opacity: 0.5; z-index: 1; }

      .register-card {
          background: var(--glass-bg);
          backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
          border: var(--glass-border);
          box-shadow: var(--glass-shadow);
          border-radius: 20px;
          padding: 40px;
          width: 100%;
          max-width: 450px;
          z-index: 10;
          text-align: center;
          box-sizing: border-box;
      }
      .brand {
          text-align: center;
          font-family: 'Outfit', sans-serif;
          font-weight: 900;
          color: var(--primary-pink);
          font-style: italic;
          text-decoration: none;
      }
      .btn-primary {
          background: linear-gradient(135deg, var(--primary-pink) 0%, #fecfef 100%);
          color: #fff; border: none; border-radius: 30px; font-weight: bold; font-size: 1.1rem; cursor: pointer; transition: 0.3s;
          display: flex; align-items: center; justify-content: center;
      }
      .btn-primary:hover {
          transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,118,117,0.4) !important;
      }
      .input-group { text-align: left; margin-bottom: 25px; }
      .input-group label { display: block; font-size: 0.85rem; font-weight: bold; margin-bottom: 8px; color: #555; }
      .input-group input { width: 100%; box-sizing: border-box; padding: 12px 15px; border-radius: 10px; border: 1px solid #ddd; background: #fff; font-size: 1rem; outline: none; transition: 0.2s; }
      .input-group input:focus { border-color: var(--primary-pink); box-shadow: 0 0 0 3px rgba(255,118,117,0.2); }
/* --- End Extracted --- */

/* --- New Utility Classes for register.php --- */
.btn-outline-pink { flex:1; padding:15px; border-radius:30px; font-weight:bold; font-size:1.1rem; border:2px solid #ff7675; background:#fff; color:#ff7675; cursor:pointer; transition:0.3s; }
.btn-outline-pink:hover { background: #ff7675; color: #fff; }
.btn-outline-blue { flex:1; padding:15px; border-radius:30px; font-weight:bold; font-size:1.1rem; border:2px solid #74b9ff; background:#fff; color:#74b9ff; cursor:pointer; transition:0.3s; }
.btn-outline-blue:hover { background: #74b9ff; color: #fff; }
.btn-disabled { opacity:0.5; cursor:not-allowed; box-shadow: 0 5px 15px rgba(255,118,117,0.3); }
.d-flex { display: flex; }
.gap-15 { gap: 15px; }
.text-md { font-size: 0.95rem; }
.font-semibold { font-weight: 600; }
.text-lg { font-size: 1.3rem; }
.text-2xl { font-size: 2.5rem; }
.d-block { display: block; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mt-5 { margin-top: 5px; }
.mt-20 { margin-top: 20px; }
.text-xs { font-size: 0.8rem; }
.line-height-15 { line-height: 1.5; }
.text-left { text-align: left; }
.m-0 { margin: 0; }

/* Button Ring Animations */
.btn-outline-pink { position: relative; }
.btn-outline-blue { position: relative; }

.btn-outline-pink::before, .btn-outline-pink::after,
.btn-outline-blue::before, .btn-outline-blue::after {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 35px;
    border: 2px solid;
    animation: ringsShrink 2s infinite ease-in-out;
    pointer-events: none;
    opacity: 0;
}
.btn-outline-pink::before, .btn-outline-pink::after { border-color: rgba(255,118,117,0.8); }
.btn-outline-blue::before, .btn-outline-blue::after { border-color: rgba(116,185,255,0.8); }

.btn-outline-pink::after, .btn-outline-blue::after {
    animation-delay: 1s;
}

@keyframes ringsShrink {
    0% { transform: scale(1.3); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

/* --- Extracted from forgot_password.php --- */
body.forgot-password-page { font-family: 'Inter', sans-serif; background: var(--bg-gradient); color: #333; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; position: relative; overflow: hidden;}
.desc-text { text-align: center; font-size: 0.85rem; color: #777; margin-bottom: 25px; line-height: 1.5; }
.back-link { display: block; text-align: center; margin-top: 30px; font-size: 0.9rem; color: #888; text-decoration: none; font-weight: 600; transition: color 0.2s; }
.back-link:hover { color: var(--primary-pink); }
.success-msg { display: none; background: rgba(46, 204, 113, 0.1); color: #27ae60; padding: 15px; border-radius: 10px; text-align: center; font-size: 0.9rem; font-weight: bold; margin-bottom: 20px; border: 1px solid rgba(46, 204, 113, 0.3); }
/* --- End Extracted --- */

/* --- Extracted from faq.php --- */
.faq-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            margin-bottom: 15px;
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }
        .faq-question {
            font-weight: bold;
            color: var(--primary-pink);
            font-size: 1.1rem;
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        .faq-answer {
            color: #444;
            line-height: 1.6;
            padding-left: 34px;
        }
        .faq-icon-q {
            background: var(--primary-pink);
            color: white;
            border-radius: 50%;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.9rem;
        }
/* --- End Extracted --- */
/* --- New Utility Classes for faq.php --- */
.bg-gradient { background: var(--bg-gradient); }
.text-center { text-align: center; }
.text-dark { color: #333; }
.text-secondary { color: #666; }
.mb-15 { margin-bottom: 15px; }
.mb-40 { margin-bottom: 40px; }
.mt-40 { margin-top: 40px; }
.text-xl { font-size: 2rem; }
.px-30 { padding-left: 30px; padding-right: 30px; }
.py-10 { padding-top: 10px; padding-bottom: 10px; }
.text-decoration-none { text-decoration: none; }
.rounded-20 { border-radius: 20px; }

/* --- Extracted from sitemap.php --- */
body.sitemap-page { padding: 40px; background: var(--bg-gradient); min-height: 100vh; }
        .grid-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; max-width: 1200px; margin: 0 auto; padding: 0 15px; box-sizing: border-box; }
        .role-column { background: rgba(255,255,255,0.6); padding: 15px; border-radius: 15px; box-shadow: 0 8px 32px rgba(255,183,197,0.1); border: 1px solid rgba(255,255,255,0.7); height: fit-content; max-height: 80vh; overflow-y: auto; }
        .role-column h2 { text-align: center; margin-top: 0; padding-bottom: 8px; border-bottom: 2px dashed #ccc; position: sticky; top: 0; background: rgba(255,255,255,0.9); z-index: 10; margin-left: -15px; margin-right: -15px; padding: 10px 15px; font-size: 1.1rem; }
        .link-list { list-style: none; padding: 0; }
        .link-list li { margin-bottom: 10px; }
        .link-list a { display: block; padding: 12px; background: #fff; border-radius: 10px; text-decoration: none; color: var(--text-dark); transition: transform 0.2s; box-shadow: 0 2px 5px rgba(0,0,0,0.05); font-weight: 600; font-size: 0.9rem; word-break: break-all; border-left: 4px solid transparent; }
        .link-list a:hover { transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.1); font-weight: bold; }
        
        /* 列ごとのホバーアクセントカラー */
        .col-buyer a:hover { border-left-color: #2ecc71; color: #2ecc71; }
        .col-seller a:hover { border-left-color: #ff7675; color: #ff7675; }
        .col-admin a:hover { border-left-color: #74b9ff; color: #74b9ff; }
        
        /* スクロールバー */
        .role-column::-webkit-scrollbar { width: 6px; }
        .role-column::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 10px; }
        
        @media (max-width: 768px) {
            .grid-container { grid-template-columns: 1fr; }
            .role-column { max-height: none; overflow-y: visible; }
        }
/* --- End Extracted --- */
/* --- New Utility Classes for sitemap.php --- */
.text-orange { color: #d35400; }
.border-orange { border-color: #d35400 !important; }
.text-green { color: #2ecc71; }
.border-top-pink { border-top: 5px solid #ffb7c5; }
.border-top-blue { border-top: 5px solid #a2cffe; }
.border-top-green { border-top: 5px solid #a8e6cf; }
.px-24 { padding-left: 24px; padding-right: 24px; }
.py-12 { padding-top: 12px; padding-bottom: 12px; }
.drop-shadow { filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); }
.d-inline-block { display: inline-block; }
.mt-15 { margin-top: 15px; }


/* --- Extracted from play_button_options.html --- */
body.play-options-page {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #fdfbfb;
    color: #333;
    margin: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.play-options-page .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
}
.play-options-page .card-wrap { text-align: center; width: 250px; }
.play-options-page .card-title { font-weight: bold; margin-bottom: 10px; font-size: 1.1rem; color: #555; }
.play-options-page .card-desc { font-size: 0.8rem; color: #777; margin-bottom: 15px; height: 60px; }
.play-options-page .image-box { position: relative; width: 100%; aspect-ratio: 3/4; border-radius: 18px; background: url('../images/avatar_yuina.png') center/cover no-repeat; box-shadow: 0 10px 20px rgba(0,0,0,0.1); overflow: hidden; cursor: pointer; }
.play-options-page .play-opt-1 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.5); display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
.play-options-page .play-opt-1::after { content: ""; width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #fff; margin-left: 5px; }
.play-options-page .image-box:hover .play-opt-1 { background: rgba(255, 118, 117, 0.6); transform: translate(-50%, -50%) scale(1.1); }
.play-options-page .play-opt-2 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 55px; height: 55px; border-radius: 50%; background: rgba(0, 0, 0, 0.6); border: 2px solid #fff; display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
.play-options-page .play-opt-2::after { content: ""; width: 0; height: 0; border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #fff; margin-left: 4px; }
.play-options-page .image-box:hover .play-opt-2 { background: rgba(255, 255, 255, 0.9); border-color: #ff7675; }
.play-options-page .image-box:hover .play-opt-2::after { border-color: transparent transparent transparent #ff7675; }
.play-options-page .play-opt-3 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 48px; border-radius: 12px; background: rgba(30, 30, 30, 0.8); display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
.play-options-page .play-opt-3::after { content: ""; width: 0; height: 0; border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #fff; }
.play-options-page .image-box:hover .play-opt-3 { background: #ff4757; transform: translate(-50%, -50%) scale(1.05); }
.play-options-page .play-opt-4 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 0; height: 0; border-style: solid; border-width: 25px 0 25px 40px; border-color: transparent transparent transparent #fff; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6)); transition: all 0.3s ease; }
.play-options-page .image-box:hover .play-opt-4 { filter: drop-shadow(0 4px 15px rgba(255, 118, 117, 0.8)); transform: translate(-50%, -50%) scale(1.15); border-color: transparent transparent transparent #ff7675; }
.play-options-page .play-opt-5 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 65px; height: 65px; border-radius: 50%; background: rgba(20, 20, 20, 0.7); border: 2px solid #fd79a8; box-shadow: 0 0 15px rgba(253, 121, 168, 0.6); display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
.play-options-page .play-opt-5::after { content: ""; width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 18px; border-color: transparent transparent transparent #fd79a8; margin-left: 6px; filter: drop-shadow(0 0 5px rgba(253, 121, 168, 0.8)); }
.play-options-page .image-box:hover .play-opt-5 { background: #fd79a8; box-shadow: 0 0 25px rgba(253, 121, 168, 1); transform: translate(-50%, -50%) scale(1.1); border-color:#fff; }
.play-options-page .image-box:hover .play-opt-5::after { border-color: transparent transparent transparent #fff; filter:none; }

/* --- Extracted from public_recruitment/index.php --- */
.public-recruitment-page .page-container { max-width: 1100px; margin: 0 auto; padding: 30px 20px 60px; }
.public-recruitment-page .back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--color-accent); text-decoration: none; font-weight: 600; margin-bottom: 20px; transition: opacity 0.2s; }
.public-recruitment-page .back-link:hover { opacity: 0.7; }
.public-recruitment-page .page-header { font-size: 0.9rem; color: var(--text-muted); text-align: center; margin-bottom: 24px; font-weight: 500; letter-spacing: 0.05em; }
.public-recruitment-page .detail-layout { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.public-recruitment-page .req-title { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; line-height: 1.5; }
.public-recruitment-page .req-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; border-bottom: 1px solid var(--border-color); padding-bottom: 24px; }
.public-recruitment-page .req-meta-row { display: flex; align-items: center; font-size: 0.9rem; }
.public-recruitment-page .req-meta-icon { width: 28px; text-align: center; font-size: 1rem; margin-right: 10px; color: var(--text-muted); }
.public-recruitment-page .req-meta-label { width: 90px; font-weight: 500; color: var(--text-muted); flex-shrink: 0; }
.public-recruitment-page .req-meta-value { flex: 1; font-weight: 600; color: var(--text-primary); }
.public-recruitment-page .req-meta-value.price { color: var(--color-accent); }
.public-recruitment-page .req-meta-value.time-active { color: #2ecc71; }
.public-recruitment-page .section-heading { display: flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; }
.public-recruitment-page .section-heading::before { content: ''; width: 4px; height: 20px; background: var(--color-accent); border-radius: 2px; }
.public-recruitment-page .req-detail-box { background: var(--bg-section); border-radius: 12px; padding: 20px; margin-bottom: 30px; font-size: 0.88rem; line-height: 1.8; color: var(--text-primary); }
.public-recruitment-page .publisher-section { background: rgba(255,118,117,0.05); border: 1px solid rgba(255,118,117,0.2); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 30px; }
.public-recruitment-page .publisher-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-bottom: 14px; }
.public-recruitment-page .publisher-info { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
.public-recruitment-page .publisher-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,118,117,0.3); }
.public-recruitment-page .publisher-name { font-size: 0.92rem; font-weight: 600; color: var(--text-primary); }

/* --- Extracted from buyer/product.php --- */
.buyer-product-page .form-group { margin-bottom: 20px; }
.buyer-product-page .form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--text-dark); }
.buyer-product-page .form-group input, .buyer-product-page .form-group textarea, .buyer-product-page .form-group select { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: rgba(255,255,255,0.8); box-sizing: border-box; }
.buyer-product-page .chat-bubble { padding: 15px; border-radius: 20px; margin-bottom: 15px; max-width: 70%; }
.buyer-product-page .chat-left { background: #fff; align-self: flex-start; border-bottom-left-radius: 5px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.buyer-product-page .chat-right { background: var(--primary-pink); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

/* --- New Utility Classes for Files 7-10 --- */
.font-bold { font-weight: bold; }
.font-normal { font-weight: 400; }
.w-100 { width: 100% !important; }
.rounded-12 { border-radius: 12px; }
.text-lg { font-size: 1.1rem; }
.p-30 { padding: 30px; }
.text-sm { font-size: 0.85rem; }
.text-gray { color: #555; }
.mt-0 { margin-top: 0; }
.border-bottom-pink { border-bottom: 2px solid var(--primary-pink); }
.bg-brown { background: #8b4513; }
.bg-teal { background: #00cec9; }
.bg-dark-gray { background: #555; }
.bg-orange { background: #f39c12; }
.bg-green { background: #27ae60; }
.bg-navy { background: #34495e; }
.bg-purple { background: #8e44ad; }
.bg-hotpink { background: #e84393; }
.bg-blue { background: #0097e6; }
.bg-red { background: #c23616; }
.w-40 { width: 40px; }
.h-40 { height: 40px; }
.rounded-circle { border-radius: 50%; }
.d-block { display: block; }
.text-xl { font-size: 1.3rem; }
.border-top-light { border-top: 1px solid #eee; }
.my-20 { margin-top: 20px; margin-bottom: 20px; }
.bg-light-gray { background: #f1f2f6; }
.p-15 { padding: 15px; }
.m-0 { margin: 0; }
.pl-20 { padding-left: 20px; }

/* --- Extracted from play_button_options.html --- */
body.play-options-page {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #fdfbfb;
    color: #333;
    margin: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.play-options-page .container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    max-width: 1000px;
}
.play-options-page .card-wrap { text-align: center; width: 250px; }
.play-options-page .card-title { font-weight: bold; margin-bottom: 10px; font-size: 1.1rem; color: #555; }
.play-options-page .card-desc { font-size: 0.8rem; color: #777; margin-bottom: 15px; height: 60px; }
.play-options-page .image-box { position: relative; width: 100%; aspect-ratio: 3/4; border-radius: 18px; background: url('../images/avatar_yuina.png') center/cover no-repeat; box-shadow: 0 10px 20px rgba(0,0,0,0.1); overflow: hidden; cursor: pointer; }
.play-options-page .play-opt-1 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 60px; height: 60px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255, 255, 255, 0.5); display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
.play-options-page .play-opt-1::after { content: ""; width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #fff; margin-left: 5px; }
.play-options-page .image-box:hover .play-opt-1 { background: rgba(255, 118, 117, 0.6); transform: translate(-50%, -50%) scale(1.1); }
.play-options-page .play-opt-2 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 55px; height: 55px; border-radius: 50%; background: rgba(0, 0, 0, 0.6); border: 2px solid #fff; display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
.play-options-page .play-opt-2::after { content: ""; width: 0; height: 0; border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #fff; margin-left: 4px; }
.play-options-page .image-box:hover .play-opt-2 { background: rgba(255, 255, 255, 0.9); border-color: #ff7675; }
.play-options-page .image-box:hover .play-opt-2::after { border-color: transparent transparent transparent #ff7675; }
.play-options-page .play-opt-3 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 70px; height: 48px; border-radius: 12px; background: rgba(30, 30, 30, 0.8); display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
.play-options-page .play-opt-3::after { content: ""; width: 0; height: 0; border-style: solid; border-width: 10px 0 10px 16px; border-color: transparent transparent transparent #fff; }
.play-options-page .image-box:hover .play-opt-3 { background: #ff4757; transform: translate(-50%, -50%) scale(1.05); }
.play-options-page .play-opt-4 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 0; height: 0; border-style: solid; border-width: 25px 0 25px 40px; border-color: transparent transparent transparent #fff; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6)); transition: all 0.3s ease; }
.play-options-page .image-box:hover .play-opt-4 { filter: drop-shadow(0 4px 15px rgba(255, 118, 117, 0.8)); transform: translate(-50%, -50%) scale(1.15); border-color: transparent transparent transparent #ff7675; }
.play-options-page .play-opt-5 { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 65px; height: 65px; border-radius: 50%; background: rgba(20, 20, 20, 0.7); border: 2px solid #fd79a8; box-shadow: 0 0 15px rgba(253, 121, 168, 0.6); display: flex; justify-content: center; align-items: center; transition: all 0.3s ease; }
.play-options-page .play-opt-5::after { content: ""; width: 0; height: 0; border-style: solid; border-width: 12px 0 12px 18px; border-color: transparent transparent transparent #fd79a8; margin-left: 6px; filter: drop-shadow(0 0 5px rgba(253, 121, 168, 0.8)); }
.play-options-page .image-box:hover .play-opt-5 { background: #fd79a8; box-shadow: 0 0 25px rgba(253, 121, 168, 1); transform: translate(-50%, -50%) scale(1.1); border-color:#fff; }
.play-options-page .image-box:hover .play-opt-5::after { border-color: transparent transparent transparent #fff; filter:none; }

/* --- Extracted from public_recruitment/index.php --- */
.public-recruitment-page .page-container { max-width: 1100px; margin: 0 auto; padding: 30px 20px 60px; }
.public-recruitment-page .back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--color-accent); text-decoration: none; font-weight: 600; margin-bottom: 20px; transition: opacity 0.2s; }
.public-recruitment-page .back-link:hover { opacity: 0.7; }
.public-recruitment-page .page-header { font-size: 0.9rem; color: var(--text-muted); text-align: center; margin-bottom: 24px; font-weight: 500; letter-spacing: 0.05em; }
.public-recruitment-page .detail-layout { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.public-recruitment-page .req-title { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); margin-bottom: 20px; line-height: 1.5; }
.public-recruitment-page .req-meta { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; border-bottom: 1px solid var(--border-color); padding-bottom: 24px; }
.public-recruitment-page .req-meta-row { display: flex; align-items: center; font-size: 0.9rem; }
.public-recruitment-page .req-meta-icon { width: 28px; text-align: center; font-size: 1rem; margin-right: 10px; color: var(--text-muted); }
.public-recruitment-page .req-meta-label { width: 90px; font-weight: 500; color: var(--text-muted); flex-shrink: 0; }
.public-recruitment-page .req-meta-value { flex: 1; font-weight: 600; color: var(--text-primary); }
.public-recruitment-page .req-meta-value.price { color: var(--color-accent); }
.public-recruitment-page .req-meta-value.time-active { color: #2ecc71; }
.public-recruitment-page .section-heading { display: flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; }
.public-recruitment-page .section-heading::before { content: ''; width: 4px; height: 20px; background: var(--color-accent); border-radius: 2px; }
.public-recruitment-page .req-detail-box { background: var(--bg-section); border-radius: 12px; padding: 20px; margin-bottom: 30px; font-size: 0.88rem; line-height: 1.8; color: var(--text-primary); }
.public-recruitment-page .publisher-section { background: rgba(255,118,117,0.05); border: 1px solid rgba(255,118,117,0.2); border-radius: 12px; padding: 20px; text-align: center; margin-bottom: 30px; }
.public-recruitment-page .publisher-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; margin-bottom: 14px; }
.public-recruitment-page .publisher-info { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 16px; }
.public-recruitment-page .publisher-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,118,117,0.3); }
.public-recruitment-page .publisher-name { font-size: 0.92rem; font-weight: 600; color: var(--text-primary); }

/* --- Extracted from buyer/product.php --- */
.buyer-product-page .form-group { margin-bottom: 20px; }
.buyer-product-page .form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--text-dark); }
.buyer-product-page .form-group input, .buyer-product-page .form-group textarea, .buyer-product-page .form-group select { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: rgba(255,255,255,0.8); box-sizing: border-box; }
.buyer-product-page .chat-bubble { padding: 15px; border-radius: 20px; margin-bottom: 15px; max-width: 70%; }
.buyer-product-page .chat-left { background: #fff; align-self: flex-start; border-bottom-left-radius: 5px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.buyer-product-page .chat-right { background: var(--primary-pink); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

/* --- New Utility Classes for Files 7-10 --- */
.font-bold { font-weight: bold; }
.font-normal { font-weight: 400; }
.w-100 { width: 100% !important; }
.rounded-12 { border-radius: 12px; }
.text-lg { font-size: 1.1rem; }
.p-30 { padding: 30px; }
.text-sm { font-size: 0.85rem; }
.text-gray { color: #555; }
.mt-0 { margin-top: 0; }
.border-bottom-pink { border-bottom: 2px solid var(--primary-pink); }
.bg-brown { background: #8b4513; }
.bg-teal { background: #00cec9; }
.bg-dark-gray { background: #555; }
.bg-orange { background: #f39c12; }
.bg-green { background: #27ae60; }
.bg-navy { background: #34495e; }
.bg-purple { background: #8e44ad; }
.bg-hotpink { background: #e84393; }
.bg-blue { background: #0097e6; }
.bg-red { background: #c23616; }
.w-40 { width: 40px; }
.h-40 { height: 40px; }
.rounded-circle { border-radius: 50%; }
.d-block { display: block; }
.text-xl { font-size: 1.3rem; }
.border-top-light { border-top: 1px solid #eee; }
.my-20 { margin-top: 20px; margin-bottom: 20px; }
.bg-light-gray { background: #f1f2f6; }
.p-15 { padding: 15px; }
.m-0 { margin: 0; }
.pl-20 { padding-left: 20px; }

/* --- New Utility Classes for buyer/products.php --- */
.w-250 { width: 250px; }
.filter-badge-active { background: #FADCE3; border-color: var(--color-primary); color: var(--text-primary); }
.lh-22 { line-height: 2.2; }
.align-self-end { align-self: flex-end; }

/* --- Extracted from buyer/product_detail_digital.php --- */


body.buyer-product-detail-digital-page { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; background: var(--bg-gradient); color: var(--text-dark); }
.buyer-product-detail-digital-page .glass-container { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.8); border-radius: 20px; box-shadow: var(--glass-shadow); padding: 30px; }
.buyer-product-detail-digital-page .detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.buyer-product-detail-digital-page @media (max-width: 768px) { .detail-grid { grid-template-columns: 1fr; } }
.buyer-product-detail-digital-page .product-image-container { position: relative; border-radius: 18px; aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #a8edea 100%); box-shadow: var(--glass-shadow); padding: 4px; }
.buyer-product-detail-digital-page .product-image { width: 100%; height: 100%; background-size: cover; background-position: center; border-radius: 14px; }
.buyer-product-detail-digital-page .price { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 800; color: #ff7675; margin: 10px 0; }
.buyer-product-detail-digital-page .option-card { background: #fff; border-radius: 12px; padding: 15px; border: 2px solid transparent; transition: 0.3s; cursor: pointer; display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.buyer-product-detail-digital-page .option-card:hover { border-color: #ff9a9e; box-shadow: 0 4px 15px rgba(255,154,158,0.2); }
.buyer-product-detail-digital-page .seller-mini { display: flex; align-items: center; gap: 15px; padding: 15px; background: rgba(255,255,255,0.5); border-radius: 12px; margin-top: 20px; text-decoration: none; color: inherit; transition: 0.3s; border: 1px solid rgba(255,255,255,0.8); }
.buyer-product-detail-digital-page .seller-mini:hover { background: rgba(255,255,255,0.8); transform: translateY(-3px); }
.buyer-product-detail-digital-page .seller-avatar { width: 50px; height: 50px; border-radius: 50%; background-size: cover; background-position: center; }
    

/* --- Extracted from buyer/product_detail_physical.php --- */


body.buyer-product-detail-physical-page { font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif; background: var(--bg-gradient); color: var(--text-dark); }
.buyer-product-detail-physical-page .glass-container { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.8); border-radius: 20px; box-shadow: var(--glass-shadow); padding: 30px; }
.buyer-product-detail-physical-page .detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.buyer-product-detail-physical-page @media (max-width: 768px) { .detail-grid { grid-template-columns: 1fr; } }
.buyer-product-detail-physical-page .product-image-container { position: relative; border-radius: 18px; aspect-ratio: 3/4; overflow: hidden; background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #a8edea 100%); box-shadow: var(--glass-shadow); padding: 4px; }
.buyer-product-detail-physical-page .product-image { width: 100%; height: 100%; background-size: cover; background-position: center; border-radius: 14px; }
.buyer-product-detail-physical-page .price { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 800; color: #ff7675; margin: 10px 0; }
.buyer-product-detail-physical-page .option-card { background: #fff; border-radius: 12px; padding: 15px; border: 2px solid transparent; transition: 0.3s; cursor: pointer; display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.buyer-product-detail-physical-page .option-card:hover { border-color: #ff9a9e; box-shadow: 0 4px 15px rgba(255,154,158,0.2); }
.buyer-product-detail-physical-page .seller-mini { display: flex; align-items: center; gap: 15px; padding: 15px; background: rgba(255,255,255,0.5); border-radius: 12px; margin-top: 20px; text-decoration: none; color: inherit; transition: 0.3s; border: 1px solid rgba(255,255,255,0.8); }
.buyer-product-detail-physical-page .seller-mini:hover { background: rgba(255,255,255,0.8); transform: translateY(-3px); }
.buyer-product-detail-physical-page .seller-avatar { width: 50px; height: 50px; border-radius: 50%; background-size: cover; background-position: center; }
    

/* --- Extracted from buyer/checkout.php & buyer/order_complete.php --- */
.buyer-checkout-page .checkout-col { flex: 1; max-width: 500px; min-width: 300px; }
.buyer-checkout-page .checkout-summary-box { background: #f8fafc; border-radius: 12px; padding: 20px; margin-bottom: 20px; }
.buyer-checkout-page .checkout-lg-bold { font-size: 1.2rem; font-weight: 700; }
.buyer-checkout-page .checkout-total { font-size: 1.4rem; font-weight: 700; color: var(--danger-red); }
.buyer-checkout-page .checkout-btn { text-align: center; font-size: 1.2rem; padding: 15px; border-radius: 30px; }
.buyer-checkout-page .checkout-lg-center { font-size: 1.2rem; text-align: center; }

.buyer-order-complete-page .order-complete-container { max-width: 600px; margin: 0 auto; text-align: center; }
.buyer-order-complete-page .order-complete-icon { font-size: 5rem; }
.buyer-order-complete-page .order-complete-btn { padding: 20px 40px; border-radius: 30px; text-decoration: none; }
.buyer-order-complete-page .order-complete-btn-outline { padding: 15px 30px; }

/* --- Extracted from buyer/chat.php --- */


.buyer-chat-page :root {
        --pastel-blue: #e0f0ff;

        --pastel-pink: #ffe0e6;

    }

.buyer-chat-page .chat-bubble-custom { padding: 15px; border-radius: 20px; margin-bottom: 15px; max-width: 70%; word-break: break-all; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.buyer-chat-page .chat-left { align-self: flex-start; border-bottom-left-radius: 5px; }
.buyer-chat-page .chat-right { align-self: flex-end; border-bottom-right-radius: 5px; }
.buyer-chat-page .bg-buyer { background-color: var(--pastel-blue) !important; color: #333 !important; }
.buyer-chat-page .bg-seller { background-color: var(--pastel-pink) !important; color: #333 !important; }
  
.buyer-chat-page .chat-messages-area { flex:1; overflow-y:auto; background:rgba(255,255,255,0.4); padding:20px; border-radius:15px; }
.buyer-chat-page .chat-action-btn { padding: 10px 15px; border-radius: 50%; font-size:1.2rem; cursor:pointer; background:#fff; display:flex; align-items:center; justify-content:center; }
.buyer-chat-page .chat-template-btn { width: auto; padding: 10px 20px; white-space: nowrap; }
.buyer-chat-page .chat-link-btn { padding: 5px 15px; text-decoration:none; }
.buyer-chat-page .chat-badge-alert { font-size:0.8rem; padding:4px 12px; background:#fff0f3; color:#ff7675; border:1px solid #ff7675; }
.buyer-chat-page .chat-icon-btn { width: 40px; height: 40px; background: #fff; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.1); display:flex; align-items:center; justify-content:center; font-size:1.2rem; }
.buyer-chat-page .chat-container-main { height: 60vh; padding: 25px; }
.buyer-chat-page .mb-0 { margin-bottom:0; }
.buyer-chat-page .chat-input-field { flex:1; padding: 15px; border-radius: 30px; border: 1px solid #ddd; outline:none; background: rgba(255,255,255,0.8); }
.buyer-chat-page .border-b-pb-15 { border-bottom: 1px solid #ddd; padding-bottom: 15px; }
.buyer-chats-page .p-0-overflow-hidden { padding:0; overflow:hidden; }
.buyer-chats-page .chat-avatar-white { width:50px; height:50px; background:white; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.buyer-chats-page .chat-list-item { text-decoration:none; color:var(--text-primary); border-bottom:1px solid #ddd; padding: 16px; background: rgba(255,255,255,0.5); }
.buyer-chats-page .flex-1 { flex:1; }
.buyer-chats-page .text-primary { color:var(--text-primary); }
.buyer-chats-page .text-blue { color:#74b9ff; }
.buyer-chats-page .chat-avatar-trans { width:50px; height:50px; background:rgba(255,255,255,0.5); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.buyer-chats-page .chat-list-item-unread { text-decoration:none; color:var(--text-primary); padding: 16px; background: #f0f8ff; transition:0.3s; }
.buyer-chats-page .chat-list-item-read { text-decoration:none; color:var(--text-primary); padding: 16px; opacity: 0.7; }
.buyer-chats-page .chat-avatar-border { padding:0; overflow:hidden; border:2px solid #74b9ff; }
.buyer-chats-page .px-15-py-8 { padding: 8px 15px; }
.buyer-chats-page .chat-unread-dot { position:absolute; top:-2px; right:-2px; width:12px; height:12px; background:var(--primary-pink); border-radius:50%; border:2px solid white; }
.buyer-chats-page .chat-fab { width:50px; height:50px; background:#74b9ff; color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem; box-shadow:0 4px 10px rgba(116,185,255,0.3); }
.buyer-chats-page .position-relative { position:relative; }
/* --- Extracted from buyer/chat_pre.php --- */


.buyer-chat-pre-page .form-group { margin-bottom: 20px; }
.buyer-chat-pre-page .form-group label { display: block; margin-bottom: 5px; font-weight: 600; color: var(--text-dark); }
.buyer-chat-pre-page .form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: rgba(255,255,255,0.8); box-sizing: border-box; }
.buyer-chat-pre-page .chat-bubble { padding: 15px; border-radius: 20px; margin-bottom: 15px; max-width: 70%; }
.buyer-chat-pre-page .chat-left { background: #fff; align-self: flex-start; border-bottom-left-radius: 5px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.buyer-chat-pre-page .chat-right { background: var(--primary-pink); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
    
.buyer-chat-pre-page .rounded-30 { border-radius: 30px; }
.buyer-chat-pre-page .btn-sm-rounded { font-size:0.8rem; padding: 5px 15px; }
.buyer-chat-pre-page .chat-pre-area { flex:1; overflow-y:auto; display:flex; flex-direction:column; background:rgba(255,255,255,0.4); padding:20px; border-radius:15px; margin-bottom:20px; }
.buyer-chat-pre-page .chat-pre-btn { border-radius: 50%; width: 50px; height: 50px; padding: 0; display:flex; justify-content:center; align-items:center; flex-shrink: 0; }
.buyer-chat-pre-page .chat-pre-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; height: 60vh; }
.buyer-chat-pre-page .chat-pre-input { flex:1; padding: 15px; border-radius: 30px; border: 1px solid #ddd; outline:none; }
.buyer-chat-pre-page .mb-20 { margin-bottom: 20px; }
.buyer-chat-pre-page .chat-pre-desc { margin:0; font-size:0.8rem; color:var(--text-light); }
.buyer-chat-pre-page .m-0 { margin:0; }
.buyer-chat-pre-page .flex-gap-10 { display:flex; gap:10px; }
.buyer-chat-pre-page .chat-pre-header { border-bottom: 1px solid #ddd; padding-bottom: 15px; margin-bottom: 20px; }

.buyer-profile-page .text-dark { color: var(--text-dark); }
.buyer-profile-page .p-40 { padding: 40px; }
.buyer-profile-page .profile-avatar-large { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 12px; font-size: 4rem; }
.buyer-profile-page .profile-info-col { flex: 2; min-width: 300px; }
.buyer-profile-page .profile-divider { border:none; border-top:1px dashed #ddd; margin:30px 0; }
.buyer-profile-page .px-15-py-5 { padding: 5px 15px; }
.buyer-profile-page .btn-profile-edit { padding: 15px 40px; border-radius: 30px; font-size: 1.1rem; }
.buyer-seller-profile-page .text-gray-cursor { color:#888; cursor:pointer; }
.buyer-seller-profile-page .seller-badge-dark { position:absolute; top:15px; right:15px; background:#555; color:#fff; padding:5px 12px; border-radius:20px; font-size:0.75rem; font-weight:bold; }
.buyer-seller-profile-page .border-b-eee { border-bottom:2px solid #eee; }
.buyer-seller-profile-page .seller-title { font-family:'Outfit',sans-serif; font-weight:900; font-size:1.4rem; color:#555; margin:0; }
.buyer-seller-profile-page .seller-border-l { border-left:4px solid #888; padding-left:15px; }
.buyer-seller-profile-page .seller-badge-cyan { position:absolute; top:15px; right:15px; background:#00cec9; color:#fff; padding:5px 12px; border-radius:20px; font-size:0.75rem; font-weight:bold; }
.buyer-seller-profile-page .seller-text { line-height:1.6; color:#444; }
.buyer-seller-profile-page .seller-card-base { cursor:default; margin-bottom: 15px; padding: 40px 20px; }
.buyer-seller-profile-page .seller-link-muted { text-decoration:none; color:inherit; opacity:0.6; }
.buyer-seller-profile-page .lh-18 { line-height:1.8; }
.buyer-seller-profile-page .text-14rem { font-size:1.4rem; }
.buyer-seller-profile-page .text-pink-cursor { color:#ff7675; cursor:pointer; }
.buyer-seller-profile-page .seller-play-icon { position:absolute; top:50%; left:50%; transform:translate(-50%, -50%); width:40px; height:40px; background:rgba(0,0,0,0.6); color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; z-index:3; font-size:1.2rem; border:2px solid #fff; }
.buyer-seller-profile-page .max-w-1100 { max-width: 1100px; }
.buyer-seller-profile-page .text-333 { color:#333; }
.buyer-seller-profile-page .seller-img-wrapper { position:relative; width:100%; aspect-ratio:3/4; }
.buyer-seller-profile-page .m-0-b-10 { margin:0 0 10px 0; }
.buyer-seller-profile-page .seller-box-dashed { border-style:dashed; color:#e84393; border-color:#ff9a9e; background:#fff0f3; }
.buyer-seller-profile-page .seller-label-gray { font-weight:bold; color:#888; margin:0; }
.buyer-seller-profile-page .seller-border-t { padding-top:15px; border-top:1px solid #eee; }
.buyer-seller-profile-page .text-decoration-none { text-decoration:none; }
.buyer-seller-profile-page .text-decoration-none text-inherit { text-decoration:none; color:inherit; }
.buyer-seller-profile-page .m-0-b-10 text-25rem { margin:0 0 10px 0; font-size:2.5rem; }
.buyer-seller-profile-page .border-b-pink { border-bottom:4px solid var(--primary-pink); }
.buyer-seller-profile-page .seller-badge-mint { position:absolute; top:15px; right:15px; background:var(--secondary-mint); color:#fff; padding:5px 12px; border-radius:20px; font-size:0.75rem; font-weight:bold; }
.buyer-seller-profile-page .text-clamp-2 { overflow:hidden; text-overflow:ellipsis; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; }
.buyer-purchased-page .text-11rem { font-size:1.1rem; }
.buyer-purchased-page .text-2rem { font-size:2rem; }
.buyer-purchased-page .flex-1 { flex:1; }
.seller-bg-cover { width: 100%; height: 100%; background-position: center; background-size: cover; background-repeat: no-repeat; }
.seller-avatar-sm { width: 40px; height: 40px; border-radius: 50%; background-position: center; background-size: cover; background-repeat: no-repeat; }
.grayscale { filter: grayscale(100%); }

/* --- Extracted from buyer/purchased_movie.php --- */


.buyer-purchased-movie-page .video-container {
        width: 100%;

        max-width: 800px;

        margin: 0 auto 30px;

        background: #111;

        border-radius: 15px;

        overflow: hidden;

        box-shadow: 0 10px 30px rgba(0,0,0,0.2);

        aspect-ratio: 16/9;

        display: flex;

        align-items: center;

        justify-content: center;

        position: relative;

    }

.buyer-purchased-movie-page .video-placeholder {
        color: white;

        text-align: center;

    }

.buyer-purchased-movie-page .play-button {
        width: 80px;

        height: 80px;

        background: rgba(255, 118, 117, 0.9);

        border-radius: 50%;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 2.5rem;

        color: white;

        margin: 0 auto 15px;

        cursor: pointer;

        transition: 0.3s;

        box-shadow: 0 4px 15px rgba(255, 118, 117, 0.4);

    }

.buyer-purchased-movie-page .play-button:hover {
        transform: scale(1.1);

        background: var(--primary-pink);

    }

.buyer-purchased-movie-page .image-grid {
        display: grid;

        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));

        gap: 15px;

        margin-top: 20px;

    }

.buyer-purchased-movie-page .image-item {
        width: 100%;

        aspect-ratio: 1;

        background: #f1f2f6;

        border-radius: 10px;

        overflow: hidden;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 2.5rem;

        box-shadow: 0 4px 10px rgba(0,0,0,0.05);

        transition: 0.3s;

        cursor: pointer;

        border: 2px solid transparent;

    }

.buyer-purchased-movie-page .image-item:hover {
        transform: translateY(-3px);

        box-shadow: 0 8px 15px rgba(0,0,0,0.1);

        border-color: var(--primary-pink);

    }

  
.buyer-purchased-movie-page .text-white-sm { color: white; font-size: 0.8rem; }
.buyer-purchased-movie-page .movie-progress-bar-bg { flex: 1; height: 4px; background: rgba(255,255,255,0.3); border-radius: 2px; position: relative; }
.buyer-purchased-movie-page .movie-controls { position: absolute; bottom: 0; left: 0; right: 0; height: 40px; background: rgba(0,0,0,0.6); display: flex; align-items: center; padding: 0 15px; gap: 10px; }
.buyer-purchased-movie-page .movie-title-border { font-size: 1.2rem; border-bottom: 2px solid var(--primary-pink); }
.buyer-purchased-movie-page .text-gray-aaa { color: #aaa; }
.buyer-purchased-movie-page .text-12rem { font-size: 1.2rem; }
.buyer-purchased-movie-page .text-white-09rem { color: white; font-size: 0.9rem; }
.buyer-purchased-movie-page .movie-progress-bar-fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--primary-pink); border-radius: 2px; }
/* --- Extracted from buyer/purchased_physical.php --- */


.buyer-purchased-physical-page .eyecatch-container {
        width: 100%;

        max-width: 800px;

        margin: 0 auto 30px;

        border-radius: 15px;

        overflow: hidden;

        box-shadow: 0 10px 30px rgba(0,0,0,0.1);

        aspect-ratio: 16/9;

        display: flex;

        align-items: center;

        justify-content: center;

        background-color: #f8f9fa;

        background-image: url('../images/item_uniform.png');

        background-size: cover;

        background-position: center;

        position: relative;

    }

.buyer-purchased-physical-page .eyecatch-placeholder {
        color: rgba(255,255,255,0.8);

        text-shadow: 0 2px 4px rgba(0,0,0,0.5);

        text-align: center;

        background: rgba(0,0,0,0.4);

        padding: 20px 40px;

        border-radius: 10px;

    }

.buyer-purchased-physical-page .image-grid {
        display: grid;

        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));

        gap: 15px;

        margin-top: 20px;

    }

.buyer-purchased-physical-page .image-item {
        width: 100%;

        aspect-ratio: 1;

        background: #f1f2f6;

        border-radius: 10px;

        overflow: hidden;

        display: flex;

        align-items: center;

        justify-content: center;

        font-size: 2.5rem;

        box-shadow: 0 4px 10px rgba(0,0,0,0.05);

        transition: 0.3s;

        cursor: pointer;

        border: 2px solid transparent;

    }

.buyer-purchased-physical-page .image-item:hover {
        transform: translateY(-3px);

        box-shadow: 0 8px 15px rgba(0,0,0,0.1);

        border-color: var(--primary-mint);

    }

  
.buyer-purchased-physical-page .text-bold-12rem { font-weight: bold; font-size: 1.2rem; }
.buyer-purchased-physical-page .physical-title-border { font-size: 1.2rem; border-bottom: 2px solid var(--primary-mint); }
.buyer-purchased-physical-page .icon-large-3rem { font-size: 3rem; margin-bottom: 10px; }
.buyer-purchased-physical-page .btn-accent-shadow { padding: 10px 20px; border-radius: 20px; background:var(--color-accent); border:none; box-shadow:0 4px 10px rgba(116,185,255,0.3); text-decoration:none; }
.buyer-purchased-physical-page .card-border-mint { border-radius: 10px; border-left: 4px solid var(--primary-mint); }
.buyer-favorit-page .text-11rem { font-size:1.1rem; }
.buyer-favorit-page .text-2rem { font-size:2rem; }
.buyer-favorit-page .flex-1 { flex:1; }
/* --- Extracted from buyer/follow.php --- */


.buyer-follow-page .follow-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 15px; }
.buyer-follow-page .girl-card { aspect-ratio: 3/4; border-radius:18px; text-decoration:none; color:#fff; position:relative; overflow:hidden; background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #a8edea 100%); box-shadow:var(--glass-shadow); transition:0.3s; display: block; }
.buyer-follow-page .girl-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(255,183,197,0.4); }
.buyer-follow-page .girl-avatar { position:absolute; top:4px; left:4px; width:calc(100% - 8px); height:calc(100% - 8px); border-radius:14px; background-size:cover; background-position:center; z-index:1; }
.buyer-follow-page .girl-info { position:absolute; bottom:4px; left:4px; width:calc(100% - 8px); padding:40px 10px 15px 10px; border-bottom-left-radius:14px; border-bottom-right-radius:14px; background:linear-gradient(transparent, rgba(0,0,0,0.85)); z-index:2; text-align:left; }
.buyer-follow-page .girl-info h4 { margin:0 0 3px 0; font-size:1.2rem; font-weight:800; text-shadow:0 2px 4px rgba(0,0,0,0.5); }
.buyer-follow-page .girl-info p { margin:0; font-size:0.8rem; color:#f1f2f6; text-shadow:0 1px 3px rgba(0,0,0,0.5); }
.buyer-follow-page .status-dot { width:12px; height:12px; border-radius:50%; background:#2ecc71; position:absolute; top:10px; right:10px; border:2px solid #fff; z-index:3; box-shadow:0 2px 5px rgba(0,0,0,0.3); }
  

/* --- Extracted from buyer/new_sellers.php --- */


.buyer-new-sellers-page .ranking-card { background:#fff; border-radius:15px; padding:20px; display:flex; align-items:center; gap:20px; box-shadow:var(--glass-shadow); margin-bottom:15px; text-decoration:none; color:var(--text-dark); transition:0.3s; position:relative; overflow:hidden; }
.buyer-new-sellers-page .ranking-card:hover { transform: translateX(5px); box-shadow: 0 10px 25px rgba(255,183,197,0.4); }
.buyer-new-sellers-page .ranking-avatar { width:90px; height:90px; border-radius:15px; background-size:cover; background-position:center; border:2px solid #fff; box-shadow:0 4px 10px rgba(0,0,0,0.1); position:relative; }
.buyer-new-sellers-page .ranking-info { flex: 1; }
.buyer-new-sellers-page .ranking-tags { display:flex; gap:5px; margin-top:5px; }
.buyer-new-sellers-page .r-tag { font-size:0.7rem; padding:3px 8px; background:#f0f8ff; color:#74b9ff; border-radius:10px; }
.buyer-new-sellers-page .new-badge { position:absolute; top:-5px; left:-5px; background:#e74c3c; color:#fff; font-size:0.6rem; font-weight:bold; padding:3px 6px; border-radius:5px; box-shadow:0 2px 4px rgba(0,0,0,0.2); }
    
.buyer-new-sellers-page .text-center-mt-30 { text-align:center; margin-top:30px; }
.buyer-new-sellers-page .text-sm-light-normal { font-size:0.8rem; color:var(--text-light); font-weight:normal; }
.buyer-new-sellers-page .text-center-light-mb-40 { text-align:center; color:var(--text-light); margin-bottom:40px; }
.buyer-new-sellers-page .m-0-b-5 { margin:0 0 5px 0; }
.buyer-new-sellers-page .bg-gradient-main { background:var(--bg-gradient); }
.buyer-new-sellers-page .text-right { text-align:right; }
.buyer-new-sellers-page .mb-20 { margin-bottom: 20px; }
.buyer-new-sellers-page .px-40-py-10 { padding:10px 40px; }
.buyer-new-sellers-page .text-pink-bold-09rem { margin:0; font-weight:bold; color:var(--primary-pink); font-size:0.9rem; }
.buyer-new-sellers-page .btn-sm-rounded { font-size:0.8rem; padding: 5px 15px; }
.buyer-new-sellers-page .max-w-800-pt-30 { max-width: 800px; padding-top: 30px; }
.buyer-new-sellers-page .text-light-085rem { margin:0; font-size:0.85rem; color:var(--text-light); }
.buyer-new-sellers-page .text-pink-center-mb-10 { text-align:center; color:var(--primary-pink); margin-bottom:10px; }
/* --- Extracted from buyer/ranking.php --- */


.buyer-ranking-page .ranking-card { background:#fff; border-radius:15px; padding:20px; display:flex; align-items:center; gap:20px; box-shadow:var(--glass-shadow); margin-bottom:15px; text-decoration:none; color:var(--text-dark); transition:0.3s; position:relative; overflow:hidden; }
.buyer-ranking-page .ranking-card:hover { transform: translateX(5px); box-shadow: 0 10px 25px rgba(255,183,197,0.4); }
.buyer-ranking-page .ranking-number { font-size: 2rem; font-weight: 900; color: #f1c40f; width: 40px; text-align: center; font-style: italic; }
.buyer-ranking-page .ranking-avatar { width:75px; aspect-ratio:3/4; border-radius:15px; background-size:cover; background-position:center; border:2px solid #fff; box-shadow:0 4px 10px rgba(0,0,0,0.1); }
.buyer-ranking-page .ranking-info { flex: 1; }
.buyer-ranking-page .ranking-tags { display:flex; gap:5px; margin-top:5px; }
.buyer-ranking-page .r-tag { font-size:0.7rem; padding:3px 8px; background:#f0f8ff; color:#74b9ff; border-radius:10px; }
    
.buyer-ranking-page .color-bronze { color:#cd7f32; }
.buyer-ranking-page .text-gray-15rem { color:#95a5a6; font-size:1.5rem; }
.buyer-ranking-page .dashed-divider-30 { border:0; border-top:1px dashed #ccc; margin:30px 0; }
.buyer-ranking-page .bg-gradient-main { background:var(--bg-gradient); }
.buyer-ranking-page .opacity-90 { opacity:0.9; }
.buyer-ranking-page .btn-sm-rounded { padding: 5px 15px; }
.buyer-ranking-page .color-silver { color:#bdc3c7; }
.buyer-ranking-page .ml-15-text-dark { margin-left:15px; color:var(--text-dark); }
/* --- Extracted from buyer/point_charge.php --- */


.buyer-point-charge-page .point-card { background: #fff; border-radius: 15px; padding: 20px; display: flex; justify-content: space-between; align-items: center; border: 2px solid transparent; cursor: pointer; transition: 0.3s; box-shadow: 0 4px 10px rgba(0,0,0,0.02); margin-bottom: 15px; }
.buyer-point-charge-page .point-card:hover { border-color: var(--primary-pink); }
.buyer-point-charge-page .point-card.active { border-color: var(--primary-pink); background: #fff0f3; }
.buyer-point-charge-page .point-amount { font-size: 1.5rem; font-weight: 800; font-family: 'Outfit'; color: #333; }
.buyer-point-charge-page .point-price { font-size: 1.2rem; font-weight: bold; color: var(--primary-pink); }
.buyer-point-charge-page .bonus-tag { background: #00cec9; color: #fff; padding: 3px 8px; border-radius: 10px; font-size: 0.75rem; font-weight: bold; margin-left: 10px; }
    
.buyer-point-charge-page .p-30 { padding: 30px; }
.buyer-point-charge-page .p-20 { padding:20px; }
.buyer-point-charge-page .d-none { display:none; }
.buyer-point-charge-page .text-15rem { font-size:1.5rem; }
.buyer-point-charge-page .text-3rem-outfit { font-size:3rem; font-family:'Outfit'; }
.buyer-request-board-page .board-empty-state { width:100%; height:100%; background:#fff; display:flex; align-items:center; justify-content:center; font-size:2rem; }
.buyer-request-board-page .text-decoration-none { text-decoration:none; }
.buyer-request-board-page .text-2rem-block-mb-5 { font-size: 2rem; display:block; margin-bottom: 5px; }
.buyer-request-board-page .board-dashed-box { display:flex; flex-direction:column; justify-content:center; align-items:center; padding:25px; border:2px dashed var(--primary-pink); text-decoration:none; background:rgba(255,255,255,0.7); }
.buyer-request-board-page .text-11rem { font-size:1.1rem; }
.buyer-request-board-page .flex-1 { flex:1; }
/* --- Extracted from buyer/request_board_edit.php --- */


.buyer-request-board-edit-page .form-group { margin-bottom: 25px; }
.buyer-request-board-edit-page .form-label { display: block; font-weight: bold; margin-bottom: 8px; color: var(--text-dark); }
.buyer-request-board-edit-page .form-input, .form-textarea, .form-select { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 10px; box-sizing: border-box; font-size: 1rem; font-family: inherit; transition: 0.3s; }
.buyer-request-board-edit-page .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--primary-pink); outline: none; box-shadow: 0 0 0 3px rgba(255,118,117,0.2); }
    

.buyer-request-board-edit-page .radio-group { display: flex; gap: 15px; flex-wrap: wrap; }
.buyer-request-board-edit-page .radio-label { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 10px 15px; background: rgba(255,255,255,0.5); border: 1px solid #ddd; border-radius: 30px; transition: 0.3s; }
.buyer-request-board-edit-page .radio-label:hover { border-color: var(--primary-pink); background: rgba(255,255,255,0.8); }
.buyer-request-board-edit-page .radio-label input[type="radio"] { accent-color: var(--primary-pink); width: 18px; height: 18px; }
    

.buyer-request-board-edit-page .deadline-group { display: flex; align-items: center; gap: 10px; }
.buyer-request-board-edit-page .time-fixed { padding: 15px; background: #f1f2f6; border: 1px solid #ddd; border-radius: 10px; color: #666; font-weight: bold; }
  
.buyer-request-board-edit-page .text-red-sm { color:red; font-size:0.8rem; }
.buyer-request-board-edit-page .w-200 { width: 200px; }
.buyer-request-board-edit-page .w-250 { width: 250px; }
.buyer-request-board-edit-page .btn-large-rounded-30 { padding: 15px 50px; border-radius: 30px; }
/* --- Extracted from buyer/request_board_new.php --- */


.buyer-request-board-new-page .form-group { margin-bottom: 25px; }
.buyer-request-board-new-page .form-label { display: block; font-weight: bold; margin-bottom: 8px; color: var(--text-dark); }
.buyer-request-board-new-page .form-input, .form-textarea, .form-select { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 10px; box-sizing: border-box; font-size: 1rem; font-family: inherit; transition: 0.3s; }
.buyer-request-board-new-page .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--primary-pink); outline: none; box-shadow: 0 0 0 3px rgba(255,118,117,0.2); }
    

.buyer-request-board-new-page .radio-group { display: flex; gap: 15px; flex-wrap: wrap; }
.buyer-request-board-new-page .radio-label { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 10px 15px; background: rgba(255,255,255,0.5); border: 1px solid #ddd; border-radius: 30px; transition: 0.3s; }
.buyer-request-board-new-page .radio-label:hover { border-color: var(--primary-pink); background: rgba(255,255,255,0.8); }
.buyer-request-board-new-page .radio-label input[type="radio"] { accent-color: var(--primary-pink); width: 18px; height: 18px; }
    

.buyer-request-board-new-page .deadline-group { display: flex; align-items: center; gap: 10px; }
.buyer-request-board-new-page .time-fixed { padding: 15px; background: #f1f2f6; border: 1px solid #ddd; border-radius: 10px; color: #666; font-weight: bold; }
  
.buyer-request-board-new-page .text-red-sm { color:red; font-size:0.8rem; }
.buyer-request-board-new-page .w-200 { width: 200px; }
.buyer-request-board-new-page .w-250 { width: 250px; }
.buyer-request-board-new-page .btn-large-rounded-30 { padding: 15px 50px; border-radius: 30px; }
/* --- Extracted from buyer/settings.php --- */


.buyer-settings-page .settings-layout {
            display: grid;

            grid-template-columns: 250px 1fr;

            gap: 30px;

        }

@media (max-width: 768px) {
.buyer-settings-page .settings-layout { grid-template-columns: 1fr; }
        }

.buyer-settings-page .form-group { margin-bottom: 25px; }
.buyer-settings-page .form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text-dark); }
.buyer-settings-page .form-group input { width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: #fff; box-sizing: border-box; }
.buyer-settings-page .section-title { padding-bottom: 10px; border-bottom: 2px dashed #ffb7c5; margin-bottom: 20px; color: var(--primary-pink); }
    
.buyer-settings-page .align-self-start { align-self: start; }
.buyer-settings-page .text-decoration-none { text-decoration:none; }
.buyer-settings-page .btn-rounded-10-nodec { border-radius:10px; text-decoration:none; }
.buyer-settings-page .btn-sm-rounded { padding: 5px 15px; }
.buyer-settings-page .w-150 { width: 150px; }
.buyer-support-page .min-h-200 { min-height: 200px; }
.buyer-support-page .max-w-600 { max-width: 600px; }
.buyer-support-page .p-8 { padding: 8px; }
.buyer-support-page .text-danger { color: var(--color-danger); }
.sidebar-header-box { background: rgba(116,185,255,0.2); padding: 24px; text-align: center; }
.p-0-overflow-hidden { padding: 0; overflow: hidden; }
.sidebar-badge-accent { background:var(--color-accent); color:#fff; border-radius:10px; padding:2px 8px; font-size:0.7rem; }
.py-16 { padding: 16px 0; }
.text-accent-bold { color:var(--color-accent); font-weight:bold; }
.sidebar-menu-col { flex: none; width: 280px; }

.sidebar-menu-link {
    padding: 12px 24px;
    border-left: 3px solid transparent;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}
.sidebar-menu-link.active {
    border-left: 3px solid var(--color-accent);
    background: var(--bg-section);
    color: var(--color-accent);
    font-weight: bold;
}
.sidebar-avatar-lg { width: 80px; height: 80px; background: white; border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 3.5rem; overflow: hidden; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.notice-bg-warning { background:#fff8e1; border-color:#ffd54f; }
.notice-badge-warning { background:#ffca28; color:#333; }

/* --- Phase 10 Step 3 Seller Styles --- */
.s-util-1 { border-color: var(--color-accent); }
.s-util-2 { background:linear-gradient(135deg, #fdf6e3, #e1c699); color:#8b6508; border:2px solid #8b6508; border-radius:20px; padding:20px 30px; display:flex; align-items:center; justify-content:flex-start; gap:25px; text-decoration:none; transition:0.3s; box-shadow:0 4px 15px rgba(139,101,8,0.2); }
.s-util-3 { font-size:2.5rem; background:#fff; padding:15px; border-radius:15px; box-shadow:0 4px 10px rgba(139,101,8,0.15); display:flex; align-items:center; justify-content:center; width:60px; height:60px; }
.s-util-4 { text-align:left; }
.s-util-5 { font-weight:bold; font-size:1.3rem; margin-bottom:5px; }
.s-util-6 { font-size:0.85rem; color:#a67d1a; }
.s-util-7 { border-bottom: 1px solid var(--border-color); padding: 12px 0; }
.s-util-8 { padding: 12px 0; }
.w-h-120 { width:120px; height:120px; }
.s-util-9 { grid-template-columns: 1fr 2fr; gap:20px; }
.s-util-10 { border: 2px dashed #ffb7c5; border-radius: 10px; }
.s-util-11 { font-size: 2rem; }
.s-util-12 { border-radius:20px; font-size:1.2rem; }
.s-util-13 { width:36px; height:36px; }
.s-util-14 { font-size:2rem; }
.flex-1 { flex:1; }
.s-util-15 { font-size:1.1rem; }
.s-util-16 { border-color:#ccc; color:#888; }
.seller-product-movie-page :root {
  --color-accent: #ff7675; --text-dark: #333; --text-light: #666; --primary-pink: #ff7675;
}
.seller-product-movie-page body {
  font-family: 'Noto Sans JP', sans-serif; background: #fffbfa; margin: 0; padding: 0; color: var(--text-dark);
}
.seller-product-movie-page .form-group {
  margin-bottom: 20px; text-align: left;
}
.seller-product-movie-page .form-group label {
  display: block; margin-bottom: 5px; font-weight: 600; color: var(--text-dark);
}
.seller-product-movie-page .form-group input, .seller-product-movie-page .form-group textarea, .seller-product-movie-page .form-group select {
  width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: rgba(255,255,255,0.8); box-sizing: border-box; font-family: inherit; font-size: 0.95rem;
}
.seller-product-movie-page .btn-primary {
  background: linear-gradient(45deg, #a18cd1, #fbc2eb); color: #fff; font-weight:bold; border-radius:20px; border:none; cursor: pointer; padding: 15px; font-size: 1.1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.seller-product-movie-page .btn-secondary {
  background: #fff; border: 1px solid #ddd; color: var(--text-dark); border-radius: 20px; cursor: pointer; text-decoration: none; display: inline-block; padding: 5px 15px; font-size: 0.8rem; font-weight: 600;
}
.seller-product-movie-page .glass-card {
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-radius: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); padding: 40px; border: 1px solid rgba(255,183,197,0.3);
}
.seller-product-movie-page .drop-zone {
  padding: 60px 20px; border: 3px dashed #a18cd1; border-radius:20px; background:rgba(255,255,255,0.5); cursor:pointer; text-align:center; transition:0.2s;
}
.seller-product-movie-page .drop-zone:hover {
  background: rgba(161,140,209,0.1);
}
.seller-product-movie-page .drop-zone-small {
  padding: 15px; border: 2px dashed #a18cd1; border-radius:10px; background:rgba(255,255,255,0.5); cursor:pointer; text-align:center; transition:0.2s; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; gap: 15px;
}
.seller-product-movie-page .drop-zone-small:hover {
  background: rgba(161,140,209,0.1);
}
.seller-product-movie-page .navbar {
  background: rgba(255,255,255,0.9); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 20px;
}
.seller-product-movie-page .navbar .brand {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--color-accent); text-decoration: none; font-style: italic;
}
.s-util-17 { background: #fffbfa; }
.s-util-18 { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.s-util-19 { margin-bottom: 20px; }
.s-util-20 { max-width: 700px; margin: 0 auto; text-align:center; }
.s-util-21 { color:#a18cd1; margin-bottom: 10px; }
.s-util-22 { color:#e74c3c; font-weight:600; margin-bottom:30px; font-size:0.9rem; }
.s-util-23 { margin-bottom:30px; }
.s-util-24 { display:block; text-align:left; font-weight:600; margin-bottom:5px; }
.s-util-25 { font-size:4rem; margin-bottom:10px; }
.s-util-26 { margin:0; }
.s-util-27 { color:var(--text-light); margin-top:5px; }
.s-util-28 { font-size:1.5rem; }
.s-util-29 { text-align:left; flex:1; }
.s-util-30 { font-size:0.9rem; font-weight:bold; color:var(--text-dark); }
.s-util-31 { font-size:0.75rem; color:var(--text-light); }
.s-util-32 { width:100%; margin-top:20px; }
.seller-product-movie-edit-page :root {
  --color-accent: #ff7675; --text-dark: #333; --text-light: #666; --primary-pink: #ff7675;
}
.seller-product-movie-edit-page body {
  font-family: 'Noto Sans JP', sans-serif; background: #fffbfa; margin: 0; padding: 0; color: var(--text-dark);
}
.seller-product-movie-edit-page .form-group {
  margin-bottom: 20px; text-align: left;
}
.seller-product-movie-edit-page .form-group label {
  display: block; margin-bottom: 5px; font-weight: 600; color: var(--text-dark);
}
.seller-product-movie-edit-page .form-group input, .seller-product-movie-edit-page .form-group textarea, .seller-product-movie-edit-page .form-group select {
  width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: rgba(255,255,255,0.8); box-sizing: border-box; font-family: inherit; font-size: 0.95rem;
}
.seller-product-movie-edit-page .btn-primary {
  background: linear-gradient(45deg, #a18cd1, #fbc2eb); color: #fff; font-weight:bold; border-radius:20px; border:none; cursor: pointer; padding: 15px; font-size: 1.1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.seller-product-movie-edit-page .btn-secondary {
  background: #fff; border: 1px solid #ddd; color: var(--text-dark); border-radius: 20px; cursor: pointer; text-decoration: none; display: inline-block; padding: 5px 15px; font-size: 0.8rem; font-weight: 600;
}
.seller-product-movie-edit-page .glass-card {
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-radius: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); padding: 40px; border: 1px solid rgba(255,183,197,0.3);
}
.seller-product-movie-edit-page .drop-zone {
  padding: 60px 20px; border: 3px dashed #a18cd1; border-radius:20px; background:rgba(255,255,255,0.5); cursor:pointer; text-align:center; transition:0.2s;
}
.seller-product-movie-edit-page .drop-zone:hover {
  background: rgba(161,140,209,0.1);
}
.seller-product-movie-edit-page .drop-zone-small {
  padding: 15px; border: 2px dashed #a18cd1; border-radius:10px; background:rgba(255,255,255,0.5); cursor:pointer; text-align:center; transition:0.2s; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; gap: 15px;
}
.seller-product-movie-edit-page .drop-zone-small:hover {
  background: rgba(161,140,209,0.1);
}
.seller-product-movie-edit-page .navbar {
  background: rgba(255,255,255,0.9); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 20px;
}
.seller-product-movie-edit-page .navbar .brand {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--color-accent); text-decoration: none; font-style: italic;
}
.s-util-33 { width:100%; margin-top:20px; padding:15px; border-radius:15px; }
.s-util-34 { width:100%; margin-top:10px; padding:15px; border-radius:15px; }
.seller-product-physical-page :root {
  --color-accent: #ff7675; --text-dark: #333; --text-light: #666; --primary-pink: #ff7675;
}
.seller-product-physical-page body {
  font-family: 'Noto Sans JP', sans-serif; background: #fffbfa; margin: 0; padding: 0; color: var(--text-dark);
}
.seller-product-physical-page .form-group {
  margin-bottom: 20px; text-align: left;
}
.seller-product-physical-page .form-group label {
  display: block; margin-bottom: 5px; font-weight: 600; color: var(--text-dark);
}
.seller-product-physical-page .form-group input, .seller-product-physical-page .form-group textarea, .seller-product-physical-page .form-group select {
  width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: rgba(255,255,255,0.8); box-sizing: border-box; font-family: inherit; font-size: 0.95rem;
}
.seller-product-physical-page .btn-primary {
  background: linear-gradient(45deg, #a18cd1, #fbc2eb); color: #fff; font-weight:bold; border-radius:20px; border:none; cursor: pointer; padding: 15px; font-size: 1.1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.seller-product-physical-page .btn-secondary {
  background: #fff; border: 1px solid #ddd; color: var(--text-dark); border-radius: 20px; cursor: pointer; text-decoration: none; display: inline-block; padding: 5px 15px; font-size: 0.8rem; font-weight: 600;
}
.seller-product-physical-page .glass-card {
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-radius: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); padding: 40px; border: 1px solid rgba(255,183,197,0.3);
}
.seller-product-physical-page .drop-zone {
  padding: 60px 20px; border: 3px dashed #a18cd1; border-radius:20px; background:rgba(255,255,255,0.5); cursor:pointer; text-align:center; transition:0.2s;
}
.seller-product-physical-page .drop-zone:hover {
  background: rgba(161,140,209,0.1);
}
.seller-product-physical-page .drop-zone-small {
  padding: 15px; border: 2px dashed #a18cd1; border-radius:10px; background:rgba(255,255,255,0.5); cursor:pointer; text-align:center; transition:0.2s; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; gap: 15px;
}
.seller-product-physical-page .drop-zone-small:hover {
  background: rgba(161,140,209,0.1);
}
.seller-product-physical-page .navbar {
  background: rgba(255,255,255,0.9); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 20px;
}
.seller-product-physical-page .navbar .brand {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--color-accent); text-decoration: none; font-style: italic;
}
.s-util-35 { color:var(--text-light); margin-bottom:30px; }
.s-util-36 { border-top:1px solid #ddd; margin-top:30px; padding-top:30px; text-align:left; }
.s-util-37 { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.s-util-38 { margin:0; color:var(--text-dark); }
.s-util-39 { padding:8px 15px; border-radius:20px; }
.s-util-40 { font-size:0.9rem; color:var(--text-light); margin-bottom:20px; }
.s-util-41 { display:flex; gap:15px; margin-bottom:15px; }
.s-util-42 { flex:2; padding:12px; border-radius:10px; border:1px solid #ddd; outline:none; background:rgba(255,255,255,0.8); }
.s-util-43 { flex:1; padding:12px; border-radius:10px; border:1px solid #ddd; outline:none; background:rgba(255,255,255,0.8); }
.s-util-44 { padding:10px 20px; font-size:0.95rem; margin-top:0; }
.seller-product-physical-edit-page :root {
  --color-accent: #ff7675; --text-dark: #333; --text-light: #666; --primary-pink: #ff7675;
}
.seller-product-physical-edit-page body {
  font-family: 'Noto Sans JP', sans-serif; background: #fffbfa; margin: 0; padding: 0; color: var(--text-dark);
}
.seller-product-physical-edit-page .form-group {
  margin-bottom: 20px; text-align: left;
}
.seller-product-physical-edit-page .form-group label {
  display: block; margin-bottom: 5px; font-weight: 600; color: var(--text-dark);
}
.seller-product-physical-edit-page .form-group input, .seller-product-physical-edit-page .form-group textarea, .seller-product-physical-edit-page .form-group select {
  width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: rgba(255,255,255,0.8); box-sizing: border-box; font-family: inherit; font-size: 0.95rem;
}
.seller-product-physical-edit-page .btn-primary {
  background: linear-gradient(45deg, #a18cd1, #fbc2eb); color: #fff; font-weight:bold; border-radius:20px; border:none; cursor: pointer; padding: 15px; font-size: 1.1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.seller-product-physical-edit-page .btn-secondary {
  background: #fff; border: 1px solid #ddd; color: var(--text-dark); border-radius: 20px; cursor: pointer; text-decoration: none; display: inline-block; padding: 5px 15px; font-size: 0.8rem; font-weight: 600;
}
.seller-product-physical-edit-page .glass-card {
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-radius: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); padding: 40px; border: 1px solid rgba(255,183,197,0.3);
}
.seller-product-physical-edit-page .drop-zone {
  padding: 60px 20px; border: 3px dashed #a18cd1; border-radius:20px; background:rgba(255,255,255,0.5); cursor:pointer; text-align:center; transition:0.2s;
}
.seller-product-physical-edit-page .drop-zone:hover {
  background: rgba(161,140,209,0.1);
}
.seller-product-physical-edit-page .drop-zone-small {
  padding: 15px; border: 2px dashed #a18cd1; border-radius:10px; background:rgba(255,255,255,0.5); cursor:pointer; text-align:center; transition:0.2s; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; gap: 15px;
}
.seller-product-physical-edit-page .drop-zone-small:hover {
  background: rgba(161,140,209,0.1);
}
.seller-product-physical-edit-page .navbar {
  background: rgba(255,255,255,0.9); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 20px;
}
.seller-product-physical-edit-page .navbar .brand {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--color-accent); text-decoration: none; font-style: italic;
}
.s-util-45 { background: rgba(161,140,209,0.1); border: 2px dashed #a18cd1; border-radius: 15px; padding: 20px; margin-bottom: 30px; text-align: left; }
.s-util-46 { color: #a18cd1; margin-top: 0; margin-bottom: 5px; }
.s-util-47 { font-size: 0.9rem; color: var(--text-light); margin-bottom: 15px; }
.s-util-48 { display: block; text-decoration: none; text-align: center; font-size: 1rem; padding: 12px; box-sizing: border-box; }

/* --- Phase 10 Step 3 Seller Batch 2 Styles --- */
.seller-product-set-page :root {
  --color-accent: #ff7675; --text-dark: #333; --text-light: #666; --primary-pink: #ff7675;
}
.seller-product-set-page body {
  font-family: 'Noto Sans JP', sans-serif; background: #fffbfa; margin: 0; padding: 0; color: var(--text-dark);
}
.seller-product-set-page .form-group {
  margin-bottom: 20px; text-align: left;
}
.seller-product-set-page .form-group label {
  display: block; margin-bottom: 5px; font-weight: 600; color: var(--text-dark);
}
.seller-product-set-page .form-group input, .seller-product-set-page .form-group textarea, .seller-product-set-page .form-group select {
  width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: rgba(255,255,255,0.8); box-sizing: border-box; font-family: inherit; font-size: 0.95rem;
}
.seller-product-set-page .btn-primary {
  background: linear-gradient(45deg, #a18cd1, #fbc2eb); color: #fff; font-weight:bold; border-radius:20px; border:none; cursor: pointer; padding: 15px; font-size: 1.1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.seller-product-set-page .btn-secondary {
  background: #fff; border: 1px solid #ddd; color: var(--text-dark); border-radius: 20px; cursor: pointer; text-decoration: none; display: inline-block; padding: 5px 15px; font-size: 0.8rem; font-weight: 600;
}
.seller-product-set-page .glass-card {
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-radius: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); padding: 40px; border: 1px solid rgba(255,183,197,0.3);
}
.seller-product-set-page .drop-zone {
  padding: 60px 20px; border: 3px dashed #a18cd1; border-radius:20px; background:rgba(255,255,255,0.5); cursor:pointer; text-align:center; transition:0.2s;
}
.seller-product-set-page .drop-zone:hover {
  background: rgba(161,140,209,0.1);
}
.seller-product-set-page .drop-zone-small {
  padding: 15px; border: 2px dashed #a18cd1; border-radius:10px; background:rgba(255,255,255,0.5); cursor:pointer; text-align:center; transition:0.2s; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; gap: 15px;
}
.seller-product-set-page .drop-zone-small:hover {
  background: rgba(161,140,209,0.1);
}
.seller-product-set-page .navbar {
  background: rgba(255,255,255,0.9); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 20px;
}
.seller-product-set-page .navbar .brand {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--color-accent); text-decoration: none; font-style: italic;
}
.s-util-100 { background: #fffbfa; }
.s-util-101 { max-width: 900px; margin: 0 auto; padding: 0 20px; }
.s-util-102 { margin-bottom: 20px; }
.s-util-103 { max-width: 700px; margin: 0 auto; text-align:center; }
.s-util-104 { color:#a18cd1; margin-bottom: 10px; }
.s-util-105 { color:#e74c3c; font-weight:600; margin-bottom:30px; font-size:0.9rem; }
.s-util-106 { margin-bottom:30px; }
.s-util-107 { display:block; text-align:left; font-weight:600; margin-bottom:5px; }
.s-util-108 { font-size:4rem; margin-bottom:10px; }
.s-util-109 { margin:0; }
.s-util-110 { color:var(--text-light); margin-top:5px; }
.s-util-111 { text-align:left; }
.s-util-112 { font-size:1.5rem; }
.s-util-113 { text-align:left; flex:1; }
.s-util-114 { font-size:0.9rem; font-weight:bold; color:var(--text-dark); }
.s-util-115 { font-size:0.75rem; color:var(--text-light); }
.s-util-116 { border-top:1px solid #ddd; margin-top:30px; padding-top:30px; text-align:left; }
.s-util-117 { display:flex; justify-content:space-between; align-items:center; margin-bottom:10px; }
.s-util-118 { margin:0; color:var(--text-dark); }
.s-util-119 { padding:8px 15px; border-radius:20px; }
.s-util-120 { font-size:0.9rem; color:var(--text-light); margin-bottom:20px; }
.s-util-121 { display:flex; gap:15px; margin-bottom:15px; }
.s-util-122 { flex:2; padding:12px; border-radius:10px; border:1px solid #ddd; outline:none; background:rgba(255,255,255,0.8); }
.s-util-123 { flex:1; padding:12px; border-radius:10px; border:1px solid #ddd; outline:none; background:rgba(255,255,255,0.8); }
.s-util-124 { padding:10px 20px; font-size:0.95rem; margin-top:0; }
.s-util-125 { width:100%; margin-top:20px; }
.seller-product-set-edit-page :root {
  --color-accent: #ff7675; --text-dark: #333; --text-light: #666; --primary-pink: #ff7675;
}
.seller-product-set-edit-page body {
  font-family: 'Noto Sans JP', sans-serif; background: #fffbfa; margin: 0; padding: 0; color: var(--text-dark);
}
.seller-product-set-edit-page .form-group {
  margin-bottom: 20px; text-align: left;
}
.seller-product-set-edit-page .form-group label {
  display: block; margin-bottom: 5px; font-weight: 600; color: var(--text-dark);
}
.seller-product-set-edit-page .form-group input, .seller-product-set-edit-page .form-group textarea, .seller-product-set-edit-page .form-group select {
  width: 100%; padding: 12px; border-radius: 10px; border: 1px solid #ddd; outline: none; background: rgba(255,255,255,0.8); box-sizing: border-box; font-family: inherit; font-size: 0.95rem;
}
.seller-product-set-edit-page .btn-primary {
  background: linear-gradient(45deg, #a18cd1, #fbc2eb); color: #fff; font-weight:bold; border-radius:20px; border:none; cursor: pointer; padding: 15px; font-size: 1.1rem; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.seller-product-set-edit-page .btn-secondary {
  background: #fff; border: 1px solid #ddd; color: var(--text-dark); border-radius: 20px; cursor: pointer; text-decoration: none; display: inline-block; padding: 5px 15px; font-size: 0.8rem; font-weight: 600;
}
.seller-product-set-edit-page .glass-card {
  background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); border-radius: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); padding: 40px; border: 1px solid rgba(255,183,197,0.3);
}
.seller-product-set-edit-page .drop-zone {
  padding: 60px 20px; border: 3px dashed #a18cd1; border-radius:20px; background:rgba(255,255,255,0.5); cursor:pointer; text-align:center; transition:0.2s;
}
.seller-product-set-edit-page .drop-zone:hover {
  background: rgba(161,140,209,0.1);
}
.seller-product-set-edit-page .drop-zone-small {
  padding: 15px; border: 2px dashed #a18cd1; border-radius:10px; background:rgba(255,255,255,0.5); cursor:pointer; text-align:center; transition:0.2s; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; gap: 15px;
}
.seller-product-set-edit-page .drop-zone-small:hover {
  background: rgba(161,140,209,0.1);
}
.seller-product-set-edit-page .navbar {
  background: rgba(255,255,255,0.9); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 20px;
}
.seller-product-set-edit-page .navbar .brand {
  font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--color-accent); text-decoration: none; font-style: italic;
}
.s-util-126 { width:100%; margin-top:20px; padding:15px; border-radius:15px; }
.s-util-127 { width:100%; margin-top:10px; padding:15px; border-radius:15px; }
.seller-chat-page :root {
  --pastel-blue: #e0f0ff;
        --pastel-pink: #ffe0e6;
}
.seller-chat-page .chat-bubble-custom {
  padding: 15px; border-radius: 20px; margin-bottom: 15px; max-width: 70%; word-break: break-all; box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.seller-chat-page .chat-left {
  align-self: flex-start; border-bottom-left-radius: 5px;
}
.seller-chat-page .chat-right {
  align-self: flex-end; border-bottom-right-radius: 5px;
}
.seller-chat-page .bg-buyer {
  background-color: var(--pastel-blue) !important; color: #333 !important;
}
.seller-chat-page .bg-seller {
  background-color: var(--pastel-pink) !important; color: #333 !important;
}
.s-util-128 { max-width: 800px; }
.s-util-129 { display: flex; flex-direction: column; height: 60vh; padding: 25px; }
.s-util-130 { border-bottom: 1px solid #ddd; padding-bottom: 15px; margin-bottom: 20px; display:flex; justify-content:space-between; align-items:center; }
.s-util-131 { font-size:0.8rem; padding: 5px 15px; text-decoration:none; }
.s-util-132 { width: 40px; height: 40px; background: #fff; border-radius: 50%; box-shadow: 0 2px 5px rgba(0,0,0,0.1); display:flex; align-items:center; justify-content:center; font-size:1.2rem; }
.s-util-133 { margin:0; font-size:1.1rem; color:#333; }
.s-util-134 { margin:0; font-size:0.8rem; color:var(--text-muted); }
.s-util-135 { display:flex; gap:10px; align-items:center; }
.s-util-136 { font-size:0.8rem; padding:4px 10px; }
.s-util-137 { font-size:0.7rem; padding: 4px 10px; border-width: 1px; }
.s-util-138 { flex:1; overflow-y:auto; display:flex; flex-direction:column; background:rgba(255,255,255,0.4); padding:20px; border-radius:15px; margin-bottom:20px; }
.s-util-139 { font-size:0.8rem; padding:4px 12px; background:#fff0f3; color:#ff7675; border:1px solid #ff7675; }
.s-util-140 { display:flex; flex-direction:column; max-width:100%; align-items:flex-end; margin-bottom:15px; }
.s-util-141 { margin-bottom:0; }
.s-util-142 { font-size:0.7rem; color:#888; margin-top:4px; }
.s-util-143 { display:flex; flex-direction:column; max-width:100%; align-items:flex-start; margin-bottom:15px; }
.s-util-144 { display:flex; gap:10px; }
.s-util-145 { padding: 10px 15px; border-radius: 50%; font-size:1.2rem; cursor:pointer; border:1px solid #ddd; background:#fff; display:flex; align-items:center; justify-content:center; }
.s-util-146 { flex:1; padding: 15px; border-radius: 30px; border: 1px solid #ddd; outline:none; background: rgba(255,255,255,0.8); }
.s-util-147 { width: auto; border-radius: 30px; padding: 10px 20px; white-space: nowrap; cursor:pointer; border:none; background:linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); color:#fff; font-weight:bold; }
.s-util-148 { flex: 2; min-width: 300px; }
.s-util-149 { font-size: 1.5rem; }
.s-util-150 { padding:0; overflow:hidden; border:2px solid #ff7675; }
.s-util-151 { text-decoration:none; color:var(--text-primary); padding: 16px; background: #fff0f3; transition:0.3s; }
.s-util-152 { width:50px; height:50px; background:#ff7675; color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem; box-shadow:0 4px 10px rgba(255,118,117,0.3); }
.flex-1 { flex:1; }
.s-util-153 { color:#ff7675; }
.s-util-154 { color:var(--text-primary); }
.s-util-155 { padding:0; overflow:hidden; border:2px solid #74b9ff; }
.s-util-156 { text-decoration:none; color:var(--text-primary); padding: 16px; background: #f0f8ff; transition:0.3s; }
.s-util-157 { width:50px; height:50px; background:#74b9ff; color:#fff; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.5rem; box-shadow:0 4px 10px rgba(116,185,255,0.3); }
.s-util-158 { color:#74b9ff; }
.s-util-159 { display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 20px; }
.s-util-160 { padding: 8px 15px; font-size:0.9rem; }
.s-util-161 { padding:0; overflow:hidden; }
.s-util-162 { text-decoration:none; color:var(--text-primary); border-bottom:1px solid var(--border-color); padding: 16px; background: var(--bg-section); }
.s-util-163 { position:relative; }
.s-util-164 { width:50px; height:50px; background:white; border-radius:50%; display:flex; align-items:center; justify-content:center; }
.s-util-165 { position:absolute; top:-2px; right:-2px; width:12px; height:12px; background:var(--color-danger); border-radius:50%; border:2px solid var(--bg-section); }
.s-util-166 { text-decoration:none; color:var(--text-primary); padding: 16px; opacity: 0.7; }
.s-util-167 { width:50px; height:50px; background:var(--bg-section); border-radius:50%; display:flex; align-items:center; justify-content:center; }
.s-util-168 { max-width: 800px; margin: 0 auto; }
.s-util-169 { color:var(--text-light); margin-bottom: 20px; }
.s-util-170 { margin-top:5px; display:inline-block; }
.s-util-171 { margin:0; font-weight:bold; }
.s-util-172 { background:rgba(255,255,255,0.8); padding:15px; border-radius:10px; border:1px solid #ddd; margin-top:20px; }
.s-util-173 { margin:0; display:flex; align-items:center; gap:10px; }
.s-util-174 { width:20px; height:20px; }
.s-util-175 { margin:5px 0 0 30px; font-size:0.8rem; color:#888; }
.s-util-176 { width:100%; margin-top:30px; padding:15px; border-radius:15px; font-size:1.1rem; }
.s-util-177 { font-size:4rem; }
.s-util-178 { border:1px solid #ffb7c5; border-radius:15px; }
.s-util-179 { padding:15px 40px; background:linear-gradient(45deg, #a8e6cf, #dcedc1); color:#2d3436; box-shadow:none; }
.s-util-180 { border-collapse: collapse; }
.s-util-181 { color:#2ecc71; }
.s-util-182 { border-bottom:2px solid #ffb7c5; }
.s-util-183 { border-radius:10px; }
.s-util-184 { flex: 1; min-width: 250px; max-width: 300px; }
.s-util-185 { padding: 0; overflow: hidden; }
.s-util-186 { background: var(--color-accent-light); padding: 24px; text-align: center; }
.s-util-187 { width: 80px; height: 80px; background: white; border-radius: 50%; margin: 0 auto 12px; display: flex; align-items: center; justify-content: center; font-size: 2rem; overflow: hidden; }
.s-util-188 { width: 100%; height: 100%; object-fit: cover; }
.s-util-189 { padding: 16px 0; }
.s-util-190 { background:#fff8e1; border-color:#ffd54f; }
.s-util-191 { background:#ffca28; color:#333; }


/* --- Common Scoped & Utility Styles --- */
.c-util-100 { background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); padding: 15px 30px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.c-util-101 { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--primary-pink); text-decoration: none; font-style: italic; }
.c-util-102 { display: flex; gap: 20px; align-items: center; }
.nav-link-style { text-decoration:none; color:var(--text-dark); font-weight:bold; }
.c-util-103 { display:flex; align-items:center; background:#fff0f5; padding:8px 15px; border-radius:20px; font-weight:bold; color:var(--primary-pink); border:1px solid #ffd1dc; }
.c-util-104 { margin-right:10px; }
.c-util-105 { background:var(--primary-pink); color:#fff; padding:4px 10px; border-radius:15px; text-decoration:none; font-size:0.85rem; }
.c-util-106 { background:#fff; padding:40px 20px; border-top:1px solid #eee; margin-top: 40px; box-shadow: 0 -10px 30px rgba(0,0,0,0.02); }
.c-util-107 { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-around; padding-bottom: 20px; text-align: left; }
.footer-heading { color: var(--primary-pink); font-size: 1.1rem; margin-bottom: 15px; }
.footer-list { list-style: none; padding: 0; margin: 0; line-height: 2; }
.footer-link { color: var(--text-dark); text-decoration: none; font-size: 0.9rem; }
.c-util-108 { text-align: center; padding-top: 20px; border-top: 1px solid #eee; font-size: 0.8rem; color: #aaa; }
.c-util-109 { color: var(--primary-pink); text-decoration: underline; }
.c-util-110 { text-align: center; padding: 120px 20px; }
.c-util-111 { font-size: 5rem; margin-bottom: 16px; }
.c-util-112 { font-size: 3rem; }
.c-util-113 { padding: 32px; line-height: 2; }
.c-util-114 { font-size: 1.1rem; margin-bottom: 12px; }
.c-util-115 { padding: 32px; }
.c-util-116 { border: none; }
.c-util-117 { width: 200px; background: transparent; }
.c-util-118 { background: transparent; }

/* Phase 15 additions */
.seller-sub-img {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}
.seller-sub-img.active,
.seller-sub-img:hover {
    border-color: var(--primary-pink);
    opacity: 1;
}

.publisher-avatar-sm {
    width: 50px;
    height: 50px;
    border-radius: 50%%;
    object-fit: cover;
    border: 2px solid rgba(255,118,117,0.3);
}

.cursor-pointer { cursor: pointer; }

.d-inline-block { display: inline-block; }
.text-decoration-none { text-decoration: none; }

.flex-wrap { flex-wrap: wrap; }

/* --- Category (Seq 18) Semantic Classes --- */
.filter-sub-group-title { font-weight: bold; font-size: 0.8rem; color: #888; margin-top: 5px; margin-bottom: 5px; }
.filter-sub-group-title.mt-md { margin-top: 10px; }
.btn-apply-filter { padding: 12px; border-radius: 10px; font-size: 1rem; }
.seller-avatar-icon { width: 20px; height: 20px; border-radius: 50%; background-position: center; background-size: cover; background-repeat: no-repeat; display: inline-block; }
.video-play-overlay { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; background: rgba(0,0,0,0.6); border-radius: 50%; color: #fff; display: flex; justify-content: center; align-items: center; border: 2px solid #fff; font-size: 1rem; }
.item-card.sold-out { opacity: 0.6; }
.item-img-grayscale { filter: grayscale(1); opacity: 0.8; }
.btn-more { padding: 12px 30px; border-radius: 30px; }
.bg-yellow { background: #f1c40f; }

/* --- Checkout (Seq 22) Semantic Classes --- */
.checkout-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* --- Product Details (Seq 33 & 34) Semantic Classes --- */
.product-badge-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.product-badge-overlay.badge-digital {
  background: #00cec9;
}
.product-badge-overlay.badge-physical {
  background: #ff7675;
}
.video-play-overlay-lg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  font-size: 1.8rem;
  border: 3px solid #fff;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
.btn-favorite {
  width: 100%;
  border-radius: 20px;
  padding: 12px;
  font-weight: bold;
  font-size: 1rem;
  border: 2px solid var(--primary-pink);
  color: var(--primary-pink);
  background: transparent;
  transition: 0.3s;
  cursor: pointer;
}
.btn-favorite:hover {
  background: var(--primary-pink);
  color: white;
}
.seller-mini-info {
  flex: 1;
}
.product-detail-title {
  line-height: 1.4;
}
.product-description-box {
  line-height: 1.8;
}
.option-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #ff9a9e;
}
.video-warning-box {
  background: #fff0f3;
  border: 1px dashed var(--primary-pink);
  padding: 15px;
  border-radius: 10px;
}
.chat-prompt-box {
  padding: 24px;
}
.chat-prompt-text {
  line-height: 1.5;
}
.btn-chat-ask {
  display: block;
  box-sizing: border-box;
  text-decoration: none;
}
.btn-purchase {
  display: block;
  padding: 18px;
  border-radius: 30px;
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 10px;
  text-decoration: none;
}
.btn-purchase.btn-digital {
  background: linear-gradient(135deg, #74b9ff 0%, #00cec9 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(116, 185, 255, 0.4);
}
.btn-purchase.btn-digital:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(116, 185, 255, 0.6);
}

/* --- Seller Profile (Seq 44) Semantic Classes --- */
.profile-image {
  transition: background-image 0.3s ease-in-out;
}
.btn-primary.followed {
  background: #00cec9;
  box-shadow: none;
}

/* --- Register Page (Seq 51) Semantic Classes --- */
.register-page .btn-outline-blue.active {
  background: #74b9ff;
  color: #fff;
}
.register-page .btn-outline-pink.active {
  background: #ff7675;
  color: #fff;
}
