/* ==========================================================================
   KING's GRILL - Cấu hình CSS phong cách Nhà hàng Nướng & Tiệc cao cấp
   ========================================================================== */

/* Nhập font chữ cao cấp từ Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Thiết lập biến CSS toàn cục */
:root {
  --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  
  /* Bảng màu thương hiệu */
  --bg-gradient: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
  --color-primary: #0b1a30;     /* Navy sâu lắng, sang trọng */
  --color-primary-light: #162a45;
  --color-accent: #c49a45;      /* Màu vàng Gold ẩm thực hoàng gia */
  --color-accent-hover: #b08738;
  
  /* Màu sắc của các kênh liên hệ */
  --color-zalo: #0068ff;
  --color-zalo-hover: #0056d6;
  --color-messenger: #0084ff;
  --color-messenger-hover: #006dd4;
  --color-hotline: #e05315;     /* Màu đỏ cam của bếp nướng than hoa */
  --color-hotline-hover: #c4430e;
  --color-menu: #22c55e;
  --color-menu-hover: #16a34a;
  --color-map: #64748b;
  --color-map-hover: #475569;
  
  /* Màu hỗ trợ */
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-success: #10b981;
  --color-danger: #ef4444;
  --color-card-bg: rgba(255, 255, 255, 0.95);
  --color-border: #e2e8f0;
  
  /* Radius & Shadows */
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 25px -5px rgba(15, 26, 48, 0.08), 0 8px 10px -6px rgba(15, 26, 48, 0.04);
  --shadow-premium: 0 20px 40px -15px rgba(15, 26, 48, 0.15);
}

/* 1. Cấu hình cơ bản & Reset chống tràn */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent; /* Tắt highlight màu xanh trên mobile */
}

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-primary);
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--color-text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* Chống tràn ngang tuyệt đối */
}

/* 2. Container bố cục chính */
.app-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 24px 16px 100px 16px; /* Để trống 100px ở dưới cho Sticky CTA không đè nội dung */
  width: 100%;
}

/* Cấu trúc Card chính ở giữa màn hình (Desktop & Tablet sẽ gom lại) */
.main-card {
  background: var(--color-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  width: 100%;
  max-width: 480px; /* Độ rộng tối ưu cho hiển thị dạng điện thoại trên máy tính */
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  backdrop-filter: blur(10px);
}

/* 3. Header & Thương hiệu */
.header-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  position: relative;
}

/* Logo container nền trong suốt với hiệu ứng hào quang vàng Gold */
.logo-container {
  width: 105px; /* Tăng nhẹ kích thước để hiển thị chi tiết sắc nét */
  height: 105px;
  border-radius: 50%;
  /* Quầng sáng radial vàng gold dịu nhẹ ở nền và bóng tỏa sáng bên ngoài (box-shadow glow) */
  background: radial-gradient(circle, rgba(196, 154, 69, 0.25) 0%, rgba(255, 255, 255, 0) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px 8px rgba(196, 154, 69, 0.35), inset 0 0 12px rgba(196, 154, 69, 0.2);
  border: 2px solid var(--color-accent);
  padding: 8px; /* Padding bảo vệ các chi tiết logo */
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-container:hover {
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 0 35px 12px rgba(196, 154, 69, 0.5), inset 0 0 15px rgba(196, 154, 69, 0.3);
}

.logo-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Trộn màu nền trắng của ảnh tiệp vào quầng sáng và nền page, tạo hiệu ứng trong suốt */
  mix-blend-mode: multiply;
}

.brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.brand-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--color-accent); /* Đồng bộ màu chữ Gold với Logo */
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  line-height: 1.3;
}

.brand-tagline span:not(:last-child)::after {
  content: "•";
  margin-left: 6px;
  color: var(--color-border);
}

/* Badge trạng thái Mở/Đóng cửa tự động */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 4px;
  transition: all 0.3s ease;
}

