/* v2.50.74 - CARGURU share popup desktop overlay and share actions */
:root{
  --overlay-bg:rgba(0,0,0,0.6);
  --surface:#F9FAFB;
  --box-shadow:rgba(0,0,0,0.3);
}
.share-overlay{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background:var(--overlay-bg);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:1000;
  padding:16px;
  box-sizing:border-box;
}
.share-box{
  background:var(--surface);
  border-radius:6px;
  width:100%;
  max-width:560px;
  padding:30px 34px 34px;
  position:relative;
  box-shadow:0 20px 60px var(--box-shadow);
  box-sizing:border-box;
  font-family:'Roboto Flex','Inter',Arial,sans-serif;
  color:#111827;
}
.share-close-btn{
  position:absolute;
  right:18px;
  top:16px;
  border:0;
  background:transparent;
  color:#111827;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  font-weight:400;
}
.share-title{
  display:table;
  margin:0 auto 28px;
  text-align:center;
  font-family:'Lexend Deca','Roboto Flex',Arial,sans-serif;
  font-size:18px;
  line-height:1.2;
  letter-spacing:.08em;
  font-weight:900;
  text-transform:uppercase;
  color:#E51B23;
  border-bottom:5px solid #FDBF00;
  padding-bottom:4px;
}
.share-actions{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  flex-wrap:nowrap;
  margin:0 0 30px;
}
.share-action{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  min-width:72px;
  text-decoration:none;
  color:#333;
  border:0;
  background:transparent;
  cursor:pointer;
  padding:0;
  font:500 15px/1.2 'Roboto Flex','Inter',Arial,sans-serif;
}
.share-action img,
.share-action-icon{
  width:48px;
  height:48px;
  border-radius:12px;
  object-fit:contain;
  display:block;
}
.share-action[data-share-platform="whatsapp"] img,
.share-action[data-share-platform="facebook"] img{
  border-radius:999px;
}
.share-copy-row{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  border:1.5px solid #111;
  border-radius:5px;
  padding:12px 14px;
}
.share-copy-input{
  flex:1 1 auto;
  min-width:0;
  border:0;
  border-bottom:2px solid #087EA4;
  background:transparent;
  color:#087EA4;
  font:600 18px/1.2 'Roboto Flex','Inter',Arial,sans-serif;
  outline:none;
  overflow:hidden;
  text-overflow:ellipsis;
}
.share-copy-btn{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:0;
  border-radius:4px;
  background:transparent;
  color:#111;
  padding:7px 0 7px 8px;
  font:700 18px/1 'Roboto Flex','Inter',Arial,sans-serif;
  cursor:pointer;
  white-space:nowrap;
}
.share-copy-btn img{
  width:24px;
  height:24px;
  object-fit:contain;
}
.share-copy-toast{
  position:fixed;
  left:50%;
  top:calc(50% + 190px);
  transform:translateX(-50%);
  z-index:1001;
  background:#111827;
  color:#fff;
  border-radius:999px;
  padding:9px 14px;
  font:700 12px/1 'Roboto Flex','Inter',Arial,sans-serif;
  box-shadow:0 10px 32px rgba(0,0,0,.24);
}
