#veterinary-cta-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.has-veterinary-cta {
    padding-bottom: 80px !important;
}

@media (max-width: 768px) {
    body.has-veterinary-cta {
        padding-bottom: 75px !important;
    }
}

.cta-bottom-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.6s ease-out;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 30px!important;
    max-width: 100%;
    margin: 0 auto;
    gap: 8px;
}

.cta-text {
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 600px;
}

.cta-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-height: 60px;
    text-align: center;
    flex: 1;
    max-width: 180px;
}

.cta-btn:nth-child(1),
.cta-btn:nth-child(2) {
    flex: 0 0 23%;
}

.cta-btn:nth-child(3) {
    flex: 0 0 49%;
}

.cta-btn-primary {
    background: white;
    color: #00b894 !important;
    border: 1px solid #00b894;
}

.cta-btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 184, 148, 0.3);
    color: #00b894 !important;
}

.cta-btn-secondary {
    background: white;
    color: #00b894 !important;
    border: 1px solid #00b894;
}

.cta-btn-secondary:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    color: #00b894 !important;
}

.cta-btn-ghost {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    color: white !important;
}

.icon {
    width: 20px;
    height: 20px;
}

.emoji-icon {
    font-size: 20px;
}

.cta-close {
    position: absolute;
    top: 4px;
    right: 12px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.cta-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .cta-content {
        padding: 6px 20px 8px;
        gap: 8px;
    }
    
    .cta-title {
        font-size: 13px;
    }
    
    .cta-buttons {
        gap: 4px;
    }
    
    .cta-btn {
        padding: 8px 6px;
        font-size: 11px;
        min-height: 55px;
    }
    
    .icon {
        width: 25px !important;
        height: 25px !important;
    }
    
    .emoji-icon {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        gap: 2px;
    }
    
    .cta-btn {
        padding: 6px 4px;
        font-size: 10px;
        min-height: 50px;
    }
	#veterinary-cta-wrapper * {
		padding-bottom: 4px;
		padding-top: 3px;
	}
	.cta-content {
		padding: 0!important;
	}
}

.cta-btn:active {
    transform: scale(0.98);
}

.cta-bottom-container.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.cta-bottom-container.footer-hidden {
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease-out;
}

.cta-bottom-container:not(.footer-hidden):not(.hidden) {
    transform: translateY(0);
    opacity: 1;
}

body.has-veterinary-cta.footer-cta-hidden {
    padding-bottom: 0 !important;
    transition: padding-bottom 0.4s ease-out;
}

body.has-veterinary-cta {
    transition: padding-bottom 0.4s ease-out;
}

#veterinary-cta-wrapper a:hover,
#veterinary-cta-wrapper a:focus,
#veterinary-cta-wrapper a:active {
    text-decoration: none !important;
    outline: none !important;
}