/* ANCHOR: cat_sticker_styles */
/* REUSED: Widget-specific styling following Figma specifications */
/* SCALED FOR: Professional cat information display with blue gradient */

/* Cat Sticker Container - Exact Figma specifications */
.cat-sticker-container {
  /* CRITICAL: Exact Figma dimensions and layout */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px;
  gap: 16px;
  position: relative;
  width: 300px;
  height: 191px;
  
  /* UPDATED COMMENTS: Blue gradient background from Figma */
  background: linear-gradient(180deg, #9CCDD0 0%, #CDF4F6 58.64%);
  
  /* CRITICAL: Multi-layer shadow system from Figma */
  box-shadow: 
    0px 32px 13px rgba(0, 0, 0, 0.01), 
    0px 18px 11px rgba(0, 0, 0, 0.05), 
    0px 8px 8px rgba(0, 0, 0, 0.09), 
    0px 2px 4px rgba(0, 0, 0, 0.1);
  
  border-radius: 14px;
  
  /* CRITICAL: Hide overflow to keep cat icon within bounds */
  overflow: hidden;
  
  /* REUSED: Rotation handled by shared widget system */
  /* transform: rotate(-1deg); - Applied by widget rotation system */
}

/* Cat Name Title - Fill width typography */
.cat-sticker-title {
  /* CRITICAL: Fill width instead of absolute dimensions */
  width: 100%;
  /* Remove fixed height to allow natural text flow */
  
  /* UPDATED COMMENTS: SF Pro font with lighter weight for better readability */
  font-family: 'SF Pro Display', 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  font-weight: 500; /* UPDATED: Reduced from 590 to 500 for thinner appearance */
  font-size: 24px;
  line-height: 29px; /* identical to box height */
  text-align: left; /* FIXED: Left align for natural text flow */
  letter-spacing: var(--letter-spacing-tight); /* -2% letter spacing - unified standard */
  
  color: #101828;
  
  /* REUSED: Flexbox positioning within container */
  flex: none;
  order: 0;
  flex-grow: 0;
}

/* Description Text - Fill width specifications */
.cat-sticker-description {
  /* CRITICAL: Fill width instead of absolute dimensions */
  width: 100%;
  /* Remove fixed height to allow natural text flow */
  
  /* UPDATED COMMENTS: Body text typography */
  font-family: 'SF Pro Display', 'SF Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%; /* or 21px */
  letter-spacing: var(--letter-spacing-normal); /* 3% letter spacing - unified standard */
  
  color: #101828;
  
  /* REUSED: Flexbox positioning with stretch */
  flex: none;
  order: 1;
  align-self: stretch; /* CRITICAL: Stretch to fill container width */
  flex-grow: 0;
}

/* Cat Sticker Button Container - Shared WidgetButton wrapper */
.cat-sticker-button-container {
  /* CRITICAL: Flexbox positioning within sticker */
  flex: none;
  order: 2;
  flex-grow: 0;
  
  /* REUSED: Container for shared WidgetButton component */
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Chat Me Button Styling - Override shared button styles */
.cat-sticker-chat-button {
  /* CRITICAL: Semi-transparent background matching original design */
  background: rgba(16, 24, 40, 0.1) !important;
  border-radius: 8px !important;
  
  /* UPDATED COMMENTS: Exact button dimensions for hug content */
  padding: 10px 12px !important;
  gap: 8px !important;
  
  /* SCALED FOR: Interactive button styling */
  transition: all 0.2s ease-out !important;
}

/* Chat Me Button Hover State */
.cat-sticker-chat-button:hover,
.cat-sticker-chat-button.widget-button--hovered {
  background: rgba(16, 24, 40, 0.15) !important;
}

/* Chat Me Button Pressed State */
.cat-sticker-chat-button.widget-button--pressed {
  background: rgba(16, 24, 40, 0.2) !important;
  transform: scale(0.98) !important;
}

/* Heart Icon Styling - Ensure proper color and stroke */
.cat-sticker-chat-button svg {
  color: #101828 !important;
  stroke: #101828 !important;
  fill: none !important;
  /* UPDATED COMMENTS: Heart icon uses stroke, not fill */
}

/* REUSED: Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .cat-sticker-container {
    width: 280px;
    height: 180px;
    padding: 20px;
    gap: 14px;
  }
  
  .cat-sticker-title {
    font-size: 22px;
    line-height: 26px;
    /* Width remains 100% - no absolute sizing */
  }
  
  .cat-sticker-description {
    font-size: 15px;
    /* Width remains 100% - no absolute sizing */
  }
  
  .cat-sticker-feed-button {
    width: 90px;
    height: 36px;
    padding: 8px 10px;
  }
  
  .cat-sticker-feed-text {
    font-size: 16px;
    line-height: 19px;
    /* Width and height remain auto - natural text sizing */
  }
}
/* Cat Face Icon - Bottom right corner positioning */
.cat-sticker-cat-icon {
  /* CRITICAL: Absolute positioning in bottom right corner */
  position: absolute;
  right: 6px;
  bottom: 6px;
  
  /* UPDATED COMMENTS: Original icon size - no fixed dimensions */
  /* Let icon maintain its natural size */
  
  /* CRITICAL: 10% opacity for subtle appearance */
  opacity: 0.1;
  
  /* SCALED FOR: Icon alignment and display */
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* REUSED: Prevent pointer events to avoid interfering with widget interactions */
  pointer-events: none;
}

/* Cat Face Icon Image */
.cat-sticker-cat-icon img {
  /* CRITICAL: Original size - no width/height constraints */
  /* width: auto; height: auto; - Let image use natural dimensions */
  
  /* UPDATED COMMENTS: Maintain aspect ratio without size constraints */
  object-fit: contain;
}