.bg-top {
	background-image: url('../Content/hogar.jpg');
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 500px;
}
.bg-top .bk-cover {
	width: 100%;
	height: 100%;
	background: rgba(58,27,15,0.8);
	padding: 40px;
	color: #D5D5D4;
}
.bg-top .bk-cover .btn-home {
	position: absolute;
	margin-left: 75%;
	background: limegreen;
	border: none;
	color: #FFFFFF;
}
.bg-top .bk-cover .btn-home i {
	margin-right: 10px;
}
.bg-top .bk-cover .fst {
	font-weight: bold;
	font-size: 35px;
}
.bg-top .bk-cover .snd {
	font-weight: 100;
	font-size: 28px;
}
.hd-cats {
	background: #FFFFFF;
	margin-top: -50px;
	border-top-right-radius: 60px;
	border-top-left-radius: 60px;
}
.bd-cats {
	background: #EEE5E4;
}
.cats-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
}
.icon-cats {
	font-weight: 600;
	font-size: 28px;
	margin: 20px;
	padding: 5px;
	border-top-left-radius: 40px;
	border-top-right-radius: 40px;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
	background: #DAD0C7;
	transition: .3s;
}
.active-sec {
	background: #9E7E66;
	color: #FFF;
}
.icon-cats:hover {
	background: #9E7E66;
	cursor: pointer;
	color: #FFF;
}
.icon-cats img {
	padding: 5px;
	border-radius: 50%;
	height: 70px;
	width: 70px;
}
.bd-cats .title {
	font-size: 28px;
	padding: 40px;
	font-weight: bold;
}
.bd-cats .sections {
	margin: 20px;
	padding: 25px 25px 5px 25px;
	text-align: center;
	background: #FFF;
	border-radius: 40px;
}
.bd-cats .sections img {
	margin: auto;
	height: 120px;
}
.bd-cats .sections p {
	color: #888888;
	font-size: 28px;
}
.bd-cats .sections:hover {
	cursor: pointer;
}
.filter {
	display: none;
}
.search-bar {
    display: flex;
    align-items: center; /* centra verticalmente */
    justify-content: center;
}
.search-bar i {
    font-size: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    background: #9E7E66;
    border-bottom-left-radius: 50%;
    border-top-left-radius: 50%;
    padding: 5px 12px 5px 15px;
    color: #FFFFFF;
}
.search-bar input {
	border-radius: 0px;
    height: 50px;
    padding: 0 10px;
    border: 1px solid #9E7E66;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    width: 500px;
    max-width: 100%;
}
.cards {
	margin-top: 20px;
}
.availability {
	display: flex;
	justify-content: space-between;
}
.card-title {
	font-weight: bold;
	font-size: 18px;
}
.card-body {
	background: #E8D8C3;
}
.card-text {
	font-size: 15px;
	font-style: italic;
}
.cards .avail span {
	color: brown;
	font-weight: bold;
}
.cards .unav h5 {
	text-decoration: line-through;
}
.cards .unav p {
	text-decoration: line-through;
}
.cards .unav i {
	display: none;
}
.cards .unav img {
	filter: grayscale(1);
}
.cards .unav span {
	font-size: 12px;
	padding: 5px 10px 5px 10px;
	color: #FFFFFF;
	font-weight: 600;
	border-radius: 20px;
	background: red;
}
.card-body i {
	font-size: 13px;
	border-radius: 8px;
	background: #372A20;
	color: #FFFFFF;
	padding: 7px;
	align-items: end;
	cursor: pointer;
}
.bot30 {
	margin-bottom: 30px;
}
.card-img-top {
	cursor: pointer;
}
.card {
	border: 2px solid lightgrey;
	border-bottom-left-radius: 40px;
	border-bottom-right-radius: 40px;
	margin-top: 30px;
	box-shadow: 2px 0 10px 0px rgba(0, 0, 0, 0.3);
	height: 450px;
}
.card img {
	height: 300px;
}
.card-bottom .btn {
	border-radius: 0px;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
	width: 100%;
}
.toast {
	z-index: 9999;
    position: fixed;
    top: 20px;
    right: 20px;
    background: black;
    color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 20px;
    min-width: 600px;
    overflow: hidden;
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.toast.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.toast-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.close {
    cursor: pointer;
    margin-left: 15px;
}
.close i {
	color: #FFFFFF;
	font-size: 25px;
}
#progress {
    height: 4px;
    background: #ffc107;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: progressBar linear forwards;
}
@keyframes progressBar {
    from { width: 100%; }
    to { width: 0%; }
}.img-click {
    cursor: pointer;
    transition: 0.3s;
}
.img-click:hover {
    opacity: 0.8;
}
.img-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}
.img-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.modal-content {
    width: auto;
    height: auto;
    max-width: 95vw;
    max-height: 85vh;
    animation: zoom 0.3s ease;
}
.img-modal img {
	height: 100%;
}
.img-modal {
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
    opacity: 0;
}
.img-modal.show {
    opacity: 1;
}
@keyframes zoom {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
#caption {
    margin-top: 10px;
    color: #ccc;
    text-align: center;
    max-width: 90%;
    font-size: 22px;
}
.closeW {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: 0.3s;
}
.closeW:hover {
    opacity: 0.7;
}
.icons i {
	color: #FFFFFF;
	border-radius: 10px;
	padding: 6px;
	font-size: 16px;
}
.icons span {
	font-size: 22px;
	font-weight: 200;
	margin-left: 10px;
}
.icons {
	padding: 0px 15px 5px 15px;
	border-radius: 20px;
	background: #FFFFFF;
	width: fit-content;
}
.bot15 {
	margin-bottom: 12px;
}
.option {
  display: inline-block;
  margin: 10px;
  cursor: pointer;
}
.option input {
  display: none;
}
.option span {
  padding: 10px 18px;
  border: 2px solid #ccc;
  border-radius: 8px;
  display: inline-block;
  transition: all 0.2s ease;
}
.option span {
	font-size: 40px;
	border: none;
	border: 3px solid #FFFFFF;
	border-radius: 50%;
	padding: 5px;
}
.option input:checked + span {
	background: #EEE5E4;
	border: 3px solid #9E7E66;
}
.ttlCom {
	font-weight: 100;
	font-size: 28px;
}
.txtCom {
	font-weight: 100;
	font-size: 20px;
}
.submit {
	width: 100%;
}
.submit button {
	align-items: center;
	background: #9E7E66;
	color: #FFFFFF;
	margin-top: 15px;
}
.user i {
	color: #FFFFFF;
	background: lightgrey;
	border-radius: 50%;
	padding: 12px;
	font-size: 20px;
}
.aUser {
	color: grey;
	font-style: italic;
	font-weight: 600;
	margin-left: 5px;
}
.nUser {
	font-weight: bold;
	margin-left: 5px;
}
.marg em {
	font-size: 12px;
	margin-left: 10px;
	color: grey;
}
.comments {
	background: #EEE5E4;
	padding: 30px;
}
.marg {
	margin-top: 15px;
	border-radius: 20px;
	border: 1px solid #9E7E66;
}
.marg textarea {
	border-radius: 20px;
	max-height: 200px;
}
.butt {
	display: flex;
	align-items: center;
	background: #EEE5E4;
}
.btnMod {
	margin: auto;
	margin-top: 20px;
	background: #FFFFFF;
	color: #9E7E66;
	text-transform: uppercase;
}
#commsModal {
	margin: 100px auto;
}
#commsModal .modal-header {
	background: #EEE5E4;
	color: #9E7E66;
	font-weight: bold;
}
.marg .icons span {
	height: 100%;
	margin-top: 50px;
	font-size: 55px;	
}
.gallery img {
	max-width: 320px;
	margin-bottom: 0.5em;
	display: block;
	outline: 2px solid #9E7E66;
	outline-offset: -10px;
}
.gallery {
	columns: 5 320px;
	column-gap: 0.5em
}
@media (max-width: 768px) {
  .bd-cats {
    flex-direction: column;
  }
  .fst {
    font-size: 10px;
  }

  .snd {
    font-size: 12px;
  }
}