/* --- BUTTON CONTAINER STYLE --- */
.para-btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px; /* keep as requested */
  width: 100%;
}

.para-btn-row p {
  margin: 0;
  max-width: none;
  flex: 1;
  /* Optional: keeps text clean and professional */
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

/* --- THE FIXED BUTTON STYLE --- */
.shop-more-btn {
  /* Colors & Borders */
  background: #ffffff;
  color: #0f172a;
  border: 2px solid #0f172a;
  
  /* Sizing & Spacing */
  padding: 8px 22px; /* keep as requested */
  font-size: 14px;   /* keep as requested */
  white-space: nowrap;
  margin: 0;
  flex: 0 0 auto; /* Prevents button from stretching */
  
  /* Typography */
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  
  /* Shape & Shadow */
  border-radius: 8px;
  box-shadow: 0 10px 18px rgba(2, 6, 23, .06);
  
  /* Smooth Animation */
  transition: transform .18s ease, 
              background .18s ease, 
              color .18s ease, 
              box-shadow .18s ease;
}

/* --- HOVER STATE --- */
.shop-more-btn:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(2, 6, 23, .10);
}

/* --- ACTIVE STATE (Click Effect) --- */
.shop-more-btn:active {
  transform: translateY(0);
}