@charset "utf-8";
/* CSS Document */

@media (min-width: 768px) {
    .container {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

body{
  font-family: "inter-variable", sans-serif;
  
  margin: 0 ;
  padding: 0px;
}

header {
  	display: flex;
  	justify-content: space-between;
	padding: 25px;
  	margin-bottom: 0px;
}

.home{
	overflow: hidden;
	background-color: #FFF9D9;
}

.menu-icon, .notification-icon{
	font-size: 20px;
}

.avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 1em;
}

.user-info {
  	display: flex;
  	align-items: center;
	margin: 0 1.8em 2em;
}

.user-details {
	margin-left: 1em;
	color: #4a2b0f;
}

.user-details h2 {
  margin: 0;
  font-size: 18px;
}

.user-details p {
  margin: 0;
  font-size: 14px;
  color: #3a3a3a;
}


.white_border {
	background-color: #FFFDF4;
	border-radius: 30px 30px 0 0;
	height: 44rem;
	display: flex;
	flex-direction: column;
	gap: 3em;
	padding: 40px 20px 0;
	box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1); 
	transition: transform 0.8s ease-out, opacity 0.8s ease-out;
    opacity: 0;
    transform: translateY(100%);
}

.white_border.slide-up {
	transform: translateY(0);
    opacity: 1;
}


.appointment-section, .pets-section, .services-section h3{
	font-size: 14px;
	color: #4a2b0f;
}

.appoint_container {
  background-color: #FFF5C2;
  border-radius: 10px;
  padding: 35px;
	font-size: 14px;
	color: #715d4d;
	display: flex;
	text-align: center;
	justify-content: center;
  align-items: center;
	margin-bottom: 10px;
}

.appointConfirm_container{
	align-items: center;
	background-color: #FFF5C2;
	border-radius: 10px;
	padding: 15px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

#clinic-logo{
	width: 100%;
	width: 70px;
	height: 70px;
	margin-right: 10px;
}

.dateTimebox{
	display: flex;
	gap: 2em;
}


.add-pet {
  width: 135px;
  height: 107px;
  background-color: #FCF8E0;
  border-radius: 9px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.service-item {
  background-color: #C19A60;
  border-radius: 10px;
  padding: 15px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 80px;
}


.service-item img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.service-item p {
	font-size: 12px;
	font-variation-settings: "slnt" 0, "wght" 600;
}
button {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}


.title2 h1 {
    font-size: 20px;
    margin: 0;
    line-height: 1.2;
    padding: 25px;
}
.category-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px; 
	
	transition: opacity 1s ease-in;
}

.category-content.fade-in {
  opacity: 1;
}

.service-itemc {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card {
    overflow: hidden;
    width: 185px;
    height: 127px;
    border-radius: 10px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.2);
}
.service-card img {
    object-fit: cover;
}
.name-cate {
    margin-top: 10px; 
}
.name-cate p {
    margin: 0;
    text-align: center;
}


.bottomNavContainer {
    display: none;
    transition: opacity 0.3s ease-in-out;
	position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
}


.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
}
.bottom-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}
.bottom-nav ul li {
    list-style: none;
    width: 33.33%;
    height: 100%;
    z-index: 2;
}
.bottom-nav ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.bottom-nav ul li a .icon {
    font-size: 24px;
    color: #D2B100;
    transition: 0.3s;
}
.bottom-nav ul li.active a .icon {
     font-size: 1.8em;
    transform: translateY(-25px);
    color: #fff;
}
.indicator {
    position: absolute;
    top: -30px;
    left: 8.5%; 
    width: 60px;
    height: 60px;
    background: #D2B100;
    border-radius: 50%;
	transition: transform 0.3s ease-in-out;
    border: 6px solid #FFFDF4;
    z-index: 1;
}
.bottom-nav ul li:nth-child(1).active ~ .indicator {
    transform: translateX(0%);
}
.bottom-nav ul li:nth-child(2).active ~ .indicator {
    transform: translateX(110%);
}
.bottom-nav ul li:nth-child(3).active ~ .indicator {
    transform: translateX(160%);
}