.status-badge.status-open {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--color-success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.status-closed {
  background-color: rgba(224, 83, 21, 0.1);
  color: var(--color-hotline);
  border: 1px solid rgba(224, 83, 21, 0.2);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-online {
  background-color: var(--color-success);
  box-shadow: 0 0 8px var(--color-success);
  animation: pulse-dot 1.8s infinite;
}

.status-offline {
  background-color: var(--color-hotline);
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* 4. Danh sách các nút Hành động (CTA) */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* Base button style */
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 56px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.btn-cta .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 14px;
  flex-shrink: 0; /* Không bao giờ bị thu hẹp icon */
  transition: transform 0.25s ease;
}

.btn-cta .btn-text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  min-w: 0; /* Cho phép text co giãn / truncate */
  flex-grow: 1;
}

.btn-cta .btn-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.btn-cta .btn-subtitle {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 2px;
  line-height: 1.1;
  white-space: normal; /* Cho phép xuống dòng nếu cần thiết */
  word-break: break-word;
}

.btn-cta .btn-arrow {
  margin-left: auto;
  opacity: 0.6;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  display: flex;
  align-items: center;
}

/* Hiệu ứng tương tác chung cho nút */
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-cta:hover .btn-arrow {
  transform: translateX(4px);
  opacity: 1;
}

.btn-cta:hover .btn-icon {
  transform: scale(1.1);
}

.btn-cta:active {
  transform: translateY(0);
  box-shadow: var(--shadow-md);
}

/* NÚT 1: ZALO ĐẶT BÀN NHANH (Nổi bật nhất) */
.btn-zalo {
  background: linear-gradient(135deg, var(--color-zalo) 0%, #0051c7 100%);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 6px 20px -4px rgba(0, 104, 255, 0.4);
}

.btn-zalo::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  animation: shine 4s infinite ease-in-out;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 100%; }
  100% { left: 100%; }
}

.btn-zalo:hover {
  background: linear-gradient(135deg, #0073ff 0%, #005ce3 100%);
  box-shadow: 0 10px 24px -2px rgba(0, 104, 255, 0.5);
}

/* NÚT 2: MESSENGER FANPAGE */
.btn-messenger {
  background: #ffffff;
  color: var(--color-text-main);
  border: 1.5px solid var(--color-border);
}

.btn-messenger .btn-icon svg path {
  fill: var(--color-messenger);
}

.btn-messenger:hover {
  border-color: var(--color-messenger);
  background-color: rgba(0, 132, 255, 0.03);
}

/* NÚT 3: GỌI ĐIỆN HOTLINE */
.btn-call {
  background: linear-gradient(135deg, var(--color-hotline) 0%, #c43800 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px -3px rgba(224, 83, 21, 0.3);
}

.btn-call:hover {
  background: linear-gradient(135deg, #ff6b2b 0%, #d83e00 100%);
}

/* NÚT 4: XEM MENU */
.btn-menu {
  background: #ffffff;
  color: var(--color-text-main);
  border: 1.5px solid var(--color-border);
}

.btn-menu:hover {
  border-color: var(--color-menu);
  background-color: rgba(34, 197, 94, 0.03);
}

/* NÚT 5: CHỈ ĐƯỜNG GOOGLE MAPS */
.btn-map {
  background: #ffffff;
  color: var(--color-text-main);
  border: 1.5px solid var(--color-border);
}

.btn-map:hover {
  border-color: var(--color-primary);
  background-color: rgba(15, 26, 48, 0.03);
}

/* NÚT PHỤ: LƯU SỐ ĐIỆN THOẠI (vCard) */
.btn-save-contact {
  background: rgba(196, 154, 69, 0.1);
  color: #926d21;
  border: 1px dashed rgba(196, 154, 69, 0.4);
  justify-content: center;
  font-size: 14px;
  min-height: 48px;
}

.btn-save-contact:hover {
  background: rgba(196, 154, 69, 0.18);
  border-style: solid;
}

/* 5. Khung Hướng dẫn Đặt bàn & Sao chép mẫu tin nhắn */
.booking-helper {
  background: #f8fafc;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.helper-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.helper-text {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Khung hiển thị mẫu tin nhắn */
.template-box {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 12px;
  color: var(--color-text-main);
  white-space: pre-line; /* Đảm bảo xuống hàng chuẩn */
  line-height: 1.5;
  user-select: all; /* Cho phép nhấp chọn tất cả */
  position: relative;
  border-left: 3px solid var(--color-accent);
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.btn-copy:hover {
  background: var(--color-primary);
  color: #ffffff;
  border-color: var(--color-primary);
}

/* 6. Phần Điểm Tin Cậy (Trust Badges) */
.trust-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--color-text-main);
}

.trust-item svg {
  flex-shrink: 0;
  color: var(--color-success);
  margin-top: 2px;
}

/* 7. Footer */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--color-text-muted);
  line-height: 1.4;
  width: 100%;
}

.footer-divider {
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
  border-radius: 2px;
  margin-bottom: 4px;
}

.footer-address {
  font-weight: 500;
  color: var(--color-text-main);
  max-width: 360px;
  word-break: break-word;
}

.footer-copyright {
  font-size: 10px;
  opacity: 0.7;
}

/* 8. Toast Thông Báo Đẹp */
.kg-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 30px);
  background: rgba(15, 26, 48, 0.95);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.25);
  width: calc(100% - 32px);
  max-width: 400px;
  box-sizing: border-box;
}

