/* LINE Follow Banner - Base Styles (Mobile First) */
.line-follow-wrapper {
  position: fixed;
  bottom: 10px;
  /* Center in the space excluding 70px on the right */
  /* Available width = 100% - 70px */
  /* Center point = (100% - 70px) / 2 = 50% - 35px */
  left: calc(50% - 35px);
  transform: translateX(-50%);
  width: 325px;
  /* Ensure it fits within the available space (100% - 70px) with some margin */
  max-width: calc(100% - 70px - 20px);
  margin: 0;
  background-color: #fff;
  text-align: center;
  padding: 0.5rem; /* p-2 */
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15); /* shadow */
  border: 2px solid #06c755;
  border-radius: 10px;
  z-index: 9999;
}

.line-follow-link {
  color: #06c755;
  font-weight: bold;
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 16px;
}
.line-follow-wrapper:hover {
  opacity: 1 !important;
  text-decoration: none !important;
  color: #05a046 !important;
  background: #ffffe8 !important;
}

.line-follow-link small {
  display: block;
}

.line-follow-slashes {
  display: inline;
}

/* Tablet+ Styles (min-width: 768px) */
@media (min-width: 768px) {
  .line-follow-wrapper {
    /* Position Vertical Center Left */
    top: 50%;
    left: 0;
    bottom: auto;
    transform: translateY(-50%);
    
    /* Vertical Text Layout */
    writing-mode: vertical-rl;
    text-orientation: upright;
    
    /* Box Appearance */
    width: auto;
    max-width: none;
    margin: 0;
    padding: 1rem 0.5rem;
    
    /* Reset Tablet Bar Overrides */
    border-radius: 0 10px 10px 0;
    border-left: none;
  }

  /* Rotate slashes 90 degrees for vertical layout */
  .line-follow-slashes {
    display: inline-block; 
    transform: rotate(90deg);
    margin: 4px 0;
  }
}