.kg-toast.show {
  transform: translate(-50%, 0);
  opacity: 1;
}

/* 9. Sticky Bottom Navigation Bar (Chỉ hiện trên Mobile < 768px) */
.sticky-cta-bar {
  display: none; /* Mặc định ẩn trên Desktop */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(15, 26, 48, 0.08);
  box-shadow: 0 -8px 24px rgba(15, 26, 48, 0.06);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); /* Hỗ trợ tai thỏ iPhone */
  z-index: 1000;
  box-sizing: border-box;
}

.sticky-bar-wrapper {
  display: flex;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  gap: 12px;
}

.sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  height: 48px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  box-sizing: border-box;
  text-align: center;
}

.sticky-btn-zalo {
  background: linear-gradient(135deg, var(--color-zalo) 0%, #0051c7 100%);
  color: #ffffff;
}

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

.sticky-btn-call {
  background: linear-gradient(135deg, var(--color-hotline) 0%, #c43800 100%);
  color: #ffffff;
}

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

.sticky-btn svg {
  flex-shrink: 0;
}

/* Media Query kích hoạt Sticky CTA cho Mobile */
@media (max-width: 767px) {
  .sticky-cta-bar {
    display: block;
  }
}

/* 10. Tối ưu hóa phản hồi (Responsive) */
@media (max-width: 480px) {
  .app-container {
    padding: 16px 12px 90px 12px;
  }
  
  .main-card {
    padding: 20px 14px;
    gap: 20px;
  }
  
  .brand-name {
    font-size: 21px;
  }
  
  .btn-cta {
    min-height: 52px;
    padding: 10px 14px;
  }
  
  .btn-cta .btn-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
  }
  
  .btn-cta .btn-title {
    font-size: 14.5px;
  }
}

/* ==========================================================================
   11. Hộp thoại nổi (Modal Popup) chọn Menu
   ========================================================================== */
.kg-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kg-modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 26, 48, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  background: #ffffff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(255, 255, 255, 0.8);
  z-index: 2;
  position: relative;
  margin: 16px;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.kg-modal.show .modal-content {
  transform: scale(1);
}

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

.modal-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(15, 26, 48, 0.05);
  color: var(--color-primary);
}

.modal-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}

.modal-menu-item {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--color-text-main);
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.modal-menu-item:hover {
  border-color: var(--color-accent);
  background: rgba(196, 154, 69, 0.04);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.menu-item-icon {
  font-size: 20px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.modal-menu-item:hover .menu-item-icon {
  background: rgba(196, 154, 69, 0.1);
}

.menu-item-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
  min-width: 0;
}

.menu-item-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}

.menu-item-desc {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 2px;
  line-height: 1.2;
  white-space: normal;
  word-break: break-word;
}

.menu-item-arrow {
  margin-left: 10px;
  font-size: 13px;
  opacity: 0.5;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.modal-menu-item:hover .menu-item-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ==========================================================================
   12. Hướng dẫn trực quan tránh lỗi trong app TikTok (Inline Card)
   ========================================================================== */
.tiktok-notice-card {
  background: linear-gradient(135deg, rgba(196, 154, 69, 0.08) 0%, rgba(224, 83, 21, 0.04) 100%);
  border: 1.5px dashed var(--color-accent);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}

.notice-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice-card-icon {
  font-size: 18px;
}

.notice-card-title {
  font-size: 13.5px;
  font-weight: 800;
  color: #d97706; /* Tông màu hổ phách/cam đậm để nổi bật cảnh báo */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.notice-card-desc {
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-text-main);
  margin: 0;
}

.notice-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.step-num {
  background: var(--color-accent);
  color: #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.step-text {
  font-size: 12px;
  line-height: 1.4;
  color: var(--color-text-main);
}

.step-or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0 2px 0;
  font-size: 10.5px;
  color: var(--color-text-muted);
  position: relative;
}

.step-or-divider::before, .step-or-divider::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background: var(--color-border);
}

.step-or-divider::before {
  margin-right: 8px;
}

.step-or-divider::after {
  margin-left: 8px;
}

.btn-copy-link-action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  background: #ffffff;
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 8px 12px;
  box-sizing: border-box;
}

.btn-copy-link-action:hover {
  background: var(--color-accent);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(196, 154, 69, 0.15);
}

.btn-copy-link-action:active {
  transform: scale(0.98);
}

.copy-link-icon {
  flex-shrink: 0;
  margin-right: 6px;
}


